/* =========================================================
   Cliffie Dippenaar Motors — modern single-page
   Brand: deep forest green   Accent: bright emerald
   ========================================================= */

:root {
  --brand-deep:   #07321e;
  --brand:        #0a4227;
  --brand-2:      #094327;  /* exact match to the logo background */
  --accent:       #22c55e;
  --accent-soft:  #34d97a;
  --ink:          #0e1f17;
  --ink-soft:     #4a5c52;
  --ink-mute:     #7a8b81;
  --paper:        #ffffff;
  --cream:        #fbfaf6;
  --line:         #e8e5db;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 4px 14px rgba(10, 66, 39, 0.06);
  --shadow:    0 14px 36px rgba(10, 66, 39, 0.10);
  --shadow-lg: 0 30px 60px rgba(10, 66, 39, 0.18);

  --ease:    cubic-bezier(.4,.0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --max: 1180px;
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;        /* clears the 2-row sticky nav at desktop sizes */
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 1024px) { html { scroll-padding-top: 150px; } }
@media (max-width: 640px)  { html { scroll-padding-top: 130px; } }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
blockquote { margin: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.skip {
  position: absolute; top: -100px; left: 12px;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 8px;
  z-index: 999;
}
.skip:focus { top: 12px; color: #fff; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; font-weight: 700; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin: 0 0 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.center { text-align: center; }

.grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 60%, #66e29a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.underline-grow {
  position: relative; display: inline-block;
  background: linear-gradient(var(--accent), var(--accent)) left bottom / 0 3px no-repeat;
  transition: background-size .8s var(--ease-out) .2s;
}
.in-view .underline-grow { background-size: 100% 3px; }

.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0 auto 56px; max-width: 640px; }

/* =========================================================
   Unified sticky nav — two rows on one green sticky element
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--brand-2);
  color: #fff;
  transition: box-shadow .25s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
}

/* Row 1 — slim utility line: bright "your car" gradient, centered contacts */
.nav-utility {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 60%, #66e29a 100%);
  border-bottom: 1px solid rgba(7,50,30,0.15);
}
.nav-utility-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  padding: 9px 28px;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-contact-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-deep);
  transition: color .18s var(--ease), opacity .18s var(--ease);
}
.nav-contact-item:hover { color: #fff; }
.nav-contact-item svg { opacity: 0.9; }
.nav-fb {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(7,50,30,0.15);
  border: 1px solid rgba(7,50,30,0.20);
  color: var(--brand-deep);
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.nav-fb:hover {
  background: var(--brand-deep);
  color: var(--accent-soft);
  border-color: var(--brand-deep);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .nav-utility-row { gap: 14px; padding: 8px 20px; }
  .nav-contact-item:not(.nav-fb) span { display: none; }
}

/* Row 2 — main nav: logo on left, links + CTA on right */
.nav-main-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img {
  height: 94px; width: auto;
  max-width: min(380px, 42vw);
  object-fit: contain;
  transition: transform .3s var(--ease-out);
}
.brand:hover img { transform: scale(1.03); }
@media (max-width: 1024px) { .brand img { height: 78px; max-width: 280px; } }
@media (max-width: 640px)  { .brand img { height: 60px; max-width: 220px; } }

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links > a:not(.nav-cta) {
  position: relative;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 16px;
}
.nav-links > a:not(.nav-cta)::after {
  content: ""; position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links > a:not(.nav-cta):hover { color: #fff; }
.nav-links > a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--brand-deep) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  margin-left: 14px;
  box-shadow: 0 8px 22px rgba(34,197,94,0.30);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover { background: #fff; color: var(--brand-deep) !important; transform: translateY(-1px); }
.nav-cta .arr { transition: transform .25s var(--ease); }
.nav-cta:hover .arr { transform: translateX(3px); }

/* mobile burger */
.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px;
  background: #fff; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 14px 28px 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: var(--brand);
}
.nav-mobile a {
  display: block; padding: 12px 8px;
  color: rgba(255,255,255,0.92); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile-call, .nav-mobile-email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.92rem;
  color: var(--accent-soft) !important;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile.open { display: block; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn .arr { transition: transform .25s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 26px rgba(10,66,39,0.22);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px rgba(34,197,94,0.4);
}
.btn-on-dark { background: #fff; color: var(--brand-deep); }
.btn-on-dark:hover { background: var(--accent); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }
.btn-block { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -4%;
  background: url('images/hero.jpg') center/cover no-repeat;
  transform: scale(1.06);
  filter: saturate(112%);
  z-index: -3;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.06) translate(0,0); }
  100% { transform: scale(1.1)  translate(-1.5%,-1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(5,38,22,0.95) 0%, rgba(7,50,30,0.78) 40%, rgba(7,50,30,0.50) 80%, rgba(7,50,30,0.35) 100%),
    radial-gradient(80% 70% at 15% 90%, rgba(0,0,0,0.55), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, rgba(0,0,0,0.25) 100%);
  z-index: -2;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 120px 28px 140px;
  max-width: 920px;
}
.hero .eyebrow { color: var(--accent-soft); }
.hero h1 { color: #fff; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  max-width: 620px;
  margin: 0 0 36px;
  color: rgba(255,255,255,0.92);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* floating glass stat card */
.hero-card {
  position: absolute; right: 5%; top: 22%;
  padding: 26px 30px;
  display: flex; align-items: center; gap: 18px;
  z-index: 2;
  animation: floaty 6s ease-in-out infinite alternate;
}
@keyframes floaty {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
.glass {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  color: #fff;
}
.glass-dark {
  background: rgba(7,50,30,0.6);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
}
.hero-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem; font-weight: 800; line-height: 1;
  color: var(--accent-soft);
}
.hero-card-label {
  font-size: 0.84rem; line-height: 1.35; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}
@media (max-width: 820px) {
  .hero-card {
    position: static;
    top: auto; right: auto;
    margin: 28px 0 0;
    width: 100%;
    max-width: 360px;
  }
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span {
  display: block; width: 3px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(10px); opacity: 0; }
}
@media (max-width: 820px) { .hero-scroll { display: none; } }

/* Mobile hero tuning — smaller headline, less padding, gentler slide-in */
@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 64px 22px 80px; }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .hero-line { line-height: 1.1; }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  /* shorter slide so the first letter never gets clipped under overflow:hidden */
  .reveal.from-left {
    transform: translateX(-30px);
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  }
  .hero-card { padding: 22px 24px; }
  .hero-card-num { font-size: 2.6rem; }
  .hero-card-label { font-size: 0.76rem; }
}

/* =========================================================
   Marquee strip
   ========================================================= */
.marquee {
  background: var(--brand-deep);
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  will-change: transform;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.marquee-set {
  display: inline-flex; align-items: center; gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
}
.marquee-set .dot { color: var(--accent); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   Why
   ========================================================= */
.why {
  padding: 110px 0 100px;
  background: var(--cream);
  position: relative;
}
.why h2 { margin-bottom: 60px; }
.why-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.why-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.why-icon {
  width: 36px; height: 36px;
  color: var(--brand);
  margin-bottom: 18px;
}
.why-card h3 { color: var(--ink); margin-bottom: 6px; }
.why-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  padding: 96px 0 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(34,197,94,0.35), transparent 60%),
    radial-gradient(50% 70% at 80% 70%, rgba(102,226,154,0.22), transparent 65%),
    linear-gradient(135deg, var(--brand-deep), var(--brand) 50%, #0d4f30);
  animation: glow 12s ease-in-out infinite alternate;
}
@keyframes glow {
  0%   { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.08) saturate(1.15); }
}
.cta-band h2 { color: #fff; max-width: 880px; margin: 0 auto 18px; }
.cta-band-sub { text-align: center; color: rgba(255,255,255,0.8); margin: 0 0 32px; }
.cta-band-inner > div:last-child { text-align: center; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
  padding: 110px 0 120px;
  background: var(--paper);
}
.testimonials h2 { margin-bottom: 8px; }
.t-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: linear-gradient(180deg, #f1faf4 0%, #e6f3eb 100%);
  border: 1px solid #d8eadf;
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.t-card-wide { grid-column: span 2; }
@media (max-width: 600px) { .t-card-wide { grid-column: span 1; } }

.t-stars {
  color: #f5b800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.t-card blockquote {
  flex: 1;
}
.t-card blockquote p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
}
.t-by {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  margin-top: auto;
}
.t-by img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(10,66,39,0.18);
}
.t-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.2;
}
.t-meta {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 3px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  position: relative;
  padding: 110px 0 120px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.contact-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 70% 20%, rgba(34,197,94,0.30), transparent 65%),
    radial-gradient(50% 50% at 20% 90%, rgba(34,197,94,0.18), transparent 70%),
    linear-gradient(160deg, var(--brand-deep) 0%, #0a3d24 70%, #0b4628 100%);
}
.contact-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h2 { color: #fff; margin-bottom: 12px; }
.contact-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  margin: 0 0 32px;
  max-width: 460px;
}
.contact-cards {
  display: grid; gap: 12px;
}
.c-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  color: #fff !important;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.c-card:hover {
  transform: translateY(-2px);
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.4);
}
.c-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,0.18);
  color: var(--accent-soft);
  border-radius: 12px;
}
.c-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}
.c-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
}
.c-arrow {
  font-size: 1.2rem;
  color: var(--accent-soft);
  opacity: 0.6;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.c-card:hover .c-arrow { transform: translateX(4px); opacity: 1; }

/* form card */
.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  display: grid; gap: 16px;
  position: relative;
}
@media (max-width: 480px) { .contact-form { padding: 26px 22px; } }
.form-h {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.form-sub {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0 0 14px;
}
.field { display: grid; gap: 6px; }
.field-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.req { color: #dc2626; font-weight: 800; }
.field input, .field textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}
.field textarea { resize: vertical; min-height: 92px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-fineprint {
  font-size: 0.82rem; color: var(--ink-soft); margin: 6px 0 0; text-align: center;
}
.form-result {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.form-result.ok {
  display: block;
  background: #ecfdf5; color: #07321e; border-color: #a7f3c8;
}
.form-result.err {
  display: block;
  background: #fef2f2; color: #7a1c14; border-color: #fecaca;
}

.btn-primary[disabled] { opacity: .7; cursor: not-allowed; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  position: relative;
  color: rgba(255,255,255,0.78);
  padding: 80px 0 28px;
  overflow: hidden;
  isolation: isolate;
}
.footer-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 10% 0%, rgba(34,197,94,0.22), transparent 60%),
    radial-gradient(70% 60% at 90% 100%, rgba(34,197,94,0.14), transparent 65%),
    linear-gradient(170deg, #08321e 0%, #07321e 50%, #06291a 100%);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
}

.footer-brand img {
  height: auto; width: auto;
  max-width: 280px;
  max-height: 110px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}
.footer-tag {
  margin: 20px 0 18px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
  line-height: 1.55;
}
.footer-socials {
  display: flex; gap: 10px;
  margin-top: 4px;
}
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.footer-socials a:hover {
  background: var(--accent);
  color: #07321e;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin: 0 0 18px;
}
.footer-list { display: grid; gap: 14px; }
.footer-list li { display: grid; gap: 2px; }
.footer-list-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.footer-list a { color: rgba(255,255,255,0.92); font-weight: 500; }
.footer-list a:hover { color: var(--accent-soft); }
.footer-list li > span:not(.footer-list-label) {
  color: rgba(255,255,255,0.92);
}

.footer-cta { display: flex; flex-direction: column; align-items: flex-start; }
.footer-cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 18px;
  max-width: 260px;
  line-height: 1.55;
}
.footer-cta .btn-primary {
  background: var(--accent);
  color: var(--brand-deep);
  box-shadow: 0 14px 34px rgba(34,197,94,0.30);
}
.footer-cta .btn-primary:hover { background: #fff; color: var(--brand-deep); }

.footer-copy {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-copy p { margin: 0; }
.footer-est {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
}

/* =========================================================
   Scroll reveals
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: 0ms;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Why cards: deliberate, one by one (a touch quicker now) */
.why-card.reveal {
  transform: translateY(56px) scale(0.88);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out);
}
.why-card.reveal.in-view {
  transform: translateY(0) scale(1);
}

/* "from-left" reveal variant — used by the hero headline lines */
.reveal.from-left {
  transform: translateX(-80px);
  transition: opacity 1.5s var(--ease-out), transform 1.5s var(--ease-out);
}
.reveal.from-left.in-view {
  transform: translateX(0);
}
.hero-line {
  display: block;
}

/* Testimonial cards: gentle stagger entrance with side drift */
.t-card.reveal {
  transform: translateY(36px) scale(0.96);
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
}
.t-card.reveal.in-view {
  transform: translateY(0) scale(1);
}

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

/* =========================================================
   Focus visible
   ========================================================= */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Back-to-top button
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 60%, #66e29a 100%);
  color: var(--brand-deep);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28), 0 0 0 1px rgba(7,50,30,0.12) inset;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  z-index: 70;
}
.back-to-top.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: #fff;
  color: var(--brand-deep);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px rgba(34,197,94,0.45);
}
.back-to-top:active { transform: translateY(0) scale(0.98); }
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .2s, visibility .2s; transform: none; }
  .back-to-top.visible, .back-to-top:hover, .back-to-top:active { transform: none; }
}
@media (max-width: 640px) {
  .back-to-top { right: 16px; bottom: 16px; width: 48px; height: 48px; border-radius: 14px; }
}
