/* =====================
   CSS VARIABLES & RESET
   ===================== */
:root {
  --blue-deep: #1c3f6e;
  --blue-mid: #2a6496;
  --blue-light: #4a90c4;
  --blue-pale: #ddeef8;
  --blue-ghost: #f2f8fd;
  --warm-white: #fefcfa;
  --cream: #f7f3ee;
  --cream-dark: #ede9e3;
  --gold: #b8843a;
  --gold-light: #f0ddb0;
  --gold-bg: #fdf6e8;
  --green: #2e7d5a;
  --green-light: #e8f5ef;
  --text-dark: #1a2535;
  --text-mid: #3b4f66;
  --text-muted: #7288a0;
  --border: #cde0f0;
  --border-warm: #e0d8cc;
  --shadow-sm: 0 2px 14px rgba(26,63,110,0.06);
  --shadow-md: 0 8px 36px rgba(26,63,110,0.09);
  --shadow-lg: 0 20px 64px rgba(26,63,110,0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --nav-h: 104px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.testimonials {
  padding: 80px 0;
  background: var(--blue-ghost);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--blue-pale);
  line-height: 1;
  font-weight: 600;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin: 22px 0 24px;
  position: relative;
  z-index: 1;
}
.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 14px;
}
.testimonial-meta {
  font-size: 12.5px;
  color: var(--text-muted);
}
.testimonial-placeholder {
  background: repeating-linear-gradient(45deg, var(--blue-ghost), var(--blue-ghost) 10px, white 10px, white 20px);
  border: 2px dashed var(--border);
  box-shadow: none;
}
.testimonial-placeholder::before { display: none; }
.testimonial-placeholder .testimonial-quote {
  color: var(--text-muted);
  font-style: normal;
}
.testimonial-placeholder .testimonial-name {
  color: var(--text-muted);
}

/* Accessibility: skip-to-content link for keyboard / screen-reader users */
.skip-link {
  position: absolute;
  top: -42px;
  left: 12px;
  z-index: 9999;
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold-light); outline-offset: 2px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
em { font-style: italic; color: var(--blue-mid); }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
  display: block;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14.5px;
  transition: all 0.22s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--blue-mid); color: white; box-shadow: 0 4px 18px rgba(42,100,150,0.28); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(42,100,150,0.38); }
.btn-ghost { background: rgba(255,255,255,0.14); color: white; border: 1.5px solid rgba(255,255,255,0.38); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.24); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue-mid); border: 1.5px solid var(--blue-mid); }
.btn-outline:hover { background: var(--blue-pale); transform: translateY(-1px); }
.btn-white { background: white; color: var(--blue-deep); box-shadow: 0 4px 18px rgba(0,0,0,0.14); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-gold { background: var(--gold); color: white; box-shadow: 0 4px 18px rgba(184,132,58,0.3); }
.btn-gold:hover { background: #a0722e; transform: translateY(-2px); }
.full-width { width: 100%; }


/* Logo image in nav */
.logo.logo-img { display: flex; align-items: center; padding: 0; }
.logo.logo-img img { height: 92px; width: auto; object-fit: contain; display: block; }
.footer-brand .logo.logo-img img { height: 96px; }
@media (max-width: 600px) {
  .logo.logo-img img { height: 68px; }
  .footer-brand .logo.logo-img img { height: 76px; }
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(254,252,250,0.94); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 9px; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--blue-deep); white-space: nowrap; }
.logo-mark { color: var(--blue-light); font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 7px 13px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text-mid); transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-deep); background: var(--blue-ghost); }
.nav-links .nav-cta { background: var(--blue-mid); color: white; border-radius: 100px; padding: 8px 18px; }
.nav-links .nav-cta:hover { background: var(--blue-deep); color: white; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue-deep); border-radius: 2px; transition: all 0.3s; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--blue-deep) 0%, #1f5080 45%, #2a6496 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.12; }
.blob-1 { width: 700px; height: 700px; background: radial-gradient(circle,#5bafd4,transparent); top: -200px; right: -150px; }
.blob-2 { width: 450px; height: 450px; background: radial-gradient(circle,#b8843a,transparent); bottom: -120px; left: 5%; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle,#4ac4a0,transparent); top: 30%; left: 40%; }
.hero-content { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 100px; max-width: 760px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 26px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); color: white; margin-bottom: 22px; line-height: 1.15; }
.hero-title em { color: #f0ddb0; }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.76); max-width: 560px; margin-bottom: 38px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.52); }
.note-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1;transform:scale(1); } 50% { opacity:0.5;transform:scale(1.4); } }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.36); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom,rgba(255,255,255,0.36),transparent); animation: scrollFade 2s ease-in-out infinite; }
@keyframes scrollFade { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-icon { font-size: 22px; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.trust-item span { display: block; font-size: 12px; color: var(--text-muted); }
.trust-divider { width: 1px; height: 38px; background: var(--border); }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 96px 0; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--blue-deep); margin-bottom: 18px; }
.section-title.small { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.section-body { font-size: 15.5px; color: var(--text-mid); max-width: 520px; margin-bottom: 32px; line-height: 1.82; }
.center-text { margin-left: auto; margin-right: auto; text-align: center; }
.section-center { text-align: center; margin-bottom: 52px; }
.section-center .section-body { margin-left: auto; margin-right: auto; }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* =====================
   WHO IT'S FOR
   ===================== */
.for-parents { background: var(--warm-white); }
.check-list { display: flex; flex-direction: column; gap: 22px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-pale); color: var(--blue-mid); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.check-list li strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.check-list li p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* =====================
   STEPS PREVIEW
   ===================== */
.how-preview { background: var(--blue-ghost); }
.steps-row { display: flex; align-items: flex-start; margin-bottom: 44px; }
.step-card { flex: 1; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--blue-light); margin-bottom: 10px; font-family: monospace; }
.step-icon { font-size: 26px; margin-bottom: 12px; }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--blue-deep); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-connector { width: 36px; flex-shrink: 0; height: 2px; background: linear-gradient(90deg,var(--border),var(--blue-light),var(--border)); margin-top: 56px; }
.center-action { text-align: center; }

/* =====================
   SERVICES
   ===================== */
.services-preview { background: white; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 18px; }
.service-card { background: var(--blue-ghost); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card.featured { background: var(--blue-deep); border-color: var(--blue-deep); }
.service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.9); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.14); }
.service-badge { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 11px; border-radius: 100px; background: var(--blue-pale); color: var(--blue-mid); margin-bottom: 18px; }
.service-badge.gold { background: var(--gold-light); color: var(--gold); }
.service-icon { font-size: 30px; margin-bottom: 14px; }
.service-card h3 { font-size: 1.25rem; color: var(--blue-deep); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.7; }
.service-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; }
.service-features li { font-size: 13px; color: var(--text-mid); padding: 7px 0; border-bottom: 1px solid var(--border); padding-left: 18px; position: relative; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-light); font-weight: 700; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); }

/* Pricing chips */
.price-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--green-light); color: var(--green); font-size: 13px; font-weight: 700; padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; border: 1px solid rgba(46,125,90,0.18); }
.price-chip-dark { background: rgba(46,125,90,0.18); color: #7dd4b0; border-color: rgba(125,212,176,0.2); }

/* =====================
   RESOURCES TEASER
   ===================== */
.resources-teaser { background: var(--cream); }
.resources-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.resources-text p { font-size: 15px; color: var(--text-mid); margin-bottom: 26px; line-height: 1.82; }
.resources-cards { display: flex; flex-direction: column; gap: 10px; }
.resource-pill { background: white; border: 1px solid var(--border-warm); border-radius: var(--radius-sm); padding: 13px 18px; font-size: 14px; font-weight: 500; color: var(--text-dark); box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.resource-pill:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

/* =====================
   ABOUT TEASER
   ===================== */
.about-teaser { background: white; }
.about-inner { display: grid; grid-template-columns: auto 1fr; gap: 72px; align-items: center; }
.about-image-placeholder { width: 260px; height: 320px; border-radius: 22px; background: linear-gradient(150deg,var(--blue-pale),var(--blue-ghost)); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 44px; color: var(--blue-light); box-shadow: var(--shadow-md); }
.about-text p { font-size: 15px; color: var(--text-mid); line-height: 1.82; }

/* =====================
   CTA BANNER
   ===================== */
.cta-banner { background: linear-gradient(140deg,var(--blue-deep),#2a6496); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-blob { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(91,175,212,0.18),transparent); top: -200px; right: -80px; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: white; margin-bottom: 14px; }
.cta-inner p { font-size: 16.5px; color: rgba(255,255,255,0.72); margin-bottom: 36px; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--blue-deep); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.52); }
.footer-links { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; min-width: 110px; }
.footer-col strong { color: white; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-col span { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 200px; }
.footer-bottom { padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero { background: linear-gradient(155deg,var(--blue-deep),#2a6496); padding: calc(var(--nav-h) + 56px) 0 76px; text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: white; margin-bottom: 14px; }
.page-hero p { font-size: 16.5px; color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.page-hero .eyebrow { color: rgba(255,255,255,0.58); justify-content: center; display: flex; }

/* =====================
   CONTACT / FORM
   ===================== */
.contact-section { padding: 76px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 1.25rem; color: var(--blue-deep); margin-bottom: 12px; }
.contact-info p { font-size: 14.5px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.8; }
.info-cards { display: flex; flex-direction: column; gap: 12px; }
.info-card { background: var(--blue-ghost); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; display: flex; gap: 13px; align-items: flex-start; }
.info-card-icon { font-size: 20px; margin-top: 2px; }
.info-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.info-card span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.form-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.form-title { font-size: 1.35rem; color: var(--blue-deep); margin-bottom: 5px; }
.form-subtitle { font-size: 13.5px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--blue-ghost);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(74,144,196,0.14); background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; text-align: center; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.checkbox-group input[type="checkbox"] { margin-top: 3px; accent-color: var(--blue-mid); width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-group label { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { color: var(--blue-deep); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 14.5px; }

/* =====================
   TIMELINE (Resources page)
   ===================== */
.timeline-section { padding: 80px 0; }
.timeline-intro { background: var(--blue-ghost); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; margin-bottom: 56px; }
.timeline-intro h3 { font-size: 1.2rem; color: var(--blue-deep); margin-bottom: 10px; }
.timeline-intro p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }

.timeline-block { margin-bottom: 72px; }
.timeline-block-title { font-size: 1.35rem; color: var(--blue-deep); margin-bottom: 6px; padding-bottom: 14px; border-bottom: 2.5px solid var(--blue-pale); }
.timeline-block-intro { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 17px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-pale), var(--border)); border-radius: 2px; }

.tl-item { position: relative; margin-bottom: 28px; }
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  position: absolute; left: -39px; top: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-mid); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; font-weight: 700;
}

.tl-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s; }
.tl-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }

.tl-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--blue-deep); }
.tl-badge { font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.badge-blue { background: var(--blue-pale); color: var(--blue-mid); }
.badge-gold { background: var(--gold-bg); color: var(--gold); }
.badge-green { background: var(--green-light); color: var(--green); }
.tl-body { font-size: 13.5px; color: var(--text-mid); line-height: 1.72; }
.tl-tip { margin-top: 10px; background: var(--blue-ghost); border-left: 3px solid var(--blue-light); padding: 9px 13px; border-radius: 0 6px 6px 0; font-size: 12.5px; color: var(--text-muted); }
.tl-tip strong { color: var(--blue-mid); }

/* Glossary */
.glossary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 14px; }
.glossary-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; }
.glossary-term { font-weight: 700; font-size: 13.5px; color: var(--blue-deep); margin-bottom: 5px; }
.glossary-abbr { font-size: 11px; background: var(--blue-pale); color: var(--blue-mid); padding: 1px 7px; border-radius: 4px; margin-left: 6px; font-weight: 700; }
.glossary-def { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Start Here guide */
.guide-section { padding: 80px 0; background: var(--cream); }
.guide-steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.guide-step { background: white; border: 1px solid var(--border-warm); border-radius: var(--radius); padding: 30px; margin-bottom: 16px; display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: flex-start; transition: box-shadow 0.2s; }
.guide-step:hover { box-shadow: var(--shadow-md); }
.guide-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--blue-mid); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; flex-shrink: 0; }
.guide-step h3 { font-size: 1.05rem; color: var(--blue-deep); margin-bottom: 8px; }
.guide-step p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.guide-step .step-tip { margin-top: 12px; background: var(--gold-bg); border: 1px solid var(--gold-light); border-radius: var(--radius-xs); padding: 10px 14px; font-size: 12.5px; color: #7a5a25; }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-warm); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-family: 'Nunito', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: color 0.2s; }
.faq-question:hover { color: var(--blue-mid); }
.faq-chevron { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-pale); color: var(--blue-mid); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue-mid); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 18px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Disclaimer & utility */
.disclaimer-box { background: var(--gold-bg); border: 1px solid var(--gold-light); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 22px 26px; }
.disclaimer-box strong { display: block; font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.07em; }
.disclaimer-box p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }

.citation-bar { background: var(--blue-ghost); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 20px; font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 48px; }
.citation-bar strong { color: var(--text-mid); }

/* About page */
.about-section { padding: 76px 0; }
.about-content-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; margin-bottom: 72px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { background: var(--blue-ghost); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; text-align: center; }
.value-icon { font-size: 26px; margin-bottom: 10px; }
.value-card strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--blue-deep); margin-bottom: 5px; }
.value-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* HIW page */
.hiw-section { padding: 76px 0; }
.hiw-steps { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.hiw-step { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.hiw-step:last-child { border-bottom: none; }
.hiw-step-left { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hiw-num { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-mid); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; }
.hiw-line { width: 2px; flex: 1; background: var(--border); min-height: 36px; }
.hiw-step:last-child .hiw-line { display: none; }
.hiw-icon { font-size: 26px; margin-bottom: 8px; }
.hiw-step h3 { font-size: 1.15rem; color: var(--blue-deep); margin-bottom: 9px; }
.hiw-step p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }
.hiw-note { background: var(--blue-ghost); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 11px 15px; font-size: 13px; color: var(--text-muted); margin-top: 11px; }

/* Services full */
.services-section { padding: 76px 0; }
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.service-full-card { background: var(--blue-ghost); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px; transition: transform 0.25s, box-shadow 0.25s; }
.service-full-card.featured-card { background: var(--blue-deep); border-color: var(--blue-deep); }
.service-full-card.featured-card h3, .service-full-card.featured-card p { color: rgba(255,255,255,0.9); }
.service-full-card.featured-card .service-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.12); }
.service-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Add-ons */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 16px; margin-bottom: 24px; }
.addon-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; }
.addon-icon { font-size: 22px; margin-bottom: 10px; }
.addon-card h4 { font-size: 14px; font-weight: 700; color: var(--blue-deep); margin-bottom: 5px; }
.addon-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.addon-price { font-size: 13px; font-weight: 700; color: var(--green); }

/* =====================
   ANIMATIONS
   ===================== */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.12s; } .delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; } .delay-4 { animation-delay: 0.48s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; } .reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; } .reveal.delay-4 { transition-delay: 0.4s; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .section-grid, .resources-inner, .about-inner, .about-content-grid, .contact-grid, .services-full-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image-placeholder { width: 100%; height: 220px; }
  .steps-row { flex-direction: column; gap: 14px; }
  .step-connector { width: 2px; height: 28px; margin: 0 auto; background: linear-gradient(to bottom,var(--border),var(--blue-light),var(--border)); }
  .service-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .guide-step { grid-template-columns: 1fr; }
  .guide-step-num { margin-bottom: 4px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); flex-direction: column; padding: 14px 24px 22px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-actions { flex-direction: column; }
  .trust-inner { flex-direction: column; gap: 18px; }
  .trust-divider { width: 36px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 5px; }
  .hiw-step { grid-template-columns: 46px 1fr; gap: 16px; }
  .glossary-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
}

/* =====================
   SERVICES PAGE — tier cards, addons, FAQ
   (moved from inline <style> block in services.html)
   ===================== */
.tier-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; margin:40px 0; }
.tier-card { background:white; border:1.5px solid var(--border); border-radius:var(--radius); padding:32px 28px; display:flex; flex-direction:column; box-shadow:var(--shadow-sm); position:relative; }
.tier-card.featured { background:linear-gradient(155deg,var(--blue-deep) 0%,#2a6496 100%); border-color:transparent; color:white; }
.tier-card.featured p, .tier-card.featured li { color:rgba(255,255,255,0.8); }
.tier-card.featured h3, .tier-card.featured .tier-price { color:white; }
.tier-badge { display:inline-block; font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:4px 12px; border-radius:100px; margin-bottom:16px; width:fit-content; }
.tier-badge.blue { background:var(--blue-pale); color:var(--blue-deep); }
.tier-badge.gold { background:var(--gold); color:white; }
.tier-badge.dark { background:rgba(255,255,255,0.18); color:rgba(255,255,255,0.9); }
.tier-price { font-size:2rem; font-weight:800; color:var(--blue-deep); margin:8px 0 4px; font-family:'Nunito',sans-serif; }
.tier-price span { font-size:1rem; font-weight:500; opacity:0.6; }
.tier-note { font-size:12px; color:var(--text-muted); margin-bottom:18px; }
.tier-card.featured .tier-note { color:rgba(255,255,255,0.5); }
.tier-features { list-style:none; display:flex; flex-direction:column; gap:9px; margin:16px 0 24px; flex:1; }
.tier-features li { font-size:14px; color:var(--text-mid); padding-left:22px; position:relative; line-height:1.55; }
.tier-features li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:800; }
.tier-card.featured .tier-features li { color:rgba(255,255,255,0.85); }
.tier-card.featured .tier-features li::before { color:#6de0a8; }

.addon-section { margin:56px 0; }
.addon-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; margin-top:28px; }
.addon-card { background:var(--blue-ghost); border:1px solid var(--border); border-radius:var(--radius-sm); padding:24px; }
.addon-card h4 { font-size:15px; font-weight:700; color:var(--blue-deep); margin-bottom:7px; font-family:'Nunito',sans-serif; }
.addon-card p { font-size:13.5px; color:var(--text-mid); line-height:1.75; margin-bottom:12px; }
.addon-price { font-weight:800; color:var(--blue-mid); font-size:15px; }

/* FAQ on services page (used on services.html) */
.faq-section { padding:64px 0; background:var(--cream); border-top:1px solid var(--border-warm); }
.faq-item { border-bottom:1px solid var(--border); }
.faq-question { width:100%; text-align:left; background:none; border:none; padding:18px 0; cursor:pointer; display:flex; justify-content:space-between; align-items:flex-start; gap:16px; font-family:'Nunito',sans-serif; font-size:15.5px; font-weight:700; color:var(--text-dark); transition:color 0.18s; }
.faq-question:hover { color:var(--blue-mid); }
.faq-toggle { width:24px; height:24px; border-radius:50%; background:var(--blue-pale); color:var(--blue-mid); display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; transition:transform 0.25s,background 0.18s; margin-top:2px; }
.faq-item.open .faq-toggle { transform:rotate(45deg); background:var(--blue-mid); color:white; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease,padding 0.25s; font-size:14.5px; color:var(--text-mid); line-height:1.85; }
.faq-item.open .faq-answer { max-height:500px; padding-bottom:20px; }

/* =====================
   RESOURCES PAGE — hero, timeline, glossary, cards, FAQ
   (moved from inline <style> block in resources.html)
   FAQ rules scoped to .resource-section so they don't conflict
   with the services-page .faq-section variant above.
   ===================== */
.resource-hero {
  background: linear-gradient(145deg, var(--blue-deep) 0%, #1e5a96 60%, #2a7ab8 100%);
  padding: calc(var(--nav-h) + 64px) 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.resource-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none; /* fixes "Get Personalized Help" button — overlay was blocking clicks */
}
.resource-hero .container { position: relative; z-index: 1; }
.resource-hero h1 {
  color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px;
}
.resource-hero p {
  color: rgba(255,255,255,0.8); font-size: 17px; max-width: 580px; margin: 0 auto 28px;
  line-height: 1.8;
}

/* Quick nav pills */
.quick-nav {
  background: white; border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 90;
  padding: 14px 0; overflow-x: auto;
}
.quick-nav-inner {
  display: flex; gap: 10px; align-items: center;
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.quick-nav a {
  white-space: nowrap; padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  border: 1.5px solid var(--border); transition: all 0.18s;
}
.quick-nav a:hover { background: var(--blue-pale); color: var(--blue-deep); border-color: var(--blue-light); }

/* Sections */
.resource-section { padding: 72px 0; }
.resource-section + .resource-section { border-top: 1px solid var(--border); }
.resource-section.alt-bg { background: var(--blue-ghost); }
.resource-section.gold-bg {
  background: var(--gold-bg);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.section-intro { max-width: 680px; margin-bottom: 48px; }
.section-intro p { color: var(--text-mid); font-size: 16px; line-height: 1.85; }

/* Timeline */
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: '';
  position: absolute; left: 18px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--blue-light), var(--blue-pale));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -38px; top: 4px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-mid); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  box-shadow: 0 0 0 4px var(--blue-pale);
}
.timeline-item h3 {
  font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 8px;
}
.timeline-item p { color: var(--text-mid); font-size: 15px; line-height: 1.85; }
.timeline-tag {
  display: inline-block; margin-top: 10px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--blue-pale); color: var(--blue-deep);
}
.timeline-tag.gold {
  background: var(--gold-bg); color: var(--gold);
  border: 1px solid var(--gold-light);
}

/* Grid cards */
.resource-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.resource-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: var(--shadow-md); }
.resource-card .rc-icon { font-size: 28px; margin-bottom: 14px; }
.resource-card h3 {
  font-size: 18px; color: var(--blue-deep); margin-bottom: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
}
.resource-card p { color: var(--text-mid); font-size: 14.5px; line-height: 1.8; }

/* Glossary */
.glossary-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px; margin-top: 36px;
}
.glossary-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 22px;
}
.glossary-term {
  font-weight: 800; color: var(--blue-deep); font-size: 14.5px;
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.glossary-term .abbr {
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  background: var(--blue-pale); color: var(--blue-mid);
  border-radius: 100px; letter-spacing: 0.04em;
}
.glossary-def { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }

/* FAQ — scoped to .resource-section to avoid clashing with services page */
.resource-section .faq-list { margin-top: 36px; }
.resource-section .faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.resource-section .faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--text-dark); transition: color 0.18s;
}
.resource-section .faq-question:hover { color: var(--blue-mid); }
.resource-section .faq-question span.q-text { flex: 1; text-align: left; }
.resource-section .faq-toggle {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; flex-shrink: 0;
  transition: transform 0.25s, background 0.18s;
  margin-top: 2px;
}
.resource-section .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--blue-mid); color: white; }
.resource-section .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 15px; color: var(--text-mid); line-height: 1.85;
}
.resource-section .faq-item.open .faq-answer { max-height: 600px; padding-bottom: 22px; }

/* Callout box */
.info-box {
  border-radius: var(--radius-sm); padding: 22px 26px;
  margin-top: 28px; font-size: 14.5px; line-height: 1.8;
}
.info-box.blue {
  background: var(--blue-ghost); border: 1px solid var(--border);
  color: var(--text-mid);
}
.info-box.gold {
  background: var(--gold-bg); border: 1px solid var(--gold-light);
  color: var(--text-mid);
}
.info-box strong { color: var(--blue-deep); }

/* Steps */
.steps-list { margin-top: 32px; }
.step-row {
  display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start;
}
.step-row:last-child { margin-bottom: 0; }
.step-badge {
  min-width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  color: white; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(42,100,150,0.25); flex-shrink: 0;
  margin-top: 2px;
}
.step-body h4 {
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 6px;
}
.step-body p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }

/* Source note */
.source-note {
  font-size: 12px; color: var(--text-muted); margin-top: 24px;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-style: italic;
}

@media (max-width: 640px) {
  .timeline { padding-left: 36px; }
  .timeline-dot { left: -28px; width: 24px; height: 24px; font-size: 11px; }
  .lead-magnet-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* Search bar focus state */
#resourceSearch:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: white;
  box-shadow: 0 0 0 4px rgba(42,100,150,0.10);
}
