/*
Theme Name: EngineRoom Elementor Parent
Theme URI: https://engineroom.in/
Author: EngineRoom
Author URI: https://engineroom.in/
Description: A clean, lightning-fast parent wrapper theme for Elementor.
Version: 1.0.3
Text Domain: engineroom
*/


:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --deep: #141414;
  --surface: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --white: #FFFFFF;
  --off-white: #E8E4DC;
  --muted: #7A7A7A;
  --accent: #E42320;
  --accent-dim: rgba(228, 35, 32, 0.12);
  --accent-glow: rgba(228, 35, 32, 0.25);
  --red: #C0392B;
  --green: #27AE60;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============ NOISE TEXTURE ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 197, 71, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%);
  z-index: 1;
}

.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
}

/* Fallback engine visual */
.hero-engine-bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(232, 197, 71, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(192, 57, 43, 0.06) 0%, transparent 40%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1414 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 280px;
  opacity: 0.15;
  user-select: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-headline .accent-word {
  color: var(--accent);
  display: block;
}

.hero-subhead {
  font-family: 'League Spartan', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-desc strong {
  color: var(--off-white);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--black);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 32px;
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.stat-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ QUIZ CTA ============ */
.quiz-cta-wrapper {
  padding: 60px 0;
  background: var(--black);
  display: flex;
  justify-content: center;
}

.quiz-cta-box {
  background: #0B0B0B;
  border-radius: 12px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  max-width: 800px;
  width: 100%;
  margin: 0 24px;
}

.quiz-cta-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.quiz-cta-box .btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 14px;
  margin-bottom: 24px;
}

.quiz-trust {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-trust-star {
  color: #F1C40F;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============ SECTIONS ============ */
section {
  padding: 120px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ============ WHY CHOOSE ============ */
.why-choose {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}


.why-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.why-body strong {
  color: var(--off-white);
  font-weight: 500;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: default;
}

.trust-badge:first-child {
  border-top: 1px solid var(--border);
}

.trust-badge:hover {
  padding-left: 12px;
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 197, 71, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.trust-badge:hover .badge-icon {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.badge-text-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}

.badge-text-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ============ BENEFITS ============ */
.benefits {
  background: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.benefit-card {
  background: var(--off-black);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  background: var(--surface);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.benefit-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ PROCESS ============ */
.process {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
  /* Ensure boxes stretch to match height */
}

.step {
  background: var(--off-black);
  padding: 40px 32px;
  /* Adjusted padding to ensure text fits inside */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.step:hover .step-number {
  color: rgba(228, 35, 32, 0.15);
  /* Changed to red hover color matching var(--accent) #E42320 */
}

.step-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ SOCIAL PROOF ============ */
.reviews {
  background: var(--black);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.aggregate-rating {
  text-align: right;
}

.rating-big {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
}

.rating-stars {
  font-size: 22px;
  letter-spacing: 2px;
  margin: 4px 0;
}

.rating-count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.review-card:hover {
  border-color: rgba(232, 197, 71, 0.2);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--off-white);
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 197, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.review-vehicle {
  font-size: 12px;
  color: var(--muted);
}

.review-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 197, 71, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ FAQ ============ */
.faq {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 32px;
  cursor: pointer;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 14px;
  transition: all 0.2s;
  margin-top: 1px;
}

.faq-item:hover .faq-toggle {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ============ AMSOIL ============ */
.amsoil {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.amsoil-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.amsoil-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.amsoil-visual::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.amsoil-bottle {
  font-size: 120px;
  line-height: 1;
  filter: drop-shadow(0 20px 40px rgba(232, 197, 71, 0.15));
}

.amsoil-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 16px;
}

.amsoil-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.amsoil-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--off-white);
  padding: 16px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 197, 71, 0.1);
  border-radius: 2px;
  transition: all 0.2s;
}

.amsoil-feat:hover {
  border-color: rgba(232, 197, 71, 0.3);
  padding-left: 28px;
}

.amsoil-feat-icon {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============ CTA ============ */
.cta-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 197, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-headline span {
  color: var(--accent);
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.contact-item {
  text-align: center;
}

.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.contact-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============ HERO ENTRANCE ============ */
.hero-left>* {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.5s;
}

.hero-left>*:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ MICRO INTERACTIONS ============ */
.btn-primary .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

/* ============ GLOWING LINE ============ */
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ FLOATING BADGE ============ */
.floating-badge {
  position: absolute;
  top: 40%;
  right: 80px;
  z-index: 3;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-badge-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.floating-badge-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ CASE STUDY ============ */
.case-studies {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-top: 48px;
  transition: border-color 0.25s;
}

.case-card:hover {
  border-color: rgba(232, 197, 71, 0.2);
}

.case-left {
  padding: 48px;
  background: var(--surface);
}

.case-right {
  padding: 48px;
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.case-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.case-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.case-metrics {
  display: flex;
  gap: 32px;
}

.case-metric-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

.case-metric-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.case-video-area {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 2px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.25s;
}

.case-video-area:hover {
  border-color: rgba(232, 197, 71, 0.3);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-video-area:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 32px var(--accent-glow);
}

.play-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Fuel Savings Calculator --- */
.fuel-savings-calculator {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin: 40px auto 0 auto;
  color: var(--white);
  max-width: 600px;
}

.fuel-savings-calculator h3 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 24px;
  font-family: 'League Spartan', sans-serif;
}

.calc-input-group {
  margin-bottom: 20px;
}

.calc-input-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.calc-input-group input {
  width: 100%;
  padding: 12px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-size: 16px;
}

.calc-result {
  margin-top: 32px;
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-align: center;
}

.calc-result h4 {
  margin: 0 0 8px 0;
  color: var(--white);
  font-size: 16px;
}

.calc-result .savings-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.calc-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* ============ MOBILE MEDIA QUERIES ============ */
@media (max-width: 900px) {

  /* Prevent horizontal scrolling */
  body,
  html {
    overflow-x: hidden;
  }

  /* Container Constraints */
  .container {
    padding: 0 20px !important;
  }

  /* Navigation */
  nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-rating {
    display: none !important;
  }

  /* Force Grids to Stack */
  .hero,
  .why-grid,
  .benefits-grid,
  .process-steps,
  .faq-grid,
  .amsoil-inner,
  .case-card,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  /* Horizontal Scroll for Reviews */
  .reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding-bottom: 24px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
  }

  .review-card {
    flex: 0 0 85% !important;
    /* Cards take 85% width so next card peeks in */
    scroll-snap-align: center;
  }

  /* Hero Section Fixes */
  .hero-left {
    padding: 100px 20px 40px 20px !important;
    text-align: left;
  }

  .eyebrow {
    justify-content: flex-start;
  }

  .hero-headline {
    font-size: 44px !important;
    line-height: 1.1;
  }

  .hero-subhead {
    font-size: 22px !important;
    margin-bottom: 24px;
  }

  .hero-desc {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px;
    font-size: 14px;
  }

  .hero-right {
    display: none !important;
  }

  /* Typographic Fixes for large Elements */
  .step-number {
    font-size: 48px !important;
  }

  .rating-big {
    font-size: 48px !important;
  }

  .amsoil-bottle {
    font-size: 80px !important;
  }

  .amsoil-label {
    font-size: 20px !important;
    line-height: 1.2;
  }

  .case-title {
    font-size: 22px !important;
  }

  .badge-text-title {
    font-size: 16px !important;
  }

  /* Reset Paddings and Layouts */
  .section-padding {
    padding: 50px 0 !important;
  }

  .benefit-card,
  .step,
  .review-card,
  .case-left,
  .case-right,
  .amsoil-visual,
  .why-body {
    padding: 24px !important;
  }

  .process-header,
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px !important;
    margin-bottom: 32px !important;
  }

  .aggregate-rating {
    text-align: left !important;
  }

  /* Calculator Layout */
  .fuel-savings-calculator {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px !important;
    width: 100%;
  }

  .calc-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .calc-result-box {
    margin-top: 24px !important;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: left;
    gap: 24px;
    padding: 40px 20px !important;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* --- Interactive Quiz (Modal) --- */
#quiz-section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* Dark overlay */
  z-index: 100000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  backdrop-filter: blur(5px);
}

.quiz-container {
  background: var(--off-black);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  /* Keep within screen bounds */
  overflow-y: auto;
  /* Scrollable if too long */
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  color: var(--white);
}

.quiz-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.quiz-close-btn:hover {
  color: var(--white);
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

#quiz-step-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0;
}

.quiz-progress {
  height: 6px;
  background: var(--black);
  border-radius: 3px;
  margin-top: 1rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.3s ease;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-question {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quiz-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.quiz-card:hover,
.quiz-card.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.quiz-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.quiz-slider-container {
  padding: 1rem 0;
  text-align: center;
}

.quiz-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, #25D366 0%, #ffcc00 50%, #ff3333 100%);
  outline: none;
  margin-bottom: 1rem;
}

.quiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2px solid #333;
}

.quiz-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-prev {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.btn-next,
.cta-btn {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-next:hover,
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.loading-screen {
  text-align: center;
  padding: 3rem 1rem;
}

.loader {
  border: 5px solid #333;
  border-top: 5px solid var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.results-page {
  text-align: center;
}

.health-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin: 1rem 0;
  font-family: 'League Spartan', sans-serif;
}

/* --- Sticky Mobile CTA --- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}

.sticky-mobile-cta .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
}

.sticky-mobile-cta .btn-whatsapp {
  background: #25D366;
  color: #000;
}

.sticky-mobile-cta .btn-quiz {
  background: var(--accent);
  color: #000;
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none;
  }
}

/* --- Mobile Nav Fix Injected --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  nav.nav-open {
    background: var(--off-black) !important;
  }

  nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--off-black);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav.nav-open .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    display: block;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}




/* ============ ELEMENTOR CANVAS FIXES ============ */
nav {
  z-index: 999999 !important;
}

.footer {
  z-index: 999998 !important;
  position: relative;
}

body {
  padding-top: 72px !important;
}

/* Push Elementor content below the fixed header */

/* --- CSS from how-it-works.html --- */

:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --deep: #141414;
  --surface: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --white: #FFFFFF;
  --off-white: #E8E4DC;
  --muted: #7A7A7A;
  --accent: #E42320;
  --accent-dim: rgba(228, 35, 32, 0.12);
  --accent-glow: rgba(228, 35, 32, 0.25);
  --red: #C0392B;
  --green: #27AE60;
  --whatsapp: #25D366;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============ NOISE TEXTURE ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============ SHARED ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

section {
  padding: 120px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--black);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 35, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .accent-word {
  color: var(--accent);
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-desc strong {
  color: var(--off-white);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 32px;
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.stat-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero right visual */
.hero-visual {
  position: relative;
}

.hero-visual-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(228, 35, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-visual-icon {
  font-size: 120px;
  opacity: 0.2;
  filter: grayscale(100%);
}

.hero-visual-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
}

.hero-visual-badge-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.hero-visual-badge-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual-floating {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--accent);
  border-radius: 4px;
  padding: 14px 20px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.hero-visual-floating span {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============ WHAT IS SECTION ============ */
.what-is {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.what-is-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.what-is-body strong {
  color: var(--off-white);
  font-weight: 500;
}

.component-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.component-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: default;
}

.component-item:first-child {
  border-top: 1px solid var(--border);
}

.component-item:hover {
  padding-left: 12px;
}

.component-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.component-item:hover .component-icon {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.component-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}

.component-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ============ SIGNS SECTION ============ */
.signs {
  background: var(--black);
}

.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.signs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sign-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: default;
}

.sign-item:first-child {
  border-top: 1px solid var(--border);
}

.sign-item:hover {
  padding-left: 8px;
}

.sign-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.sign-item:hover .sign-number {
  opacity: 1;
}

.sign-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.sign-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ MID-PAGE CTA ============ */
.mid-cta {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(228, 35, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mid-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.mid-cta-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.mid-cta-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.mid-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.mid-cta-flow {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.flow-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.flow-arrow {
  color: var(--border);
  font-size: 14px;
  margin: 0 4px;
}

/* ============ PROCESS STEPS ============ */
.process {
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
}

.step {
  background: var(--surface);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step:hover {
  background: var(--deep);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.step:hover .step-number {
  color: rgba(228, 35, 32, 0.15);
  /* Red hover matching var(--accent) #E42320 */
}

.step-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ BENEFITS ============ */
.benefits {
  background: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.benefit-card {
  background: var(--off-black);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  background: var(--surface);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.benefit-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.aggregate-rating {
  text-align: right;
}

.rating-big {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
}

.rating-stars {
  font-size: 22px;
  letter-spacing: 2px;
  margin: 4px 0;
}

.rating-count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.review-card:hover {
  border-color: rgba(228, 35, 32, 0.2);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--off-white);
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.review-vehicle {
  font-size: 12px;
  color: var(--muted);
}

.review-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ PRICING CONTEXT ============ */
.pricing-context {
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.pricing-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-value span {
  font-size: 28px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--off-white);
}

.pricing-check {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-savings {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.15);
  border-radius: 4px;
}

.pricing-savings-text {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.6;
}

.pricing-savings-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* ============ FAQ ============ */
.faq {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 32px;
  cursor: pointer;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 14px;
  transition: all 0.2s;
  margin-top: 1px;
}

.faq-item:hover .faq-toggle {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ============ FINAL CTA ============ */
.cta-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(228, 35, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-headline span {
  color: var(--accent);
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.contact-item {
  text-align: center;
}

.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--accent);
}

.contact-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  justify-content: center;
  gap: 10px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-mobile-cta .sticky-btn {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-btn-wa {
  background: var(--whatsapp);
  color: var(--black);
}

.sticky-btn-call {
  background: var(--accent);
  color: var(--white);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Hero entrance */
.page-hero .hero-left>* {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards;
}

.page-hero .hero-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.page-hero .hero-left>*:nth-child(2) {
  animation-delay: 0.2s;
}

.page-hero .hero-left>*:nth-child(3) {
  animation-delay: 0.3s;
}

.page-hero .hero-left>*:nth-child(4) {
  animation-delay: 0.4s;
}

.page-hero .hero-left>*:nth-child(5) {
  animation-delay: 0.5s;
}

.page-hero .hero-left>*:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ MOBILE ============ */
@media (max-width: 900px) {

  body,
  html {
    overflow-x: hidden;
  }

  .container {
    padding: 0 20px !important;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-rating {
    display: none !important;
  }

  section {
    padding: 80px 0;
  }

  .page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .page-hero-inner,
  .what-is-grid,
  .signs-grid,
  .pricing-inner,
  .faq-grid,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .process-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding-bottom: 24px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center;
  }

  .hero-headline {
    font-size: 44px !important;
    line-height: 1;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-whatsapp,
  .hero-ctas .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-title {
    font-size: 36px !important;
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .aggregate-rating {
    text-align: left;
  }

  .cta-headline {
    font-size: 40px !important;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mid-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mid-cta-flow {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .flow-arrow {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pricing-value {
    font-size: 44px;
  }
}

/* --- Mobile Nav Fix Injected --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  nav.nav-open {
    background: var(--off-black) !important;
  }

  nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--off-black);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav.nav-open .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    display: block;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* --- CSS from about-us.html --- */

:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --deep: #141414;
  --surface: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --white: #FFFFFF;
  --off-white: #E8E4DC;
  --muted: #7A7A7A;
  --accent: #E42320;
  --accent-dim: rgba(228, 35, 32, 0.12);
  --accent-glow: rgba(228, 35, 32, 0.25);
  --green: #27AE60;
  --gold: #F5C518;
  --whatsapp: #25D366;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

.nav-logo {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase
}

.nav-logo span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white)
}

.nav-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em
}

/* SHARED */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px
}

section {
  padding: 120px 0
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent)
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7
}

.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease
}

.btn-primary:hover::after {
  transform: translateX(0)
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow)
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--black);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent)
}

/* HERO */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 35, 32, 0.05) 0%, transparent 70%);
  pointer-events: none
}

.page-hero .container {
  position: relative;
  z-index: 2
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center
}

.hero-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px
}

.hero-headline .accent {
  color: var(--accent)
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px
}

.hero-desc strong {
  color: var(--off-white);
  font-weight: 500
}

.hero-visual {
  position: relative
}

.hero-visual-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.hero-visual-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(228, 35, 32, 0.06) 0%, transparent 70%);
  pointer-events: none
}

.hero-visual-icon {
  font-size: 100px;
  opacity: 0.15
}

.hero-badge-tl {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--accent);
  border-radius: 4px;
  padding: 12px 18px;
  animation: float 4s ease-in-out infinite
}

.hero-badge-tl span {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black)
}

.hero-badge-br {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 20px;
  text-align: center
}

.hero-badge-br-val {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--accent);
  line-height: 1
}

.hero-badge-br-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.page-hero .hero-left>* {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards
}

.page-hero .hero-left>*:nth-child(1) {
  animation-delay: 0.1s
}

.page-hero .hero-left>*:nth-child(2) {
  animation-delay: 0.2s
}

.page-hero .hero-left>*:nth-child(3) {
  animation-delay: 0.3s
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* TICKER */
.ticker {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black)
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* NUMBERS STRIP */
.numbers-strip {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.number-block {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border)
}

.number-block:last-child {
  border-right: none
}

.number-val {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px
}

.number-val span {
  color: var(--accent)
}

.number-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted)
}

/* STORY */
.story-section {
  background: var(--black)
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.story-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px
}

.story-body strong {
  color: var(--off-white);
  font-weight: 500
}

/* PILLARS */
.pillars-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px
}

.pillar-card {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease
}

.pillar-card:hover {
  background: var(--deep)
}

.pillar-card:hover::before {
  transform: scaleX(1)
}

.pillar-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block
}

.pillar-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px
}

.pillar-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7
}

/* SERVICES */
.services-section {
  background: var(--black)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px
}

.service-card {
  background: var(--off-black);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease
}

.service-card:hover {
  background: var(--surface)
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block
}

.service-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s
}

.service-link:hover {
  opacity: 0.7
}

/* REVIEWS */
.reviews-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px
}

.reviews-aggregate {
  text-align: right
}

.reviews-stars {
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px
}

.reviews-score {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white)
}

.reviews-count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border)
}

.review-card {
  background: var(--surface);
  padding: 40px 32px;
  transition: background 0.3s
}

.review-card:hover {
  background: var(--deep)
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.review-text {
  font-size: 15px;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300
}

.review-author {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.04em
}

.review-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted)
}

.review-source-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%
}

/* TIMELINE */
.timeline-section {
  background: var(--black)
}

.timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 40px
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 1px;
  background: var(--border)
}

.timeline-item {
  position: relative;
  padding-bottom: 48px
}

.timeline-item:last-child {
  padding-bottom: 0
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.timeline-dot-inner {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%
}

.timeline-year {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px
}

.timeline-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px
}

.timeline-text strong {
  color: var(--off-white);
  font-weight: 500
}

/* CONTACT */
.contact-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0
}

.contact-inner {
  text-align: center
}

.contact-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  min-width: 250px;
  transition: all 0.25s
}

.contact-card:hover {
  border-color: rgba(228, 35, 32, 0.2);
  transform: translateY(-2px)
}

.contact-card-icon {
  font-size: 28px;
  margin-bottom: 12px
}

.contact-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px
}

.contact-card-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.contact-card-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s
}

.contact-card-value a:hover {
  color: var(--accent)
}

.contact-card-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px
}

/* CTA */
.cta-section {
  background: var(--black);
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(228, 35, 32, 0.06) 0%, transparent 70%);
  pointer-events: none
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2
}

.cta-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px
}

.cta-headline span {
  color: var(--accent)
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px
}

/* FOOTER */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 40px 0
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-brand {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white)
}

.footer-brand span {
  color: var(--accent)
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s
}

.footer-links a:hover {
  color: var(--white)
}

.footer-copy {
  font-size: 12px;
  color: var(--muted)
}

/* STICKY MOBILE */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  justify-content: center;
  gap: 10px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6)
}

.sticky-mobile-cta .sticky-btn {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase
}

.sticky-btn-wa {
  background: var(--whatsapp);
  color: var(--black)
}

.sticky-btn-call {
  background: var(--accent);
  color: var(--white)
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: 0.1s
}

.reveal-delay-2 {
  transition-delay: 0.2s
}

.reveal-delay-3 {
  transition-delay: 0.3s
}

.reveal-delay-4 {
  transition-delay: 0.4s
}

/* MOBILE */
@media(max-width:900px) {
  .container {
    padding: 0 20px !important
  }

  nav {
    padding: 0 20px
  }

  .nav-links,
  .nav-rating {
    display: none !important
  }

  section {
    padding: 80px 0
  }

  .page-hero {
    padding-top: 120px;
    padding-bottom: 60px
  }

  .page-hero-inner,
  .story-grid,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 0
  }

  .number-block {
    border-right: none !important;
    padding: 16px 0;
    border-bottom: 1px solid var(--border)
  }

  .number-block:nth-child(odd) {
    border-right: 1px solid var(--border) !important
  }

  .number-block:nth-last-child(-n+2) {
    border-bottom: none
  }

  .pillars-grid,
  .services-grid,
  .reviews-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important
  }

  .hero-headline {
    font-size: 44px !important;
    line-height: 1
  }

  .section-title {
    font-size: 36px !important
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .reviews-aggregate {
    text-align: left
  }

  .contact-card {
    min-width: unset;
    width: 100%
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center
  }

  .cta-headline {
    font-size: 40px !important
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center
  }

  .sticky-mobile-cta {
    display: flex
  }

  body {
    padding-bottom: 72px
  }

  .timeline {
    padding-left: 36px
  }
}

/* --- Mobile Nav Fix Injected --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  nav.nav-open {
    background: var(--off-black) !important;
  }

  nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--off-black);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav.nav-open .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    display: block;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* --- CSS from amsoil.html --- */

:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --deep: #141414;
  --surface: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --white: #FFFFFF;
  --off-white: #E8E4DC;
  --muted: #7A7A7A;
  --accent: #E42320;
  --accent-dim: rgba(228, 35, 32, 0.12);
  --accent-glow: rgba(228, 35, 32, 0.25);
  --gold: #D4A843;
  --gold-dim: rgba(212, 168, 67, 0.12);
  --green: #27AE60;
  --whatsapp: #25D366;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============ SHARED ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

section {
  padding: 120px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--black);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 35, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .accent-word {
  color: var(--accent);
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-desc strong {
  color: var(--off-white);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 32px;
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.stat-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-visual-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(228, 35, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-visual-icon {
  font-size: 120px;
  opacity: 0.15;
}

.hero-badge-bottom {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
}

.hero-badge-bottom-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.hero-badge-bottom-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-badge-top {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--accent);
  border-radius: 4px;
  padding: 14px 20px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-top span {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============ THE PROBLEM / OUTCOME SECTION ============ */
.problem-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.problem-body strong {
  color: var(--off-white);
  font-weight: 500;
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: default;
}

.outcome-item:first-child {
  border-top: 1px solid var(--border);
}

.outcome-item:hover {
  padding-left: 12px;
}

.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.outcome-item:hover .outcome-icon {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.outcome-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ VS COMPARISON ============ */
.vs-section {
  background: var(--black);
}

.vs-header {
  margin-bottom: 64px;
}

.vs-table {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.vs-row:last-child {
  border-bottom: none;
}

.vs-row:not(.vs-header-row):hover {
  background: var(--surface);
}

.vs-header-row {
  background: var(--deep);
}

.vs-cell {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--muted);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.vs-cell:last-child {
  border-right: none;
}

.vs-cell.label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
}

.vs-cell.header {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 24px 28px;
}

.vs-cell.header.amsoil-col {
  color: var(--accent);
}

.vs-cell.header.others-col {
  color: var(--muted);
}

.vs-cell.win {
  color: var(--green);
  font-weight: 500;
}

.vs-cell.lose {
  color: var(--muted);
  opacity: 0.6;
}

.vs-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 35, 32, 0.2);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 8px;
}

.vs-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  opacity: 0.6;
  font-style: italic;
}

/* ============ PRODUCTS ============ */
.products-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  background: var(--deep);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  opacity: 0.8;
}

.product-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--off-white);
  font-weight: 400;
}

.product-check {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--off-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
}

.product-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ============ FEEL THE DIFFERENCE ============ */
.feel-section {
  background: var(--black);
}

.feel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.feel-card {
  background: var(--off-black);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.feel-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feel-card:hover {
  background: var(--surface);
}

.feel-card:hover::before {
  transform: scaleX(1);
}

.feel-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.feel-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.feel-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ TRUST / AUTHENTICITY ============ */
.trust-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}

.trust-badge:hover {
  border-color: rgba(228, 35, 32, 0.2);
  transform: translateY(-2px);
}

.trust-badge-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.trust-badge-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-badge-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ DELIVERY ============ */
.delivery-section {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.delivery-inner {
  text-align: center;
}

.delivery-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.delivery-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.delivery-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.delivery-stat {
  text-align: center;
}

.delivery-stat-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
}

.delivery-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ FAQ ============ */
.faq {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 32px;
  cursor: pointer;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 14px;
  transition: all 0.2s;
  margin-top: 1px;
}

.faq-item:hover .faq-toggle {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ============ FINAL CTA ============ */
.cta-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(228, 35, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-headline span {
  color: var(--accent);
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.contact-item {
  text-align: center;
}

.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--accent);
}

.contact-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  justify-content: center;
  gap: 10px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-mobile-cta .sticky-btn {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-btn-wa {
  background: var(--whatsapp);
  color: var(--black);
}

.sticky-btn-call {
  background: var(--accent);
  color: var(--white);
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.page-hero .hero-left>* {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards;
}

.page-hero .hero-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.page-hero .hero-left>*:nth-child(2) {
  animation-delay: 0.2s;
}

.page-hero .hero-left>*:nth-child(3) {
  animation-delay: 0.3s;
}

.page-hero .hero-left>*:nth-child(4) {
  animation-delay: 0.4s;
}

.page-hero .hero-left>*:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .container {
    padding: 0 20px !important;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-rating {
    display: none !important;
  }

  section {
    padding: 80px 0;
  }

  .page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .page-hero-inner,
  .problem-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .products-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
  }

  .feel-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .vs-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .vs-cell {
    padding: 14px 16px;
    font-size: 12px;
  }

  .vs-cell.header {
    font-size: 13px;
    padding: 16px;
  }

  .hero-headline {
    font-size: 44px !important;
    line-height: 1;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-whatsapp,
  .hero-ctas .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-title {
    font-size: 36px !important;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .delivery-stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta-headline {
    font-size: 40px !important;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 600px) {
  .feel-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .vs-cell.label {
    font-size: 11px;
  }
}

/* --- Mobile Nav Fix Injected --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  nav.nav-open {
    background: var(--off-black) !important;
  }

  nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--off-black);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav.nav-open .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    display: block;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}




/* =========================================
   MOBILE FIXES FOR:
   1. Sticky CTA alignment
   2. Real Results / Benefits Grid filling the screen
   3. Mileage slider touch target
   4. Quiz Score Size
   ========================================= */

@media (max-width: 768px) {

  /* Fix sticky CTA */
  .sticky-mobile-cta {
    display: flex !important;
    gap: 10px;
    padding: 10px 15px !important;
    background: #111 !important;
    border-top: 1px solid #333;
    z-index: 9999999 !important;
    align-items: center;
    /* Ensures vertical alignment */
    justify-content: center;
  }

  .sticky-mobile-cta .btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px !important;
    font-size: 14px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Fix Benefits / Results grid */
  .benefits-grid,
  .case-studies-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    /* Stack vertically on mobile */
    gap: 20px !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .benefit-card,
  .case-study-card {
    width: 100% !important;
    min-width: unset !important;
    max-width: unset !important;
  }

  /* Fix Quiz Results Screen Score Size */
  .health-score-circle {
    width: 140px !important;
    height: 140px !important;
  }

  .health-score-val {
    font-size: 48px !important;
    font-weight: 900 !important;
  }

  .health-score-label {
    font-size: 14px !important;
  }

  /* Mileage slider */
  #mileage-slider {
    width: 100% !important;
    height: 30px !important;
    /* Bigger touch target */
  }

  #mileage-slider::-webkit-slider-thumb {
    width: 25px !important;
    height: 25px !important;
  }
}



/* =========================================
   UX FIXES:
   1. Reduce gap between header and hero
   2. Force text colors to white for readability
   ========================================= */

/* Reduce Hero Top Spacing */
body {
  padding-top: 72px !important;
  /* Keep just enough for the fixed header */
}

.page-hero,
.hero,
.about-hero {
  padding-top: 40px !important;
  /* Reduce internal padding at top */
  min-height: unset !important;
}

/* Force Text to White */
p,
.about-hero-sub,
.what-is-body,
.benefit-desc,
.step-desc,
.sign-desc,
.pricing-note,
.faq-a,
.section-subtitle,
.ticker-item {
  color: #ffffff !important;
  opacity: 0.95 !important;
}

/* Specific overrides for areas that might have been too dim */
.about-hero-desc p,
.about-content p {
  color: #ffffff !important;
  opacity: 0.95 !important;
}



/* =========================================
   CRITICAL MOBILE LAYOUT & OVERLAP FIXES
   ========================================= */

/* Force all stray text to white */
.component-sub,
.component-title,
.hero-desc,
.stat-label,
li {
  color: #ffffff !important;
  opacity: 0.95 !important;
}

/* Fix Mobile Navigation List Displaying by Default */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 72px !important;
    left: 0 !important;
    width: 100% !important;
    background: #0a0a0a !important;
    padding: 20px !important;
    border-bottom: 1px solid #333 !important;
  }

  nav.nav-open .nav-links li {
    margin-bottom: 15px !important;
  }

  /* Fix overlapping badges in Hero Visual by scaling and re-positioning */
  .hero-visual {
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .hero-visual-box {
    transform: scale(0.7) !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  .hero-visual-floating {
    position: static !important;
    margin-top: 20px !important;
    transform: none !important;
    width: auto !important;
    text-align: center !important;
  }

  /* Ensure the components list doesn't get squished */
  .component-item {
    flex-direction: row !important;
    align-items: flex-start !important;
  }
}



/* =========================================
   AGGRESSIVE FINAL MOBILE LAYOUT FIXES
   ========================================= */

@media (max-width: 768px) {

  /* 1. Center hero text and buttons */
  .hero-left,
  .page-hero-inner,
  .about-hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-stats-row {
    justify-content: center !important;
    width: 100% !important;
  }

  /* 2. Un-absolute the overlapping visual badges so they stack */
  .hero-visual-badge,
  .about-hero-visual-badge {
    position: static !important;
    margin-top: 15px !important;
    width: 100% !important;
    max-width: 250px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Adjust the floating block too */
  .hero-visual-floating {
    position: static !important;
    margin-top: 15px !important;
    width: 100% !important;
    max-width: 250px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
  }

  /* Stop the visual box from expanding unnecessarily */
  .hero-visual-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* 3. Aggressive Text Color Override */
#main .component-sub,
#main .benefit-desc,
#main .about-hero-sub,
#main li {
  color: #ffffff !important;
  opacity: 1 !important;
}



/* =========================================
   MOBILE MENU Z-INDEX FIX
   ========================================= */

@media (max-width: 768px) {
  nav.nav-open .nav-links {
    z-index: 99999999 !important;
  }

  /* Ensure the header itself has a high z-index */
  header,
  nav {
    position: fixed !important;
    z-index: 999999 !important;
  }
}

/* Fix Hero Right scaling */
@media (min-width: 769px) {
  .hero {
    grid-template-columns: 1.25fr 0.75fr !important;
  }

  .hero-right {
    max-width: 100% !important;
  }
}

/* Fix mid CTA numbers alignment */
@media (max-width: 768px) {
  .mid-cta-flow {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 250px !important;
    margin: 0 auto !important;
    gap: 20px !important;
  }

  .flow-step {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }

  .flow-step-num {
    margin-right: 15px !important;
    flex-shrink: 0 !important;
  }
}



/* =========================================
   UNIVERSAL SMARTPHONE FLUID SCALING FIXES
   ========================================= */

@media (max-width: 768px) {

  /* 1. Fluid Containers for small screens (iPhone SE etc) */
  .container {
    padding: 0 5vw !important;
    /* Scale padding based on screen width */
  }

  /* 2. Relax hardcoded max-widths so they stretch naturally */
  .hero-visual-badge,
  .about-hero-visual-badge,
  .hero-visual-floating,
  .mid-cta-flow {
    width: 90% !important;
    max-width: 360px !important;
    /* Allow expansion on Pro Max phones */
  }

  /* 3. Fluid typography for headlines so they never break out of bounds */
  .hero-headline {
    font-size: clamp(36px, 12vw, 64px) !important;
    line-height: 1 !important;
    hyphens: auto;
  }

  .hero-subhead {
    font-size: clamp(20px, 7vw, 36px) !important;
  }

  .section-title {
    font-size: clamp(28px, 9vw, 42px) !important;
  }

  /* 4. Ensure sticky CTA isn't squished on ultra-small screens */
  .sticky-mobile-cta {
    padding: 10px 2vw !important;
    gap: 2vw !important;
  }

  .sticky-mobile-cta .btn {
    padding: 12px 2vw !important;
    font-size: clamp(11px, 3.5vw, 14px) !important;
    white-space: nowrap;
  }

  /* 5. Scale stats and numbers naturally */
  .stat-number,
  .rating-big {
    font-size: clamp(32px, 10vw, 48px) !important;
  }

  .step-number {
    font-size: clamp(48px, 15vw, 80px) !important;
  }

  /* 6. Guarantee components fit */
  .component-item {
    flex-wrap: nowrap !important;
  }

  .component-title {
    font-size: 16px !important;
  }

  .component-sub {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}


/* =========================================
   HERO CENTERING, STATS, AND SPACING FIXES
   ========================================= */

/* Fix Hero top paddings on ALL screen sizes to minimize gap from header */
.hero-left, .page-hero-inner, .about-hero-content {
    padding-top: 40px !important; /* Greatly reduced from 140px */
}

@media (max-width: 768px) {
    /* 1. Center the "5+ 1000+ 4.9" row on mobile without vertical stacking */
    .hero-stats, .hero-stats-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 15px !important;
        padding-top: 30px !important;
        border-top: none !important;
    }
    
    .stat {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border: none !important; /* Remove separators on mobile */
        padding: 0 !important;
        margin: 0 !important;
    }

    .stat-number {
        font-size: clamp(36px, 12vw, 64px) !important;
        margin-bottom: 2px !important;
        line-height: 1 !important;
    }

    .stat-label {
        font-size: clamp(9px, 3.2vw, 13px) !important;
        text-align: center !important;
        line-height: 1.2 !important;
        max-width: 100px !important;
    }

    /* 2. Properly space the Trust Badges on mobile */
    .trust-badges, .components-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        margin-top: 20px !important;
    }
    
    .trust-badge {
        padding: 32px 24px !important; /* Ensure enough breathing room inside the box */
        margin-bottom: 0 !important; /* Rely on flex gap */
    }

    /* 3. Reduce Hero Top Padding even more for mobile screens */
    .hero-left, .page-hero-inner, .about-hero-content {
        padding-top: 20px !important; 
    }
    
    .hero {
        min-height: unset !important;
    }
}



/* =========================================
   TRUST BADGES & CALCULATOR MOBILE CENTERING STRATEGY
   ========================================= */

@media (max-width: 768px) {
    /* Ensure the right column takes full width */
    .why-right, .trust-badges {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center the Trust Badge contents (Icon on top, text below) */
    .trust-badge {
        width: 100% !important;
        max-width: 400px !important; /* Cap width for aesthetics */
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 32px 24px !important;
        margin: 0 auto !important;
    }
    
    .trust-badge-icon {
        margin-right: 0 !important;
        margin-bottom: 16px !important;
    }

    /* Center the Calculator contents and box */
    .fuel-savings-calculator {
        width: 100% !important;
        max-width: 400px !important; /* Match trust badges width */
        margin: 40px auto 0 auto !important;
        text-align: center !important;
    }

    .calc-input-group label {
        text-align: center !important;
    }

    .calc-input-group input {
        text-align: center !important;
    }
}



/* =========================================
   EXACT 50/50 STICKY CTA ALIGNMENT FIX
   ========================================= */

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: space-between !important;
        align-items: stretch !important;
        padding: 10px 15px !important;
        gap: 10px !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
    }

    .sticky-mobile-cta .btn {
        flex: 1 1 50% !important;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 14px 8px !important;
        white-space: normal !important; /* Allow wrapping if needed */
        line-height: 1.2 !important;
        font-size: clamp(12px, 3.5vw, 15px) !important;
        border-radius: 6px !important;
    }
}
