/* Mighty Trucking — Main Stylesheet */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand — split-complementary: slate + warm gold accent */
  --surface-950: #030712;
  --surface-900: #0B1120;
  --surface-800: #111827;
  --surface-700: #1E293B;
  --surface-600: #334155;
  --navy: var(--surface-900);
  --navy-dark: var(--surface-800);

  /* Accent gold — warm complement to cool slate (60-30-10 rule) */
  --accent-500: #D97706;
  --accent-400: #F59E0B;
  --accent-300: #FBBF24;
  --accent-glow: rgba(245, 158, 11, 0.35);
  --amber: var(--accent-400);
  --amber-hover: var(--accent-500);

  /* Google official brand palette */
  --google-blue: #1A73E8;
  --google-blue-dark: #1558B0;
  --google-green: #1E8E3E;
  --google-green-light: #34A853;
  --google-yellow: #F9AB00;
  --google-red: #D93025;

  /* Semantic surfaces */
  --bg: #F1F5F9;
  --bg-elevated: #FFFFFF;
  --bg-muted: #E2E8F0;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-on-dark: #CBD5E1;
  --white: #FFFFFF;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);

  /* Elevation — Material-inspired layered shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --radius-xl: 1.5rem;
  --radius: 1rem;
  --radius-sm: 0.625rem;
  --radius-full: 9999px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography scale */
  --font-display: 'Inter', system-ui, sans-serif;
  --leading-tight: 1.15;
  --leading-normal: 1.6;
}

html {
  scroll-behavior: smooth;
  color-scheme: only light;
}

body {
  font-family: var(--font-display);
  background-color: #F1F5F9;
  color: #0F172A;
  overflow-x: hidden;
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-sticky-cta {
  padding-bottom: 70px;
}
a.link-accent,
.link-accent {
  color: var(--google-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition), transform var(--transition);
}

.link-accent:hover {
  color: var(--google-blue-dark);
  text-decoration: underline;
  transform: translateX(2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.slots-urgent {
  color: var(--google-red);
  font-weight: 800;
}

.bg-overlay-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(26, 115, 232, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(245, 158, 11, 0.05), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(30, 142, 62, 0.04), transparent 50%),
    #F1F5F9;
  pointer-events: none;
}

.bg-overlay-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(248, 250, 252, 0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 17, 32, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(245, 158, 11, 0.15);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-custom {
  background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform var(--transition);
}

.logo:hover .logo-icon-custom {
  transform: scale(1.05);
}

.logo-icon-custom img,
.logo-icon-custom svg {
  width: 32px;
  height: 32px;
}

.logo-text h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--accent-300);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
  font-size: 0.925rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-400);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-300);
}

.nav-links a:hover {
  transform: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500)) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius-full);
  color: var(--surface-900) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-sm), 0 0 20px rgba(245, 158, 11, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-300), var(--accent-400)) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-md), 0 0 28px rgba(245, 158, 11, 0.35);
}

.menu-toggle {
  display: none;
  font-size: 1.7rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* Live Stats Bar */
.live-stats-bar {
  background: linear-gradient(90deg, var(--surface-900) 0%, var(--surface-800) 50%, var(--surface-900) 100%);
  color: var(--text-light);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  position: relative;
  overflow: hidden;
}

.live-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.03), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.live-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.live-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.live-stat i {
  color: var(--accent-400);
}

.live-stat-value {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-300);
  min-width: 1.5ch;
  font-variant-numeric: tabular-nums;
}

.live-stat-value.pulse {
  animation: pulseValue 0.5s ease;
}

@keyframes pulseValue {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); color: var(--google-green); }
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--google-green-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(52, 168, 83, 0.6);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero */
.hero-video-wrapper {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  filter: brightness(0.65) contrast(1.1) saturate(1.05);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(17, 24, 39, 0.85) 40%, rgba(30, 41, 59, 0.75) 100%);
  padding: 5rem 0 5.5rem;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  flex: 1.2;
}

.hero-side {
  flex: 0.8;
}

.hero-badge {
  background: rgba(245, 158, 11, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--accent-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 40%, var(--accent-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin: 1.5rem 0;
  color: var(--text-on-dark);
  max-width: 540px;
  line-height: 1.7;
}

.page-hero {
  background: linear-gradient(160deg, var(--surface-900) 0%, var(--surface-800) 60%, var(--surface-700) 100%);
  padding: 4.5rem 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26, 115, 232, 0.15), transparent 60%);
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-on-dark);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  position: relative;
}

.glass-stat {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(150%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.glass-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(245, 158, 11, 0.08);
}

.floating-card {
  animation: floatGlow 3s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
  color: var(--surface-900);
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-md), 0 0 24px rgba(245, 158, 11, 0.2);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--accent-300) 0%, var(--accent-400) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(245, 158, 11, 0.3);
}

.cta-button-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(248, 250, 252, 0.25);
  box-shadow: none;
}

.cta-button-secondary:hover {
  background: rgba(248, 250, 252, 0.08);
  border-color: var(--accent-400);
  color: var(--accent-300);
  box-shadow: var(--shadow-sm);
}

.cta-button-dark {
  background: var(--surface-800);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.cta-button-dark:hover {
  background: var(--surface-700);
}

/* Cards & Sections */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  background-color: #F8FAFC;
}

.section-alt {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.section-gray {
  background: linear-gradient(180deg, #E2E8F0 0%, #F1F5F9 100%);
}

.cta-section {
  background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title.center-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: #0F172A;
}

.section-header p {
  max-width: 700px;
  margin: 1.2rem auto 0;
  color: #475569;
  font-size: 1.05rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-400), var(--google-blue));
  border-radius: 2px;
}

.card-modern {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  color: #0F172A;
}

.card-modern h3 {
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.card-modern p,
.card-modern li {
  color: #475569;
}

.card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-green));
  opacity: 0;
  transition: opacity var(--transition);
}

.card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.card-modern:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 1.75rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(245, 158, 11, 0.1));
  color: var(--google-blue);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.reward-amount {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--google-green);
  letter-spacing: -0.03em;
}

.note-box {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  color: var(--text);
  font-size: 0.925rem;
}

.note-box-blue {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: rgba(26, 115, 232, 0.2);
}

.grid-2cols, .grid-3cols, .grid-4cols {
  display: grid;
  gap: 2rem;
}

.grid-2cols { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3cols { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4cols { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
}

.reward-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--google-green);
}

/* Google Product Logos Row */
.product-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.product-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--bg-elevated);
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-logo-wrap:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.product-logo-voice {
  height: 32px;
  width: 32px;
}

.product-logo-lg {
  height: 36px;
}

.product-logo-wrap--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.product-logo-wrap--on-dark .product-logo {
  filter: brightness(1.1);
}

/* Google Voice — icon + wordmark (readable on any background) */
.gv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: auto;
  max-width: max-content;
  flex-shrink: 0;
}

.gv-brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.gv-brand-text {
  font-size: 1rem;
  font-weight: 500;
  color: #3C4043;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.gv-brand--on-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.gv-brand--on-dark .gv-brand-text {
  color: #F8FAFC;
}

.gv-brand--sm {
  padding: 0.35rem 0.75rem;
}

.gv-brand--sm .gv-brand-icon {
  width: 24px;
  height: 24px;
}

.gv-brand--sm .gv-brand-text {
  font-size: 0.875rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-logo-sm {
  height: 26px;
  width: auto;
  opacity: 0.95;
  filter: brightness(1.15);
}

.footer-logos .gv-brand {
  margin: 0;
}

.footer-address {
  margin-top: 0.75rem;
  line-height: 1.6;
  color: var(--text-on-dark);
  font-size: 0.9rem;
}

.footer-address i,
.footer-col a i {
  color: var(--accent-400);
  margin-right: 0.35rem;
  width: 16px;
}

.footer-map {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.1);
  box-shadow: var(--shadow-lg);
}

.footer-map iframe {
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.wizard-product-image--brand {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #eff6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.trucking-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
}

.img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.offer-card-light {
  background: #FFFFFF !important;
}

.offer-card-light,
.offer-card-light p,
.offer-card-light h3,
.offer-card-light strong {
  color: #475569 !important;
}

.offer-card-light h3 {
  color: #0F172A !important;
}

/* Dark featured reward card */
.card-reward {
  background: linear-gradient(145deg, #111827 0%, #1E293B 100%) !important;
  color: #F8FAFC !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.card-reward p,
.card-reward li {
  color: #CBD5E1 !important;
}

.card-reward strong {
  color: #F8FAFC !important;
}

.card-reward .reward-amount {
  color: #34A853 !important;
}

.card-reward .wizard-checklist li {
  color: #E2E8F0 !important;
}

.card-reward .note-box {
  background: rgba(245, 158, 11, 0.12) !important;
  color: #FEF3C7 !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
}

.card-reward .mt-2 {
  color: #CBD5E1 !important;
}

.card-reward .mt-2 span {
  color: #F8FAFC !important;
}

.offer-card-light .note-box-blue {
  color: #1E3A8A !important;
}

.faq-question {
  color: #0F172A !important;
  background-color: #FFFFFF !important;
}

.faq-item {
  background: #FFFFFF !important;
}

.faq-answer p {
  color: #475569 !important;
}

.wizard-checklist li {
  color: #475569 !important;
}

.wizard-product-card {
  background: #FFFFFF !important;
  color: #0F172A !important;
}

.wizard-product-card h3 {
  color: #0F172A !important;
}

.wizard-step-btn {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border-color: #E2E8F0 !important;
}

.wizard-step-btn.active {
  color: var(--google-blue) !important;
  border-color: var(--google-blue) !important;
  background: #EFF6FF !important;
}

.wizard-step-btn.completed {
  color: var(--google-green) !important;
  border-color: rgba(30, 142, 62, 0.35) !important;
  background: #F0FDF4 !important;
}

.mock-caption {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.mock-step-label {
  margin-left: 1rem;
  font-weight: 600;
  color: var(--text);
}

.plus-sign {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-400);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--accent-400);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

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

.step-modern {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  flex: 1;
  min-width: 180px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.step-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-400), var(--google-blue));
  border-radius: 2px 2px 0 0;
}

.step-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  background: linear-gradient(135deg, var(--surface-800), var(--surface-700));
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--accent-300);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  color: var(--text);
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f9fbfe;
}

.faq-question i {
  color: var(--amber);
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* Forms */
.form-card {
  max-width: 660px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group label i {
  color: var(--amber);
  margin-right: 0.5rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--google-blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.form-submit {
  background: linear-gradient(135deg, var(--surface-800), var(--surface-700));
  width: 100%;
  border: none;
  color: var(--text-light);
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--surface-700), var(--surface-600));
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.form-note {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 1rem;
  color: #5a6a7a;
}

.success-msg {
  display: none;
  background: #d9f0e1;
  border-radius: 50px;
  padding: 14px;
  margin-top: 1rem;
  text-align: center;
  color: var(--google-green);
}

/* Wizard */
.wizard-container {
  max-width: 900px;
  margin: 0 auto;
}

.wizard-progress {
  background: #e8ecf0;
  border-radius: 50px;
  height: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--google-blue), var(--google-green));
  border-radius: 50px;
  transition: width 0.5s ease;
  width: 0%;
}

.wizard-steps-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wizard-step-btn {
  flex: 1;
  min-width: 100px;
  padding: 0.75rem 0.5rem;
  background: white;
  border: 2px solid #e8ecf0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
}

.wizard-step-btn.active {
  border-color: var(--google-blue);
  background: #eef4ff;
  color: var(--google-blue);
}

.wizard-step-btn.completed {
  border-color: var(--google-green);
  background: #ecfdf3;
  color: var(--google-green);
}

.wizard-panel {
  display: none;
  animation: slideIn 0.4s ease;
}

.wizard-panel.active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.wizard-product-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f4f7fc;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-checklist {
  list-style: none;
  margin: 1rem 0;
}

.wizard-checklist li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.wizard-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--google-green);
  font-weight: 700;
}

.wizard-complete-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  cursor: pointer;
}

.wizard-complete-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--google-green);
}

.wizard-nav-buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.wizard-nav-buttons button {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.wizard-prev {
  background: #e8ecf0;
  color: var(--text);
}

.wizard-next {
  background: var(--google-blue);
  color: white;
}

.wizard-next:hover {
  background: #3367d6;
}

.wizard-next.highlight {
  background: var(--google-green);
  animation: pulseBtn 1.5s infinite;
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,168,83,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(52,168,83,0); }
}

/* Animated Walkthrough */
.walkthrough-container {
  background: linear-gradient(145deg, var(--surface-900), var(--surface-800));
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.08);
  box-shadow: var(--shadow-xl);
}

.walkthrough-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: white;
}

.walkthrough-header h3 {
  font-size: 1.2rem;
}

.walkthrough-controls button {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  margin-left: 0.5rem;
  transition: background 0.2s;
}

.walkthrough-controls button:hover {
  background: rgba(255,255,255,0.2);
}

.walkthrough-screen {
  background: white;
  border-radius: var(--radius-sm);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.walkthrough-slide {
  position: absolute;
  inset: 0;
  padding: 2rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.walkthrough-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.mock-ui-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.mock-ui-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-ui-dot.red { background: var(--google-red); }
.mock-ui-dot.yellow { background: var(--google-yellow); }
.mock-ui-dot.green { background: var(--google-green); }

.mock-form-field {
  background: #f4f7fc;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 0.75rem;
  color: #5a6a7a;
  font-size: 0.9rem;
}

.mock-form-field.filled {
  color: var(--text);
  border-left: 3px solid var(--google-blue);
}

.mock-btn {
  background: var(--google-blue);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.mock-phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--google-green);
  padding: 1rem;
  background: #ecfdf3;
  border-radius: var(--radius-sm);
  text-align: center;
  margin: 1rem 0;
}

.mock-email-preview {
  background: #f9fbfe;
  border: 1px solid #e8ecf0;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.mock-payout {
  text-align: center;
  padding: 2rem;
}

.mock-payout-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--google-green);
}

.walkthrough-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.walkthrough-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
  cursor: pointer;
}

.walkthrough-dot.active {
  background: var(--accent-400);
  width: 24px;
  border-radius: 5px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge i {
  color: var(--google-green);
}

/* Checklist */
.checklist {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
}

.checklist li i {
  color: var(--google-blue);
  font-size: 1.2rem;
  width: 24px;
}

/* Sticky Mobile CTA */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  text-align: center;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.sticky-cta-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
  color: var(--surface-900);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  width: 100%;
  max-width: 400px;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* Footer */
footer {
  background: var(--surface-900);
  color: var(--text-on-dark);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(248, 250, 252, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: #b7cddf;
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-300);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 5rem 0;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: #ecfdf3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--google-green);
}

.next-steps {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

.next-steps li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  list-style: none;
  padding-left: 2rem;
  position: relative;
}

.next-steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  background: var(--amber);
  color: var(--navy-dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.next-steps {
  counter-reset: step;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  margin-bottom: 1rem;
  color: #5a6a7a;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Image styles */
.rounded-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.product-showcase-img {
  background: var(--bg-elevated);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.hero-logos {
  justify-content: flex-start !important;
  margin: 1.5rem 0 !important;
  align-items: center;
}

.hero-logos .plus-sign {
  color: rgba(248, 250, 252, 0.55);
  font-size: 1.25rem;
}

.page-hero .product-logos {
  justify-content: center;
}

.page-hero .product-logo-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-hero .product-logo-wrap .product-logo {
  filter: brightness(1.15);
}
.hero-stat-line { font-weight: 500; color: var(--text-on-dark); }
.hero-stat-divider { margin: 1rem 0; border-color: rgba(255,255,255,0.12); }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta-spaced { margin-left: 0; }
.link-accent { color: var(--google-blue); font-weight: 600; text-decoration: none; }
.link-accent:hover { text-decoration: underline; }
.cta-section { background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%); }
.text-secondary { color: #475569; }

/* Responsive */
@media (max-width: 800px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .wizard-product-card {
    grid-template-columns: 1fr;
  }

  .live-stats-grid {
    gap: 1rem;
  }

  .live-stat {
    font-size: 0.8rem;
  }

  .sticky-cta-bar {
    display: block;
  }

  body.has-sticky-cta {
    padding-bottom: 70px;
  }
}

/* ── Light-surface readability (forced contrast) ── */
.section p,
.section li,
.section-alt p,
.section-alt li,
.section-gray p,
.section-gray li,
.cta-section p {
  color: #475569;
}

.section h2,
.section h3,
.section-alt h2,
.section-alt h3,
.section-gray h2,
.section-gray h3,
.cta-section h2 {
  color: #0F172A;
}

.section strong,
.section-alt strong,
.section-gray strong {
  color: #0F172A;
}

.mission-content p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}

.mission-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.mission-stats > div {
  color: #475569;
  font-size: 0.95rem;
}

.mission-stats strong {
  color: #0F172A;
  font-weight: 700;
}

.mission-stats i {
  color: var(--accent-400);
  margin-right: 0.35rem;
}

.text-secondary {
  color: #475569 !important;
}

.note-box {
  color: #78350F;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.note-box-blue {
  color: #1E3A8A;
  border: 1px solid rgba(26, 115, 232, 0.2);
}

.product-logos--light .plus-sign {
  color: #64748B;
}

.gv-logo-panel {
  padding: 1rem;
  background: #FFFFFF;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.gv-logo-panel .gv-brand {
  margin: 0 auto;
}

.testimonial-card {
  background: #FFFFFF;
  color: #0F172A;
}

.testimonial-card p {
  color: #475569;
}

.step-modern {
  background: #FFFFFF;
  color: #0F172A;
}

.step-modern p {
  color: #475569;
}

.form-card {
  background: #FFFFFF;
  color: #0F172A;
}

.form-group label {
  color: #0F172A;
}
