/* =========================================================
   Andy Stott Driver Training — stylesheet
   Brand: navy blue + silver/teal-green metallic gradient
   ========================================================= */

:root {
  --navy:        #16233f;
  --navy-2:      #1b2a4a;
  --navy-3:      #22335a;
  --navy-deep:   #0f1830;
  --teal:        #14a39a;
  --green:       #2fbf71;
  --mint:        #6ee7a8;
  --silver:      #c9d1dc;
  --silver-dim:  #95a0b3;
  --ink:         #1c2536;
  --paper:       #f4f7fb;
  --white:       #ffffff;

  --grad: linear-gradient(120deg, var(--teal) 0%, var(--green) 55%, var(--mint) 100%);
  --grad-silver: linear-gradient(120deg, #aeb7c6 0%, #eef2f7 50%, #aeb7c6 100%);

  --shadow-sm: 0 4px 14px rgba(15, 24, 48, .10);
  --shadow-md: 0 14px 40px rgba(15, 24, 48, .16);
  --shadow-lg: 0 26px 60px rgba(15, 24, 48, .28);

  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --header-h: 76px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name { font-family: "Montserrat", sans-serif; line-height: 1.1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 14px;
}
.eyebrow-dark { color: var(--teal); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: .92rem;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--grad); color: #08231b; box-shadow: 0 10px 24px rgba(47,191,113,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(47,191,113,.45); }

.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: #06340f; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(37,211,102,.45); }
.btn-whatsapp svg { flex-shrink: 0; }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(22,35,63,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(15,24,48,.96); box-shadow: var(--shadow-sm); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; font-size: 1.02rem; letter-spacing: .04em; color: var(--white); }
.brand-sub { font-size: .64rem; letter-spacing: .34em; color: var(--mint); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .92rem; position: relative; transition: color .2s; }
.main-nav a:not(.nav-cta):after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); transition: width .25s ease;
}
.main-nav a:not(.nav-cta):hover { color: var(--white); }
.main-nav a:not(.nav-cta):hover:after { width: 100%; }
.nav-cta { background: var(--grad); color: #08231b !important; padding: 10px 22px; border-radius: 999px; font-weight: 700; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(47,191,113,.4); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 90px;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(47,191,113,.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 500px at 12% 80%, rgba(20,163,154,.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center;
}
.hero-copy h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 900; margin-bottom: 22px; }
.hero-lead { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; color: var(--mint); font-size: .9rem; font-weight: 500; }

.hero-note {
  margin-top: 26px; max-width: 540px;
  font-size: .92rem; color: rgba(255,255,255,.7);
  padding: 14px 18px; border-left: 3px solid var(--green);
  background: rgba(255,255,255,.04); border-radius: 0 12px 12px 0;
}

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 26px; width: 100%; max-width: 360px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  animation: float 6s ease-in-out infinite;
}
.hero-card img { border-radius: var(--radius); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.hero-card-foot { display: flex; flex-direction: column; margin-top: 18px; text-align: center; }
.hero-card-foot strong { font-family: "Montserrat"; font-size: 1.2rem; }
.hero-card-foot span { color: var(--mint); font-size: .82rem; letter-spacing: .08em; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- section heads ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--silver-dim); font-size: 1.05rem; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,.7); }
.heart { color: var(--green); }

/* ---------- about ---------- */
.about { padding: 100px 0; background: var(--paper); }
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
  border: 3px solid rgba(255,255,255,.6);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-stat {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--navy); color: var(--white);
  padding: 18px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); text-align: center;
}
.about-stat strong { display: block; font-family: "Montserrat"; font-size: 1.8rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-stat span { font-size: .76rem; color: var(--silver); }

.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 18px; color: var(--navy); }
.about-copy p { color: #455066; margin-bottom: 18px; }
.about-copy .btn { margin-top: 8px; }
.inclusive-note {
  background: var(--white); border-left: 4px solid var(--green);
  padding: 16px 20px; border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm); font-size: .95rem;
}

/* ---------- prices ---------- */
.prices { padding: 100px 0; background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e6ebf2;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.price-card.featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); border: 0;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-card.featured .price-card-top { color: var(--mint); }
.price-card.featured h3 { color: var(--white); }
.price-card.featured .price-note { color: rgba(255,255,255,.7); }
.price-card.featured ul li { color: rgba(255,255,255,.85); }

.ribbon {
  position: absolute; top: 18px; right: 18px;
  background: var(--grad); color: #08231b;
  font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price-card-top { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--teal); margin-bottom: 8px; }
.price-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.price { font-family: "Montserrat"; font-weight: 900; font-size: 2.8rem; line-height: 1; margin-bottom: 6px; }
.price-card:not(.featured) .price { color: var(--navy); }
.price span { font-size: 1rem; font-weight: 600; color: var(--silver-dim); }
.price-card.featured .price span { color: rgba(255,255,255,.6); }
.price-note { font-size: .9rem; color: var(--silver-dim); margin-bottom: 22px; }
.price-card ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.price-card ul li { padding: 9px 0 9px 28px; position: relative; font-size: .94rem; border-top: 1px solid rgba(0,0,0,.06); }
.price-card.featured ul li { border-color: rgba(255,255,255,.1); }
.price-card ul li:before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--green); font-weight: 800;
}
.price-subhead {
  font-family: "Montserrat"; font-size: 1.35rem; font-weight: 800; color: var(--navy);
  margin: 8px 0 24px; padding-bottom: 12px; border-bottom: 2px solid #e6ebf2;
}
.price-subhead:not(:first-of-type) { margin-top: 56px; }
.price-subhead span { font-weight: 500; font-size: .95rem; color: var(--silver-dim); }
.price-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }

.crash-callout {
  margin-top: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: var(--radius-lg); padding: 34px 38px;
  box-shadow: 0 16px 36px rgba(47,191,113,.28);
}
.crash-callout h3 { color: #06291f; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.crash-callout p { color: #08382a; max-width: 640px; font-size: .98rem; }
.crash-callout .btn { background: var(--navy); color: var(--white); flex-shrink: 0; }
.crash-callout .btn:hover { background: var(--navy-deep); transform: translateY(-2px); }

.why-double {
  margin-top: 40px; text-align: center;
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid #e6ebf2;
}
.why-double h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.why-double p { color: #455066; max-width: 640px; margin: 0 auto; }

.terms {
  margin-top: 40px;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.terms h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 22px; }
.terms-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 36px; }
.terms-list li { position: relative; padding-left: 28px; font-size: .94rem; color: rgba(255,255,255,.82); }
.terms-list li:before { content: "›"; position: absolute; left: 6px; top: -2px; color: var(--mint); font-weight: 800; font-size: 1.2rem; }
.terms-list strong { color: var(--white); }

.price-disclaimer { text-align: center; margin-top: 34px; font-size: .82rem; color: var(--silver-dim); }

/* ---------- latest pass ---------- */
.latest-pass {
  padding: 100px 0;
  background:
    radial-gradient(700px 380px at 80% 100%, rgba(20,163,154,.18), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.pass-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.pass-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.12); }
.pass-photo img { width: 100%; height: 100%; object-fit: cover; }
.pass-tag {
  display: inline-block; background: var(--grad); color: #08231b;
  font-weight: 800; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.pass-copy blockquote {
  font-family: "Montserrat"; font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4;
  margin: 0 0 28px; color: var(--white);
}
.pass-copy blockquote:before { content: "“"; color: var(--mint); font-size: 1.4em; line-height: 0; vertical-align: -.35em; margin-right: 4px; }

/* ---------- why / features ---------- */
.why {
  padding: 100px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(47,191,113,.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px; text-align: center;
  transition: transform .25s ease, background .25s ease;
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.feature-icon {
  width: 76px; height: 76px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 12px 26px rgba(47,191,113,.35);
}
.feature h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.feature p { color: rgba(255,255,255,.72); font-size: .96rem; }

/* ---------- reviews ---------- */
.reviews { padding: 100px 0; background: var(--paper); }

.google-bar {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--white); border: 1px solid #e6ebf2;
  border-radius: var(--radius-lg); padding: 22px 28px;
  box-shadow: var(--shadow-sm); margin-bottom: 36px;
}
.g-logo { display: flex; align-items: center; }
.google-bar-text { display: flex; flex-direction: column; line-height: 1.2; }
.google-bar-text strong { font-family: "Montserrat"; font-size: 1.1rem; color: var(--navy); }
.g-stars { color: #fbbc05; letter-spacing: 2px; font-size: 1rem; }
.google-bar-actions { display: flex; gap: 12px; margin-left: auto; flex-wrap: wrap; }
.google-bar-actions .btn { padding: 11px 22px; }

.review-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-track {
  display: flex; gap: 24px; width: max-content;
  animation: review-scroll var(--review-dur, 70s) linear infinite;
}
.review-marquee:hover .review-track { animation-play-state: paused; }
@keyframes review-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--review-d, 50%))); }
}

.review {
  position: relative;
  flex: 0 0 340px; width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e9edf3;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  white-space: normal;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: "Montserrat"; font-weight: 700; font-size: 1.15rem;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.25; }
.review-g { margin-left: auto; opacity: .95; }
.stars { color: #fbbc05; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.02rem; }
.review p { color: #3c465a; font-size: .96rem; margin: 0; }
.review cite { font-style: normal; font-weight: 700; color: var(--navy); font-size: .98rem; }
.review-date { font-size: .8rem; color: var(--silver-dim); }

/* ---------- cta / contact ---------- */
.cta {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.cta-inner { display: flex; justify-content: center; }
.cta-copy {
  max-width: 760px; width: 100%; text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-copy:before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 220px at 50% 0%, rgba(47,191,113,.20), transparent 70%);
}
.cta-copy .eyebrow { position: relative; }
.cta-copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 18px; position: relative; }
.cta-copy p { color: rgba(255,255,255,.78); margin: 0 auto 30px; font-size: 1.06rem; max-width: 580px; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; position: relative; }
.cta-actions .btn { justify-content: center; }

.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--silver); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid transparent; border-radius: 12px;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  transition: box-shadow .2s, border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47,191,113,.25);
}
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--mint); }
.form-status.err { color: #ff9b9b; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 40px;
  padding: 60px 24px 40px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 12px; }
.footer-brand strong { display: block; color: var(--white); font-family: "Montserrat"; font-size: 1.05rem; }
.footer-brand span { font-size: .8rem; color: var(--mint); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a:hover { color: var(--mint); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: .92rem; }
.footer-contact a:hover { color: var(--mint); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; font-size: .82rem; color: var(--silver-dim); }

/* ---------- terms & conditions section ---------- */
.terms-section {
  padding: 100px 0;
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(20,163,154,.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.terms-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .25s ease, background .25s ease;
}
.terms-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); }
.terms-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 16px; }
.terms-card ul { list-style: none; }
.terms-card li { position: relative; padding: 8px 0 8px 22px; font-size: .92rem; color: rgba(255,255,255,.78); border-top: 1px solid rgba(255,255,255,.08); }
.terms-card li:first-child { border-top: 0; }
.terms-card li:before { content: "›"; position: absolute; left: 4px; top: 8px; color: var(--mint); font-weight: 800; }
.terms-card strong { color: var(--white); }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #08231b;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 940px) {
  .hero-inner, .about-inner, .cta-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 300px; }
  .about-media { max-width: 360px; margin: 0 auto; }
  .price-grid, .feature-grid, .review-grid, .terms-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-grid-2 { max-width: 460px; }
  .crash-callout { flex-direction: column; align-items: flex-start; text-align: left; padding: 28px 26px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .terms { padding: 30px 24px; }
  .terms-list { grid-template-columns: 1fr; }
  .pass-inner { grid-template-columns: 1fr; }
  .pass-photo { max-width: 440px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-deep);
    padding: 8px 24px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s ease;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .main-nav a:not(.nav-cta):after { display: none; }
  .nav-cta { text-align: center; margin-top: 14px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .brand-name { font-size: .92rem; }
  .brand-sub { font-size: .56rem; letter-spacing: .26em; }

  /* buttons: allow wrapping + trim padding so long labels never overflow */
  .btn { white-space: normal; text-align: center; }
  .btn-lg { padding: 14px 18px; font-size: .94rem; }
  .cta-copy { padding: 38px 20px; }
}

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