/* ============================================
   ZipWise — Global Styles
   Palette: Navy #1e3a5f · Cyan #06b6d4 · Off-white #FAFAFA
   System color mode (prefers-color-scheme)
   ============================================ */

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

:root {
  --navy:       #1e3a5f;
  --navy-deep:  #0f172a;
  --navy-light: #2d4a6f;
  --cyan:       #06b6d4;
  --cyan-light: #22d3ee;
  --cyan-dark:  #0891b2;
  --cyan-bg:    #ecfeff;
  --bg:         #FAFAFA;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:      1200px;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 1px 2px rgba(30,58,95,.06);
  --shadow:     0 4px 6px -1px rgba(30,58,95,.07), 0 2px 4px -2px rgba(30,58,95,.05);
  --shadow-lg:  0 10px 25px -3px rgba(30,58,95,.08), 0 4px 6px -4px rgba(30,58,95,.04);
  --shadow-xl:  0 20px 40px -4px rgba(30,58,95,.1);
  --transition: 200ms cubic-bezier(.4,0,.2,1);

  /* Dark mode variables (overridden in dark scheme) */
  --page-bg: #FAFAFA;
  --card-bg: #ffffff;
  --card-border: var(--gray-200);
  --text-primary: var(--navy);
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-500);
  --text-muted: var(--gray-400);
  --section-alt-bg: var(--white);
  --nav-bg: rgba(250,250,250,.85);
  --nav-border: var(--gray-200);
  --input-bg: var(--gray-50);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page-bg: #0f172a;
    --card-bg: #1e293b;
    --card-border: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --text-muted: #64748b;
    --section-alt-bg: #1a2332;
    --nav-bg: rgba(15,23,42,.9);
    --nav-border: #334155;
    --input-bg: #1e293b;
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
  }
}

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

body {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--text-primary); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-primary); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; line-height: 1.3; color: var(--text-primary); }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--text-primary); }
p  { color: var(--text-secondary); line-height: 1.7; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--section-alt-bg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Haptic ripple effect on all buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn:active::after {
  opacity: 1;
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(6,182,212,.3);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  box-shadow: 0 4px 12px rgba(6,182,212,.35);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0px);
  box-shadow: 0 1px 4px rgba(6,182,212,.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--card-border);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  background: var(--cyan-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6,182,212,.15);
}
.btn-secondary:active {
  transform: translateY(0);
}

@media (prefers-color-scheme: dark) {
  .btn-secondary {
    color: var(--text-primary);
    border-color: var(--card-border);
  }
  .btn-secondary:hover {
    color: var(--cyan-light);
    background: rgba(6,182,212,.1);
    border-color: var(--cyan);
  }
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  padding: 14px 20px;
}
.btn-ghost:hover {
  background: var(--cyan-bg);
  transform: translateY(-1px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: transform var(--transition);
}
.nav__logo:hover {
  transform: scale(1.02);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover {
  color: var(--text-primary);
  background: var(--gray-100);
  transform: translateY(-1px);
}

/* MUCH more distinct active nav state */
.nav__link--active {
  color: var(--cyan-light);
  font-weight: 700;
  background: var(--cyan-bg);
  border-bottom: 3px solid var(--cyan);
  border-radius: 6px 6px 0 0;
  padding-bottom: 5px;
}

@media (prefers-color-scheme: dark) {
  .nav__link--active {
    background: rgba(6,182,212,.15);
    color: var(--cyan-light);
    border-bottom-color: var(--cyan-light);
  }
}

.nav__cta {
  margin-left: 8px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--cyan-bg);
  color: var(--cyan-dark);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(6,182,212,.15);
}

@media (prefers-color-scheme: dark) {
  .hero__badge {
    background: rgba(6,182,212,.1);
    color: var(--cyan-light);
  }
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero__title span {
  color: var(--cyan);
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  margin-top: 20px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__mockup {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero__mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero__mockup-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__mockup-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__route-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__route-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  cursor: default;
}
.hero__route-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.hero__route-item:nth-child(1) {
  border-left: 3px solid var(--cyan);
  background: var(--cyan-bg);
}

@media (prefers-color-scheme: dark) {
  .hero__route-item:nth-child(1) {
    background: rgba(6,182,212,.08);
  }
}

.hero__route-num {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__route-item:nth-child(1) .hero__route-num {
  background: var(--cyan);
}

.hero__route-info { flex: 1; }

.hero__route-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__route-addr {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero__route-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.hero__route-badge--active {
  background: var(--cyan-bg);
  color: var(--cyan-dark);
}

.hero__route-badge--pending {
  background: var(--gray-100);
  color: var(--text-tertiary);
}

.hero__route-badge--done {
  background: #f0fdf4;
  color: #15803d;
}

@media (prefers-color-scheme: dark) {
  .hero__route-badge--active { background: rgba(6,182,212,.15); color: var(--cyan-light); }
  .hero__route-badge--done { background: rgba(34,197,94,.15); color: #4ade80; }
}

/* Floating metric cards */
.hero__float {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  animation: float-card 3s ease-in-out infinite;
  transition: transform 200ms cubic-bezier(.4,0,.2,1), box-shadow 200ms cubic-bezier(.4,0,.2,1), border-color 200ms cubic-bezier(.4,0,.2,1);
  cursor: default;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__float--time {
  top: 8px;
  right: 8px;
  z-index: 2;
  animation-delay: 0s;
}

.hero__float--saved {
  bottom: 24px;
  left: 8px;
  z-index: 2;
  animation-delay: 1.5s;
}

.hero__float-label {
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(6,182,212,.2);
  border-color: var(--cyan);
}

.hero__float-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cyan);
  margin-top: 2px;
}

/* --- Stats Bar --- */
.stats {
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats__item {
  background: var(--card-bg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.stats__item:hover {
  background: var(--cyan-bg);
}

@media (prefers-color-scheme: dark) {
  .stats__item:hover {
    background: rgba(6,182,212,.05);
  }
}

.stats__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stats__number span {
  color: var(--cyan);
}

.stats__label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 6px;
  font-weight: 500;
}

/* --- Feature Highlights (Landing Page) --- */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 300ms cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.highlight-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(6,182,212,.2);
  transform: translateY(-4px);
}
.highlight-card:hover .highlight-card__icon {
  background: var(--cyan);
  transform: scale(1.1) rotate(-5deg);
}
.highlight-card:hover .highlight-card__icon svg {
  color: var(--white);
}

.highlight-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 300ms cubic-bezier(.4,0,.2,1);
}

@media (prefers-color-scheme: dark) {
  .highlight-card__icon {
    background: rgba(6,182,212,.15);
  }
}

.highlight-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
  transition: color 300ms;
}

.highlight-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.highlight-card__desc {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header__title {
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.0625rem;
}

/* --- Demo Video Placeholder --- */
.demo-video {
  margin-top: 48px;
  margin-bottom: 48px;
}

.demo-video__container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all var(--transition);
}
.demo-video__container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -6px rgba(30,58,95,.2);
}

.demo-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30,58,95,.85), rgba(6,182,212,.3));
  z-index: 2;
}

.demo-video__play {
  width: 72px;
  height: 72px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(6,182,212,.4);
  transition: all var(--transition);
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,.4); }
  50% { box-shadow: 0 0 0 16px rgba(6,182,212,0); }
}

.demo-video__container:hover .demo-video__play {
  transform: scale(1.1);
  background: var(--cyan-dark);
}

.demo-video__play svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin-left: 3px;
}

.demo-video__label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
  opacity: .9;
}

.demo-video__sublabel {
  color: rgba(255,255,255,.6);
  font-size: 0.8125rem;
  margin-top: 4px;
}

/* --- Social Proof --- */
.proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: .45;
}

.proof__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: all var(--transition);
  cursor: pointer;
}
.proof__logo:hover {
  opacity: 1;
  color: var(--cyan);
  transform: scale(1.05);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 300ms cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cyan-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cyan-dark);
  flex-shrink: 0;
  transition: all var(--transition);
}

@media (prefers-color-scheme: dark) {
  .testimonial-card__avatar {
    background: rgba(6,182,212,.15);
    color: var(--cyan-light);
  }
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.testimonial-card__name::after {
  content: ' ↗';
  font-size: 0.7em;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  display: inline-block;
  transform: translateX(-4px);
}
.testimonial-card__name:hover {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.testimonial-card__name:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

/* --- Pricing Preview (Landing Page) --- */
.pricing-preview {
  text-align: center;
  margin-top: 48px;
}

.pricing-preview__text {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.pricing-preview__text strong {
  color: var(--text-primary);
}

/* --- CTA Section --- */
.cta-section {
  padding: 96px 0;
  text-align: center;
}

.cta-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box__title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-box__desc {
  color: var(--gray-400);
  font-size: 1.125rem;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.cta-box__actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-box .btn-secondary {
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.cta-box .btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(6,182,212,.1);
  color: var(--cyan-light);
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
  background: var(--section-alt-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.contact__item:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

@media (prefers-color-scheme: dark) {
  .contact__item-icon {
    background: rgba(6,182,212,.15);
  }
}

.contact__item:hover .contact__item-icon {
  background: var(--cyan);
}
.contact__item:hover .contact__item-icon svg {
  color: var(--white);
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  transition: color var(--transition);
}

.contact__item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact__item-desc {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--card-bg);
  transition: all var(--transition);
}
.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,.15);
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--text-muted);
}

.contact__textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  color: #94a3b8;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  padding: 4px 0;
  transition: all var(--transition);
}
.footer__link:hover {
  color: var(--cyan-light);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #94a3b8;
}

/* --- Features Page --- */
.features-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.features-hero__title span {
  color: var(--cyan);
}

.features-hero__desc {
  font-size: 1.125rem;
  max-width: 580px;
  margin: 16px auto 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
}

.feature-row:nth-child(even) .feature-row__visual {
  order: -1;
}

.feature-row__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.feature-row__title {
  margin-bottom: 16px;
}

.feature-row__desc {
  font-size: 1rem;
  margin-bottom: 24px;
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-row__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.feature-row__list-item:hover {
  transform: translateX(4px);
  color: var(--text-primary);
}

.feature-row__check {
  width: 22px;
  height: 22px;
  background: var(--cyan-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
}

@media (prefers-color-scheme: dark) {
  .feature-row__check {
    background: rgba(6,182,212,.15);
  }
}

.feature-row__list-item:hover .feature-row__check {
  background: var(--cyan);
}
.feature-row__list-item:hover .feature-row__check svg {
  color: var(--white);
}

.feature-row__check svg {
  width: 12px;
  height: 12px;
  color: var(--cyan);
  transition: color var(--transition);
}

.feature-row__visual {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all 300ms cubic-bezier(.4,0,.2,1);
}
.feature-row__visual:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Feature visual inner content */
.fv-route {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-route__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.fv-route__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fv-route__btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  background: var(--cyan-bg);
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.fv-route__btn:hover {
  background: var(--cyan);
  color: var(--white);
}

@media (prefers-color-scheme: dark) {
  .fv-route__btn {
    background: rgba(6,182,212,.15);
    color: var(--cyan-light);
  }
  .fv-route__btn:hover {
    background: var(--cyan);
    color: var(--white);
  }
}

.fv-stop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.fv-stop:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.fv-stop__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.fv-stop__info { flex: 1; }

.fv-stop__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.fv-stop__meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.fv-stop__action {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all var(--transition);
  cursor: pointer;
}
.fv-stop__action:hover {
  transform: scale(1.05);
}

.fv-stop__action--skip {
  background: #fef3c7;
  color: #92400e;
}

.fv-stop__action--done {
  background: #dcfce7;
  color: #166534;
}

.fv-stop__action--next {
  background: var(--cyan-bg);
  color: var(--cyan-dark);
}

/* Filter visual */
.fv-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-filters__bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fv-filter-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  color: var(--text-tertiary);
  background: var(--card-bg);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.fv-filter-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-1px);
}

.fv-filter-chip--active {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}
.fv-filter-chip--active:hover {
  background: var(--cyan-dark);
  color: var(--white);
}

.fv-filter-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  transition: all 250ms cubic-bezier(.4,0,.2,1), opacity 200ms ease, transform 200ms ease;
  cursor: default;
}
.fv-filter-row:hover {
  transform: translateX(4px);
  background: var(--cyan-bg);
}

@media (prefers-color-scheme: dark) {
  .fv-filter-row:hover {
    background: rgba(6,182,212,.08);
  }
}

.fv-filter-row__name { font-weight: 600; color: var(--text-primary); }
.fv-filter-row__type { color: var(--text-muted); font-size: 0.75rem; }

.fv-filter-results__count {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition);
}

/* Notes visual */
.fv-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-notes__header {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.fv-notes__item {
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--cyan);
  transition: all var(--transition);
}
.fv-notes__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.fv-notes__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fv-notes__item-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.fv-notes__item-time {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.fv-notes__item-text {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* History visual */
.fv-history {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-history__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  transition: all var(--transition);
}
.fv-history__search:hover {
  border-color: var(--cyan);
}

.fv-history__search-icon {
  color: var(--text-muted);
}

.fv-history__search-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.fv-history__day {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fv-history__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-history__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: default;
}
.fv-history__row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.fv-history__row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fv-history__row-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fv-history__row-status--complete { background: #22c55e; }
.fv-history__row-status--skipped { background: #f59e0b; }
.fv-history__row-status--missed { background: #ef4444; }

.fv-history__row-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* --- Missed stops visual --- */
.fv-missed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-missed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv-missed__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fv-missed__count {
  font-size: 0.75rem;
  font-weight: 600;
  background: #fef2f2;
  color: #dc2626;
  padding: 4px 10px;
  border-radius: 100px;
}

@media (prefers-color-scheme: dark) {
  .fv-missed__count {
    background: rgba(220,38,38,.15);
    color: #f87171;
  }
}

.fv-missed__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fffbeb;
  border-radius: var(--radius-sm);
  border: 1px solid #fef3c7;
  transition: all var(--transition);
}
.fv-missed__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

@media (prefers-color-scheme: dark) {
  .fv-missed__item {
    background: rgba(217,119,6,.1);
    border-color: rgba(217,119,6,.2);
  }
}

.fv-missed__icon {
  width: 32px;
  height: 32px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d97706;
  font-size: 0.875rem;
}

.fv-missed__info { flex: 1; }

.fv-missed__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.fv-missed__reason {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.fv-missed__action {
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--cyan);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
}
.fv-missed__action:hover {
  background: var(--cyan-dark);
  transform: scale(1.05);
}

/* --- Pricing Page --- */
.pricing-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.pricing-hero__title span { color: var(--cyan); }

.pricing-hero__desc {
  font-size: 1.125rem;
  max-width: 580px;
  margin: 16px auto 0;
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 56px;
}

.pricing__toggle-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.pricing__toggle-label--active { color: var(--text-primary); font-weight: 600; }

.pricing__toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--gray-200);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
  border: none;
}

.pricing__toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.pricing__toggle-switch--active {
  background: var(--cyan);
}

.pricing__toggle-switch--active::after {
  transform: translateX(22px);
}

.pricing__save {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  background: var(--cyan-bg);
  padding: 3px 10px;
  border-radius: 100px;
}

@media (prefers-color-scheme: dark) {
  .pricing__save {
    background: rgba(6,182,212,.15);
    color: var(--cyan-light);
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 300ms cubic-bezier(.4,0,.2,1);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--cyan);
}

.pricing-card__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card__annual {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 20px;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 28px;
}

.pricing-card__divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 24px;
}

.pricing-card__features-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.pricing-card__feature:hover {
  transform: translateX(4px);
}

.pricing-card__feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__feature-icon--yes {
  background: var(--cyan-bg);
  color: var(--cyan);
}

@media (prefers-color-scheme: dark) {
  .pricing-card__feature-icon--yes {
    background: rgba(6,182,212,.15);
    color: var(--cyan-light);
  }
}

.pricing-card__feature-icon--no {
  background: var(--gray-100);
  color: var(--gray-300);
}

.pricing-card__feature--disabled {
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card-bg);
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  transition: all var(--transition);
}

.faq-item__question:hover {
  background: var(--gray-50);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  display: none;
}

.faq-item--open .faq-item__answer {
  display: block;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero { text-align: center; padding: 140px 0 80px; }
  .hero__subtitle { margin: 16px auto 0; }
  .hero__actions { justify-content: center; }
  
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row:nth-child(even) .feature-row__visual { order: 0; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  
  .nav__links { 
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav__links--open { display: flex; }
  .nav__cta { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }
  .nav__toggle { display: flex; }
  
  .hero { padding: 120px 0 60px; }
  .hero__float { display: none; }
  
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .highlights__grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card:last-child { max-width: none; }
  
  .cta-box { padding: 48px 24px; }
  .cta-box__actions { flex-direction: column; align-items: center; }
  
  .feature-row__visual { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item { padding: 20px 16px; }
  .stats__number { font-size: 1.5rem; }
  .proof__logos { gap: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* ============================================
   Hover Haptics & Animations — Global Enhancements
   Pattern: translateY lift + shadow + color transition
   Timing: 200ms cubic-bezier(.4,0,.2,1) (matches --transition)
   ============================================ */

/* --- Stats Items: lift + shadow + number color pulse --- */
.stats__item {
  cursor: default;
}
.stats__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(6,182,212,.12);
}
.stats__item:hover .stats__number {
  color: var(--cyan);
}

/* --- Testimonial Cards: avatar scale on card hover --- */
.testimonial-card {
  cursor: default;
}
.testimonial-card:hover .testimonial-card__avatar {
  background: var(--cyan);
  color: var(--white);
  transform: scale(1.1);
}

/* --- Pricing Cards: enhanced lift + glow border on non-featured --- */
.pricing-card:hover {
  border-color: var(--cyan);
}

/* Pricing feature list items: color + check icon fill on hover */
.pricing-card__feature {
  cursor: default;
}
.pricing-card__feature:hover {
  color: var(--text-primary);
}
.pricing-card__feature:hover .pricing-card__feature-icon--yes {
  background: var(--cyan);
  color: var(--white);
}

/* --- FAQ Items: enhanced question hover + subtle left accent --- */
.faq-item:hover {
  transform: translateY(-1px);
}
.faq-item__question:hover {
  color: var(--cyan-dark);
  padding-left: 28px;
}
@media (prefers-color-scheme: dark) {
  .faq-item__question:hover {
    color: var(--cyan-light);
    background: rgba(6,182,212,.05);
  }
}

/* --- Hero Badge: subtle scale + glow --- */
.hero__badge {
  cursor: default;
  transition: all var(--transition);
}
.hero__badge:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 12px rgba(6,182,212,.15);
  border-color: var(--cyan);
}

/* --- Proof Logos: full color + lift on hover --- */
.proof__logo:hover {
  transform: scale(1.08) translateY(-2px);
}

/* --- Pricing Toggle: switch hover glow --- */
.pricing__toggle-switch {
  transition: all var(--transition);
}
.pricing__toggle-switch:hover {
  box-shadow: 0 0 0 3px rgba(6,182,212,.2);
  transform: scale(1.05);
}

/* --- Pricing Save Badge: pulse on hover --- */
.pricing__save {
  transition: all var(--transition);
  cursor: default;
}
.pricing__save:hover {
  transform: scale(1.08);
  background: var(--cyan);
  color: var(--white);
}

/* --- Demo Video: enhanced lift + deeper shadow --- */
.demo-video__container:hover .demo-video__label {
  opacity: 1;
}

/* --- Feature Visual Cards: icon glow on hover --- */
.feature-row__visual:hover {
  border-color: var(--cyan);
}

/* --- Filter Chips: lift on hover --- */
.fv-filter-chip:hover {
  box-shadow: 0 2px 8px rgba(6,182,212,.12);
}

/* --- Footer Links: enhanced with underline reveal --- */
.footer__link {
  position: relative;
}
.footer__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan-light);
  transition: width var(--transition);
}
.footer__link:hover::after {
  width: 100%;
}

/* --- Footer Bottom: subtle hover for copyright/brand --- */
.footer__bottom span {
  transition: color var(--transition);
  cursor: default;
}
.footer__bottom span:hover {
  color: var(--cyan-light);
}

/* --- Contact Form Inputs: lift on focus --- */
.contact__input:hover,
.contact__textarea:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(30,58,95,.04);
}

/* --- Signup Trust Items: subtle hover --- */
.signup__trust-item {
  transition: all var(--transition);
  cursor: default;
}
.signup__trust-item:hover {
  transform: translateY(-2px);
  color: var(--cyan);
}

/* --- Signup Terms Links: smooth color transition --- */
.signup__terms a {
  transition: all var(--transition);
}
.signup__terms a:hover {
  color: var(--cyan-dark);
}

/* --- Legal Page Links: smooth hover --- */
.legal-page__content a {
  transition: all var(--transition);
}
.legal-page__content a:hover {
  color: var(--cyan-dark);
}

/* --- Pricing Preview Link: hover lift --- */
.pricing-preview__text a {
  transition: all var(--transition);
  position: relative;
}
.pricing-preview__text a:hover {
  color: var(--cyan-dark);
}
.pricing-preview__text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width var(--transition);
}
.pricing-preview__text a:hover::after {
  width: 100%;
}

/* --- Section Header Labels: subtle hover --- */
.section-header__label {
  transition: all var(--transition);
  cursor: default;
}
.section-header__label:hover {
  transform: translateY(-1px);
  color: var(--cyan-dark);
}

/* --- Feature Row Labels: subtle hover --- */
.feature-row__label {
  transition: all var(--transition);
  cursor: default;
}
.feature-row__label:hover {
  transform: translateY(-1px);
}

/* --- FV Route Button: lift + fill on hover --- */
.fv-route__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(6,182,212,.2);
}

/* --- FV Stop Action Buttons: lift + shadow --- */
.fv-stop__action {
  transition: all var(--transition);
}
.fv-stop__action:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* --- FV Missed Action: lift --- */
.fv-missed__action:hover {
  transform: translateY(-1px) scale(1.05);
}

/* --- FV Notes Items: enhanced hover --- */
.fv-notes__item:hover {
  border-left-color: var(--cyan-dark);
  background: var(--cyan-bg);
}
@media (prefers-color-scheme: dark) {
  .fv-notes__item:hover {
    background: rgba(6,182,212,.05);
  }
}

/* --- Contact Item Icon: smooth rotate on hover --- */
.contact__item:hover .contact__item-icon {
  transform: rotate(-5deg) scale(1.05);
}

/* --- FV History Search: glow on hover --- */
.fv-history__search:hover {
  box-shadow: 0 2px 8px rgba(6,182,212,.1);
}

/* --- FV History Rows: enhanced bg on hover --- */
.fv-history__row:hover {
  background: var(--cyan-bg);
}
@media (prefers-color-scheme: dark) {
  .fv-history__row:hover {
    background: rgba(6,182,212,.05);
  }
}

/* --- Signup Select: hover border --- */
.signup__select {
  transition: all var(--transition);
}
.signup__select:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(30,58,95,.04);
}

/* --- Pricing Card Popular Badge: pulse on card hover --- */
.pricing-card--featured:hover .pricing-card__popular {
  animation: badge-pulse 0.4s ease-out;
}
@keyframes badge-pulse {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
  100% { transform: translateX(-50%) scale(1); }
}

/* --- Nav Logo Icon: glow on hover --- */
.nav__logo-icon {
  transition: all var(--transition);
}
.nav__logo:hover .nav__logo-icon {
  box-shadow: 0 0 12px rgba(6,182,212,.4);
  transform: rotate(-5deg) scale(1.08);
}

/* --- Nav Toggle: bar animation on hover --- */
.nav__toggle:hover span {
  background: var(--cyan);
}
.nav__toggle:hover span:nth-child(2) {
  transform: scaleX(0.75);
}

/* --- Hero Mockup: subtle lift on hover --- */
.hero__mockup {
  transition: all 300ms cubic-bezier(.4,0,.2,1);
}
.hero__mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -8px rgba(30,58,95,.12);
  border-color: var(--cyan);
}

/* --- CTA Box: subtle glow pulse on hover --- */
.cta-box {
  transition: all 300ms cubic-bezier(.4,0,.2,1);
}
.cta-box:hover {
  box-shadow: 0 0 40px rgba(6,182,212,.15);
  transform: translateY(-2px);
}

/* --- Footer Brand Name: glow on hover --- */
.footer__brand-name {
  transition: all var(--transition);
  cursor: default;
}
.footer__brand-name:hover {
  color: var(--cyan-light);
  text-shadow: 0 0 12px rgba(6,182,212,.3);
}

/* --- Footer Headings: subtle lift --- */
.footer__heading {
  transition: all var(--transition);
  cursor: default;
}
.footer__heading:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* --- Contact Hero Title: accent on hover --- */
.contact-hero__title {
  transition: color var(--transition);
  cursor: default;
}

/* --- Pricing Card Name: bold shift on hover --- */
.pricing-card__name {
  transition: all var(--transition);
}
.pricing-card:hover .pricing-card__name {
  color: var(--cyan);
}

/* --- Pricing Card Price: scale on hover --- */
.pricing-card__amount {
  transition: all var(--transition);
}
.pricing-card:hover .pricing-card__amount {
  transform: scale(1.05);
  color: var(--cyan);
}

/* --- Feature Row Visual inner elements: hover transitions for inline-styled items --- */
.feature-row__visual [style*="border-radius"] {
  transition: all var(--transition);
}

/* --- Legal Page Content headings: hover accent --- */
.legal-page__content h2 {
  transition: color var(--transition);
  cursor: default;
}
.legal-page__content h2:hover {
  color: var(--cyan);
}

/* --- Signup Confirmation Icon: bounce on render --- */
.signup__confirmation-icon svg {
  transition: all var(--transition);
}
.signup__confirmation-icon:hover svg {
  transform: scale(1.1) rotate(-5deg);
}

/* --- Demo Video Sublabel: fade up on hover --- */
.demo-video__sublabel {
  transition: all var(--transition);
}
.demo-video__container:hover .demo-video__sublabel {
  opacity: 1;
  transform: translateY(-2px);
}

/* --- Business Name Elements: cyan color + subtle shift on hover --- */
.fv-stop__name,
.fv-filter-row__name,
.fv-missed__name,
.fv-notes__item-name,
.fv-history__row-name {
  transition: color 200ms cubic-bezier(.4,0,.2,1), transform 200ms cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.fv-stop__name:hover,
.fv-filter-row__name:hover,
.fv-missed__name:hover,
.fv-notes__item-name:hover,
.fv-history__row-name:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

/* --- Filter Chip: press/click haptic feedback --- */
.fv-filter-chip:active {
  transform: scale(0.94);
  transition-duration: 80ms;
}

/* --- Filter Row: press haptic on click --- */
.fv-filter-row:active {
  transform: translateX(2px) scale(0.98);
  transition-duration: 80ms;
}

/* --- Hero Route Items: name color on row hover --- */
.hero__route-item:hover .hero__route-name {
  color: var(--cyan);
}
.hero__route-name {
  transition: color 200ms cubic-bezier(.4,0,.2,1);
}

/* --- Hero Route Badges: lift on hover --- */
.hero__route-badge {
  transition: all 200ms cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.hero__route-badge:hover {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

/* --- FV Missed Item Icon: pulse on hover --- */
.fv-missed__icon {
  transition: all 200ms cubic-bezier(.4,0,.2,1);
}
.fv-missed__item:hover .fv-missed__icon {
  transform: scale(1.15);
  background: #d97706;
  color: var(--white);
}

/* --- FV Notes Item: enhanced left border slide --- */
.fv-notes__item {
  transition: all 200ms cubic-bezier(.4,0,.2,1);
}

/* --- FV Stop Num: glow on parent hover --- */
.fv-stop__num {
  transition: all 200ms cubic-bezier(.4,0,.2,1);
}
.fv-stop:hover .fv-stop__num {
  box-shadow: 0 0 8px rgba(6,182,212,.3);
  transform: scale(1.08);
}

/* --- FV Route Header Button: press haptic --- */
.fv-route__btn:active {
  transform: scale(0.94);
  transition-duration: 80ms;
}

/* --- Demo Video Play Button: scale + glow on hover --- */
.demo-video__play {
  transition: all 200ms cubic-bezier(.4,0,.2,1);
}
.demo-video__container:hover .demo-video__play {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(6,182,212,.4);
}

/* --- Stats Number: scale on hover --- */
.stats__number {
  transition: all 200ms cubic-bezier(.4,0,.2,1);
}
.stats__item:hover .stats__number {
  transform: scale(1.05);
}

/* --- Nav CTA Button: extra glow for emphasis --- */
.nav__cta.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(6,182,212,.4);
}

/* ============================================
   Signup Page
   ============================================ */
.signup-hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.signup__wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.signup__header {
  text-align: center;
  margin-bottom: 40px;
}

.signup__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 16px 0 12px;
}

.signup__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.signup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signup__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.signup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.signup__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.signup__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.signup__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 1.0625rem;
}

.signup__terms {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  text-align: center;
}

.signup__terms a {
  color: var(--cyan);
  font-weight: 500;
}

.signup__terms a:hover {
  text-decoration: underline;
}

.signup__confirmation {
  text-align: center;
  padding: 48px 0;
}

.signup__confirmation-icon {
  margin-bottom: 24px;
}

.signup__confirmation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.signup__confirmation-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.signup__trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.signup__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-tertiary);
}

.signup__trust-item svg {
  color: var(--cyan);
}

@media (max-width: 640px) {
  .signup__form-row { grid-template-columns: 1fr; }
  .signup__trust { flex-direction: column; align-items: center; gap: 12px; }
}

/* ============================================
   Contact Hero (standalone page)
   ============================================ */
.contact-hero {
  padding: 120px 0 48px;
  text-align: center;
}

.contact-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 16px 0 12px;
}

.contact-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   Legal / Placeholder Pages
   ============================================ */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page__content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page__content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

.legal-page__content h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page__content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page__content a {
  color: var(--cyan);
}

.legal-page__content a:hover {
  text-decoration: underline;
}
