/* =========================================================
   Hydro Car — global styles
   Design: Superdesign dark aesthetic (#050505 / #32860E / #044036)
   Fonts: Playfair Display (headings) · Inter (body)
   ========================================================= */

:root {
  --bg:            #050505;
  --bg-elevated:   #0d0d0d;
  --bg-card:       #0b120f;
  --bg-card-hover: #0f1a15;
  --accent:        #32860E;
  --accent-deep:   #044036;
  --accent-glow:   rgba(50, 134, 14, 0.30);
  --accent-soft:   rgba(50, 134, 14, 0.10);
  --text:          #ffffff;
  --text-soft:     #cccccc;
  --text-muted:    #777777;
  --border:        rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --glass-bg:      rgba(4, 64, 54, 0.18);
  --glass-border:  rgba(50, 134, 14, 0.18);
  --glass-shine:   rgba(255, 255, 255, 0.07);
  --success:       #25D366;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --max-width: 1200px;
  --gutter:    24px;
  --transition: 220ms cubic-bezier(.2,.7,.3,1);
}

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

#find-gains, #services, #book, #chiptuning-intro {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.12;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 500; }
h3 { font-size: 1.4rem; font-weight: 500; }

p { color: var(--text-soft); line-height: 1.7; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }
.section-elevated { background: var(--bg-elevated); }

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* =========================================================
   Navbar
   ========================================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  background: transparent;
  transition: all 500ms ease;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(4, 40, 30, 0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(50, 134, 14, 0.20);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 18px -4px rgba(50,134,14,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-nav-wa:hover {
  background: #267009;
  transform: scale(1.04);
  box-shadow: 0 8px 28px -6px rgba(50,134,14,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 28px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-primary:hover {
  background: #267009;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-ghost {
  background: rgba(4, 64, 54, 0.18);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  color: var(--text);
  border-color: rgba(50, 134, 14, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  background: rgba(4, 64, 54, 0.32);
  border-color: rgba(50, 134, 14, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-whatsapp:hover {
  background: #1ebd5b;
  transform: translateY(-2px);
}
.btn-whatsapp svg { fill: #fff; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--bg);
}

/* Atmospheric glow orbs */
.hero-glow-1 {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,134,14,0.13) 0%, transparent 68%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,64,54,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 70%);
  pointer-events: none;
}

/* Floating decorative rings */
@keyframes float-left {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(4deg); }
}
@keyframes float-right {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(22px) rotate(-4deg); }
}

.hero-deco-left {
  position: absolute;
  left: -8%;
  top: 8%;
  width: 44vw;
  max-width: 520px;
  pointer-events: none;
  opacity: 0.06;
  animation: float-left 16s ease-in-out infinite;
}
.hero-deco-right {
  position: absolute;
  right: -8%;
  bottom: 2%;
  width: 38vw;
  max-width: 440px;
  pointer-events: none;
  opacity: 0.05;
  animation: float-right 13s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 10px;
  color: rgba(228,245,232,0.95);
  text-shadow: 0 0 80px rgba(50,134,14,0.22);
}
.hero h1 .italic { font-style: italic; font-weight: 300; color: rgba(228,245,232,0.72); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.42);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.22);
  font-family: 'Inter', sans-serif;
}
.hero-meta .sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
}

/* Hero parallax wrapper */
#hero-content-wrapper {
  width: 100%;
}

/* =========================================================
   Mission section
   ========================================================= */

.mission-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.mission-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.mission-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* Clients / brands strip */
.brands-strip {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: center;
  justify-items: center;
  opacity: 0.25;
  filter: grayscale(1);
  transition: opacity 500ms, filter 500ms;
}
.brands-strip:hover { opacity: 0.55; filter: grayscale(0); }
.brand-item {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
}

/* =========================================================
   Service cards
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(4, 64, 54, 0.14);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid rgba(50, 134, 14, 0.16);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width 400ms ease;
}
.service-card:hover {
  background: rgba(4, 64, 54, 0.28);
  transform: translateY(-4px);
  border-color: rgba(50, 134, 14, 0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 16px 48px -16px rgba(50,134,14,0.22);
}
.service-card:hover::before { width: 100%; }
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.service-card p { color: var(--text-muted); font-size: 0.93rem; }

/* =========================================================
   Featured cards (Superdesign 2-col style)
   ========================================================= */

.featured-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.parallax-card-down { transform: translateY(var(--scroll-offset-down, 0px)); }
.parallax-card-up   { transform: translateY(var(--scroll-offset-up, 0px)); }

.featured-card {
  border-radius: var(--radius-xl);
  padding: 48px 42px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 500ms ease;
  position: relative;
  overflow: hidden;
}
.featured-card-red {
  background: #0d2e14;
  box-shadow: 0 24px 64px -20px rgba(13,46,20,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
}
.featured-card-red:hover {
  box-shadow: 0 32px 80px -16px rgba(13,46,20,0.70), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-6px);
}
.featured-card-dark {
  background: rgba(4, 64, 54, 0.28);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(50, 134, 14, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 24px 64px -20px rgba(0,0,0,0.55);
}
.featured-card-dark:hover {
  border-color: rgba(50,134,14,0.48);
  transform: translateY(-6px);
  background: rgba(4, 64, 54, 0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 32px 80px -16px rgba(50,134,14,0.22);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 500ms ease;
}
.featured-card:hover .card-icon { transform: rotate(45deg); }
.card-icon-on-red { background: rgba(255,255,255,0.10); }
.card-icon-on-dark { background: rgba(255,255,255,0.06); }

.card-num {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
.card-num-red  { border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.45); }
.card-num-dark { border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.38); }

.featured-card h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.0;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.featured-card-red h3  { color: #fff; }
.featured-card-dark h3 { color: #fff; }

.featured-card p { font-size: 1rem; line-height: 1.55; }
.featured-card-red p  { color: rgba(255,255,255,0.62); }
.featured-card-dark p { color: rgba(255,255,255,0.48); }

.card-divider { height: 1px; margin-top: 24px; }
.featured-card-red  .card-divider { background: rgba(255,255,255,0.10); }
.featured-card-dark .card-divider { background: rgba(255,255,255,0.08); }

/* =========================================================
   Stage cards (chiptuning page)
   ========================================================= */

.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.stage-card {
  background: rgba(4, 64, 54, 0.12);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(50, 134, 14, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.stage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50,134,14,0.32);
  background: rgba(4, 64, 54, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 50px -20px rgba(50,134,14,0.22);
}
.stage-card.featured {
  background: rgba(4, 64, 54, 0.26);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-color: rgba(50,134,14,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 20px 60px -20px rgba(50,134,14,0.18);
}
.stage-card .badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 14px -4px rgba(50,134,14,0.50), inset 0 1px 0 rgba(255,255,255,0.16);
}
.stage-card .stage-num {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.stage-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.stage-gains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stage-gains .gain .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
}
.stage-gains .gain .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.stage-features { list-style: none; margin-bottom: 28px; }
.stage-features li {
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.stage-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================================
   Page header (inner pages)
   ========================================================= */

.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
  isolation: isolate;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(50,134,14,0.10), transparent 58%);
  z-index: -1;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 580px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

/* =========================================================
   Split layout
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-visual {
  background: linear-gradient(135deg, rgba(50,134,14,0.08), rgba(4,64,54,0.04));
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(50,134,14,0.14);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.split-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(50,134,14,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50,134,14,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.split-visual img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =========================================================
   Process steps
   ========================================================= */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  background: rgba(4, 64, 54, 0.12);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(50, 134, 14, 0.14);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.process-step:hover {
  border-color: rgba(50,134,14,0.28);
  background: rgba(4, 64, 54, 0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 36px -12px rgba(50,134,14,0.18);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.14;
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* =========================================================
   FAQ
   ========================================================= */

.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none; border: none;
  color: var(--text);
  padding: 22px 0;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-question .icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--text-muted); line-height: 1.75; }

/* =========================================================
   CTA banner
   ========================================================= */

.cta-banner {
  background: linear-gradient(135deg, rgba(4,64,54,0.38) 0%, rgba(50,134,14,0.08) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(50,134,14,0.22);
  border-radius: var(--radius-xl);
  padding: 60px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 64px -24px rgba(0,0,0,0.55);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.55); margin-bottom: 0; max-width: 460px; }
.cta-banner .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   Book / contact page
   ========================================================= */

.wa-priority {
  background: linear-gradient(135deg, rgba(37,211,102,0.10), rgba(37,211,102,0.04));
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.wa-priority .wa-icon-wrap {
  width: 72px; height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 28px -8px rgba(37,211,102,0.50), inset 0 1px 0 rgba(255,255,255,0.18);
}
.wa-priority h2 { margin-bottom: 14px; }
.wa-priority p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto; margin-right: auto;
}

.contact-cards { display: grid; gap: 14px; max-width: 560px; margin: 0 auto 64px; }
.contact-card {
  background: rgba(4, 64, 54, 0.16);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid rgba(50, 134, 14, 0.18);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: all var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.contact-card:hover {
  border-color: rgba(50,134,14,0.40);
  transform: translateX(4px);
  background: rgba(4, 64, 54, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 8px 32px -8px rgba(50,134,14,0.18);
}
.contact-card .ic {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card .info .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}
.contact-card .info .val { font-weight: 600; font-size: 0.98rem; margin-top: 2px; }

.cal-placeholder {
  background: rgba(4, 64, 54, 0.10);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px dashed rgba(50,134,14,0.22);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.cal-placeholder h3 { font-size: 1.5rem; margin-bottom: 12px; }
.cal-placeholder p { color: var(--text-muted); margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* =========================================================
   Gains widget — adapted, no pricing
   ========================================================= */

.gains-widget {
  --gw-bg:      #040d0b;
  --gw-surface: #081410;
  --gw-elev:    #0d1e18;
  --gw-line:    rgba(255,255,255,0.06);
  --gw-line2:   rgba(255,255,255,0.10);
  --gw-accent:  #32860E;
  --gw-accent-s:rgba(50,134,14,0.28);
  --gw-accent-g:rgba(50,134,14,0.10);
  --gw-text:    #e4e4e4;
  --gw-dim:     #777777;

  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gw-bg);
  border: 1px solid rgba(50,134,14,0.16);
  box-shadow: 0 32px 64px -32px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.04);
}

.gw-header {
  background: var(--gw-surface);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--gw-line);
}
.gw-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--gw-text); margin: 0;
}
.gw-header .gw-poweredby {
  font-family: 'Inter', sans-serif;
  color: var(--gw-dim);
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.gw-controls {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
  background: var(--gw-surface);
}
.gw-controls .gw-button { grid-column: 1 / -1; margin-top: 6px; }
@media (max-width: 920px) { .gw-controls { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 580px) { .gw-controls { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .gw-controls { grid-template-columns: 1fr; } }

.gw-select {
  min-width: 0;
  background: var(--gw-bg);
  color: var(--gw-text);
  border: 1px solid var(--gw-line2);
  border-radius: 6px;
  height: 46px;
  padding: 0 34px 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2332860E' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: var(--transition);
}
.gw-select:hover:not(:disabled) { border-color: var(--gw-accent-s); }
.gw-select:focus { border-color: var(--gw-accent); box-shadow: 0 0 0 3px var(--gw-accent-g); }
.gw-select:disabled { opacity: 0.32; cursor: not-allowed; }

.gw-button {
  background: transparent;
  color: var(--gw-accent);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.84rem;
  height: 50px;
  border: 1px solid var(--gw-accent);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.gw-button:hover:not(:disabled) {
  background: var(--gw-accent);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(50,134,14,0.50);
}
.gw-button:disabled { opacity: 0.28; cursor: not-allowed; border-color: var(--gw-line2); color: var(--gw-dim); }

.gw-results {
  padding: 36px 32px 40px;
  background: var(--gw-bg);
  border-top: 1px solid var(--gw-line);
}
.gw-vehicle-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 500;
  color: var(--gw-text);
  text-align: center;
  margin-bottom: 8px;
}
.gw-vehicle-title::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gw-accent);
  margin: 14px auto 28px;
}

.gw-stats-grid { display: grid; gap: 14px; margin-bottom: 28px; }
.gw-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .gw-stat-row { grid-template-columns: 1fr; } }

.gw-stat-card {
  background: rgba(4, 64, 54, 0.20);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  border: 1px solid rgba(50,134,14,0.14);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.gw-stat-tuned   { background: rgba(4, 64, 54, 0.28); border-color: rgba(50,134,14,0.20); }
.gw-stat-diff    { background: rgba(4, 64, 54, 0.28); border-color: var(--gw-accent-s); position: relative; }
.gw-stat-diff::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gw-accent);
  border-radius: 2px 0 0 2px;
}

.gw-stat-label {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gw-dim); font-weight: 500; font-family: 'Inter', sans-serif;
}
.gw-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 600;
  color: var(--gw-text); line-height: 1;
}
.gw-stat-value .unit {
  font-size: 0.68rem; font-weight: 400;
  color: var(--gw-dim); margin-left: 5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.gw-stat-diff .gw-stat-value { color: var(--gw-accent); }

.gw-meta-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; padding: 22px 0;
  border-top: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
  margin-bottom: 22px;
}
@media (max-width: 640px) { .gw-meta-grid { grid-template-columns: 1fr 1fr; gap: 18px 0; } }
.gw-meta {
  text-align: center; font-size: 0.68rem;
  color: var(--gw-dim); letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0 12px;
  border-right: 1px solid var(--gw-line);
  font-family: 'Inter', sans-serif;
}
.gw-meta:last-child { border-right: 0; }
@media (max-width: 640px) { .gw-meta:nth-child(2n) { border-right: 0; } }
.gw-meta strong {
  display: block; margin-top: 6px;
  font-family: 'Playfair Display', serif;
  color: var(--gw-text); font-weight: 500;
  font-size: 0.95rem; text-transform: none; letter-spacing: 0;
}

/* Rating */
.gw-rating {
  text-align: center; margin: 0 auto 28px;
  padding: 22px 18px;
  background: rgba(4, 64, 54, 0.18);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  border: 1px solid rgba(50,134,14,0.16);
  border-radius: 8px;
  max-width: 520px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.gw-rating-label {
  font-size: 0.67rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gw-dim);
  margin-bottom: 14px; font-family: 'Inter', sans-serif;
}
.gw-rating-bar { display: inline-flex; gap: 6px; margin-bottom: 14px; align-items: center; }
.gw-dot { width: 28px; height: 4px; background: var(--gw-line2); border-radius: 2px; }
.gw-dot.on { background: var(--gw-accent); }
.gw-rating-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gw-text); margin-bottom: 6px; }
.gw-rating-text strong { color: var(--gw-accent); font-weight: 600; }
.gw-rating-note { font-size: 0.7rem; color: var(--gw-dim); font-family: 'Inter', sans-serif; }

.gw-rating-warning {
  --gw-warn: #c9a973;
  border-color: rgba(201,169,115,0.28);
  background: rgba(201,169,115,0.04);
  max-width: 600px; padding: 26px 22px;
}
.gw-rating-warning-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gw-warn);
  border: 1px solid var(--gw-warn); border-radius: 4px;
  padding: 8px 18px; margin-bottom: 18px;
}
.gw-rating-summary { color: var(--gw-text); font-size: 0.95rem; line-height: 1.7; max-width: 500px; margin: 0 auto 14px; }
.gw-rating-warning .gw-rating-note { color: var(--gw-dim); font-style: italic; max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* Quote / WhatsApp CTA */
.gw-quote, .gw-quote-skip {
  margin-top: 28px; padding-top: 32px;
  border-top: 1px solid var(--gw-line);
  text-align: center;
}
.gw-quote h4, .gw-quote-skip h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--gw-text); margin-bottom: 8px;
}
.gw-quote h4::after, .gw-quote-skip h4::after {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gw-accent); margin: 12px auto 16px;
}
.gw-quote > p, .gw-quote-skip > p {
  font-size: 0.9rem; color: var(--gw-dim);
  margin: 0 auto 24px; max-width: 540px; line-height: 1.75;
  font-family: 'Inter', sans-serif;
}
.gw-empty {
  padding: 56px 32px; text-align: center;
}
.gw-empty h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--gw-text); margin-bottom: 12px;
}
.gw-empty h4::after {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gw-accent); margin: 14px auto 18px;
}
.gw-empty p {
  color: var(--gw-dim); font-size: 0.9rem;
  margin: 0 auto 24px; max-width: 480px; line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.gw-whatsapp-btn {
  display: inline-flex;
  align-items: center; justify-content: center; gap: 12px;
  background: transparent; color: #25D366;
  border: 1px solid #25D366; border-radius: 6px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.82rem; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  min-height: 50px;
}
.gw-whatsapp-btn svg { flex-shrink: 0; fill: #25D366; transition: fill var(--transition); }
.gw-whatsapp-btn:hover { background: #25D366; color: #fff; }
.gw-whatsapp-btn:hover svg { fill: #fff; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: #020202;
  border-top: 1px solid rgba(50,134,14,0.12);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 14px; color: #fff;
  display: block;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 240px; }
.footer-col h4 {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--text-muted);
  margin-bottom: 18px; font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--text-soft); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.8rem;
  flex-wrap: wrap; gap: 12px;
  font-family: 'Inter', sans-serif;
}

/* =========================================================
   Hero video background
   ========================================================= */

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
  filter: saturate(0.22) brightness(0.86);
  pointer-events: none;
}

/* Hide native iOS/Android video overlays (play button, pause icon) */
.hero-video-bg video::-webkit-media-controls,
.hero-video-bg video::-webkit-media-controls-panel,
.hero-video-bg video::-webkit-media-controls-play-button,
.hero-video-bg video::-webkit-media-controls-start-playback-button,
.hero-video-bg video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
}

/* =========================================================
   Featured card background image
   ========================================================= */

.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: var(--radius-xl);
}
.featured-card-red .card-bg-img {
  opacity: 0.26;
  filter: saturate(0.3) brightness(0.66);
  mix-blend-mode: luminosity;
}
.featured-card-dark .card-bg-img {
  opacity: 0.41;
  filter: saturate(0.35) brightness(0.72);
}

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .featured-cards { gap: 16px; }
  .featured-card { padding: 36px 28px; }
  .section { padding: 80px 0; }
  .brands-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(4,40,30,0.97);
    backdrop-filter: blur(20px) saturate(200%);
    flex-direction: column; align-items: stretch;
    padding: 24px; gap: 4px;
    border-bottom: 1px solid rgba(50,134,14,0.18);
    transform: translateY(-120%); transition: transform 280ms ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 14px 8px; }
  .featured-cards { grid-template-columns: 1fr; gap: 48px; }
  .featured-card { aspect-ratio: auto; min-height: 280px; }
  .parallax-card-up { margin-top: 0 !important; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 80px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 18px; }
}

@media (max-width: 480px) {
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-stats { gap: 14px; }
}
