/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --color-primary: #0C1824;
  --color-secondary: #162A3E;
  --color-accent: #00A6FB;
  --color-accent-hover: #0084C8;
  --color-accent-dark: #0077B3;
  --color-background: #F7F8FA;
  --color-surface: #ECEEF2;
  --color-text: #E8ECF1;
  --color-text-dark: #1A2332;
  --color-text-muted: #8899AA;
  --color-text-muted-light: #5C6B7A;
  --color-border: #2A3F55;
  --color-border-light: #D5DAE0;
  --color-emergency: #FF4D2A;
  --color-emergency-hover: #E03A1A;
  --color-footer-bg: #091018;

  /* Typography */
  --font-family: 'Inter', sans-serif;
  --heading-spacing: -0.03em;
  --eyebrow-spacing: 0.08em;
  --body-line-height: 1.65;
  --heading-line-height: 1.05;

  /* Sizing */
  --hero-font: clamp(3rem, 6vw, 5.5rem);
  --h2-font: clamp(2rem, 4vw, 3.5rem);
  --h3-font: clamp(1.25rem, 2vw, 1.75rem);
  --body-font: 1.0625rem;

  /* Spacing */
  --section-padding: 8rem;
  --section-padding-mobile: 5rem;
  --container-max: 1280px;
  --side-padding: 4rem;
  --side-padding-mobile: 1.5rem;

  /* Animation tokens */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --duration-micro: 150ms;
  --duration-small: 250ms;
  --duration-medium: 400ms;
  --duration-large: 600ms;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--body-font);
  line-height: var(--body-line-height);
  color: var(--color-text-dark);
  background: var(--color-background);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(0, 166, 251, 0.3);
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

/* ===== SECTION BASE ===== */
.section {
  padding: var(--section-padding) 0;
}
.section-dark {
  background: var(--color-primary);
  color: var(--color-text);
}
.section-secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}
.section-light {
  background: var(--color-background);
  color: var(--color-text-dark);
}

/* ===== EYEBROW ===== */
.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: var(--eyebrow-spacing);
  margin-bottom: 1rem;
}
.eyebrow-accent { color: var(--color-accent); }
.eyebrow-dark { color: var(--color-accent-dark); }

/* ===== HEADINGS ===== */
.section-heading {
  font-size: var(--h2-font);
  font-weight: 800;
  letter-spacing: var(--heading-spacing);
  line-height: var(--heading-line-height);
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  min-height: 48px;
  cursor: pointer;
  transition: transform var(--duration-small) var(--ease-out),
              box-shadow var(--duration-small) var(--ease-out),
              background-color var(--duration-small) var(--ease-out);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 166, 251, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 166, 251, 0.2);
}

.btn-emergency {
  background: var(--color-emergency);
  color: #fff;
  animation: emergency-pulse 2s ease-in-out infinite;
}
.btn-emergency:hover {
  background: var(--color-emergency-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 42, 0.3);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--color-accent);
  background: rgba(0, 166, 251, 0.08);
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: var(--color-emergency);
  color: #fff;
  text-align: center;
  padding: 10px 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  animation: slide-down var(--duration-medium) var(--ease-out) 0s both;
}
.emergency-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.emergency-banner a:hover {
  text-decoration-thickness: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1010;
  transition: background-color 0.35s ease-out,
              backdrop-filter 0.35s ease-out,
              border-color 0.35s ease-out;
  border-bottom: 1px solid transparent;
  animation: fade-in var(--duration-medium) var(--ease-out) 0.2s both;
}
.navbar-scrolled {
  background: rgba(12, 24, 36, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 166, 251, 0.12);
}
.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}
.logo .electric {
  color: var(--color-accent);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: color var(--duration-small) var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--duration-small) var(--ease-out);
}
.nav-link:hover {
  color: var(--color-accent);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--duration-small) var(--ease-out);
}
.nav-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 16px rgba(0, 166, 251, 0.3);
}

/* Hamburger */
.menu-toggle {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 24, 36, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1005;
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.mobile-menu a:hover {
  color: var(--color-accent);
}
.mobile-menu .mobile-emergency-btn {
  margin-top: 1rem;
  padding: 16px 40px;
  background: var(--color-emergency);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
  background: var(--color-primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,24,36,1) 0%, rgba(12,24,36,0.85) 35%, rgba(12,24,36,0.5) 65%, rgba(12,24,36,0.3) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0,166,251,0.08) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}
.hero-eyebrow {
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: var(--eyebrow-spacing);
  margin-bottom: 1.5rem;
  animation: fade-up var(--duration-large) var(--ease-out) 0.35s both;
}
.hero-headline {
  font-size: var(--hero-font);
  font-weight: 900;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-spacing);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  animation: clip-reveal-left var(--duration-large) var(--ease-out) 0.4s both;
}
.hero-headline .accent {
  color: var(--color-accent);
}
.hero-subtext {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  animation: fade-up var(--duration-large) var(--ease-out) 0.6s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: scale-in var(--duration-large) var(--ease-out) 0.8s both;
}
.hero-trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fade-up var(--duration-large) var(--ease-out) 0.9s both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.875rem;
}
.hero-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  animation: particle-float linear infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce-down 1.5s ease-in-out infinite;
}
.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: rgba(0, 166, 251, 0.5);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding-bottom: 0;
}
.trust-bar-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(22, 42, 62, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 166, 251, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color var(--duration-small) var(--ease-out),
              box-shadow var(--duration-small) var(--ease-out);
}
.trust-bar-card:hover {
  border-color: rgba(0, 166, 251, 0.35);
  box-shadow: 0 0 30px rgba(0, 166, 251, 0.08);
}
.trust-stat {
  text-align: center;
  flex: 1;
}
.trust-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.trust-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 166, 251, 0.15);
  flex-shrink: 0;
}

/* ===== TRUST TICKER / MARQUEE ===== */
.trust-ticker {
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(0, 166, 251, 0.2);
  border-bottom: 1px solid rgba(0, 166, 251, 0.2);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  margin-top: 3rem;
}
.trust-ticker::before,
.trust-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-ticker::before {
  left: 0;
  background: linear-gradient(to right, #091018 0%, transparent 100%);
}
.trust-ticker::after {
  right: 0;
  background: linear-gradient(to left, #091018 0%, transparent 100%);
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  white-space: nowrap;
  padding: 0 2.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.ticker-item::after {
  content: '\2022';
  color: rgba(0, 166, 251, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(12, 24, 36, 0.08);
  transition: transform var(--duration-small) var(--ease-out),
              box-shadow var(--duration-small) var(--ease-out);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(12, 24, 36, 0.12);
}
.service-card-large {
  grid-column: span 1;
  position: relative;
  overflow: hidden;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 166, 251, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
}
.service-card-icon.emergency-icon {
  background: rgba(255, 77, 42, 0.08);
}
.service-card-icon.emergency-icon svg {
  stroke: var(--color-emergency);
}
.service-card.emergency-card {
  border-left: 3px solid var(--color-emergency);
}
.service-card h3 {
  font-size: var(--h3-font);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: var(--heading-spacing);
}
.service-card p {
  color: var(--color-text-muted-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Small service cards grid */
.services-small-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ===== DIFFERENTIATORS ===== */
.diff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}
.diff-item {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  transition: all var(--duration-small) var(--ease-out);
}
.diff-item:hover .diff-stat {
  text-shadow: 0 0 20px rgba(0, 166, 251, 0.3);
}
.diff-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.diff-icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent);
  margin: 0 auto 0.75rem;
}
.diff-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.diff-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: var(--body-line-height);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.5rem;
  line-height: var(--body-line-height);
}
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 0.9375rem;
}
.about-features li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  margin-right: -10%;
}
.about-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== EV CHARGER SECTION ===== */
.ev-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.ev-image-wrapper {
  display: flex;
  justify-content: center;
}
.ev-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(0, 166, 251, 0.2), 0 0 120px rgba(0, 166, 251, 0.08);
  max-width: 380px;
  width: 100%;
  transition: box-shadow var(--duration-small) var(--ease-out);
}
.ev-image-wrapper img:hover {
  box-shadow: 0 0 80px rgba(0, 166, 251, 0.3), 0 0 140px rgba(0, 166, 251, 0.12);
}
.ev-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.ev-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}
.ev-features li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(12, 24, 36, 0.08);
  position: relative;
  transition: transform var(--duration-small) var(--ease-out),
              box-shadow var(--duration-small) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(12, 24, 36, 0.1);
}
.testimonial-quote-mark {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  stroke: none;
}
.testimonial-text {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: var(--body-line-height);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}
.testimonial-service {
  display: inline-block;
  background: var(--color-surface);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-medium) var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 36, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--duration-small) var(--ease-out);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover {
  box-shadow: 0 0 24px rgba(0, 166, 251, 0.12);
}
.gallery-overlay span {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9375rem;
}
.gallery-overlay .gallery-line {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== SERVICE AREAS ===== */
.areas-section {
  position: relative;
  overflow: hidden;
}
.areas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.areas-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  mix-blend-mode: multiply;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
.areas-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  height: 400px;
}
.areas-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  list-style: none;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text-dark);
}
.areas-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}
.areas-body {
  color: var(--color-text-muted-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 166, 251, 0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--duration-small) var(--ease-standard);
  min-height: 48px;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question:hover {
  color: var(--color-accent);
}
.faq-question.active {
  color: var(--color-accent);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-standard);
}
.faq-question .faq-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-muted);
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
}
.faq-question.active .faq-icon svg {
  stroke: var(--color-accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-standard);
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: var(--body-line-height);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.form-input {
  background: rgba(22, 42, 62, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--duration-micro) var(--ease-standard),
              box-shadow var(--duration-micro) var(--ease-standard);
}
.form-input::placeholder {
  color: var(--color-text-muted);
}
.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 166, 251, 0.25);
  outline: none;
}
.form-input option {
  background: var(--color-primary);
  color: var(--color-text);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  min-height: 52px;
  transition: all var(--duration-small) var(--ease-out);
}
.form-submit:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 8px 25px rgba(0, 166, 251, 0.3);
  transform: translateY(-2px);
}
.form-emergency-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.form-emergency-note a {
  color: var(--color-emergency);
  font-weight: 600;
}
.form-emergency-note a:hover {
  text-decoration: underline;
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail.emergency-detail svg {
  stroke: var(--color-emergency);
}
.contact-detail-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.contact-detail-text a {
  color: var(--color-accent);
  font-weight: 500;
}
.contact-detail-text a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-footer-bg);
  padding: 4rem 0 0;
  color: var(--color-text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-logo .electric {
  color: var(--color-accent);
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.footer-license {
  font-size: 0.75rem;
  color: var(--color-text-muted-light);
}
.footer-heading {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color var(--duration-micro) ease;
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  color: var(--color-text-muted);
  transition: color var(--duration-micro) ease;
}
.footer-contact-item a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(0, 166, 251, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted-light);
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(22, 42, 62, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(0, 166, 251, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-accept {
  background: var(--color-accent);
  color: #fff;
  border: none;
}
.cookie-accept:hover {
  background: var(--color-accent-hover);
}
.cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.cookie-decline:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

/* ===== MOBILE FLOATING CTA ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12, 24, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 166, 251, 0.15);
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.mobile-cta-bar.visible {
  transform: translateY(0);
}
.mobile-cta-bar .btn {
  flex: 1;
  min-height: 44px;
  font-size: 0.875rem;
  padding: 10px 16px;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== KEYFRAMES ===== */
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes clip-reveal-left {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes emergency-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 77, 42, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(255, 77, 42, 0.45); }
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  8% { opacity: 0.5; }
  50% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1); }
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes stagger-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-medium) var(--ease-out),
              transform var(--duration-medium) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-medium) var(--ease-out),
              transform var(--duration-medium) var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-medium) var(--ease-out),
              transform var(--duration-medium) var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--duration-large) var(--ease-out),
              transform var(--duration-large) var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger items */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
}
.stagger-item.visible {
  animation: stagger-in var(--duration-medium) var(--ease-out) forwards;
}
.stagger-item:nth-child(1) { animation-delay: 0ms; }
.stagger-item:nth-child(2) { animation-delay: 100ms; }
.stagger-item:nth-child(3) { animation-delay: 200ms; }
.stagger-item:nth-child(4) { animation-delay: 300ms; }
.stagger-item:nth-child(5) { animation-delay: 400ms; }
.stagger-item:nth-child(6) { animation-delay: 500ms; }
.stagger-item:nth-child(7) { animation-delay: 600ms; }
.stagger-item:nth-child(8) { animation-delay: 700ms; }

/* Particle positions */
.particle:nth-child(1)  { left: 3%;  bottom: 0; width: 3px; height: 3px; animation-duration: 10s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 10%; bottom: 0; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 1.2s; }
.particle:nth-child(3)  { left: 18%; bottom: 0; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 2.5s; }
.particle:nth-child(4)  { left: 25%; bottom: 0; width: 5px; height: 5px; animation-duration: 13s; animation-delay: 0.8s; }
.particle:nth-child(5)  { left: 33%; bottom: 0; width: 3px; height: 3px; animation-duration: 9s;  animation-delay: 3.1s; }
.particle:nth-child(6)  { left: 40%; bottom: 0; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 1.7s; }
.particle:nth-child(7)  { left: 48%; bottom: 0; width: 2px; height: 2px; animation-duration: 15s; animation-delay: 4.0s; }
.particle:nth-child(8)  { left: 55%; bottom: 0; width: 3px; height: 3px; animation-duration: 10s; animation-delay: 0.5s; }
.particle:nth-child(9)  { left: 62%; bottom: 0; width: 5px; height: 5px; animation-duration: 11s; animation-delay: 2.8s; }
.particle:nth-child(10) { left: 68%; bottom: 0; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 1.0s; }
.particle:nth-child(11) { left: 74%; bottom: 0; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 3.5s; }
.particle:nth-child(12) { left: 80%; bottom: 0; width: 3px; height: 3px; animation-duration: 9s;  animation-delay: 0.3s; }
.particle:nth-child(13) { left: 85%; bottom: 0; width: 2px; height: 2px; animation-duration: 12s; animation-delay: 2.0s; }
.particle:nth-child(14) { left: 90%; bottom: 0; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 4.2s; }
.particle:nth-child(15) { left: 95%; bottom: 0; width: 3px; height: 3px; animation-duration: 11s; animation-delay: 1.5s; }
.particle:nth-child(16) { left: 7%;  bottom: 0; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 5.0s; }
.particle:nth-child(17) { left: 22%; bottom: 0; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 3.8s; }
.particle:nth-child(18) { left: 52%; bottom: 0; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 2.3s; }
.particle:nth-child(19) { left: 72%; bottom: 0; width: 2px; height: 2px; animation-duration: 12s; animation-delay: 4.7s; }
.particle:nth-child(20) { left: 88%; bottom: 0; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0.7s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .stagger-item {
    opacity: 1;
    transform: none;
  }
  .hero-eyebrow, .hero-headline, .hero-subtext, .hero-ctas, .hero-trust-badges,
  .emergency-banner, .navbar {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
  }
  .particles { display: none; }
  .ticker-track { animation: none; }
  .btn-emergency { animation: none; }
  .scroll-indicator { animation: none; }
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  :root {
    --side-padding: 2rem;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .services-small-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image-wrapper {
    margin-right: 0;
    border-radius: var(--radius-md);
  }
  .about-image-wrapper img {
    height: 320px;
  }
  .ev-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .ev-image-wrapper img {
    max-width: 300px;
    margin: 0 auto;
  }
  .ev-features { align-items: center; }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .areas-map { height: 300px; }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .mobile-cta-bar { display: flex; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --side-padding: var(--side-padding-mobile);
  }

  .particles { display: none; }
  .scroll-indicator { display: none; }

  /* Emergency banner */
  .emergency-banner { font-size: 0.75rem; padding: 8px 1rem; }

  /* Hero */
  .hero { padding-top: 100px; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-headline { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-subtext { max-width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-trust-badges {
    justify-content: center;
    gap: 1rem;
  }

  /* Trust bar */
  .trust-bar-card {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .trust-divider { display: none; }
  .trust-stat-number { font-size: 2rem; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-small-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Differentiators */
  .diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .diff-item { max-width: none; }
  .diff-item:last-child {
    grid-column: 1 / -1;
    max-width: 240px;
    justify-self: center;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* FAQ */
  .faq-question { font-size: 1rem; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-map { height: 180px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Cookie */
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }

  /* Stagger timing */
  .stagger-item:nth-child(1) { animation-delay: 0ms; }
  .stagger-item:nth-child(2) { animation-delay: 80ms; }
  .stagger-item:nth-child(3) { animation-delay: 160ms; }
  .stagger-item:nth-child(4) { animation-delay: 240ms; }
  .stagger-item:nth-child(5) { animation-delay: 320ms; }
  .stagger-item:nth-child(6) { animation-delay: 400ms; }

  /* Reduce reveal distance */
  .reveal { transform: translateY(20px); }

  /* Mobile marquee speed */
  .ticker-track { animation-duration: 20s; }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 480px) {
  /* Hero */
  .hero { min-height: 90vh; padding-top: 80px; }
  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-subtext { font-size: 0.9375rem; }
  .hero-trust-badges { gap: 0.75rem; flex-wrap: wrap; }
  .hero-trust-badges span { font-size: 0.75rem; }

  /* Emergency banner */
  .emergency-banner { font-size: 0.6875rem; padding: 6px 0.75rem; }
  .emergency-banner .emergency-desktop { display: none; }

  /* Services */
  .services-small-grid { grid-template-columns: 1fr; }
  .service-card { padding: 20px 16px; }

  /* Differentiators */
  .diff-grid { grid-template-columns: 1fr; gap: 1rem; }
  .diff-item:last-child { grid-column: auto; max-width: none; }
  .diff-item { padding: 20px 16px; }

  /* About */
  .about-image-wrapper img { height: 240px; }

  /* EV Charger */
  .ev-image-wrapper img { max-width: 240px; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }
  .testimonial-quote { font-size: 0.9375rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Contact */
  .contact-map { height: 160px; }
  .contact-info-item { font-size: 0.9375rem; }

  /* FAQ */
  .faq-question { font-size: 0.9375rem; padding: 14px 0; }
  .faq-answer { font-size: 0.9375rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Trust bar */
  .trust-bar-card { padding: 16px; gap: 1rem; }
  .trust-stat-number { font-size: 1.5rem; }
  .trust-stat-label { font-size: 0.6875rem; }

  /* Areas */
  .areas-list { grid-template-columns: 1fr; }

  /* Ticker */
  .ticker-track { animation-duration: 15s; }
  .ticker-item { font-size: 0.75rem; padding: 0 1.5rem; }

  /* Cookie */
  .cookie-text { font-size: 0.8125rem; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 160px 0 80px;
  background: var(--color-background);
  min-height: 100vh;
}
.legal-page h1 {
  font-size: var(--h2-font);
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: var(--heading-spacing);
  margin-bottom: 0.5rem;
}
.legal-page .legal-updated {
  color: var(--color-text-muted-light);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.legal-page .legal-disclaimer {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--color-text-muted-light);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--color-accent);
}
.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-page p, .legal-page li {
  color: var(--color-text-muted-light);
  line-height: var(--body-line-height);
  margin-bottom: 1rem;
}
.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page strong {
  color: var(--color-text-dark);
}
.legal-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}
.legal-contact p {
  margin-bottom: 0.25rem;
}
