/* ═══════════════════════════════════════════════════
   MONKEYVIN — JUNGLE + MECHANICS THEME
   index.css
═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Jungle Greens */
  --jungle-900: #050e08;
  --jungle-800: #0a1a10;
  --jungle-700: #0f2918;
  --jungle-600: #163d23;
  --jungle-500: #1e5530;
  --jungle-400: #2a7a45;
  --jungle-300: #3da65e;
  --jungle-200: #6dd98a;
  --jungle-100: #b5f5c8;

  /* Gold / Amber (mechanics warmth) */
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;
  --gold-muted: #a37018;

  /* Blues (HPI / UK) */
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;

  /* Neutral / Light */
  --light-100: #ffffff;
  --light-200: #f8faf9;
  --light-300: #f1f5f2;
  --light-400: #e2e8e4;
  --light-500: #cbd5ce;
  --text-primary: #0a1a10;
  --text-secondary: #3b4d41;
  --text-muted: #5e7a67;

  /* Accent */
  --accent-green: #16a34a;
  --accent-gold: #d97706;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  /* Spacing */
  --section-pad: 6rem 0;
  --container-width: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-100);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-200);
}

::-webkit-scrollbar-thumb {
  background: var(--jungle-400);
  border-radius: 10px;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--jungle-400), var(--jungle-300));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(42, 122, 69, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 122, 69, 0.55);
  background: linear-gradient(135deg, var(--jungle-300), var(--jungle-200));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #1e3a5f, var(--blue-500));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-500));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.55);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── ACCENT COLOR ── */
.accent {
  color: var(--accent-green);
}

/* ── SECTION SHARED ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(42, 122, 69, 0.15);
  border: 1px solid rgba(42, 122, 69, 0.35);
  color: var(--jungle-200);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-green);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background-image: url('hero_bg_urus.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #c8ccc9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-bg-overlay {
  display: none;
}

/* floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(42, 122, 69, 0.6);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20px) scale(1.5);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1.5rem 2.5rem 1.25rem;
  max-width: 860px;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  margin: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  animation: fadeSlideDown 0.8s var(--ease-smooth) both;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: #0a1a10;
  margin-bottom: 0.75rem;
  animation: fadeSlideUp 0.9s 0.15s var(--ease-smooth) both;
}

.hero-title-accent {
  color: #16a34a;
  -webkit-text-fill-color: #16a34a;
  background: none;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #1a2e20;
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  animation: fadeSlideUp 0.9s 0.3s var(--ease-smooth) both;
}

.hero-subtitle strong {
  color: var(--accent-green);
}

/* ── VIN SEARCH ── */
.vin-search-wrapper {
  animation: fadeSlideUp 0.9s 0.45s var(--ease-smooth) both;
}

.vin-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 60px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto 1rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vin-search-box:focus-within {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15), 0 8px 40px rgba(0, 0, 0, 0.15);
}

.vin-search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vin-search-icon svg {
  width: 20px;
  height: 20px;
}

.vin-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Space Grotesk', monospace;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  min-width: 0;
}

.vin-input::placeholder {
  color: var(--text-muted);
  letter-spacing: 0;
  font-weight: 400;
}

.vin-counter {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.vin-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--jungle-500), var(--jungle-300));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(42, 122, 69, 0.4);
}

.vin-search-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(42, 122, 69, 0.6);
}

.vin-search-btn svg {
  width: 16px;
  height: 16px;
}

.vin-report-types {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.report-type-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* Japan — red/crimson */
.report-type-btn[data-type="japan"] {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.report-type-btn[data-type="japan"]:hover,
.report-type-btn[data-type="japan"].active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
  transform: translateY(-1px);
}

/* UK HPI — royal blue */
.report-type-btn[data-type="hpi"] {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.report-type-btn[data-type="hpi"]:hover,
.report-type-btn[data-type="hpi"].active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
  transform: translateY(-1px);
}

/* VIN Spec — amber/gold */
.report-type-btn[data-type="spec"] {
  background: linear-gradient(135deg, #d97706, #b45309);
}

.report-type-btn[data-type="spec"]:hover,
.report-type-btn[data-type="spec"].active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
  transform: translateY(-1px);
}

.flag {
  font-size: 1.1em;
}

.vin-result-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vin-result-hint svg {
  width: 14px;
  height: 14px;
  color: var(--jungle-300);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--jungle-300);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--light-200) 0%, var(--light-100) 50%, var(--light-200) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--jungle-200), var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-label.stat-pct::before {
  content: '';
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad);
  background: var(--light-200);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--light-100);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s var(--ease-smooth);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(60px);
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card--japan .service-card-glow {
  background: rgba(34, 197, 94, 0.25);
}

.service-card--hpi .service-card-glow {
  background: rgba(59, 130, 246, 0.25);
}

.service-card--bundle .service-card-glow {
  background: rgba(245, 158, 11, 0.25);
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-icon-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.bundle-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
}

.service-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--accent-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  align-self: flex-start;
}

.bundle-ribbon {
  position: absolute;
  top: 1.25rem;
  right: -0.5rem;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-500));
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem 0.3rem 0.75rem;
  border-radius: 4px 0 0 4px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.check {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.service-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how-it-works {
  position: relative;
  padding: var(--section-pad);
  background: var(--light-100);
}

.jungle-divider-top,
.jungle-divider-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.jungle-divider-top {
  top: 0;
  background: linear-gradient(to bottom, var(--light-200), transparent);
}

.jungle-divider-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--light-200), transparent);
}

.steps-wrapper {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 80px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jungle-500), var(--gold-500), var(--jungle-500), transparent);
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--jungle-300);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.step-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-100);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: var(--jungle-400);
  transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.step:hover .step-icon {
  background: rgba(22, 163, 74, 0.05);
  border-color: var(--accent-green);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
  transform: scale(1.08);
}

.step-icon svg {
  width: 36px;
  height: 36px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════ */
.why-us {
  padding: var(--section-pad);
  background: var(--light-200);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--light-100);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  border-color: rgba(22, 163, 74, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad);
  background-color: var(--light-100);
  background-image: url('pricing_bg.png');
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 60%,
      rgba(248, 250, 249, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.pricing .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card--featured {
  border-color: rgba(217, 119, 6, 0.5);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 48px rgba(217, 119, 6, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 20px 60px rgba(217, 119, 6, 0.2), 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-500));
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.25rem;
  border-radius: 0 0 12px 12px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-flag {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--jungle-200), var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.price-per {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-save {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.accent-link {
  color: var(--jungle-200);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(42, 122, 69, 0.4);
  transition: color 0.2s;
}

.accent-link:hover {
  color: var(--accent-green);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad);
  background: var(--light-200);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--light-100);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  border-color: rgba(42, 122, 69, 0.3);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold-400);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--jungle-500), var(--jungle-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-monkey {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: gentleRock 4s ease-in-out infinite;
}

@keyframes gentleRock {

  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }

  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--light-100);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s;
}

.social-link:hover {
  background: rgba(42, 122, 69, 0.2);
  border-color: rgba(42, 122, 69, 0.4);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-links li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--jungle-200);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--jungle-200);
}

/* ═══════════════════════════════════════════════════
   VIN MODAL
═══════════════════════════════════════════════════ */
.vin-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.vin-modal.active {
  opacity: 1;
  pointer-events: all;
}

.vin-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.vin-modal-box {
  position: relative;
  background: var(--light-100);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.vin-modal.active .vin-modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 0, 0, 0.2);
  color: #fff;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vin-modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vin-modal-box p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.modal-loading {
  margin: 1rem 0;
}

.loading-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--jungle-500), var(--jungle-200), var(--gold-400), var(--jungle-200), var(--jungle-500));
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.modal-result p {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes for hero */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-line {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 14, 8, 0.97);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    z-index: 999;
  }

  .vin-search-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 1rem;
    gap: 0.75rem;
  }

  .vin-input {
    font-size: 0.9rem;
    text-align: center;
  }

  .vin-counter {
    display: none;
  }

  .vin-search-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-divider {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}