/* =========================================================================
   Alicia's Family Child Care - design system
   Reverse-engineered to match public/reference/target.png
   Fredoka (headings) + Nunito (body). Soft pastel, hairline borders,
   gentle shadows, high density. No build step.
   ========================================================================= */

:root {
  /* palette (from target) */
  --navy:      #173B68;
  --navy-soft: #3A5578;
  --ink:       #4A5A72;
  --coral:     #EF5774;
  --coral-dk:  #E0466A;
  --orange:    #F39B51;
  --yellow:    #F4C957;
  --green:     #74A95A;
  --sky:       #68B6D8;
  --purple:    #8E62B6;

  --offwhite:  #FFFCF8;
  --cream:     #FFF8EF;
  --pink:      #FFF0F3;
  --mint:      #EFF9F2;
  --pastel-blue: #EFF8FC;
  --lavender:  #F6F0FC;

  /* program card fills (sampled) */
  --prog-pink: #FDEAEC;
  --prog-cream:#FDF3E5;
  --prog-mint: #E9F5F1;
  --prog-lav:  #F1E9FD;

  --line:   rgba(23,59,104,.08);
  --line-2: rgba(23,59,104,.12);
  --shadow:    0 8px 30px rgba(35,39,70,.08);
  --shadow-sm: 0 4px 16px rgba(35,39,70,.06);
  --shadow-lg: 0 16px 44px rgba(35,39,70,.10);

  --maxw: 1280px;
  --head: "Fredoka", "Baloo 2", system-ui, sans-serif;
  --body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--head); font-weight: 600; color: var(--navy); margin: 0; line-height: 1.1; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 3.5vw, 40px); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:absolute; left:-999px; top:8px; z-index:200; background:var(--navy); color:#fff; padding:10px 18px; border-radius:999px; text-decoration:none; font-weight:700; }
.skip-link:focus { left:12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(142,98,182,.6); outline-offset: 2px; border-radius: 6px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family: var(--head); font-weight:600; font-size:1.02rem; line-height:1;
  text-decoration:none; padding:14px 26px; border-radius:999px; cursor:pointer;
  border:1px solid transparent; transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.btn svg { width:18px; height:18px; }
.btn-coral { background:var(--coral); color:#fff; box-shadow:0 8px 20px rgba(239,87,116,.28); }
.btn-coral:hover { background:var(--coral-dk); transform:translateY(-2px); box-shadow:0 12px 26px rgba(239,87,116,.34); }
.btn-white { background:#fff; color:var(--navy); border-color:var(--line-2); box-shadow:var(--shadow-sm); }
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-white .heart { color:var(--coral); }
.btn-blue   { background:var(--sky);    color:#0B3A52; box-shadow:0 8px 20px rgba(104,182,216,.28); }
.btn-green  { background:var(--green);  color:#0C3A1C; box-shadow:0 8px 20px rgba(116,169,90,.26); }
.btn-yellow { background:var(--yellow); color:var(--navy); box-shadow:0 8px 20px rgba(244,201,87,.30); }
.btn-purple { background:var(--purple); color:#fff; box-shadow:0 8px 20px rgba(142,98,182,.26); }
.btn-blue:hover, .btn-green:hover, .btn-yellow:hover, .btn-purple:hover { transform:translateY(-2px); box-shadow:var(--shadow); filter:brightness(1.03); }

/* ---------------- Header ---------------- */
.site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(255,252,248,.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap { display:flex; align-items:center; gap:22px; min-height:74px; }
.logo-link { display:flex; align-items:center; gap:14px; text-decoration:none; }
.logo-link img { height:52px; width:auto; }
.logo-tag {
  font-family:var(--head); font-weight:500; font-size:.72rem; line-height:1.15;
  color:var(--navy-soft); max-width:150px; opacity:.85;
}
.main-nav { margin-left:auto; }
.main-nav ul { list-style:none; display:flex; align-items:center; gap:30px; margin:0; padding:0; }
.main-nav a {
  font-family:var(--head); font-weight:500; font-size:1.04rem; color:var(--navy);
  text-decoration:none; padding:6px 2px; position:relative; transition:color .12s ease;
}
.main-nav a:hover { color:var(--coral); }
.main-nav a[aria-current="page"] { color:var(--coral); }
.main-nav a[aria-current="page"]::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:3px;
  background:var(--coral); border-radius:999px;
}
.header-cta { margin-left:6px; }
.header-cta .btn { padding:12px 22px; }

.nav-toggle {
  display:none; margin-left:auto; background:var(--navy); color:#fff; border:0;
  font-family:var(--head); font-weight:500; padding:10px 16px; border-radius:999px; cursor:pointer;
}

/* ---------------- Hero ---------------- */
.hero { background:var(--offwhite); position:relative; overflow:hidden; }
.hero .wrap {
  display:grid; grid-template-columns:43% 57%; align-items:center;
  gap:28px; padding-block: clamp(18px,2.4vw,34px);
}
.hero-deco { position:absolute; pointer-events:none; z-index:0; }
.hero-deco.sun { top:60px; left:6px; width:58px; }
.hero-deco.heart, .hero-deco.star, .hero-deco.spark { font-family:var(--head); line-height:1; }
.hero-deco.heart { left:26px; top:172px; font-size:24px; color:var(--coral); }
.hero-deco.star  { left:12px; top:242px; font-size:26px; color:var(--yellow); }
.hero-deco.spark { right:2%; top:70px; font-size:26px; color:var(--sky); opacity:.7; }
.hero-left, .hero-art { position:relative; z-index:1; }
.hero-left { padding-right:10px; animation:rise .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes rise { from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:none;} }

.headline {
  font-family:var(--head); font-weight:600; letter-spacing:-.015em;
  font-size:clamp(2.3rem,3.4vw,3.3rem); line-height:1.06; margin:0 0 14px;
  white-space:nowrap;
}
.headline .l1 { color:var(--navy); }
.headline .grow   { color:var(--orange); }
.headline .amp    { color:var(--coral); }
.headline .hearts { color:var(--coral); }
.headline .thrive { color:var(--purple); }

.hero-sub { font-size:1.06rem; color:var(--navy-soft); max-width:34ch; margin:0 0 22px; font-weight:600; }
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:18px; }
.hero-cta .btn { font-size:1.06rem; padding:15px 28px; }

.trust-row { display:flex; flex-wrap:wrap; gap:22px; align-items:center; }
.trust-item { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.92rem; color:var(--navy); }
.trust-item svg { width:18px; height:18px; }

.hero-art { position:relative; }
.hero-art img { width:100%; height:auto; border-radius:24px; display:block; }

/* ---------------- Feature strip ---------------- */
.features { background:var(--offwhite); padding-block: 0 28px; }
.feat-row {
  display:grid; grid-template-columns:repeat(6,1fr); gap:14px;
}
.feat-card {
  display:flex; align-items:center; gap:12px;
  background:var(--cream); border:1px solid var(--line); border-radius:18px;
  padding:14px 14px; box-shadow:var(--shadow-sm);
}
.feat-card img { width:44px; height:44px; object-fit:contain; flex:none; }
.feat-card h3 { font-size:.92rem; font-weight:600; line-height:1.12; }
.feat-card p { margin:2px 0 0; font-size:.76rem; color:var(--navy-soft); line-height:1.2; }

/* ---------------- Why families ---------------- */
.why { background:var(--cream); position:relative; overflow:hidden; padding-block: clamp(34px,4vw,52px); }
.why-sign, .why-blob { position:absolute; top:50%; transform:translateY(-50%); pointer-events:none; }
.why-sign { left:0; width:150px; }
.why-blob { right:8px; width:172px; }
.why-head { text-align:center; margin-bottom:30px; position:relative; z-index:1; }
.why-head h2 { font-size:clamp(1.7rem,3vw,2.25rem); font-weight:600; }
.why-head h2 .name { color:var(--coral); }
.why-head h2 .heart { color:var(--coral); }
.why-head p { margin:8px 0 0; color:var(--navy-soft); font-weight:600; }
.why-row {
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px;
  max-width:1080px; margin-inline:auto; position:relative; z-index:1;
}
.why-item { display:flex; gap:12px; align-items:flex-start; }
.why-ic { flex:none; width:52px; height:52px; border-radius:50%; background:#fff; display:grid; place-items:center; border:2.5px solid var(--coral); }
.why-ic svg { width:26px; height:26px; }
.why-ic.pink   { border-color:var(--coral); color:var(--coral); }
.why-ic.blue   { border-color:var(--sky); color:var(--sky); }
.why-ic.yellow { border-color:var(--yellow); color:var(--yellow); }
.why-ic.green  { border-color:var(--green); color:var(--green); }
.why-ic.purple { border-color:var(--purple); color:var(--purple); }
.why-item h3 { font-size:.98rem; font-weight:600; line-height:1.1; }
.why-item p { margin:3px 0 0; font-size:.8rem; color:var(--navy-soft); line-height:1.25; }

/* ---------------- Programs ---------------- */
.programs { background:var(--offwhite); padding-block: clamp(30px,3.5vw,48px); }
.prog-head { display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:20px; flex-wrap:wrap; }
.prog-head h2 { font-size:clamp(1.6rem,2.8vw,2.1rem); font-weight:600; }
.prog-head h2 .heart { color:var(--coral); }
.prog-head .badges { font-size:.9rem; color:var(--sky); font-weight:700; }
.prog-head .badges span { color:var(--navy-soft); margin-inline:6px; }
.prog-row { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.prog-card {
  position:relative; display:flex; align-items:center; gap:8px;
  border-radius:22px; padding:14px 16px 14px 8px; border:1px solid var(--line);
  box-shadow:var(--shadow-sm); min-height:112px;
}
.prog-card.pink { background:var(--prog-pink); }
.prog-card.cream{ background:var(--prog-cream); }
.prog-card.mint { background:var(--prog-mint); }
.prog-card.lav  { background:var(--prog-lav); }
.prog-card img { width:96px; height:auto; flex:none; }
.prog-body { padding-right:34px; }
.prog-body h3 { font-size:1.02rem; font-weight:600; line-height:1.06; }
.prog-body .age { font-size:.8rem; color:var(--navy-soft); font-weight:700; margin:2px 0 6px; }
.prog-body p { margin:0; font-size:.78rem; color:var(--navy-soft); line-height:1.25; }
.prog-arrow {
  position:absolute; right:12px; top:50%; transform:translateY(-50%);
  width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--line-2);
  display:grid; place-items:center; box-shadow:var(--shadow-sm); text-decoration:none; color:var(--navy);
  transition:transform .14s ease;
}
.prog-arrow:hover { transform:translateY(-50%) scale(1.08); color:var(--coral); }
.prog-arrow svg { width:16px; height:16px; }

/* ---------------- Testimonials ---------------- */
.tst { background:var(--offwhite); padding-block: clamp(26px,3vw,40px); }
.tst .wrap { display:grid; grid-template-columns:220px 1fr; gap:26px; align-items:center; }
.tst-head h2 { font-size:clamp(1.5rem,2.6vw,1.95rem); font-weight:600; }
.tst-head h2 .heart { color:var(--coral); }
.tst-head p { margin:8px 0 0; color:var(--navy-soft); font-weight:600; font-size:.95rem; }
.tst-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.tst-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:16px 18px; box-shadow:var(--shadow-sm); display:flex; gap:14px; }
.tst-por { width:52px; height:52px; border-radius:50%; object-fit:cover; flex:none; }
.tst-card .quote { font-size:.84rem; color:var(--ink); font-style:italic; line-height:1.35; margin:0 0 8px; }
.tst-card .name { font-family:var(--head); font-weight:600; color:var(--navy); font-size:.9rem; }
.stars { color:var(--yellow); font-size:.9rem; letter-spacing:1px; }

/* ---------------- Enrollment CTA ---------------- */
.cta { background:var(--cream); position:relative; overflow:hidden; padding-block: clamp(32px,3.6vw,50px); }
.cta-rainbow, .cta-sun { position:absolute; bottom:0; pointer-events:none; }
.cta-rainbow { left:0; width:130px; }
.cta-sun { right:0; width:135px; bottom:6px; }
.cta .wrap { display:grid; grid-template-columns:1.15fr .62fr 1.5fr; gap:26px; align-items:center; position:relative; z-index:1; }
.cta-left h2 { font-size:clamp(1.55rem,2.5vw,2rem); font-weight:600; color:var(--coral); white-space:nowrap; }
.cta-left h2 .heart { color:var(--coral); }
.cta-left p { margin:8px 0 16px; color:var(--navy-soft); font-weight:600; }
.cta-phones { display:flex; flex-direction:column; gap:8px; }
.cta-phones a { display:inline-flex; align-items:center; gap:10px; text-decoration:none; font-family:var(--head); font-weight:600; font-size:1.5rem; }
.phone1 { color:var(--coral); } .phone2 { color:var(--sky); }
.cta-phones .pico { width:34px; height:34px; border-radius:50%; display:grid; place-items:center; color:#fff; }
.cta-phones .pico.c1 { background:var(--coral); } .cta-phones .pico.c2 { background:var(--sky); }
.cta-phones .pico svg { width:18px; height:18px; }

.cta-mid { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.cta-mid li { display:flex; align-items:center; gap:10px; font-weight:700; color:var(--navy); font-size:1rem; }
.cta-mid .mico { width:20px; height:20px; }

.cta-form { background:#fff; border:1px solid var(--line); border-radius:20px; padding:20px 22px; box-shadow:var(--shadow); }
.cta-form h3 { font-size:1.15rem; font-weight:600; margin-bottom:14px; }
.cta-form .frow { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-bottom:10px; }
.cta-form .frow2 { display:grid; grid-template-columns:1fr auto; gap:10px; align-items:stretch; }
.cta-form input, .cta-form textarea {
  font-family:var(--body); font-weight:600; font-size:.9rem; color:var(--navy);
  background:var(--offwhite); border:1px solid var(--line-2); border-radius:12px; padding:11px 13px; width:100%;
}
.cta-form textarea { resize:vertical; min-height:44px; }
.cta-form input::placeholder, .cta-form textarea::placeholder { color:#9aa3b2; font-weight:600; }
.cta-form .btn { white-space:nowrap; padding:12px 20px; }
.form-status { min-height:1em; font-size:.82rem; font-weight:700; margin:6px 0 0; }

/* ---------------- Footer ---------------- */
.site-footer { background:#fff; border-top:1px solid var(--line); padding-block:22px; }
.site-footer .wrap { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.site-footer .f-logo { height:34px; width:auto; }
.site-footer nav ul { list-style:none; display:flex; gap:22px; margin:0; padding:0; }
.site-footer nav a { font-family:var(--head); font-weight:500; color:var(--navy); text-decoration:none; font-size:.95rem; }
.site-footer nav a:hover { color:var(--coral); }
.site-footer .f-badges { color:var(--navy-soft); font-size:.85rem; font-weight:700; margin-left:auto; }
.site-footer .f-social { display:flex; gap:10px; }
.site-footer .f-social a { width:30px; height:30px; border-radius:50%; background:var(--pastel-blue); display:grid; place-items:center; color:var(--sky); }
.site-footer .f-social svg { width:16px; height:16px; }
.site-footer .f-copy { flex-basis:100%; border-top:1px solid var(--line); margin-top:6px; padding-top:12px; text-align:center; font-size:.82rem; color:var(--navy-soft); }

/* =========================================================================
   Legacy interior-page components (programs/about/enrollment) - softened
   ========================================================================= */
section.page-hero { padding-block: clamp(26px,4vw,48px);
  background: radial-gradient(circle at 12% 12%, rgba(244,201,87,.14), transparent 42%),
              radial-gradient(circle at 92% 30%, rgba(142,98,182,.10), transparent 46%), var(--offwhite); }
.page-hero h1 { font-size:clamp(2rem,5vw,3rem); }
.page-hero .lead { font-size:1.1rem; max-width:60ch; margin-top:12px; color:var(--navy-soft); }
.kicker { display:inline-block; font-family:var(--head); font-weight:600; letter-spacing:.1em; text-transform:uppercase; font-size:.76rem; color:#fff; background:var(--coral); padding:6px 15px; border-radius:999px; margin-bottom:12px; }
.section-head { text-align:center; margin-bottom:34px; }
.section-head h2 { font-size:clamp(1.7rem,4vw,2.5rem); }
.section-head p { max-width:52ch; margin:10px auto 0; color:var(--navy-soft); }
.breadcrumbs { padding:14px 0 0; font-size:.9rem; font-weight:700; }
.breadcrumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:8px; margin:0; padding:0; }
.breadcrumbs li::after { content:"›"; margin-left:8px; color:var(--purple); }
.breadcrumbs li:last-child::after { content:""; }
.breadcrumbs a { color:var(--coral); text-decoration:none; }
.breadcrumbs [aria-current="page"] { color:var(--navy); }
section { padding-block: clamp(30px,4.5vw,56px); }
.split { display:grid; grid-template-columns:1.4fr .9fr; gap:clamp(22px,4vw,44px); align-items:start; }
.prose { max-width:70ch; } .prose.wide { max-width:80ch; }
.prose h2 { font-size:clamp(1.4rem,3.5vw,2rem); margin-top:1.5em; }
.prose h3 { font-size:1.2rem; color:var(--coral-dk); margin-top:1.2em; }
.prose p { margin:.7em 0; } .prose ul { padding-left:1.2em; } .prose li { margin:.3em 0; }
.prose a { color:var(--coral-dk); font-weight:700; }
.info-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:24px; box-shadow:var(--shadow-sm); }
.info-card h3 { font-size:1.2rem; margin-bottom:10px; }
.info-list { list-style:none; margin:0 0 8px; padding:0; }
.info-list li { display:flex; align-items:flex-start; gap:10px; padding:8px 0; border-bottom:1px dashed var(--line-2); }
.info-list li:last-child { border-bottom:0; }
.info-list .ico { flex:none; width:26px; height:26px; border-radius:8px; display:grid; place-items:center; color:#fff; font-size:.85rem; }
.info-card .phone-links { display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.info-card .phone-links a { text-decoration:none; font-family:var(--head); font-weight:600; }
.bg-coral{background:var(--coral);} .bg-yellow{background:var(--yellow);} .bg-green{background:var(--green);} .bg-blue{background:var(--sky);} .bg-purple{background:var(--purple);}
.cta-band { background:var(--cream); color:var(--navy); text-align:center; }
.cta-band.coral { background:var(--pink); }
.cta-band h2 { font-size:clamp(1.9rem,6vw,3rem); color:var(--navy); }
.cta-band .lead { max-width:48ch; margin:12px auto 24px; font-size:1.08rem; color:var(--navy-soft); }
.cta-band .cta-phones { display:flex; flex-direction:row; flex-wrap:wrap; gap:16px; justify-content:center; margin-bottom:24px; }
.chips { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.chip { background:#fff; border:1px solid var(--line-2); color:var(--navy); font-family:var(--head); font-weight:600; padding:8px 18px; border-radius:999px; font-size:.95rem; }
.loc-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; }
.loc-card { display:block; text-decoration:none; color:inherit; background:#fff; border:1px solid var(--line); border-radius:20px; padding:24px; box-shadow:var(--shadow-sm); transition:transform .15s ease; }
.loc-card:hover { transform:translateY(-4px); }
.loc-card .pin { font-size:1.9rem; } .loc-card h3 { font-size:1.35rem; margin:8px 0 6px; } .loc-card p { margin:0 0 12px; font-size:.94rem; color:var(--navy-soft); }
.loc-card .go { font-family:var(--head); font-weight:600; color:var(--coral-dk); }
.placeholder-note { background:#FFF7E6; border:1px dashed var(--line-2); border-radius:14px; padding:14px 18px; font-size:.92rem; }
.placeholder-note strong { color:var(--coral-dk); }
.form-card { background:#fff; border:1px solid var(--line); border-radius:24px; padding:clamp(20px,4vw,34px); box-shadow:var(--shadow); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:flex; flex-direction:column; gap:6px; } .field.full { grid-column:1/-1; }
.field label { font-family:var(--head); font-weight:600; font-size:.95rem; } .field .req { color:var(--coral-dk); }
.field input, .field select, .field textarea { font-family:var(--body); font-weight:600; font-size:1rem; color:var(--navy); background:var(--offwhite); border:1px solid var(--line-2); border-radius:12px; padding:12px 14px; }
.field textarea { resize:vertical; min-height:110px; }
.faq details { background:#fff; border:1px solid var(--line); border-radius:14px; padding:2px 20px; margin-bottom:12px; box-shadow:var(--shadow-sm); }
.faq summary { font-family:var(--head); font-weight:600; font-size:1.08rem; cursor:pointer; padding:14px 0; list-style:none; display:flex; justify-content:space-between; gap:12px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color:var(--coral-dk); font-size:1.5rem; }
.faq details[open] summary::after { content:"-"; }
.faq details > p { margin:0 0 16px; }
/* legacy footer used by interior pages */
footer.legacy { background:var(--navy); color:var(--cream); padding-block:44px; }
footer.legacy a { color:var(--cream); text-decoration:none; } footer.legacy a:hover { color:var(--yellow); }

/* enrollment "how it works" */
section[id] { scroll-margin-top: 88px; }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.step-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:20px 18px; box-shadow:var(--shadow-sm); }
.step-num { width:36px; height:36px; border-radius:50%; color:#fff; font-family:var(--head); font-weight:600; font-size:1.1rem; display:grid; place-items:center; margin-bottom:10px; }
.step-num.c1{background:var(--coral);} .step-num.c2{background:var(--sky);} .step-num.c3{background:var(--green);} .step-num.c4{background:var(--purple);}
.step-card h3 { font-size:1.05rem; }
.step-card p { margin:5px 0 0; font-size:.86rem; color:var(--navy-soft); line-height:1.35; }
.enroll-info-2 { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:18px; }

/* ---------------- Responsive ---------------- */
@media (max-width:1080px){
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .enroll-info-2 { grid-template-columns:1fr; }
  .feat-row { grid-template-columns:repeat(3,1fr); }
  .why-row { grid-template-columns:repeat(3,1fr); row-gap:24px; }
  .prog-row { grid-template-columns:repeat(2,1fr); }
  .why-sign,.why-blob { display:none; }
}
@media (max-width:900px){
  .hero .wrap { grid-template-columns:1fr; }
  .hero-art { order:-1; max-width:620px; margin-inline:auto; }
  .cta .wrap { grid-template-columns:1fr; }
  .tst .wrap { grid-template-columns:1fr; }
  .tst-cards { grid-template-columns:1fr; }
  .split { grid-template-columns:1fr; }
  .hero-deco { display:none; }
  .main-nav, .header-cta { display:none; }
  .main-nav.open { display:block; position:absolute; top:74px; left:0; right:0; background:#fff; border-bottom:1px solid var(--line); padding:12px 0; }
  .main-nav.open ul { flex-direction:column; gap:6px; align-items:flex-start; padding-inline:24px; }
  .nav-toggle { display:inline-flex; }
}
@media (max-width:680px){
  .steps-grid { grid-template-columns:1fr; }
  .feat-row { grid-template-columns:repeat(2,1fr); }
  .why-row { grid-template-columns:1fr 1fr; }
  .prog-row { grid-template-columns:1fr; }
  .tst-cards { grid-template-columns:1fr; }
  .cta-form .frow { grid-template-columns:1fr; }
  .cta-form .frow2 { grid-template-columns:1fr; }
  .headline { font-size:2.4rem; }
}
@media (prefers-reduced-motion: reduce){ .hero-left{animation:none;} html{scroll-behavior:auto;} .btn,.prog-arrow,.loc-card{transition:none;} }
