/* ============================================================
   Nova Skills Driving School — design system
   Palette: deep maritime navy + warm signal amber, on off-white
   One accent (amber). One radius scale. Light theme, locked.
   ============================================================ */

/* ---------- Fonts (self-hosted-style via system fallback + Google preconnect in <head>) ---------- */

:root {
  /* Neutrals — cool maritime slate, not warm beige */
  --ink:        #0d1b2a;   /* near-black navy, primary text + dark sections */
  --ink-2:      #16283d;   /* elevated dark surface */
  --slate:      #43566b;   /* secondary text */
  --slate-2:    #6b7c91;   /* muted text */
  --line:       #e2e7ee;   /* hairlines on light */
  --line-dark:  rgba(255,255,255,.12);
  --paper:      #ffffff;   /* base surface */
  --paper-2:    #f4f7fb;   /* tinted section */
  --paper-3:    #eef3f9;

  /* Accent — warm signal amber (road / caution / energy). Locked. */
  --amber:      #f5a623;
  --amber-deep: #e08a00;
  --amber-soft: #fff4de;

  /* Support */
  --green:      #1f9d6b;   /* used only for real "pass/success" semantics */

  --radius-lg: 22px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 2px 8px rgba(13,27,42,.05);
  --shadow-md: 0 6px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 24px 60px rgba(13,27,42,.16);
  --shadow-amber: 0 12px 30px rgba(224,138,0,.28);

  --maxw: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font-display: "Space Grotesk", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px;
}
.eyebrow.center-line { justify-content: center; }
.h-xl { font-size: clamp(2.4rem, 5.2vw, 4rem); }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--slate); max-width: 62ch; }
.muted { color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--amber); color: #3a2500; box-shadow: var(--shadow-amber); }
.btn-primary:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--ink), var(--ink-2));
  display: grid; place-items: center; position: relative;
  box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); margin-top: 2px; }
.brand .brand-name { line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 15.5px;
  color: var(--slate); padding: 9px 15px; border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-links a.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.nav-phone svg { width: 17px; height: 17px; color: var(--amber-deep); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: .3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px 14px 7px 8px; font-size: 14px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.hero-badge .stars { color: var(--amber); letter-spacing: 1px; font-size: 13px; }
.hero-badge b { color: var(--ink); }
.hero-badge span { color: var(--slate-2); font-weight: 500; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.1rem); }
.hero h1 .hl { color: var(--amber-deep); position: relative; white-space: nowrap; }
.hero p.lead { margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.hero-trust .t { display: flex; align-items: center; gap: 11px; }
.hero-trust .t svg { width: 22px; height: 22px; color: var(--amber-deep); flex: none; }
.hero-trust .t b { font-family: var(--font-display); font-size: 16px; display: block; line-height: 1.2; }
.hero-trust .t small { color: var(--slate-2); font-size: 13.5px; }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4; background: var(--paper-3);
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 16px 18px; display: flex; align-items: center; gap: 13px;
}
.hero-float.f1 { left: -26px; top: 40px; }
.hero-float.f2 { right: -22px; bottom: 44px; }
.hero-float .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero-float .ic.amber { background: var(--amber-soft); color: var(--amber-deep); }
.hero-float .ic.navy { background: var(--ink); color: #fff; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float b { font-family: var(--font-display); font-size: 22px; display: block; line-height: 1; }
.hero-float small { color: var(--slate-2); font-size: 13px; }
.hero-blob { position: absolute; z-index: -1; width: 60%; height: 120%; right: -10%; top: -10%; background: radial-gradient(circle at 60% 40%, rgba(245,166,35,.14), transparent 62%); pointer-events: none; }

/* ---------- Marquee trust strip ---------- */
.strip { background: var(--ink); color: #fff; padding: 20px 0; }
.strip-track { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.strip-item { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 500; font-size: 15px; color: rgba(255,255,255,.85); }
.strip-item svg { width: 20px; height: 20px; color: var(--amber); flex: none; }

/* ---------- Section header ---------- */
.sec-head { max-width: 62ch; }
.sec-head.center { margin: 0 auto; }
.sec-head p { margin-top: 16px; }

/* ---------- Programs grid (cards) ---------- */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.prog {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.prog:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.prog .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; margin-bottom: 20px; transition: background .3s, color .3s; }
.prog:hover .ic { background: var(--amber); color: #3a2500; }
.prog .ic svg { width: 27px; height: 27px; }
.prog h3 { font-size: 1.28rem; margin-bottom: 9px; }
.prog p { color: var(--slate); font-size: 15.5px; }
.prog .arrow { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--amber-deep); }
.prog .arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.prog:hover .arrow svg { transform: translateX(4px); }
.prog.feature { grid-column: span 1; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { margin-top: 26px; display: grid; gap: 15px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; flex: none; margin-top: 1px; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist b { font-family: var(--font-display); font-weight: 600; }
.checklist span { color: var(--slate); font-size: 15.5px; }
.checklist .ci b { display: block; }

/* ---------- Stats band ---------- */
.stats { background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: #fff; border-radius: var(--radius-lg); padding: 52px 44px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); display: block; line-height: 1; letter-spacing: -.03em; }
.stat b .u { color: var(--amber); }
.stat small { display: block; margin-top: 10px; color: rgba(255,255,255,.72); font-size: 14.5px; }
.stat + .stat { position: relative; }

/* ---------- Pricing / packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; align-items: stretch; }
.pkg {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pkg.popular { border: 1.5px solid var(--amber); box-shadow: var(--shadow-amber); }
.pkg .tag { position: absolute; top: -13px; left: 32px; background: var(--amber); color: #3a2500; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); }
.pkg h3 { font-size: 1.35rem; }
.pkg .kind { color: var(--slate-2); font-size: 14px; font-weight: 500; margin-top: 4px; }
.pkg .price { margin: 22px 0 6px; font-family: var(--font-display); }
.pkg .price .amt { font-size: 2.7rem; font-weight: 700; letter-spacing: -.03em; }
.pkg .price .cur { font-size: 1.3rem; font-weight: 600; vertical-align: top; color: var(--slate); }
.pkg .price small { display: block; color: var(--slate-2); font-size: 13.5px; font-family: var(--font-body); font-weight: 400; }
.pkg .feats { margin: 22px 0 26px; display: grid; gap: 13px; border-top: 1px solid var(--line); padding-top: 22px; }
.pkg .feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--slate); }
.pkg .feats svg { width: 18px; height: 18px; color: var(--amber-deep); flex: none; margin-top: 2px; }
.pkg .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 15px; width: 42px; height: 42px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.step.on .n { background: var(--amber); color: #3a2500; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 15px; }
.step-line { position: absolute; top: 29px; left: 54px; right: -11px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px); }
.step:last-child .step-line { display: none; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; }
.tst .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.tst p { color: var(--ink); font-size: 16.5px; line-height: 1.62; }
.tst .who { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 13px; }
.tst .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 17px; flex: none; }
.tst .who b { font-family: var(--font-display); font-size: 15.5px; display: block; }
.tst .who small { color: var(--slate-2); font-size: 13.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq-q .pm { width: 32px; height: 32px; border-radius: 9px; background: var(--paper-2); display: grid; place-items: center; flex: none; transition: background .3s, transform .3s; }
.faq-q .pm svg { width: 17px; height: 17px; color: var(--amber-deep); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .pm { background: var(--amber); }
.faq-item.open .faq-q .pm svg { color: #3a2500; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--slate); font-size: 16px; max-width: 68ch; }
.faq-a-inner a { color: var(--amber-deep); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--ink), #0a2540); color: #fff; border-radius: var(--radius-lg); padding: 62px 56px; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(245,166,35,.22), transparent 66%); }
.cta-band .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr auto; gap: 34px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 14px; max-width: 52ch; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 72px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255,255,255,.5); }
.foot-about { margin-top: 20px; font-size: 15px; max-width: 34ch; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s; }
.foot-social a:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }
.foot-social a:hover svg { color: #3a2500; }
.foot-social svg { width: 19px; height: 19px; color: #fff; }
.foot-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-weight: 600; }
.foot-col a, .foot-col p { display: block; color: rgba(255,255,255,.72); font-size: 15px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--amber); }
.foot-contact .ln { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: 15px; }
.foot-contact .ln svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 3px; }
.foot-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.55); }
.foot-bottom a:hover { color: var(--amber); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--ink), #0a2036); color: #fff; padding: 96px 0 84px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: -60px; bottom: -120px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(245,166,35,.16), transparent 66%); }
.page-hero .eyebrow { color: var(--amber); }
.page-hero .eyebrow::before { background: var(--amber); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.6rem); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.78); margin-top: 18px; position: relative; z-index: 1; }
.crumbs { position: relative; z-index: 1; display: flex; gap: 9px; align-items: center; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.crumbs a:hover { color: var(--amber); }
.crumbs .sep { opacity: .5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; margin-bottom: 20px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--font-display); font-size: 15px; display: block; margin-bottom: 3px; }
.info-row a, .info-row p { color: var(--slate); font-size: 15.5px; }
.info-row a:hover { color: var(--amber-deep); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--amber-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245,166,35,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13.5px; color: var(--slate-2); margin-top: 14px; text-align: center; }
.form-ok { display: none; background: #eafaf3; border: 1px solid #b9e8d3; color: #10794f; border-radius: var(--radius); padding: 16px; margin-bottom: 20px; font-size: 15px; font-weight: 500; }
.form-ok.show { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Value cards (about / why) ---------- */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.val { padding: 30px; border-radius: var(--radius-lg); background: var(--paper-2); border: 1px solid var(--line); }
.val .ic { width: 50px; height: 50px; border-radius: 13px; background: #fff; color: var(--amber-deep); display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.val .ic svg { width: 25px; height: 25px; }
.val h3 { font-size: 1.18rem; margin-bottom: 9px; }
.val p { color: var(--slate); font-size: 15px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }

/* ---------- 4-up pricing grid (courses page) ---------- */
.pkg-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pkg-grid.cols-4 .pkg { padding: 26px 24px; }
.pkg-grid.cols-4 .price .amt { font-size: 2.4rem; }
@media (max-width: 1080px) { .pkg-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 560px) { .pkg-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- Utilities ---------- */
.bg-soft { background: var(--paper-2); }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.rev .split-media { order: 0; }
  .prog-grid, .pkg-grid, .tst-grid, .val-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 14px 20px 20px;
  }
  .nav-links.open a { padding: 13px 14px; font-size: 16px; }
  .nav-toggle { display: flex; }
  .cta-band, .stats { padding: 40px 26px; }
  .cta-band { padding: 44px 28px; }
}
@media (max-width: 560px) {
  .prog-grid, .pkg-grid, .tst-grid, .val-grid, .stats-grid, .steps, .field-row, .foot-grid { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .wrap { padding: 0 18px; }
  .cta-actions { min-width: 0; width: 100%; }
  .stats { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .prog:hover, .pkg:hover { transform: none; }
}
