/* === CSS Variables === */
:root {
  --navy: #1B3A6B;
  --sky-blue: #E8F4FD;
  --warm-white: #FAFAFA;
  --sage: #6B9E78;
  --light-gray: #F5F5F5;
  --text-dark: #2C3E50;
  --text-medium: #5A6A7A;
  --text-light: #8A9BB0;
  --border-light: #D8E6F0;
  --shadow-sm: 0 2px 10px rgba(27, 58, 107, 0.07);
  --shadow-md: 0 6px 24px rgba(27, 58, 107, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.2s ease;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
ul { list-style: none; }

/* === Navbar === */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(27, 58, 107, 0.28);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.nav-logo span { color: #A8D8EA; font-weight: 400; font-size: 0.9rem; }
.nav-menu { display: none; gap: 2px; }
.nav-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  padding: 8px 13px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(255,255,255,0.14);
  color: white;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: #162f58;
  padding: 10px 20px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  color: rgba(255,255,255,0.82);
  display: block;
  padding: 13px 8px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: white; }

@media (min-width: 820px) {
  .nav-menu { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* === Hero === */
.hero {
  background: linear-gradient(145deg, #ddeefb 0%, var(--sky-blue) 60%, #f0f9ff 100%);
  padding: 64px 20px 56px;
  text-align: center;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(107, 158, 120, 0.15);
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 1.85rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.08rem;
  color: var(--text-medium);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-medium);
  box-shadow: var(--shadow-sm);
}
.hero-badge span { font-size: 1.1rem; }

@media (min-width: 640px) {
  .hero { padding: 88px 40px 76px; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.15rem; }
}

/* === Sections === */
.section { padding: 56px 20px; }
.section-alt { background: var(--light-gray); }
.section-sky { background: var(--sky-blue); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.section-title {
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-subtitle {
  color: var(--text-medium);
  text-align: center;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === Video Tiles === */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 44px;
}
@media (min-width: 700px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-tile {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
}
.video-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.video-tile:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.video-thumb {
  background: linear-gradient(145deg, #1B3A6B 0%, #2A5298 100%);
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.video-emoji { font-size: 3rem; line-height: 1; }
.play-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.video-tile:hover .play-ring { background: rgba(255,255,255,0.26); }
.play-triangle {
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid white;
  margin-left: 3px;
}
.video-coming {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(107, 158, 120, 0.85);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.video-body { padding: 22px 22px 26px; }
.video-body h3 {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.video-body p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 18px rgba(107, 158, 120, 0.38);
}
.btn-primary:hover {
  background: #5a8f67;
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(107, 158, 120, 0.48);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-white {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--sky-blue); color: var(--navy); }
.btn-lg { padding: 18px 48px; font-size: 1.12rem; }
.cta-center { text-align: center; }

/* === Page Header === */
.page-header {
  background: linear-gradient(140deg, var(--navy) 0%, #2a4f96 100%);
  padding: 52px 20px;
  text-align: center;
}
.page-header h1 {
  font-size: 2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}
.page-header p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Cards === */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .card-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.card-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 540px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-medium); font-size: 0.93rem; line-height: 1.7; }

/* === Feature strip === */
.feature-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .feature-strip { flex-direction: row; justify-content: center; gap: 28px; }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-medium);
}
.feature-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* === Resource Links === */
.resource-list { display: flex; flex-direction: column; gap: 12px; }
.resource-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition);
  border-left: 4px solid var(--sage);
}
.resource-link:hover { transform: translateX(4px); box-shadow: var(--shadow-md); color: var(--navy); }
.resource-link .r-icon { font-size: 1.35rem; flex-shrink: 0; }
.resource-link .r-label { font-weight: 600; margin-bottom: 2px; color: var(--navy); }
.resource-link .r-desc { font-size: 0.83rem; color: var(--text-medium); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
  font-family: var(--font);
}
.faq-question:hover { background: var(--sky-blue); }
.faq-chevron { font-size: 1.1rem; color: var(--sage); transition: transform 0.28s ease; flex-shrink: 0; }
.faq-item.open .faq-question { background: var(--sky-blue); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-medium);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* === Scheduling === */
.scheduling-hero {
  background: linear-gradient(145deg, #ddeefb 0%, var(--sky-blue) 100%);
  padding: 52px 20px;
  text-align: center;
}
.scheduling-hero h1 { font-size: 1.9rem; color: var(--navy); font-weight: 700; margin-bottom: 14px; }
.scheduling-hero p { color: var(--text-medium); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }
.calendly-wrapper {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-light);
  padding: 40px 20px;
  text-align: center;
}
.calendly-placeholder-text h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 12px; }
.calendly-placeholder-text p { color: var(--text-medium); font-size: 0.95rem; max-width: 420px; line-height: 1.7; }
.calendly-placeholder-text .placeholder-icon { font-size: 3.5rem; margin-bottom: 20px; }
.help-strip {
  background: var(--sky-blue);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}
.help-strip .h-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.help-strip p { font-size: 0.92rem; color: var(--text-medium); line-height: 1.65; }
.help-strip strong { color: var(--navy); }

/* === About page specifics === */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) { .about-intro { grid-template-columns: 1fr 1fr; gap: 60px; } }
.about-intro h2 { font-size: 1.65rem; color: var(--navy); font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.about-intro p { color: var(--text-medium); font-size: 0.97rem; line-height: 1.75; margin-bottom: 14px; }
.about-visual {
  background: linear-gradient(145deg, var(--sky-blue) 0%, #c8e6f5 100%);
  border-radius: var(--radius-md);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.value-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 44px;
  height: 44px;
  background: var(--sky-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.value-text h4 { color: var(--navy); font-size: 0.97rem; font-weight: 700; margin-bottom: 4px; }
.value-text p { color: var(--text-medium); font-size: 0.9rem; line-height: 1.65; }

/* === AD Page === */
.ad-placeholder {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}
.ad-placeholder .big-icon { font-size: 4rem; margin-bottom: 24px; }
.ad-placeholder h2 { font-size: 1.5rem; color: var(--navy); font-weight: 700; margin-bottom: 14px; }
.ad-placeholder p { color: var(--text-medium); line-height: 1.75; margin-bottom: 20px; font-size: 0.97rem; }
.ad-info-card {
  background: var(--sky-blue);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  margin-top: 32px;
}
.ad-info-card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.ad-info-card ul { color: var(--text-medium); font-size: 0.93rem; line-height: 1.75; padding-left: 20px; list-style: disc; }
.ad-info-card ul li { margin-bottom: 6px; }

/* === Footer === */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 44px 20px 32px;
  text-align: center;
}
.footer-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-logo span { color: #A8D8EA; font-weight: 400; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 20px auto;
  border-radius: 2px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* === Utilities === */
.text-center { text-align: center; }
.sage-text { color: var(--sage); }
.navy-text { color: var(--navy); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 40px 0;
}
