/* =====================================================================
   Simon Says Drive — 2026 redesign
   Vanilla CSS. Brand: bright green + near-black (from logo).
   ===================================================================== */

:root {
  --green:        #16B814;   /* primary brand green — buttons, accents */
  --green-bright: #2FE619;   /* glow / highlight */
  --green-deep:   #0E8A0C;   /* gradient bottom / hover */
  --ink:          #101413;   /* near-black surface */
  --ink-2:        #171F1C;   /* raised dark surface */
  --ink-3:        #1F2A26;   /* dark card / borders */
  --paper:        #F6F8F5;   /* light section bg (green-grey, not cream) */
  --white:        #FFFFFF;
  --text:         #17201C;   /* body text on light */
  --muted:        #5C6B62;   /* secondary text */
  --line:         #E2E7E2;   /* hairlines on light */

  --radius:   14px;
  --radius-sm: 9px;
  --wrap:    1160px;
  --shadow:  0 18px 50px rgba(16, 20, 19, .16);
  --shadow-green: 0 12px 34px rgba(22, 184, 20, .28);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}

.wrap {
  width: min(var(--wrap), 100% - 40px);
  margin-inline: auto;
}

.muted { color: var(--muted); }

/* ------------------------------------------------------------------ */
/* Buttons                                                            */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-green {
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #06210A;
  box-shadow: var(--shadow-green);
}
.btn-green:hover { background: linear-gradient(180deg, var(--green), var(--green-deep)); color: #04170A; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: var(--green-bright); color: var(--green-bright); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }

.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; margin-top: 6px; }

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 20, 19, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand img { height: 52px; width: auto; }

/* ---- LOGO CONTRAST FIX: white background on dark header ---- */
.brand {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 0;          /* removes extra spacing */
  display: inline-block;   /* shrink‑wrap */
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav > a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: color .15s ease;
}
.site-nav > a:hover { color: var(--green-bright); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-weight: 700;
}
.nav-phone .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(47,230,25,.22);
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(22,184,20,.16), transparent 60%),
    linear-gradient(180deg, var(--ink), #0A0D0C);
  color: var(--white);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px);
}
/* Green speed slash echoing the logo swoosh — the one bold moment */
.hero-slash {
  position: absolute;
  top: -20%;
  left: -8%;
  width: 46%;
  height: 150%;
  background: linear-gradient(120deg, var(--green-deep), var(--green-bright));
  transform: skewX(-14deg);
  opacity: .10;
  filter: blur(2px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .kicker {
  color: var(--green-bright);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hero-copy h1 {
  font-weight: 900;
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  letter-spacing: -0.025em;
}
.hero-copy .lede {
  font-size: 1.18rem;
  color: rgba(255,255,255,.8);
  max-width: 34ch;
  margin: 0 0 26px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  max-width: 440px;
}
.hero-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.9);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 14px; height: 8px;
  border-left: 3px solid var(--green-bright);
  border-bottom: 3px solid var(--green-bright);
  transform: rotate(-45deg);
}
.hero-points strong { color: var(--white); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Lead form card */
.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  border-top: 5px solid var(--green);
}
.form-card-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.form-card-head p { margin: 0 0 16px; color: var(--muted); }

.lead-form .field { margin-bottom: 13px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #3A463F;
  margin-bottom: 5px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 12px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #FBFCFB;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,184,20,.16);
}
.lead-form textarea { resize: vertical; }

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  font-size: .85rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  margin: 6px 0 4px;
  cursor: pointer;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex: none; }

.form-fineprint {
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

/* Honeypot — hidden from humans, present for bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Form status banner */
.form-status {
  display: none;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: .92rem;
}
.form-status[data-state="ok"] {
  display: block;
  background: #E7F8E6;
  border: 1px solid #B6E8B3;
  color: #14600F;
}
.form-status[data-state="err"] {
  display: block;
  background: #FBEAEA;
  border: 1px solid #F0C2C2;
  color: #93221E;
}

/* ------------------------------------------------------------------ */
/* Trust strip                                                        */
/* ------------------------------------------------------------------ */
.trust {
  background: var(--green);
  color: #06210A;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  padding: 15px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
}
.trust-inner span { position: relative; padding-left: 20px; }
.trust-inner span::before {
  content: "✓";
  position: absolute; left: 0;
  font-weight: 900;
}

/* ------------------------------------------------------------------ */
/* Generic section                                                    */
/* ------------------------------------------------------------------ */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-dark { background: var(--ink); color: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(34px, 5vw, 54px);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
}
.section-head p { margin: 0; font-size: 1.12rem; color: var(--muted); }
.section-dark .section-head p { color: rgba(255,255,255,.7); }

.section-cta { text-align: center; margin-top: 40px; }

/* ------------------------------------------------------------------ */
/* Steps (real sequence → numbered)                                   */
/* ------------------------------------------------------------------ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 30px 26px 26px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--green-bright);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.3rem; font-weight: 800; }
.step p { margin: 0; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* Cards (parallel options — NOT numbered)                            */
/* ------------------------------------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.card-ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(22,184,20,.14);
  color: var(--green-bright);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.card h3 { color: var(--white); font-size: 1.3rem; font-weight: 800; }
.card p { margin: 0; color: rgba(255,255,255,.72); }

/* ------------------------------------------------------------------ */
/* Why Simon                                                          */
/* ------------------------------------------------------------------ */
.simon-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.simon-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.simon-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; }
.simon-copy p { color: #34403A; margin: 0 0 15px; max-width: 60ch; }
.simon-social {
  display: flex; align-items: center; gap: 14px;
  margin: 22px 0 24px;
  font-size: .95rem; color: var(--muted);
}
.simon-social a {
  font-weight: 700; color: var(--green-deep); text-decoration: none;
  border-bottom: 2px solid rgba(14,138,12,.3);
}
.simon-social a:hover { border-color: var(--green); }

/* ------------------------------------------------------------------ */
/* CTA band                                                           */
/* ------------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(100deg, var(--green), var(--green-deep));
  color: #06210A;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding: clamp(34px, 5vw, 54px) 0;
}
.cta-band-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 0;
  max-width: 20ch;
}
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 52px 0 34px;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 14px; }

/* ---- LOGO CONTRAST FIX: white background on dark footer ---- */
.footer-logo {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;   /* shrink‑wrap */
}

.footer-tag { margin: 0; max-width: 34ch; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--green-bright); }
.footer-social { display: flex; gap: 16px; margin-top: 6px; }
.footer-social a { color: var(--green-bright); text-decoration: none; }

.footer-bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}
.footer-bar-inner a { color: var(--green-bright); text-decoration: none; }

/* ------------------------------------------------------------------ */
/* Sticky mobile call bar                                             */
/* ------------------------------------------------------------------ */
.mobile-call {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #06210A;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-green);
}
.mobile-call-ic { margin-right: 6px; }

/* ------------------------------------------------------------------ */
/* Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy .lede { max-width: none; }
  .simon-grid { grid-template-columns: 1fr; }
  .simon-media { order: 2; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .site-nav > a:not(.btn):not(.nav-phone) { display: none; }
}

@media (max-width: 560px) {
  .header-inner { gap: 10px; }
  .brand img { height: 42px; }
  .nav-phone { display: none; }
  .hero-points { grid-template-columns: 1fr; max-width: none; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .mobile-call { display: block; }
  body { padding-bottom: 74px; } /* clear the sticky call bar */
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}