/* ═══════════════════════════════════════════════════════════
   HAILEY DEVICE REPAIR — style.css
   Dark theme inspired by codewiki.google design language
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties (Dark Theme) ─────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:       #0d1117;
  --bg-primary:    #0d1117;
  --bg-surface:    #161b22;
  --bg-elevated:   #1c2230;
  --bg-card:       #1a2033;
  --bg-input:      #1e2736;
  --bg-alt:        #111827;

  /* Text */
  --text-primary:  #e6edf3;
  --text-secondary: #8b949e;
  --text-muted:    #7e8a99;
  --text-on-accent: #ffffff;

  /* Borders */
  --border-subtle:  rgba(255,255,255,0.07);
  --border-default: rgba(255,255,255,0.12);
  --border-strong:  rgba(255,255,255,0.2);

  /* Accent — electric indigo/blue (CodeWiki inspired) */
  --accent:        #4f8ef7;
  --accent-hover:  #6ba3fa;
  --accent-dim:    rgba(79,142,247,0.12);
  --accent-glow:   rgba(79,142,247,0.25);

  /* Card accent colors */
  --color-blue:    #4f8ef7;
  --color-green:   #3fb950;
  --color-purple:  #a371f7;
  --color-orange:  #f78166;
  --color-cyan:    #39c5cf;
  --color-indigo:  #818cf8;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:  0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-float: 0 8px 32px rgba(0,0,0,0.5);

  /* Transitions */
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Service area map (dark mode) */
  --area-mountain: var(--accent);
  --area-road: #8b949e;
  --area-road-label: #b0bec5;
  --area-river: #4dabf7;
  --area-dot: #b0bec5;
  --area-label: var(--text-primary);
}

/* Light theme overrides */
[data-theme="light"] {
  --bg-base:       #f8f9fb;
  --bg-primary:    #f8f9fb;
  --bg-surface:    #ffffff;
  --bg-elevated:   #f0f2f5;
  --bg-card:       #ffffff;
  --bg-input:      #f4f5f7;
  --bg-alt:        #eef0f4;

  --text-primary:  #111827;
  --text-secondary: #4b5563;
  --text-muted:    #6b7280;
  --text-on-accent: #ffffff;

  --border-subtle:  rgba(0,0,0,0.05);
  --border-default: rgba(0,0,0,0.09);
  --border-strong:  rgba(0,0,0,0.15);

  --accent:        #2563eb;
  --accent-hover:  #1e40af;
  --accent-dim:    rgba(37,99,235,0.06);
  --accent-glow:   rgba(37,99,235,0.15);
  --accent-green:  #059669;
  --green-dim:     rgba(5,150,105,0.08);

  --shadow-card:  0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-float: 0 8px 32px rgba(0,0,0,0.12);

  /* Service area map */
  --area-mountain: var(--accent);
  --area-road: var(--text-secondary);
  --area-road-label: var(--text-secondary);
  --area-river: #4dabf7;
  --area-dot: var(--text-secondary);
  --area-label: var(--text-primary);
}

/* ─── Body scroll lock (mobile menu open) ─────────────────── */
body.menu-open {
  overflow: hidden;
}

/* ─── Accessibility ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 200;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible — keyboard only */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Material Symbols sizing */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
/* Button ripple effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple 0.5s ease-out;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
.btn .material-symbols-outlined {
  font-size: 1.1rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ─── Section Layout ──────────────────────────────────────── */
.section {
  padding: var(--space-4xl) 0;
  scroll-margin-top: 72px;
}
.section--alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  background: var(--accent-dim);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.text-accent { color: var(--accent); }

/* ─── PROMO BANNER ────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.5;
  overflow: hidden;
  max-height: 60px;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.promo-banner.dismissed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.5rem var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}
.promo-banner-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.promo-banner-text {
  margin: 0;
}
.promo-banner-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.promo-banner-text a:hover {
  opacity: 0.85;
}
.promo-banner-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background var(--transition);
}
.promo-banner-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.promo-banner-close .material-symbols-outlined {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .promo-banner {
    font-size: 0.78rem;
  }
  .promo-banner-inner {
    padding: 0.4rem var(--space-md);
  }
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
[data-theme="light"] .nav {
  background: rgba(248,250,252,0.9);
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--accent); }
.nav-logo-icon {
  font-size: 1.4rem;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  transition: filter 300ms, transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-logo:hover .nav-logo-icon {
  filter: drop-shadow(0 0 6px var(--accent));
  transform: scale(1.1) rotate(-8deg);
}
.nav-logo-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.nav-logo-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}
.nav-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), transform 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}
/* Animated underline — expands from center on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 250ms cubic-bezier(0.16, 1, 0.3, 1), left 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover {
  color: var(--text-primary);
}
.nav-link:hover::after {
  width: 60%;
  left: 20%;
}
.nav-link.active {
  color: var(--accent);
}
.nav-link.active::after {
  width: 100%;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  height: 2px;
}
.nav-link {
  position: relative;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: var(--space-md);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.theme-icon-dark,
.theme-icon-light {
  font-size: 1.1rem;
}
[data-theme="dark"] .theme-icon-dark { display: none; }
[data-theme="light"] .theme-icon-light { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-md) var(--space-xl) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  gap: var(--space-xs);
  background: var(--bg-primary);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-mobile-backdrop.visible {
  display: block;
  opacity: 1;
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}
.nav-mobile .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  min-height: 44px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link:focus-visible {
  background: var(--bg-card);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

/* Dot grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
[data-theme="light"] .hero-bg-grid {
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
}

/* Glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,142,247,0.25) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(163,113,247,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  margin-bottom: var(--space-xl);
}
.hero-eyebrow .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.hero-headline-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #a371f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust-item .material-symbols-outlined {
  font-size: 1rem;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.hero-trust-sep {
  color: var(--border-strong);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── RECENTLY FIXED TICKER ─────────────────────────────── */
.ticker-section {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.ticker-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.ticker-icon {
  color: var(--color-green);
  font-size: 1.1rem;
  animation: ticker-pulse 2s ease-in-out infinite;
}

@keyframes ticker-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ticker-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ticker-track {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-scroll {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: ticker-slide 40s linear infinite;
}

@keyframes ticker-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-scroll:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.ticker-item:hover {
  border-color: var(--accent);
}

.ticker-device {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.ticker-repair {
  font-size: 0.8rem;
  color: var(--accent);
  padding: 2px 8px;
  background: rgba(88,166,255,0.08);
  border-radius: 100px;
}

.ticker-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .ticker-scroll {
    animation: none;
    overflow-x: auto;
  }
  .ticker-icon {
    animation: none;
  }
}

@media print {
  .ticker-section { display: none; }
}

/* ─── CARDS GRID ─────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-float);
}
.card--highlight {
  border-color: rgba(79,142,247,0.3);
  background: linear-gradient(135deg, rgba(79,142,247,0.06) 0%, var(--bg-card) 60%);
}
.card--highlight:hover {
  border-color: rgba(79,142,247,0.5);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}
.card-icon .material-symbols-outlined {
  font-size: 1.5rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.card-icon--blue   { background: rgba(79,142,247,0.12);  color: var(--color-blue); }
.card-icon--green  { background: rgba(63,185,80,0.12);   color: var(--color-green); }
.card-icon--purple { background: rgba(163,113,247,0.12); color: var(--color-purple); }
.card-icon--orange { background: rgba(247,129,102,0.12); color: var(--color-orange); }
.card-icon--cyan   { background: rgba(57,197,207,0.12);  color: var(--color-cyan); }
.card-icon--red    { background: rgba(248,81,73,0.12);   color: #f85149; }
.card-icon--indigo { background: rgba(129,140,248,0.12); color: var(--color-indigo); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.card-features .material-symbols-outlined {
  font-size: 0.95rem;
  color: var(--color-green);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  flex-shrink: 0;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--space-sm);
}
.card-link .material-symbols-outlined {
  font-size: 0.95rem;
  transition: transform var(--transition);
}
.card-link:hover .material-symbols-outlined {
  transform: translateX(3px);
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.pricing-category {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.pricing-category:hover {
  border-color: var(--border-default);
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}
.pricing-category--highlight {
  border-color: rgba(57,197,207,0.3);
  background: linear-gradient(135deg, rgba(57,197,207,0.05) 0%, var(--bg-card) 60%);
}
.pricing-category--highlight:hover {
  border-color: rgba(57,197,207,0.5);
}

.pricing-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-category-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-category-icon .material-symbols-outlined {
  font-size: 1.3rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.pricing-category-icon--blue   { background: rgba(79,142,247,0.12);  color: var(--color-blue); }
.pricing-category-icon--green  { background: rgba(63,185,80,0.12);   color: var(--color-green); }
.pricing-category-icon--purple { background: rgba(163,113,247,0.12); color: var(--color-purple); }
.pricing-category-icon--cyan   { background: rgba(57,197,207,0.12);  color: var(--color-cyan); }

.pricing-category-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-list {
  padding: var(--space-sm) 0;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.65rem var(--space-xl);
  transition: background var(--transition);
}
.pricing-item:hover {
  background: var(--bg-elevated);
}

.pricing-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pricing-divider {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 var(--space-sm);
  min-width: 20px;
}

.pricing-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.pricing-price strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding: var(--space-lg) var(--space-xl);
  background: var(--accent-dim);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pricing-note .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.pricing-note em {
  font-style: italic;
  color: var(--text-primary);
}

/* ─── PROCESS ────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.process-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-dim);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--accent) 0%, #a371f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

.process-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--accent);
}
.process-icon .material-symbols-outlined {
  font-size: 1.6rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.process-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  padding-top: 3rem;
  flex-shrink: 0;
}
.process-connector .material-symbols-outlined {
  font-size: 1.5rem;
}

/* ─── MAIL-IN ────────────────────────────────────────────── */
.mailin-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.mailin-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.mailin-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.mailin-step-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.mailin-step-icon .material-symbols-outlined {
  font-size: 1.2rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.mailin-step strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.mailin-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.mailin-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Map visual */
.mailin-map {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  min-height: 280px;
}
.mailin-map-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.mailin-locations {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.mailin-loc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.mailin-loc:hover {
  background: var(--bg-elevated);
  border-color: var(--border-default);
}
.mailin-loc .material-symbols-outlined {
  font-size: 1rem;
  color: var(--text-muted);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.mailin-loc--primary {
  background: var(--accent-dim);
  border-color: rgba(79,142,247,0.3);
  color: var(--text-primary);
}
.mailin-loc--primary .material-symbols-outlined {
  color: var(--accent);
}
.mailin-loc--primary em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--accent);
  margin-left: 0.25rem;
}
.mailin-loc--state {
  margin-top: var(--space-sm);
  background: linear-gradient(135deg, rgba(163,113,247,0.08), rgba(79,142,247,0.08));
  border-color: rgba(163,113,247,0.2);
}
.mailin-loc--state .material-symbols-outlined {
  color: var(--color-purple);
}

/* ─── TRUST / STATS ──────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.trust-stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trust-stat:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.trust-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.trust-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.review-stars {
  font-size: 1rem;
  color: #f0b429;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}
.review-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.review-cta {
  text-align: center;
}

/* ─── TIPS / BLOG PAGE ────────────────────────────────────── */

/* Table of contents */
.tips-toc {
  max-width: 640px;
  margin: var(--space-xl) auto 0;
}
.tips-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.tips-toc-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.tips-toc-item:hover {
  background: var(--bg-elevated);
  transform: translateX(4px);
}
.tips-toc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.tips-toc-label {
  font-weight: 600;
  flex: 1;
}
.tips-toc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.tips-toc-tag--emergency {
  color: var(--color-orange);
  background: rgba(247, 129, 102, 0.1);
}

/* Article layout */
.tips-article-inner {
  max-width: 720px;
  margin: 0 auto;
}
.tips-article-header {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.tips-article-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.tips-article-title-icon {
  font-size: 1.6rem;
  margin-top: 0.15em;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Article body */
.tips-article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--text-primary);
}
.tips-article-body p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.tips-article-intro {
  font-size: 1.05rem;
  color: var(--text-primary) !important;
  line-height: 1.7;
  margin-bottom: var(--space-xl) !important;
}
.tips-article-body ul,
.tips-article-body ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}
.tips-article-body li {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.tips-article-body code {
  background: var(--bg-elevated);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.85em;
  font-family: 'Fira Code', 'Consolas', monospace;
}

/* Callout boxes */
.tips-callout {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  border-left: 4px solid;
}
.tips-callout p { margin-bottom: 0; }
.tips-callout-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.tips-callout--danger {
  background: rgba(247, 129, 102, 0.08);
  border-color: var(--color-orange);
}
.tips-callout--danger .tips-callout-icon { color: var(--color-orange); }
.tips-callout--tip {
  background: rgba(79, 142, 247, 0.08);
  border-color: var(--color-blue);
}
.tips-callout--tip .tips-callout-icon { color: var(--color-blue); }

/* Ordered steps */
.tips-steps {
  counter-reset: tip-step;
  list-style: none;
  padding-left: 0;
}
.tips-steps li {
  counter-increment: tip-step;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-lg);
}
.tips-steps li::before {
  content: counter(tip-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LCD vs OLED comparison cards */
.tips-compare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.tips-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.tips-compare-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.tips-compare-card--accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(79, 142, 247, 0.05));
}
.tips-compare-price {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.tips-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tips-compare-card li {
  padding: var(--space-xs) 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.tips-compare-card li:last-child { border-bottom: none; }

/* Battery signs grid */
.tips-signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.tips-sign-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
}
.tips-sign-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
}
.tips-sign-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  padding-right: 2rem;
}
.tips-sign-card p {
  font-size: 0.85rem;
}

/* Repair vs Replace math cards */
.tips-math-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.tips-math-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.tips-math-card h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}
.tips-math-verdict {
  font-size: 1.2rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.tips-math-card--yes { border-color: rgba(63, 185, 80, 0.3); }
.tips-math-card--yes .tips-math-verdict { color: var(--color-green); }
.tips-math-card--no { border-color: rgba(247, 129, 102, 0.3); }
.tips-math-card--no .tips-math-verdict { color: var(--color-orange); }
.tips-math-card p {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

/* Factor list (repair vs replace) */
.tips-factor-list {
  list-style: none;
  padding: 0;
}
.tips-factor-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.tips-factor-list li:last-child { border-bottom: none; }

/* Numbered step cards (slow laptop) */
.tips-steps-numbered {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.tips-step-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}
.tips-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tips-step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.tips-step-card p {
  font-size: 0.9rem;
}

/* Inline CTA */
.tips-cta-inline {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}
.tips-cta-inline p {
  margin: 0 !important;
  font-weight: 600;
  color: var(--text-primary) !important;
  white-space: nowrap;
}

/* Tips responsive */
@media (max-width: 640px) {
  .tips-compare-cards,
  .tips-math-examples {
    grid-template-columns: 1fr;
  }
  .tips-cta-inline {
    flex-direction: column;
    text-align: center;
  }
  .tips-step-card {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .tips-article-title {
    flex-direction: column;
  }
}

/* ─── BEFORE / AFTER GALLERY ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  border-color: var(--border-default);
  box-shadow: var(--shadow-card);
}

/* Slider container */
.gallery-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* Before (full width, clipped by handle) */
.gallery-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

/* After (always full size behind) */
.gallery-after {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Placeholder visuals (replace with real images later) */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}
.gallery-placeholder--before {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}
.gallery-placeholder--after {
  background: linear-gradient(135deg, #0d2137 0%, #0a3d62 40%, #1a6b4a 100%);
}
.gallery-placeholder-icon {
  font-size: 3rem;
  opacity: 0.5;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}
.gallery-placeholder--before .gallery-placeholder-icon {
  color: var(--color-orange);
}
.gallery-placeholder--after .gallery-placeholder-icon {
  color: var(--color-green);
}
.gallery-placeholder-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}
.gallery-placeholder-desc {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
}

/* Handle / divider line */
.gallery-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.gallery-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.6);
}
.gallery-handle-knob {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  pointer-events: auto;
  cursor: col-resize;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gallery-handle-knob:hover,
.gallery-slider:active .gallery-handle-knob {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 4px var(--accent-dim);
}
.gallery-handle-knob .material-symbols-outlined {
  font-size: 1.2rem;
  transform: rotate(90deg);
}

/* Caption bar */
.gallery-caption {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
}
.gallery-caption-device {
  font-weight: 600;
  color: var(--text-primary);
}
.gallery-caption-repair {
  color: var(--text-secondary);
}
.gallery-caption-time {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Note */
.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: var(--space-xl);
  font-style: italic;
}

/* Keyboard focus on slider handle */
.gallery-handle:focus-visible .gallery-handle-knob {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ─── SERVICE AREA MAP ────────────────────────────────────── */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.area-map {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}
[data-theme="dark"] .area-map {
  background: #e8edf4;
  border-color: #c8d0dc;
}
[data-theme="dark"] .area-map .area-svg {
  --area-mountain: #3a6bc5;
  --area-road: #4a5568;
  --area-road-label: #4a5568;
  --area-river: #2b7de9;
  --area-dot: #4a5568;
  --area-label: #1a202c;
}

.area-svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
}

/* ── Service Area: Map entrance choreography ── */

/* Mountain silhouettes fade in */
.area-mountain {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.area-map.visible .area-mountain-1 { opacity: 0.3; }
.area-map.visible .area-mountain-2 { opacity: 0.2; }

/* Highway 75 fades in with mountains */
.area-highway {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}
.area-map.visible .area-highway { opacity: 0.8; }

/* Big Wood River draw-in */
.area-river {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}
.area-map.visible .area-river {
  stroke-dashoffset: 0;
}

/* HWY 75 label fades in after road draws */
.area-hwy-label {
  opacity: 0;
  transition: opacity 500ms 1.8s;
}
.area-map.visible .area-hwy-label { opacity: 0.75; }

/* Town dots: stagger pop-in south to north */
.area-town {
  cursor: pointer;
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 200ms;
}
.area-town--bellevue  { transition-delay: 1.2s; }
.area-town--hailey    { transition-delay: 1.5s; }
.area-town--ketchum   { transition-delay: 1.8s; }
.area-town--sunvalley { transition-delay: 2.0s; }

.area-map.visible .area-town {
  opacity: 1;
  transform: scale(1);
}

/* Town hover: glow + scale + accent color */
.area-town:hover {
  transform: scale(1.15) !important;
  filter: drop-shadow(0 0 6px var(--accent));
}
.area-town:hover text {
  fill: var(--accent) !important;
}

/* Distance markers and labels fade in last */
.area-distance {
  opacity: 0;
  transition: opacity 600ms 2.3s;
}
.area-map.visible .area-distance { opacity: 0.45; }

.area-distance-label {
  opacity: 0;
  transition: opacity 600ms 2.5s;
}
.area-map.visible .area-distance-label { opacity: 0.7; }

.area-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}
.area-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.area-card-icon {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.area-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .area-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .area-map {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
  .area-svg {
    max-width: 100%;
  }
}

[data-text-reveal] {
  --reveal-progress: 0;
  --reveal-bright: var(--text-secondary);
  /* Dim is much lighter/darker than text-muted for dramatic contrast */
  --reveal-dim: rgba(126, 138, 153, 0.25);
  background: linear-gradient(
    90deg,
    var(--reveal-bright) 0%,
    var(--reveal-bright) calc(var(--reveal-progress) * 1% - 8%),
    var(--reveal-dim) calc(var(--reveal-progress) * 1% + 8%),
    var(--reveal-dim) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: none; /* JS drives the progress, no CSS transition needed */
}

/* Once fully revealed, lock to bright color (no gradient overhead) */
[data-text-reveal].text-revealed {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--text-secondary);
}

/* Reduced motion — show text immediately at full brightness */
@media (prefers-reduced-motion: reduce) {
  [data-text-reveal] {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--text-secondary) !important;
  }
}

/* ─── COMPARE TABLE ──────────────────────────────────────── */
.compare-table {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-lg) 0;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.compare-row:last-child {
  border-bottom: none;
}

/* ── Row hover effect — spotlight + winner pulse ── */
.compare-row:hover {
  background: var(--bg-elevated);
}

/* "Winner" glow pulse on HDR column when row is hovered */
@keyframes compareWinnerPulse {
  0%, 100% {
    box-shadow: inset 0 0 0 0 transparent;
    background: rgba(63, 185, 80, 0.05);
  }
  50% {
    box-shadow: inset 0 0 20px 0 rgba(63, 185, 80, 0.15);
    background: rgba(63, 185, 80, 0.1);
  }
}

.compare-row:hover .compare-cell--us {
  animation: compareWinnerPulse 1.5s ease-in-out infinite;
}

/* Check icon bounces on row hover */
@keyframes compareCheckBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.compare-row:hover .compare-check {
  animation: compareCheckBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--color-green);
  filter: drop-shadow(0 0 4px rgba(63, 185, 80, 0.4));
}

/* X icon dims further on hover (less attention) */
.compare-row:hover .compare-x {
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

/* Subtle left border indicator for active row */
.compare-row {
  position: relative;
}

.compare-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-green);
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.compare-row:hover::before {
  transform: scaleY(1);
}

/* Reduced motion: no animations */
@media (prefers-reduced-motion: reduce) {
  .compare-row:hover .compare-cell--us {
    animation: none;
    background: rgba(63, 185, 80, 0.08);
  }
  .compare-row:hover .compare-check {
    animation: none;
    filter: none;
  }
  .compare-row::before {
    transition: none;
  }
}

.compare-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem var(--space-xl);
  font-size: 0.9rem;
}

.compare-cell--feature {
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.compare-cell--us {
  color: var(--text-secondary);
}

.compare-cell--them {
  color: var(--text-muted);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}
.compare-badge .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.compare-badge--us {
  background: rgba(63,185,80,0.12);
  color: var(--color-green);
  border: 1px solid rgba(63,185,80,0.25);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on HDR badge */
@keyframes badgeShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.compare-badge--us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  animation: badgeShimmer 3s ease-in-out infinite;
  animation-delay: 2s; /* Initial delay before first shimmer */
}
.compare-badge--them {
  background: rgba(247,129,102,0.08);
  color: var(--text-muted);
  border: 1px solid rgba(247,129,102,0.15);
}

.compare-check {
  font-size: 1.1rem;
  color: var(--color-green);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  flex-shrink: 0;
}

.compare-x {
  font-size: 1.1rem;
  color: var(--color-orange);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── Compare: "Us" column winner glow ── */
.compare-cell--us {
  position: relative;
}
/* Subtle green tint on the "us" column in visible rows */
.compare-row.visible .compare-cell--us {
  background: rgba(63, 185, 80, 0.03);
}

/* ── Compare: Check icon pop animation ── */
.compare-row .compare-check {
  transform: scale(0);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1) 150ms; /* bounce with delay after row entrance */
}
.compare-row.visible .compare-check {
  transform: scale(1);
}

/* ── Compare: X icon fade ── */
.compare-row .compare-x {
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.compare-row.visible .compare-x {
  opacity: 0.6;
}

/* ── Compare: Row entrance stagger (uses data-compare-row for nth delays) ── */
.compare-row[data-animate] {
  transform: translateY(12px);
  opacity: 0;
  transition:
    opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* ── Compare row stagger — rows slide in sequentially ── */
/* nth-child starts at 2 because .compare-header is child 1 */
.compare-row[data-animate]:nth-child(2) { transition-delay: 0ms; }
.compare-row[data-animate]:nth-child(3) { transition-delay: 70ms; }
.compare-row[data-animate]:nth-child(4) { transition-delay: 140ms; }
.compare-row[data-animate]:nth-child(5) { transition-delay: 210ms; }
.compare-row[data-animate]:nth-child(6) { transition-delay: 280ms; }
.compare-row[data-animate]:nth-child(7) { transition-delay: 350ms; }
.compare-row[data-animate]:nth-child(8) { transition-delay: 420ms; }
.compare-row[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Compare: Enhanced row hover ── */
.compare-row:hover .compare-cell--us {
  background: rgba(63, 185, 80, 0.06);
}
.compare-row:hover .compare-check {
  transform: scale(1.15);
  transition-duration: 200ms;
}
.compare-row:hover .compare-cell--feature {
  color: var(--accent);
}

/* ── Compare: Header badge animation ── */
.compare-badge--us {
  box-shadow: 0 0 0 0 rgba(63, 185, 80, 0);
  transition: box-shadow 300ms;
  /* Shimmer effect requires these */
  position: relative;
  overflow: hidden;
}
.compare-table.visible .compare-badge--us {
  animation: compareBadgePulse 1.5s ease-out 0.5s;
}
@keyframes compareBadgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(63, 185, 80, 0.3); }
  100% { box-shadow: 0 0 0 8px rgba(63, 185, 80, 0); }
}

/* Compare responsive */
@media (max-width: 640px) {
  .compare-header,
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .compare-cell {
    padding: 0.5rem var(--space-lg);
  }
  .compare-cell--feature {
    padding-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  .compare-header .compare-cell--feature {
    display: none;
  }
  .compare-cell--us {
    padding-bottom: 0.25rem;
  }
  .compare-cell--them {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .compare-row:last-child .compare-cell--them {
    border-bottom: none;
  }
  .compare-header {
    padding: var(--space-md) 0;
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
  }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  counter-increment: faq-counter;
  position: relative;
}
.faq-item:hover {
  border-color: var(--border-default);
}
.faq-item[open] {
  border-color: rgba(79,142,247,0.3);
  box-shadow: 0 2px 16px rgba(79,142,247,0.1);
}

/* Left accent bar — slides in on open */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  content: '';
}
.faq-question:hover {
  background: var(--bg-elevated);
}

/* Focus ring for keyboard nav */
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-lg);
}

/* Number badge via CSS counter */
.faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 1.8rem;
  text-align: center;
  opacity: 0.5;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.faq-item[open] .faq-question::before {
  color: var(--accent);
  opacity: 1;
}

.faq-q-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Chevron with spring rotation + bounce wiggle */
.faq-chevron {
  color: var(--text-muted);
  font-size: 1.4rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
/* Arrow bounce animation on toggle */
@keyframes faqArrowBounce {
  0% { transform: rotate(0deg) scale(1); }
  30% { transform: rotate(200deg) scale(1.15); }
  50% { transform: rotate(175deg) scale(0.95); }
  70% { transform: rotate(183deg) scale(1.02); }
  100% { transform: rotate(180deg) scale(1); }
}
@keyframes faqArrowBounceClose {
  0% { transform: rotate(180deg) scale(1); }
  30% { transform: rotate(-20deg) scale(1.15); }
  50% { transform: rotate(5deg) scale(0.95); }
  70% { transform: rotate(-3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}
.faq-chevron.arrow-bounce-open {
  animation: faqArrowBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.faq-chevron.arrow-bounce-close {
  animation: faqArrowBounceClose 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Answer container — animated via JS for smooth height */
.faq-answer {
  padding: 0 var(--space-xl) 0;
  overflow: hidden;
  height: 0;
}
.faq-item[open] .faq-answer {
  height: auto;
}
.faq-answer-inner {
  padding-bottom: var(--space-lg);
}
/* Fallback: if JS hasn't initialized, show answer normally */
.faq-answer:not(.faq-answer--managed) {
  padding-bottom: var(--space-lg);
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* FAQ Answer Reading Lamp - text illuminates on open */
.faq-answer-inner {
  opacity: 0.5;
  filter: brightness(0.85);
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.faq-item[open] .faq-answer-inner.reading-lit {
  opacity: 1;
  filter: brightness(1);
}

/* Staggered scroll-in for FAQ items */
.faq-item[data-animate] {
  transition-delay: calc(var(--faq-idx, 0) * 80ms);
}

@keyframes faqSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition);
}
a.contact-method:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-method-icon .material-symbols-outlined {
  font-size: 1.3rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.contact-method strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.contact-method span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.form-group {
  position: relative;
  margin-bottom: var(--space-lg);
}
.form-group label {
  position: absolute;
  left: 0.9rem;
  top: 0.72rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s, font-size 0.2s;
  z-index: 1;
  background: transparent;
  padding: 0 0.2rem;
}
/* Float up when input has focus or value */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:not([data-empty]) ~ label {
  transform: translateY(-1.45rem) scale(0.78);
  color: var(--accent);
  font-weight: 500;
  background: var(--bg-card, var(--bg-primary));
}
/* Also float for selects that have a value */
.form-group select.has-value ~ label,
.form-group select:focus ~ label {
  transform: translateY(-1.45rem) scale(0.78);
  color: var(--accent);
  font-weight: 500;
  background: var(--bg-card, var(--bg-primary));
}
/* Context backgrounds for float labels on alt sections */
.section--alt .form-group label {
  background: var(--bg-secondary, var(--bg-card));
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.72rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
  transition: color 0.2s;
}
.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
/* Focus underline animation */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--color-cyan, #22d3ee));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.form-group:focus-within::after {
  width: 100%;
  left: 0;
}
.form-group--check::after { display: none; }
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b949e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
[data-theme="light"] .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.form-group--check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form-group--check input {
  width: auto;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-group--check label {
  position: static;
  transform: none;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  pointer-events: auto;
  background: none;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-md);
}
.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-green);
  margin-top: var(--space-md);
  padding: 0.75rem;
  background: rgba(63,185,80,0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(63,185,80,0.2);
}
.form-success.visible {
  display: flex;
}
.form-success .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.form-error-msg {
  display: none;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-orange);
  margin-top: var(--space-md);
  padding: 0.75rem;
  background: rgba(247,129,102,0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(247,129,102,0.2);
}
.form-error-msg.visible {
  display: flex;
}
.form-error-msg .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.form-error-msg a {
  color: var(--accent);
  text-decoration: underline;
}

/* Spin animation for submit button loading state */
@keyframes spin-icon {
  to { transform: rotate(360deg); }
}
.spin-icon {
  animation: spin-icon 1s linear infinite;
}

button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */

/* Timeline */
.contact-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-2xl);
}
.timeline-step {
  text-align: center;
  flex: 0 1 200px;
  position: relative;
}
.timeline-step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.timeline-step-num::before { content: 'Step '; }
.timeline-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.timeline-step-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--accent);
}
.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.timeline-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0 0.5rem;
}
.timeline-connector {
  flex: 0 0 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  margin-top: 46px; /* center on step icon */
  border-radius: 2px;
}

/* Contact methods grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-method-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(79,142,247,0.1);
}
.cmc-badge {
  position: absolute;
  top: -10px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.cmc-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.contact-method-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.cmc-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.cmc-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cmc-time .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--accent);
}

/* Contact page layout: form + sidebar */
.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-form-main .section-title {
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: 100px;
}
.contact-sidebar-card {
  padding: var(--space-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.contact-sidebar-card > .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.contact-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.contact-sidebar-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.sidebar-checklist {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.sidebar-checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
}
.sidebar-checklist .material-symbols-outlined {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}
.hours-grid strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .contact-timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline-connector {
    width: 2px;
    height: 32px;
    flex: 0 0 32px;
    margin-top: 0;
    background: linear-gradient(180deg, var(--accent), var(--accent-dim));
  }
  .timeline-step { flex: none; max-width: 280px; }
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page-wrap {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-sidebar-card { flex: 1 1 250px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-methods-grid { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: column; }
  .contact-sidebar-card { flex: none; }
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-2xl);
  align-items: start;
}
.about-story-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.about-story-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: 100px;
}
.about-story-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-story-avatar .material-symbols-outlined {
  font-size: 3rem;
  color: var(--accent);
}
.about-story-quick {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-quick-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.about-quick-item .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Values (numbered grid) */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.about-value {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.about-value:hover { border-color: var(--accent); }
.about-value-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 0.5rem;
}
[data-theme="light"] .about-value-number { color: rgba(37,99,235,0.15); }
.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.about-value p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Why Local grid */
.about-local-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.about-local-card {
  padding: var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.about-local-card:hover { border-color: var(--accent); }
.about-local-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.about-local-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.about-local-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats row */
.about-stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}
.about-stat {
  text-align: center;
  min-width: 120px;
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Service area cards */
.about-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.about-area-card {
  padding: var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.2s;
}
.about-area-card:hover { border-color: var(--accent); }
.about-area-card .material-symbols-outlined {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.about-area-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.about-area-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story-sidebar { position: static; flex-direction: row; flex-wrap: wrap; align-items: center; gap: var(--space-md); }
  .about-story-avatar { width: 80px; height: 80px; }
  .about-story-avatar .material-symbols-outlined { font-size: 2rem; }
  .about-local-grid { grid-template-columns: 1fr; }
  .about-area-grid { grid-template-columns: 1fr; }
  .about-stats-row { gap: var(--space-md); }
  .about-stat { min-width: 90px; }
  .about-stat-number { font-size: 1.5rem; }
}

/* ─── PRICING PAGE (TABS + TABLES) ───────────────────────── */
.pricing-tabs {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  padding: 0.35rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.pricing-tab {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.pricing-tab .material-symbols-outlined { font-size: 1.1rem; }
.pricing-tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.pricing-tab.active {
  background: var(--accent);
  color: #fff;
}
.pricing-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Panels */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-panel-header {
  margin-bottom: var(--space-xl);
}
.pricing-panel-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.pricing-panel-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-panel-header a { color: var(--accent); }

/* Pricing tables */
.pp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: var(--space-md);
}
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pp-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}
.pp-table td {
  padding: 0.85rem 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
}
.pp-table tbody tr:last-child td { border-bottom: none; }
.pp-table tbody tr:hover { background: rgba(79,142,247,0.03); }
.pp-table td strong { color: var(--text-primary); }
.pp-table td small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.pp-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent) !important;
  white-space: nowrap;
}
.pp-price--free { color: var(--color-green) !important; }
.pp-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pp-note a { color: var(--accent); }

@media (max-width: 640px) {
  .pricing-tab {
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
  }
  .pricing-tab .material-symbols-outlined { font-size: 0.95rem; }
  .pp-table th, .pp-table td { padding: 0.6rem 0.65rem; font-size: 0.82rem; }
  .pp-price { font-size: 0.95rem; }
}

/* ─── WARRANTY PAGE ──────────────────────────────────────── */
.warranty-promises {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.warranty-promise {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.warranty-promise:hover { border-color: var(--accent); }
.warranty-promise-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.warranty-promise-icon .material-symbols-outlined { font-size: 1.8rem; }
.warranty-promise-icon--blue {
  background: rgba(79,142,247,0.1);
  color: var(--accent);
}
.warranty-promise-icon--green {
  background: rgba(52,211,153,0.1);
  color: var(--color-green);
}
.warranty-promise-icon--gold {
  background: rgba(240,180,41,0.1);
  color: #f0b429;
}
.warranty-promise-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.warranty-promise-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.warranty-promise-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.warranty-detail-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.warranty-detail-item .material-symbols-outlined {
  font-size: 1rem;
  color: var(--color-green);
  flex-shrink: 0;
}

/* Covered vs Not Covered */
.warranty-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.warranty-coverage-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-subtle);
}
.warranty-coverage-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}
.warranty-coverage-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.warranty-coverage-card--yes .warranty-coverage-header .material-symbols-outlined {
  color: var(--color-green);
  font-size: 1.3rem;
}
.warranty-coverage-card--no .warranty-coverage-header .material-symbols-outlined {
  color: #ef4444;
  font-size: 1.3rem;
}
.warranty-coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.warranty-coverage-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}
.warranty-coverage-card--yes .warranty-coverage-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 600;
}
.warranty-coverage-card--no .warranty-coverage-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 600;
}

/* "Why I offer this" section */
.warranty-why-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-2xl);
}
.warranty-why-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.warranty-why-signature {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary) !important;
  font-style: italic;
  margin-top: var(--space-lg) !important;
}
.warranty-why-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.warranty-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.warranty-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.warranty-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .warranty-promise {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
  }
  .warranty-coverage-grid {
    grid-template-columns: 1fr;
  }
  .warranty-why-content {
    grid-template-columns: 1fr;
  }
  .warranty-why-stats {
    flex-direction: row;
  }
  .warranty-stat { flex: 1; }
}
@media (max-width: 480px) {
  .warranty-why-stats { flex-direction: column; }
}

/* ─── MAIL-IN PAGE ───────────────────────────────────────── */
.mail-steps-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
  position: relative;
}
.mail-steps-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--color-green));
  border-radius: 2px;
}
.mail-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  position: relative;
}
.mail-step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 1;
}
.mail-step-icon {
  display: none;
}
.mail-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.mail-step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.mail-step-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--accent);
}
.mail-step-detail .material-symbols-outlined {
  font-size: 0.9rem;
}

/* Turnaround pill on device cards */
.mail-turnaround {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.15);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-green);
}
.mail-turnaround .material-symbols-outlined {
  font-size: 0.85rem;
}

/* City grid */
.mail-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.mail-city-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s, border-color 0.2s;
}
.mail-city-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.mail-city-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.mail-city-time {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-green);
  margin-bottom: 0.5rem;
}
.mail-city-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Packing guide cards */
.mail-packing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.mail-packing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.mail-packing-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(79,142,247,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.mail-packing-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--accent);
}
.mail-packing-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.mail-packing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.mail-packing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.mail-packing-list li .material-symbols-outlined {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--color-green);
}
.mail-packing-list li .material-symbols-outlined[style],
.mail-packing-list li:last-child .material-symbols-outlined {
  color: #ef4444;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mail-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mail-packing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .mail-cities-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── REVIEWS PAGE ───────────────────────────────────────── */
.reviews-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.reviews-stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.reviews-stat-card--highlight {
  border-color: var(--accent);
  background: rgba(79,142,247,0.06);
}
.reviews-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.reviews-stat-stars {
  font-size: 1.1rem;
  color: #f0b429;
  margin: 0.25rem 0;
  letter-spacing: 2px;
}
.reviews-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Filter tabs */
.reviews-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}
.reviews-filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.reviews-filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.reviews-filter-btn--active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

/* Individual review card */
.review-full-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.review-full-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.review-full-card[hidden] {
  display: none;
}

.review-full-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.review-full-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--color-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-full-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.review-full-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.review-full-stars {
  margin-left: auto;
  color: #f0b429;
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.review-full-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.review-full-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.review-full-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.review-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(79,142,247,0.08);
  color: var(--accent);
  border: 1px solid rgba(79,142,247,0.15);
}

/* Empty state */
.reviews-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  color: var(--text-muted);
}
.reviews-empty .material-symbols-outlined {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}
.reviews-empty a { color: var(--accent); }

/* Mobile responsive */
@media (max-width: 768px) {
  .reviews-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .reviews-stat-number { font-size: 1.5rem; }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .reviews-hero-stats { gap: 0.5rem; }
  .reviews-stat-card { padding: var(--space-md) var(--space-sm); }
  .reviews-stat-number { font-size: 1.25rem; }
}

/* Print: show reviews nicely */
@media print {
  .reviews-filter { display: none; }
  .review-full-card { break-inside: avoid; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: none;
  padding-top: var(--space-3xl);
  position: relative;
}
/* Gradient top accent line */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 35%, rgba(163,113,247,0.5) 65%, transparent 95%);
  opacity: 0.5;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4xl);
  align-items: start;
  padding-bottom: var(--space-3xl);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  gap: var(--space-4xl);
  justify-content: flex-end;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(79, 142, 247, 0.15);
  align-self: flex-start;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 200ms, transform 200ms;
  position: relative;
  align-self: flex-start;
  padding: 1px 0;
}
/* Sliding underline from left */
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-col a:hover {
  color: var(--accent);
  transform: translateX(3px);
}
.footer-col a:hover::after {
  width: 100%;
}

/* Footer column cascade hover — staggered link shift */
.footer-col:hover a:nth-child(2)  { transform: translateX(4px); transition-delay: 0ms; }
.footer-col:hover a:nth-child(3)  { transform: translateX(4px); transition-delay: 25ms; }
.footer-col:hover a:nth-child(4)  { transform: translateX(4px); transition-delay: 50ms; }
.footer-col:hover a:nth-child(5)  { transform: translateX(4px); transition-delay: 75ms; }
.footer-col:hover a:nth-child(6)  { transform: translateX(4px); transition-delay: 100ms; }
.footer-col:hover a:nth-child(7)  { transform: translateX(4px); transition-delay: 125ms; }
.footer-col:hover a:nth-child(8)  { transform: translateX(4px); transition-delay: 150ms; }
.footer-col:hover a:nth-child(9)  { transform: translateX(4px); transition-delay: 175ms; }
.footer-col:hover a:nth-child(10) { transform: translateX(4px); transition-delay: 200ms; }
.footer-col:hover a:nth-child(11) { transform: translateX(4px); transition-delay: 225ms; }
.footer-col:hover a:nth-child(12) { transform: translateX(4px); transition-delay: 250ms; }
.footer-col:hover a {
  color: var(--text-primary);
}
.footer-col a:hover {
  color: var(--accent) !important;
  transform: translateX(6px) !important;
  transition-delay: 0ms !important;
}
@media (prefers-reduced-motion: reduce) {
  .footer-col:hover a:nth-child(n) {
    transition-delay: 0ms;
  }
}

.footer-bottom {
  border-top: none;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
/* Gradient separator above footer-bottom */
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent);
}
/* Heartbeat animation for the ❤️ */
.footer-heart {
  display: inline-block;
  animation: heartbeat 2s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  56% { transform: scale(1); }
}

/* ─── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(79,142,247,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(79,142,247,0.45);
}
.back-to-top .material-symbols-outlined {
  font-size: 1.3rem;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* ─── REVIEW CAROUSEL ────────────────────────────────────── */
.carousel {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  position: relative;
}
.carousel-track {
  position: relative;
  min-height: 200px;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.carousel-slide--active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.carousel-slide--exit {
  opacity: 0;
  transform: translateX(-24px);
}
.carousel-slide .review-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
}
.carousel-slide .review-text {
  font-size: 1.05rem;
  line-height: 1.8;
}
.carousel-slide .review-stars {
  font-size: 1.2rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.carousel-dot--active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}
.carousel-dot:hover:not(.carousel-dot--active) {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ─── FORM VALIDATION ────────────────────────────────────── */
.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--color-orange);
  margin-top: 0.3rem;
  min-height: 1rem;
  transition: opacity 0.2s ease;
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(247,129,102,0.15);
}
.form-group input.valid,
.form-group textarea.valid {
  border-color: var(--color-green);
}

/* ─── LANDING PAGES (shared) ─────────────────────────────── */

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-sm) 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '/';
  margin: 0 0.5rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}

/* LP Hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-4xl);
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  align-items: center;
}
.lp-hero-text .hero-sub strong {
  color: var(--text-primary);
}
.lp-hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.lp-highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
}
.lp-highlight .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--color-green);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* Price card in hero */
.lp-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,142,247,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.lp-price-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.lp-price-card-header .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.lp-price-card-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #a371f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}
.lp-price-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.lp-price-card-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: var(--space-lg);
}
.lp-price-card-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.lp-price-card-perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.lp-price-card-perks .material-symbols-outlined {
  font-size: 1rem;
  color: var(--color-green);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  flex-shrink: 0;
}

/* LP Pricing Table */
.lp-pricing-table {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lp-pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.lp-pricing-row:last-child {
  border-bottom: none;
}
.lp-pricing-row:not(.lp-pricing-row--header):hover {
  background: var(--bg-elevated);
}
.lp-pricing-row--header {
  background: var(--bg-elevated);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.lp-pricing-row--free {
  background: rgba(63,185,80,0.04);
}
.lp-pricing-row--free .lp-pricing-col--price strong {
  color: var(--color-green);
}
.lp-pricing-col {
  padding: 0.75rem var(--space-xl);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.lp-pricing-col--name {
  color: var(--text-primary);
  font-weight: 500;
}
.lp-pricing-col--name .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
}
.lp-pricing-col--price {
  color: var(--text-secondary);
}
.lp-pricing-col--price strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
}
.lp-pricing-col--time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Model tags */
.lp-models-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 740px;
  margin: 0 auto;
}
.lp-model-group-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.lp-model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.lp-model-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.lp-model-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.lp-model-tag--latest {
  border-color: rgba(79,142,247,0.3);
  color: var(--text-primary);
  background: rgba(79,142,247,0.06);
}
.lp-model-tag--muted {
  color: var(--text-muted);
}

/* Bottom CTA */
.lp-bottom-cta {
  text-align: center;
  padding: var(--space-xl) 0;
}
.lp-bottom-cta .section-title {
  margin-bottom: var(--space-sm);
}
.lp-bottom-cta .section-sub {
  margin-bottom: var(--space-xl);
}
.lp-bottom-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--space-lg);
}

/* LP Symptom Cards (Laptop "Sound familiar?") */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}
.symptom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.symptom-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.symptom-icon {
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-md);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}
.symptom-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.symptom-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.symptom-icon-fallback { display: none; }

@media (max-width: 900px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
}

/* LP Info Cards (AMOLED vs LCD etc.) */
.lp-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}
.lp-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.lp-info-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.lp-info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.lp-info-card-icon .material-symbols-outlined {
  font-size: 1.4rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.lp-info-card-icon--blue {
  background: rgba(79,142,247,0.12);
  color: var(--accent);
}
.lp-info-card-icon--green {
  background: rgba(63,185,80,0.12);
  color: var(--color-green);
}
.lp-info-card-icon--orange {
  background: rgba(247,129,102,0.12);
  color: var(--color-orange);
}
.lp-info-card-icon--red {
  background: rgba(248,81,73,0.12);
  color: #f85149;
}
.lp-info-card-icon--purple {
  background: rgba(163,113,247,0.12);
  color: var(--color-purple);
}
.lp-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.lp-info-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* LP responsive */
@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .lp-hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .lp-info-cards {
    grid-template-columns: 1fr;
  }
  .lp-pricing-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lp-pricing-row--header {
    display: none;
  }
  .lp-pricing-col {
    padding: 0.4rem var(--space-lg);
  }
  .lp-pricing-col--name {
    padding-top: 0.75rem;
  }
  .lp-pricing-col--time {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .lp-pricing-row:last-child .lp-pricing-col--time {
    border-bottom: none;
  }
  .lp-hero-highlights {
    grid-template-columns: 1fr;
  }
}

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #a371f7);
  z-index: 150;
  transition: width 50ms linear;
  pointer-events: none;
}

/* ─── PAGE LOAD ANIMATION ─────────────────────────────────── */
body {
  animation: pageIn 0.6s ease-out forwards;
}
@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── HERO TYPING CURSOR ─────────────────────────────────── */
.hero-headline-accent.typing::after {
  content: '|';
  display: inline-block;
  color: var(--accent);
  animation: blink 0.6s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ─── HERO ACCENT SHIMMER ─────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-headline-accent.shimmer {
  background-size: 200% auto;
  animation: shimmer 2s ease-in-out 1;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
/* Slide-left variant */
[data-animate="slide-left"] { transform: translateX(-32px); }
[data-animate="slide-left"].visible { transform: translateX(0); }
/* Slide-right variant */
[data-animate="slide-right"] { transform: translateX(32px); }
[data-animate="slide-right"].visible { transform: translateX(0); }
/* Scale-up variant */
[data-animate="scale"] { transform: scale(0.92); }
[data-animate="scale"].visible { transform: scale(1); }
/* Fade-only (no movement) */
[data-animate="fade"] { transform: none; }
[data-animate="fade"].visible { transform: none; }

/* ─── 3D CARD TILT ────────────────────────────────────────── */
.card-tilt {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card-tilt:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 20px var(--accent-dim);
}

/* ─── ENHANCED BUTTON HOVER ───────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79,142,247,0.3);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79,142,247,0.2);
}

.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79,142,247,0.15);
}
.btn-outline:active { transform: translateY(0); }

/* ─── ICON PULSE ON HOVER ─────────────────────────────────── */
.lp-info-card:hover .lp-info-card-icon .material-symbols-outlined,
.about-local-card:hover .about-local-icon,
.about-area-card:hover .material-symbols-outlined {
  animation: iconPulse 0.4s ease;
}
@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ─── SECTION WAVE DIVIDERS ───────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wave-divider--flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}
.wave-fill { fill: var(--bg-alt); }

/* ─── PAGE LOAD CURTAIN ───────────────────────────────────── */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-curtain.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-curtain-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  animation: curtainPulse 1s ease-in-out infinite alternate;
}
.page-curtain-logo .material-symbols-outlined {
  font-size: 1.6rem;
  color: var(--accent);
}
@keyframes curtainPulse {
  from { opacity: 0.5; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.02); }
}

/* ─── FLOATING DOTS (hero background) ─────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* ─── GLOWING ACCENT UNDERLINES (eyebrows) ────────────────── */
.section-eyebrow {
  position: relative;
}
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.4rem;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.section-eyebrow:hover::after,
.visible .section-eyebrow::after {
  width: 48px;
}
/* Center the underline when text is centered */
.section-title + .section-eyebrow::after,
[style*="text-align: center"] .section-eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .mailin-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .mailin-visual {
    order: -1;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-links {
    justify-content: flex-start;
    gap: var(--space-2xl);
  }
  .process-connector {
    display: none;
  }
  .process-steps {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-lg);
  }
  .section {
    padding: var(--space-3xl) 0;
  }
  .hero {
    min-height: auto;
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .nav-links,
  .nav-actions .btn-primary {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-direction: column;
    gap: var(--space-xl);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 380px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 2rem;
  }
}

/* ─── PRINT ────────────────────────────────────────────────── */
/* ─── LIGHT THEME POLISH ─────────────────────────────────── */
/* Refined shadows and surfaces for light mode */
[data-theme="light"] .nav {
  background: rgba(248,249,251,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
[data-theme="light"] .card-tilt,
[data-theme="light"] .contact-method-card,
[data-theme="light"] .contact-sidebar-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
[data-theme="light"] .card-tilt:hover,
[data-theme="light"] .contact-method-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
}
[data-theme="light"] .service-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .faq-item {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
[data-theme="light"] .service-card:hover,
[data-theme="light"] .pricing-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
[data-theme="light"] .btn-primary {
  box-shadow: 0 1px 3px rgba(37,99,235,0.3);
}
[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
[data-theme="light"] .footer {
  background: #111827;
  color: #e5e7eb;
}
[data-theme="light"] .footer a { color: #d1d5db; }
[data-theme="light"] .footer a:hover { color: #ffffff; }
[data-theme="light"] .footer strong { color: #f3f4f6; }
[data-theme="light"] .footer-bottom { border-color: rgba(255,255,255,0.1); color: #9ca3af; }
[data-theme="light"] .lp-hero,
[data-theme="light"] .hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}
[data-theme="light"] .lp-hero .breadcrumb a,
[data-theme="light"] .lp-hero .section-eyebrow { color: #94a3b8; }
[data-theme="light"] .lp-hero-title,
[data-theme="light"] .hero-title { color: #f8fafc; }
[data-theme="light"] .lp-hero-sub,
[data-theme="light"] .hero-sub { color: #cbd5e1; }
[data-theme="light"] .lp-hero-badge { background: rgba(255,255,255,0.08); color: #e2e8f0; }
[data-theme="light"] .hero-actions .btn-outline {
  color: #e2e8f0;
  border-color: rgba(255,255,255,0.25);
}
[data-theme="light"] .hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
[data-theme="light"] .accent { color: #60a5fa; }
[data-theme="light"] .section--alt {
  background: var(--bg-alt);
}
[data-theme="light"] .back-to-top {
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* ─── COOKIE / PRIVACY BANNER ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-default);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.cookie-banner .btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cookie-banner .btn-accept:hover { background: var(--accent-hover); }
.cookie-banner .btn-decline {
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border-default);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-banner .btn-decline:hover {
  color: var(--text-secondary);
  border-color: var(--border-strong);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }
  .cookie-banner-actions { justify-content: center; }
}

/* ─── PRIVACY PAGE ──────────────────────────────────────── */
.privacy-hero {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
}
.privacy-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}
.privacy-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}
.privacy-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content p,
.privacy-content li {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}
.privacy-content li { margin-bottom: 0.4rem; }
.privacy-content strong { color: var(--text-primary); }
.privacy-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}
[data-theme="light"] .privacy-hero {
  background: linear-gradient(135deg, #f0f2f5 0%, #e2e8f0 100%);
}

/* Floating theme toggle (global, all pages) */
.floating-theme-toggle {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  opacity: 0.7;
}
.floating-theme-toggle:hover {
  opacity: 1;
  background: var(--bg-elevated);
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}
.floating-theme-toggle .material-symbols-outlined { font-size: 1.2rem; }
[data-theme="dark"] .floating-theme-toggle .ft-dark { display: none; }
[data-theme="light"] .floating-theme-toggle .ft-light { display: none; }

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11pt;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }

  /* Hide non-essential UI */
  .promo-banner,
  .nav,
  .nav-mobile,
  .scroll-progress,
  .skip-link,
  .back-to-top,
  .hero-bg-grid,
  .hero-glow,
  .hero-glow-1,
  .theme-toggle,
  .nav-hamburger,
  .btn,
  .hero-actions,
  .review-cta,
  .carousel-dots,
  .breadcrumb-bar,
  .footer-bottom,
  .compare-badge .material-symbols-outlined,
  .card-icon,
  .process-icon,
  .process-connector,
  .form-group--check,
  .contact-form,
  .contact-form-wrap,
  .lp-hero-visual,
  .gallery-handle,
  .gallery-note {
    display: none !important;
  }
  .gallery-slider {
    display: flex !important;
    position: static !important;
    aspect-ratio: auto !important;
  }
  .gallery-before,
  .gallery-after {
    position: static !important;
    clip-path: none !important;
    width: 50% !important;
    border: 1px solid #ccc !important;
  }

  /* Reset layout */
  .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .section {
    padding: 1rem 0;
  }

  /* Typography */
  h1, h2, h3 {
    page-break-after: avoid;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  h1 { font-size: 20pt; }
  h2 { font-size: 16pt; margin-top: 0.8rem; }
  h3 { font-size: 13pt; }

  /* Links */
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 9pt;
    color: #555 !important;
    word-break: break-all;
  }
  a[href^="#"]::after,
  a[href^="sms:"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after,
  .nav-logo a::after,
  .footer-brand a::after {
    content: none;
  }

  /* Cards / grid → stack */
  .cards-grid,
  .process-steps,
  .lp-info-cards,
  .lp-models-grid {
    display: block;
  }
  .card,
  .process-step,
  .lp-info-card {
    border: 1px solid #ccc !important;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    page-break-inside: avoid;
  }

  /* Pricing table */
  .lp-pricing-table,
  .pricing-category,
  .compare-table {
    border: 1px solid #ccc !important;
  }
  .lp-pricing-row,
  .compare-row {
    border-bottom: 1px solid #eee !important;
  }

  /* Reviews — show all slides */
  .carousel-slide {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    border: 1px solid #ccc !important;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .review-card {
    border: none !important;
  }

  /* Footer */
  .footer {
    border-top: 2px solid #000 !important;
    padding-top: 0.5rem;
  }
  .footer-inner {
    display: block;
  }

  /* Data attributes (hidden animations) */
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Page breaks */
  .section {
    page-break-inside: avoid;
  }

  /* Header on first page */
  .hero-headline {
    margin-top: 0;
  }
  .hero-sub {
    font-size: 12pt;
  }

  /* Pricing note */
  .pricing-note {
    border: 1px solid #ccc !important;
    padding: 0.5rem;
    font-size: 9pt;
  }
  .pricing-note .material-symbols-outlined {
    display: none;
  }
}

/* ─── Student & Military Discount Page ──────────────────── */

/* Hero discount card */
.discount-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 360px;
}
.discount-hero-card-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.discount-hero-card-example {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.discount-example-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.discount-label {
  flex: 1;
  color: var(--text-secondary);
}
.discount-original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}
.discount-arrow {
  color: var(--accent);
  font-weight: 700;
}
.discount-final {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.discount-hero-card-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.discount-hero-card-note .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}

/* Discount groups (student / military cards) */
.discount-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.discount-group-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.discount-group-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.discount-group-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.discount-group-icon .material-symbols-outlined {
  font-size: 28px;
  color: #fff;
}
.discount-group-icon--student {
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
}
.discount-group-icon--military {
  background: linear-gradient(135deg, #059669, #0d9488);
}
.discount-group-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.discount-group-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.discount-group-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.discount-group-list .material-symbols-outlined {
  font-size: 18px;
  color: #22c55e;
  flex-shrink: 0;
}
.discount-group-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.discount-group-note strong {
  color: var(--text-secondary);
}

/* Savings grid */
.discount-savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.discount-savings-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.discount-savings-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.discount-savings-device {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.discount-savings-device .material-symbols-outlined {
  font-size: 20px;
  color: var(--accent);
}
.discount-savings-device strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.discount-savings-repair {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.discount-savings-prices {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}
.discount-savings-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.discount-savings-price {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.discount-savings-price--old {
  color: var(--text-muted);
  text-decoration: line-through;
}
.discount-savings-price--new {
  color: var(--accent);
}
.discount-savings-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.discount-savings-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  justify-content: center;
}
.discount-savings-note .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
}

/* Discount claim steps */
.discount-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.discount-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.discount-step:last-child {
  border-bottom: none;
}
.discount-step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discount-step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.discount-step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.discount-step-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* Why section */
.discount-why-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}
.discount-why-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.discount-why-signature {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-top: 1.5rem;
}
.discount-why-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.discount-fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.discount-fact .material-symbols-outlined {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.discount-fact strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.discount-fact span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive — discount page */
@media (max-width: 900px) {
  .discount-groups {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .discount-savings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .discount-why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .discount-savings-grid {
    grid-template-columns: 1fr;
  }
  .discount-hero-card {
    max-width: 100%;
  }
}

/* ─── Emergency Repair Page ─────────────────────────────── */

/* Emergency hero accent */
.emergency-hero .hero-headline-accent {
  background: linear-gradient(90deg, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pulsing CTA button */
.btn-emergency-pulse {
  position: relative;
  animation: emergencyPulse 2s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
}

/* Response times card */
.emergency-response-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 360px;
}
.emergency-response-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.emergency-response-header .material-symbols-outlined {
  font-size: 20px;
  color: #f97316;
}
.emergency-response-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.emergency-response-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.emergency-response-label {
  color: var(--text-secondary);
}
.emergency-response-value {
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.emergency-response-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.emergency-response-footer .material-symbols-outlined {
  font-size: 18px;
  color: #22c55e;
}

/* Emergency scenarios grid */
.emergency-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.emergency-scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.emergency-scenario-card:hover {
  border-color: #f97316;
  transform: translateY(-2px);
}
.emergency-scenario-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.emergency-scenario-icon .material-symbols-outlined {
  font-size: 24px;
  color: #f97316;
}
.emergency-scenario-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.emergency-scenario-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Emergency timeline */
.emergency-timeline {
  max-width: 640px;
  margin: 3rem auto 0;
}
.emergency-timeline-item {
  display: flex;
  gap: 1.5rem;
}
.emergency-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.emergency-timeline-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emergency-timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  min-height: 40px;
}
.emergency-timeline-content {
  padding-bottom: 2.5rem;
}
.emergency-timeline-time {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f97316;
  margin-bottom: 0.25rem;
}
.emergency-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.emergency-timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.emergency-timeline-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* No-upcharge promise card */
.emergency-promise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}
.emergency-promise-text {
  margin-bottom: 2rem;
}
.emergency-promise-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.emergency-promise-sig {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-top: 1.5rem;
}
.emergency-promise-compare {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.emergency-promise-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}
.emergency-promise-row--them {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.emergency-promise-row--me {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.emergency-promise-who {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 160px;
  flex-shrink: 0;
}
.emergency-promise-detail {
  color: var(--text-secondary);
}

/* Emergency common repairs list */
.emergency-repairs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.emergency-repair-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: border-color 0.3s;
}
.emergency-repair-item:hover {
  border-color: var(--accent);
}
.emergency-repair-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--accent);
}
.emergency-repair-info {
  flex: 1;
}
.emergency-repair-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.emergency-repair-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.emergency-repair-time .material-symbols-outlined {
  font-size: 14px;
}
.emergency-repair-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  white-space: nowrap;
}
.emergency-repairs-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  justify-content: center;
}
.emergency-repairs-note a {
  color: var(--accent);
  text-decoration: underline;
}
.emergency-repairs-note .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
}

/* Tourist/visitor section */
.emergency-visitor-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.emergency-visitor-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.emergency-visitor-areas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.emergency-visitor-area {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: border-color 0.3s;
}
.emergency-visitor-area:hover {
  border-color: var(--accent);
}
.emergency-visitor-area strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.emergency-visitor-area span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive — emergency page */
@media (max-width: 900px) {
  .emergency-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .emergency-visitor-grid {
    grid-template-columns: 1fr;
  }
  .emergency-promise-who {
    min-width: 120px;
  }
}
@media (max-width: 640px) {
  .emergency-scenarios-grid {
    grid-template-columns: 1fr;
  }
  .emergency-repairs-grid {
    grid-template-columns: 1fr;
  }
  .emergency-promise-row {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  .emergency-promise-who {
    min-width: auto;
  }
}

/* ─── Google Business Profile Section ───────────────────── */
.gbp-section {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.04) 0%, rgba(52, 168, 83, 0.04) 50%, rgba(251, 188, 4, 0.04) 100%);
  border-top: 1px solid rgba(66, 133, 244, 0.08);
  border-bottom: 1px solid rgba(52, 168, 83, 0.08);
}
.gbp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gbp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.gbp-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gbp-card-icon {
  font-size: 2rem;
}
.gbp-card strong {
  font-size: 0.95rem;
}
.gbp-card span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .gbp-cards { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ─── Device Check CTA Strip ────────────────────────────── */
.dc-cta-strip {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ─── Device Check Wizard ───────────────────────────────── */

/* Progress bar */
.dc-progress {
  margin-bottom: 2.5rem;
}
.dc-progress-bar {
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.dc-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.dc-step {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}
.dc-step.active {
  color: var(--accent);
  font-weight: 700;
}
.dc-step.done {
  color: var(--text-secondary);
}

/* Panels */
.dc-panel {
  display: none;
  animation: dcFadeIn 0.35s ease;
}
.dc-panel.active {
  display: block;
}
@keyframes dcFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.dc-panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.dc-panel-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Back button */
.dc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.dc-back:hover {
  color: var(--text-primary);
}
.dc-back .material-symbols-outlined {
  font-size: 18px;
}

/* Option cards — large grid (step 1) */
.dc-options--lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.dc-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 1rem;
  border-radius: 14px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  color: var(--text-primary);
  text-align: center;
}
.dc-option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12);
}
.dc-option.selected {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.dc-option .material-symbols-outlined {
  font-size: 32px;
  color: var(--accent);
}
.dc-option strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.dc-option-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Option cards — multi-select (step 2) */
.dc-options--multi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.dc-options--multi .dc-option {
  flex-direction: row;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
  text-align: left;
}
.dc-options--multi .dc-option .material-symbols-outlined {
  font-size: 24px;
  flex-shrink: 0;
}
.dc-options--multi .dc-option strong {
  font-size: 0.88rem;
}
.dc-options--multi .dc-option-sub {
  font-size: 0.72rem;
}
.dc-options--multi .dc-option .dc-option-text {
  display: flex;
  flex-direction: column;
}

/* Check indicator for multi-select */
.dc-option .dc-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dc-option.selected .dc-check {
  border-color: var(--accent);
  background: var(--accent);
}
.dc-option .dc-check .material-symbols-outlined {
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.dc-option.selected .dc-check .material-symbols-outlined {
  opacity: 1;
}

/* Next button */
.dc-next {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.85rem 2rem;
}
.dc-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Radio group (step 3) */
.dc-field {
  margin-bottom: 1.75rem;
}
.dc-field-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.dc-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dc-radio {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.dc-radio:hover {
  border-color: var(--accent);
}
.dc-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dc-radio-box {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dc-radio-box::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}
.dc-radio input[type="radio"]:checked + .dc-radio-box {
  border-color: var(--accent);
}
.dc-radio input[type="radio"]:checked + .dc-radio-box::after {
  opacity: 1;
  transform: scale(1);
}
.dc-radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.05);
}

/* Results (step 4) */
.dc-results-header {
  text-align: center;
  margin-bottom: 2rem;
}
.dc-results-header .material-symbols-outlined {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 0.5rem;
}
.dc-results-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.dc-results-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dc-estimate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.dc-estimate-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dc-estimate-card-header .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}
.dc-estimate-rows {
  padding: 0.5rem 0;
}
.dc-estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}
.dc-estimate-row:not(:last-child) {
  border-bottom: 1px solid rgba(124, 58, 237, 0.06);
}
.dc-estimate-label {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dc-estimate-label .material-symbols-outlined {
  font-size: 18px;
  color: var(--text-muted);
}
.dc-estimate-value {
  font-weight: 600;
  color: var(--accent);
}
.dc-estimate-time {
  font-weight: 600;
  color: var(--text-primary);
}
.dc-estimate-card-footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.dc-results-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.dc-results-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.dc-results-cta .btn {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Urgency badge */
.dc-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.75rem;
}
.dc-urgency-badge--asap {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.dc-urgency-badge--soon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}
.dc-urgency-badge--no-rush {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* Trust grid */
.dc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.dc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.dc-trust-item .material-symbols-outlined {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.dc-trust-item strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}
.dc-trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 640px) {
  .dc-options--lg {
    grid-template-columns: repeat(2, 1fr);
  }
  .dc-options--multi {
    grid-template-columns: 1fr;
  }
  .dc-trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dc-results-cta {
    flex-direction: column;
  }
  .dc-estimate-row {
    padding: 0.65rem 1rem;
  }
}

/* ─── Floating Help Widget ──────────────────────────────── */

.help-fab {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 100;
  font-family: inherit;
}

/* Trigger button */
.help-fab-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.help-fab-trigger:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

/* Pulsing dot */
.help-fab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: helpDotPulse 2.5s ease-in-out infinite;
}
@keyframes helpDotPulse {
  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); }
}

.help-fab-trigger .material-symbols-outlined {
  font-size: 18px;
  display: none;
}

/* Expanded panel */
.help-fab-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: all 0.25s ease;
  overflow: hidden;
}
.help-fab.open .help-fab-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.help-fab.open .help-fab-trigger .help-fab-dot {
  display: none;
}
.help-fab.open .help-fab-trigger .help-fab-label-text {
  display: none;
}
.help-fab.open .help-fab-trigger .material-symbols-outlined {
  display: inline;
}

.help-fab-panel-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.help-fab-panel-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.help-fab-panel-header span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.help-fab-panel-header .help-fab-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.help-fab-panel-header .help-fab-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.help-fab-options {
  padding: 0.5rem;
}
.help-fab-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  transition: background 0.2s;
}
.help-fab-option:hover {
  background: rgba(124, 58, 237, 0.08);
}
.help-fab-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-fab-option-icon .material-symbols-outlined {
  font-size: 20px;
  color: #fff;
}
.help-fab-option-icon--text {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.help-fab-option-icon--call {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.help-fab-option-icon--quote {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.help-fab-option-icon--emergency {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.help-fab-option-info {
  display: flex;
  flex-direction: column;
}
.help-fab-option-info strong {
  font-size: 0.88rem;
  font-weight: 600;
}
.help-fab-option-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.help-fab-panel-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

/* Hidden state */
.help-fab.dismissed {
  display: none;
}

/* Responsive */
@media (max-width: 640px) {
  .help-fab {
    bottom: 1rem;
    left: 1rem;
  }
  .help-fab-panel {
    width: 260px;
  }
}

@media print {
  .help-fab {
    display: none !important;
  }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
  .hero-headline-accent.typing::after {
    animation: none;
  }
  .scroll-progress {
    transition: none;
  }
  .hero-particles,
  .page-curtain {
    display: none !important;
  }
  .card-tilt:hover {
    transform: none !important;
  }
  .btn-primary::before {
    display: none;
  }
}

/* ─── FAQ Hub Page ──────────────────────────────────────── */
.faq-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 1.5rem auto 0;
}
.faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--text-muted);
  pointer-events: none;
}
.faq-search-input {
  width: 100%;
  padding: 0.85rem 3.5rem 0.85rem 3rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.faq-search-input::placeholder { color: var(--text-muted); }
.faq-search-count {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.faq-hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem 0 1rem;
}
.faq-hub-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.faq-hub-filter .material-symbols-outlined { font-size: 1rem; }
.faq-hub-filter-count {
  background: var(--bg-primary);
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.faq-hub-filter:hover { border-color: var(--accent); color: var(--text-primary); }
.faq-hub-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-hub-filter.active .faq-hub-filter-count {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.faq-hub-category-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.faq-hub-category-title .material-symbols-outlined {
  font-size: 1.3rem;
  color: var(--accent);
}
.faq-hub-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-hub-item[open] { border-color: var(--accent); }
.faq-hub-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-primary);
  transition: background 0.15s;
}
.faq-hub-item summary::-webkit-details-marker { display: none; }
.faq-hub-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-hub-item[open] summary::after { content: '−'; color: var(--accent); }
.faq-hub-item summary:hover { background: rgba(139, 92, 246, 0.04); }
.faq-hub-answer {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.92rem;
}
.faq-hub-answer p { margin: 0; }
.faq-hub-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.faq-hub-link:hover { text-decoration: underline; }
.faq-hub-no-results {
  text-align: center;
  padding: 3rem 1rem;
}
.faq-hub-no-results p { margin: 0.5rem 0; color: var(--text-secondary); }
.faq-hub-category[hidden] { display: none; }
.faq-hub-item[hidden] { display: none; }
@media (max-width: 640px) {
  .faq-hub-filter { padding: 0.4rem 0.65rem; font-size: 0.78rem; }
  .faq-hub-item summary { padding: 0.85rem 1rem; font-size: 0.9rem; }
}

/* ─── Related Services Cross-Link Cards ────────────────── */
.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.related-card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.related-card strong { font-size: 0.95rem; }
.related-card span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}
@media (max-width: 640px) {
  .related-cards { grid-template-columns: 1fr; max-width: 300px; margin: 1rem auto 0; }
}

/* ─── Performance: Content Visibility ────────────────────── */
/* Skip rendering below-fold sections until they scroll near viewport */
#services, #pricing, #process, #mailin, #trust, #gallery,
#compare, #faq, #google, #contact, .footer,
.related-services-section, .dc-cta-strip {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ─── Animated Scroll Timeline ─────────────────────────── */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}
.timeline-track {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border-default);
  border-radius: 3px;
}
.timeline-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), var(--color-cyan, #22d3ee));
  border-radius: 3px;
  transition: height 0.1s linear;
}
.timeline-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, transform 0.3s;
}
.timeline-dot .material-symbols-outlined {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color 0.4s;
}
/* Active state (when scrolled into view) */
.timeline-step.animated .timeline-dot {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 16px var(--accent-glow);
  transform: scale(1.08);
}
.timeline-step.animated .timeline-dot .material-symbols-outlined {
  color: var(--accent);
}
.timeline-dot--done {
  border-color: var(--color-green) !important;
  background: rgba(63, 185, 80, 0.1) !important;
}
.timeline-step.animated .timeline-dot--done {
  box-shadow: 0 0 16px rgba(63, 185, 80, 0.25);
}
.timeline-step.animated .timeline-dot--done .material-symbols-outlined {
  color: var(--color-green) !important;
}
.timeline-content {
  padding-top: 0.35rem;
  flex: 1;
}
.timeline-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.timeline-example {
  margin-top: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--bg-primary);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.timeline-example-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}
.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 100px;
}
.timeline-tag .material-symbols-outlined { font-size: 0.9rem; }
.timeline-tag--green {
  background: rgba(63, 185, 80, 0.1);
  color: var(--color-green);
}
@media (max-width: 640px) {
  .timeline-dot { width: 38px; height: 38px; }
  .timeline-dot .material-symbols-outlined { font-size: 1rem; }
  .timeline-track { left: 18px; }
  .timeline-title { font-size: 1rem; }
  .timeline-desc { font-size: 0.85rem; }
}


/* ═══════════════════════════════════════════════
   ANIMATED SVG TIMELINE ICONS — "The Repair Journey"
   ═══════════════════════════════════════════════ */

/* Timeline glow effect (floating dot on the fill line) */
.timeline-glow {
  position: absolute;
  width: 9px;
  height: 9px;
  left: -3px;
  top: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-glow);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}
.timeline-glow.active {
  opacity: 1;
}

/* Ripple effect on timeline dots */
.timeline-dot-ripple {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.timeline-step.visible .timeline-dot-ripple {
  animation: tl-ripple 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes tl-ripple {
  0%   { opacity: 0.6; transform: scale(0.7); }
  100% { opacity: 0;   transform: scale(1.5); }
}
.timeline-step.visible .timeline-dot--done .timeline-dot-ripple,
.timeline-step.visible .timeline-dot--done + .timeline-dot-ripple {
  border-color: var(--color-green);
}

/* SVG icon base */
.timeline-svg-icon {
  color: var(--text-muted);
  transition: color 0.4s;
  overflow: visible;
}
.timeline-step.visible .timeline-svg-icon {
  color: var(--accent);
}
.timeline-step.visible .timeline-dot--done .timeline-svg-icon {
  color: var(--color-green) !important;
}

/* Hide original material icons in timeline dots when SVG present */
.timeline-dot .material-symbols-outlined {
  /* keep for non-SVG fallback */
}

/* ─── Step 1: Chat bubble draw-in ─── */
.tl-chat-bubble {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.visible .tl-chat-bubble {
  stroke-dashoffset: 0;
}
.tl-chat-tail {
  transition: opacity 0.3s 0.6s;
}
.timeline-step.visible .tl-chat-tail {
  opacity: 1;
}
/* Typing dots bounce */
.tl-chat-dot {
  transition: opacity 0.2s;
}
.timeline-step.visible .tl-chat-dot-1 {
  animation: tl-typing 1.2s 0.8s ease-in-out infinite;
}
.timeline-step.visible .tl-chat-dot-2 {
  animation: tl-typing 1.2s 1.0s ease-in-out infinite;
}
.timeline-step.visible .tl-chat-dot-3 {
  animation: tl-typing 1.2s 1.2s ease-in-out infinite;
}
@keyframes tl-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-2px); }
}

/* ─── Step 2: Search lens draw-in ─── */
.tl-search-lens {
  transition: stroke-dashoffset 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-search-handle {
  transition: stroke-dashoffset 0.4s 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.visible .tl-search-lens {
  stroke-dashoffset: 0;
}
.timeline-step.visible .tl-search-handle {
  stroke-dashoffset: 0;
}
/* Scanning pulse inside lens */
.timeline-step.visible .tl-search-pulse {
  animation: tl-scan 2s 0.8s ease-in-out infinite;
}
@keyframes tl-scan {
  0%, 100% { opacity: 0; r: 2; }
  50%      { opacity: 0.4; r: 5; }
}

/* ─── Step 3: Approve circle + check ─── */
.tl-approve-circle {
  transition: stroke-dashoffset 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-approve-check {
  transition: stroke-dashoffset 0.4s 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.visible .tl-approve-circle {
  stroke-dashoffset: 0;
}
.timeline-step.visible .tl-approve-check {
  stroke-dashoffset: 0;
}

/* ─── Step 4: Wrench draw-in + sparks ─── */
.tl-repair-wrench {
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.visible .tl-repair-wrench {
  stroke-dashoffset: 0;
}
/* Repair sparks */
.timeline-step.visible .tl-repair-spark-1 {
  animation: tl-spark 0.6s 0.9s ease-out forwards, tl-spark 0.6s 2.4s ease-out forwards;
}
.timeline-step.visible .tl-repair-spark-2 {
  animation: tl-spark 0.5s 1.1s ease-out forwards, tl-spark 0.5s 2.6s ease-out forwards;
}
.timeline-step.visible .tl-repair-spark-3 {
  animation: tl-spark 0.4s 1.3s ease-out forwards, tl-spark 0.4s 2.8s ease-out forwards;
}
@keyframes tl-spark {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--spark-x, 4px), var(--spark-y, -6px)) scale(1.2); }
}
.tl-repair-spark-1 { --spark-x: 3px; --spark-y: -5px; }
.tl-repair-spark-2 { --spark-x: 5px; --spark-y: -3px; }
.tl-repair-spark-3 { --spark-x: -2px; --spark-y: -6px; }

/* ─── Step 5: Shield + check draw-in ─── */
.tl-shield-body {
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-shield-check {
  transition: stroke-dashoffset 0.4s 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.visible .tl-shield-body {
  stroke-dashoffset: 0;
}
.timeline-step.visible .tl-shield-check {
  stroke-dashoffset: 0;
}

/* ─── Hover micro-interaction on timeline dots ─── */
.timeline-dot {
  position: relative;
  cursor: default;
}
.timeline-step.visible .timeline-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(79, 142, 247, 0.1);
}
.timeline-step.visible .timeline-dot--done:hover {
  box-shadow: 0 0 24px rgba(63, 185, 80, 0.3), 0 0 48px rgba(63, 185, 80, 0.1);
}

/* ─── Staggered reveal for timeline content ─── */
.timeline-step .timeline-content {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.visible .timeline-content {
  opacity: 1;
  transform: translateX(0);
}
.timeline-step[data-step="2"] .timeline-content { transition-delay: 0.25s; }
.timeline-step[data-step="3"] .timeline-content { transition-delay: 0.3s; }
.timeline-step[data-step="4"] .timeline-content { transition-delay: 0.35s; }
.timeline-step[data-step="5"] .timeline-content { transition-delay: 0.4s; }

/* ─── Reduced motion: instant everything ─── */
@media (prefers-reduced-motion: reduce) {
  .tl-chat-bubble,
  .tl-chat-tail,
  .tl-search-lens,
  .tl-search-handle,
  .tl-approve-circle,
  .tl-approve-check,
  .tl-repair-wrench,
  .tl-shield-body,
  .tl-shield-check {
    transition: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
  .tl-chat-dot-1, .tl-chat-dot-2, .tl-chat-dot-3,
  .tl-search-pulse,
  .tl-repair-spark,
  .timeline-dot-ripple {
    animation: none !important;
    opacity: 0.5 !important;
  }
  .timeline-glow { display: none; }
  .timeline-step .timeline-content {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}



/* ═══════════════════════════════════════════════
   MAGNETIC BUTTONS — Fluid cursor-pull effect
   ═══════════════════════════════════════════════ */

.btn-magnetic {
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s ease,
              background 0.2s ease,
              border-color 0.2s ease;
  will-change: transform;
}
.btn-magnetic .btn-magnetic-inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.btn-magnetic:not(.is-magnetic) {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s ease;
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION — disable magnetic + map animations
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .btn-magnetic,
  .btn-magnetic:not(.is-magnetic) {
    transition: background 0.2s ease, border-color 0.2s ease !important;
    transform: none !important;
  }
  .btn-magnetic .btn-magnetic-inner {
    transition: none !important;
    transform: none !important;
  }
  .faq-chevron.arrow-bounce-open,
  .faq-chevron.arrow-bounce-close {
    animation: none !important;
  }
  .area-mountain,
  .area-highway,
  .area-river,
  .area-hwy-label,
  .area-town,
  .area-distance,
  .area-distance-label {
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* ─── Custom Scrollbar ───────────────────────────────────── */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

:root {
  --scrollbar-thumb: rgba(79, 142, 247, 0.35);
  --scrollbar-thumb-hover: rgba(79, 142, 247, 0.6);
  --scrollbar-track: rgba(255, 255, 255, 0.03);
}
[data-theme="light"] {
  --scrollbar-thumb: rgba(37, 99, 235, 0.3);
  --scrollbar-thumb-hover: rgba(37, 99, 235, 0.55);
  --scrollbar-track: rgba(0, 0, 0, 0.04);
}

/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
  background-clip: content-box;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
