/* ===================================================================
   ON-SITE CAR BATTERY REPLACEMENT — DESIGN SYSTEM
   =================================================================== */

:root {
  /* Brand Colors */
  --lime: #C6FF00;
  --lime-bright: #D4FF3A;
  --lime-dark: #A8E000;
  --lime-glow: rgba(198, 255, 0, 0.4);

  --black: #0A0A0A;
  --black-soft: #151515;
  --black-card: #1A1A1A;

  --grey-900: #2A2A2A;
  --grey-700: #4A4A4A;
  --grey-500: #8A8A8A;
  --grey-300: #C7C7C7;
  --grey-100: #F2F2F2;
  --grey-50: #F8F8F8;

  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Anton', 'Bebas Neue', 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-lime: 0 10px 40px rgba(198,255,0,0.35);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
}
.accent { color: var(--lime); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-700);
  padding: 8px 16px;
  background: var(--grey-100);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(198,255,0,0.4);
}
.btn-primary:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198,255,0,0.55);
}
.btn-ghost {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}

/* ============== TOPBAR ============== */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 var(--lime);
  animation: pulse 1.8s infinite;
}
.topbar-cta {
  font-weight: 700;
  color: var(--lime);
  border-bottom: 1px dashed var(--lime);
  padding-bottom: 1px;
}
.topbar-cta:hover { color: var(--lime-bright); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--lime-glow); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ============== HEADER / NAV ============== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-100);
  z-index: 150;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--black);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-500);
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lime-glow), transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.8s infinite;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--grey-700);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-sub strong { color: var(--black); }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-100);
}
.stat { display: flex; flex-direction: column; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--black);
  line-height: 1;
}
.stat .lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--grey-500);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-stack {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  margin: 0 auto;
}
.hero-card-main {
  position: relative;
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--lime), transparent 50%);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.hero-card-main img {
  width: 100%;
  filter: brightness(1.05);
}
.hero-card-pill {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
  font-size: 13px;
  animation: bob 4s ease-in-out infinite;
}
.hero-card-pill div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-card-pill strong { font-weight: 700; font-size: 14px; }
.hero-card-pill span { color: var(--grey-500); font-size: 12px; }
.pill-icon {
  width: 36px; height: 36px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pill-1 { top: 8%; left: -8%; animation-delay: 0s; }
.pill-2 { top: 45%; right: -10%; animation-delay: 1s; }
.pill-3 { bottom: 8%; left: 0%; animation-delay: 2s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Marquee */
.hero-marquee {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding: 18px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  transform: rotate(-1deg);
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
}
.marquee-track span:nth-child(odd) { color: var(--lime); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============== SECTIONS ============== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 17px;
  color: var(--grey-700);
  line-height: 1.7;
}

/* ============== SERVICES ============== */
.section-services { background: var(--grey-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--black);
  color: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--black-card);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(198,255,0,0.12);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--lime);
  color: var(--black);
  transform: scale(1.05);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--grey-300);
  font-size: 15px;
  line-height: 1.65;
}

/* ============== USP BANNER ============== */
.usp-banner {
  padding: 60px 0;
  background: var(--white);
}
.usp-inner {
  position: relative;
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  overflow: hidden;
}
.usp-glow {
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--lime-glow), transparent 65%);
  filter: blur(60px);
  opacity: 0.4;
}
.usp-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.usp-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 2px solid rgba(255,255,255,0.1);
  padding-right: 60px;
}
.usp-time-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 40px var(--lime-glow);
}
.usp-time-num .dash { display: inline-block; margin: 0 4px; opacity: 0.6; }
.usp-time-unit {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 4px;
  margin-top: -4px;
}
.usp-title {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}
.usp-copy p {
  color: var(--grey-300);
  font-size: 17px;
  margin-bottom: 1.5rem;
  max-width: 580px;
  line-height: 1.7;
}

/* ============== BRANDS ============== */
.section-brands { background: var(--white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.brand-tile {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.brand-tile:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--black);
}
.brand-tile:hover span {
  color: var(--lime);
}
.brand-tile:hover .brand-logo img {
  filter: brightness(0) invert(1);
}
.brand-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--black);
  transition: color 0.3s var(--ease);
}
.brand-logo svg { max-height: 100%; max-width: 100%; }
.brand-logo img {
  max-height: 52px;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  transition: filter 0.3s var(--ease);
}
.brand-tile span {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s var(--ease);
}
.brands-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--grey-700);
}
.brands-note strong { color: var(--black); }

/* ============== PROCESS ============== */
.section-process {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.section-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(198,255,0,0.08), transparent 50%);
  pointer-events: none;
}
.section-process .section-title { color: var(--white); }
.section-process .eyebrow {
  background: rgba(255,255,255,0.08);
  color: var(--lime);
}
.section-process .section-sub { color: var(--grey-300); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process-step {
  background: var(--black-card);
  border: 1px solid var(--grey-900);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.process-step:hover {
  border-color: var(--lime);
  transform: translateY(-6px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--white);
}
.process-step p {
  color: var(--grey-300);
  font-size: 15px;
  line-height: 1.65;
}

/* ============== WHY US ============== */
.section-why { background: var(--grey-50); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-100);
  transition: all 0.3s var(--ease);
}
.why-item:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--lime);
  font-size: 28px;
  margin-bottom: 18px;
}
.why-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.why-item p {
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.65;
}

/* ============== AREAS ============== */
.section-areas { background: var(--white); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.area-tag {
  display: inline-block;
  padding: 12px 20px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  transition: all 0.25s var(--ease);
  cursor: default;
}
.area-tag:hover {
  background: var(--black);
  color: var(--lime);
  border-color: var(--black);
  transform: translateY(-2px);
}
.areas-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--grey-700);
}
.areas-note a { color: var(--black); border-bottom: 2px solid var(--lime); font-weight: 700; }

/* ============== TESTIMONIALS ============== */
.section-testimonials { background: var(--grey-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--grey-100);
  transition: all 0.3s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--lime-dark);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.author { display: flex; flex-direction: column; }
.author strong { font-size: 15px; }
.author span { font-size: 13px; color: var(--grey-500); }

/* ============== FAQ ============== */
.section-faq { background: var(--white); }
.faq-container { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--grey-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item[open] {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--lime-dark);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--lime); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--grey-300);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item:not([open]) p { color: var(--grey-700); }

/* ============== CONTACT ============== */
.section-contact { background: var(--grey-50); padding-bottom: 120px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-left {
  padding: 60px 50px;
  background: var(--black);
  color: var(--white);
}
.contact-left .eyebrow {
  background: rgba(255,255,255,0.08);
  color: var(--lime);
}
.contact-left .section-title { color: var(--white); margin-bottom: 1rem; }
.contact-left > p { color: var(--grey-300); margin-bottom: 2rem; font-size: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  transition: background 0.25s var(--ease);
}
.contact-row:hover { background: rgba(255,255,255,0.05); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--lime);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-row span { display: flex; flex-direction: column; line-height: 1.3; }
.contact-row strong { font-size: 16px; color: var(--white); }
.contact-sub { font-size: 13px; color: var(--grey-500); margin-top: 2px; }

.contact-form { padding: 60px 50px; }
.contact-form h3 {
  font-size: 28px;
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--grey-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 12px;
  color: var(--grey-500);
  text-align: center;
  margin-top: 14px;
}
.form-note a { color: var(--black); border-bottom: 1px solid var(--grey-300); }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--black);
  color: var(--grey-300);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-col h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 1.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--grey-300); font-size: 14px; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--lime); }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 1rem; }
.brand-light img { filter: brightness(1.1); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 1rem; }
.footer-contact a { font-weight: 600; }
.footer-areas li { font-size: 13px; color: var(--grey-500); }
.footer-bottom {
  border-top: 1px solid var(--grey-900);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-tag {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* ============== FLOATING WHATSAPP ============== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 64px; height: 64px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s var(--ease);
}
.float-whatsapp.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.float-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-4px) scale(1.05);
}
.float-whatsapp svg {
  width: 32px; height: 32px;
  position: relative;
  z-index: 2;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s infinite;
  z-index: 1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.wa-tooltip::before {
  content: '';
  position: absolute;
  left: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--black);
}
.float-whatsapp:hover .wa-tooltip { opacity: 1; }

/* Floating Call (mobile) */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: var(--lime);
  color: var(--black);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lime);
  z-index: 999;
}
.float-call svg { width: 26px; height: 26px; }

/* ============== LEGAL PAGES ============== */
.legal-page {
  padding: 80px 0 100px;
  background: var(--white);
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-page h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}
.legal-page .legal-meta {
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-100);
}
.legal-page h2 {
  font-size: 24px;
  margin: 2.5rem 0 1rem;
  color: var(--black);
}
.legal-page h3 {
  font-size: 18px;
  margin: 1.5rem 0 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-page ul, .legal-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page ul li, .legal-page ol li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.legal-page ol li { list-style: decimal; }
.legal-page strong { color: var(--black); }
.legal-page a { color: var(--black); border-bottom: 2px solid var(--lime); font-weight: 600; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-stats { max-width: 540px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-card-stack { max-width: 420px; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .usp-time { border-right: none; padding-right: 0; padding-bottom: 30px; border-bottom: 2px solid rgba(255,255,255,0.1); }
  .contact-card { grid-template-columns: 1fr; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 24px; gap: 8px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--grey-100); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .topbar-cta { display: block; width: 100%; text-align: center; }
  .brand img { height: 44px; }
  .brand-text { display: none; }
  .hero { padding: 50px 0 70px; }
  .hero-card-pill { display: none; }
  .hero-card-pill.pill-2 { display: flex; right: -5%; padding: 10px 12px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .marquee-track { font-size: 16px; gap: 24px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .usp-inner { padding: 50px 30px; }
  .contact-left, .contact-form { padding: 40px 28px; }
  .float-whatsapp { width: 56px; height: 56px; bottom: 16px; left: 16px; }
  .float-whatsapp svg { width: 28px; height: 28px; }
  .float-call { display: flex; bottom: 16px; right: 16px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============== UTILITIES ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
::selection { background: var(--lime); color: var(--black); }
