/* ==========================================================================
   RIDESHARESUCCESS.COM — COMPONENT STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal), padding var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-subtle);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 8px;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--bg-surface-1);
  border-bottom: 1px solid var(--border-medium);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-elevated);
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.1rem;
  padding: 8px 0;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--bg-main);
}

/* Hero Background Video Integration */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Dark Legibility Gradients */
.hero-video-overlay-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  background: linear-gradient(to right, var(--bg-main) 20%, rgba(6, 11, 18, 0.95) 50%, rgba(6, 11, 18, 0.4) 85%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-video-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-video-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, var(--bg-main) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
}

.hero-headline {
  margin-bottom: 20px;
}

.hero-headline span.accent {
  background: linear-gradient(135deg, #00E5FF 0%, #20E89A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subhead {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Hero Benefits Checklist */
.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(32, 232, 154, 0.15);
  color: var(--emerald);
  flex-shrink: 0;
}

.hero-benefit-check svg {
  width: 12px;
  height: 12px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --------------------------------------------------------------------------
   3. MICRO TRUST ROW
   -------------------------------------------------------------------------- */
.micro-trust-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface-1);
  padding: 18px 0;
}

.micro-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.micro-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.micro-trust-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. TOOLKIT SECTION
   -------------------------------------------------------------------------- */
.toolkit-visual-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
  background: #091522;
}

.toolkit-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

.toolkit-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.toolkit-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.toolkit-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
}

.step-badge {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
}

.toolkit-step-title {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.toolkit-step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   5. CALM OBJECTION SECTION (NO PITCHING)
   -------------------------------------------------------------------------- */
.no-pitching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.no-pitching-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.no-pitching-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-pitching-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.no-pitching-point {
  display: flex;
  gap: 16px;
}

.point-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.point-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.point-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   6. ECONOMICS COMPARISON SECTION
   -------------------------------------------------------------------------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.comparison-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.comparison-card.card-traditional {
  background: rgba(18, 26, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-card.card-modern {
  background: linear-gradient(180deg, rgba(14, 30, 48, 0.8) 0%, rgba(10, 20, 32, 0.95) 100%);
  border: 1px solid var(--border-accent);
  box-shadow: var(--glow-cyan);
}

.comparison-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.badge-muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.badge-highlight {
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
  border: 1px solid var(--border-accent);
}

.comparison-title {
  font-size: 1.5rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.comparison-item.negative {
  color: var(--text-secondary);
}

.comparison-item.negative svg {
  color: #EF4444;
  flex-shrink: 0;
}

.comparison-item.positive {
  color: var(--text-primary);
  font-weight: 600;
}

.comparison-item.positive svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. RIDER EXPERIENCE FLOW
   -------------------------------------------------------------------------- */
.rider-flow-container {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
  margin-top: 40px;
}

.rider-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.flow-step-item {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flow-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.flow-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.flow-step-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.reward-categories-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.category-pill svg {
  color: var(--emerald);
}

/* --------------------------------------------------------------------------
   8. 80% COMMISSION SECTION
   -------------------------------------------------------------------------- */
.commission-box {
  background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.12) 0%, rgba(11, 20, 32, 0.8) 70%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.commission-huge-number {
  font-size: clamp(4.5rem, 12vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #00E5FF 0%, #20E89A 50%, #39FF88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.commission-tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text-primary);
  max-width: 680px;
  margin: 0 auto 16px;
}

.commission-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 28px;
}

.commission-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(32, 232, 154, 0.12);
  border: 1px solid var(--border-success);
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--emerald);
}

.commission-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   9. WHAT'S INCLUDED / FEATURE GRID
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.feature-tile:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 217, 199, 0.1);
  border: 1px solid rgba(0, 217, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. ASPIRATIONAL CINEMATIC SECTION
   -------------------------------------------------------------------------- */
.aspirational-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: #04080D;
  margin-top: 20px;
  margin-bottom: 20px;
}

.aspirational-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}

.aspirational-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(4, 8, 13, 0.96) 0%, rgba(4, 8, 13, 0.85) 45%, rgba(4, 8, 13, 0.3) 80%, rgba(4, 8, 13, 0.1) 100%);
  z-index: 2;
}

.aspirational-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: clamp(40px, 6vw, 64px);
}

.aspirational-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   11. DRIVER DASHBOARD PREVIEW
   -------------------------------------------------------------------------- */
.dashboard-preview-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-card);
}

.dashboard-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.dashboard-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.dashboard-demo-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.dashboard-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.dashboard-metric-tile {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.metric-value.accent {
  color: var(--emerald);
}

.metric-trend {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dashboard-chart-wrapper {
  background: rgba(6, 11, 18, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

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

.chart-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.chart-svg {
  width: 100%;
  height: 120px;
}

/* --------------------------------------------------------------------------
   12. OBJECTION KILLER Q&A
   -------------------------------------------------------------------------- */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.objection-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.objection-answer {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. PRICING & PRIMARY CONVERSION BLOCK
   -------------------------------------------------------------------------- */
.pricing-conversion-card {
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.15) 0%, rgba(8, 17, 27, 0.95) 75%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-elevated), var(--glow-cyan);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.pricing-amount-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 12px;
}

.price-main {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
}

.price-unit {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-cadence-badge {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   14. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item[open] {
  border-color: var(--border-accent);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   15. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
  background: radial-gradient(circle at 50% 100%, rgba(32, 232, 154, 0.08) 0%, transparent 60%);
}

.final-cta-headline {
  margin-bottom: 16px;
}

.final-cta-subhead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface-1);
  padding: 48px 0 36px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-disclaimer-text {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  margin-bottom: 20px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   17. MOBILE STICKY BOTTOM CTA
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 17, 27, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  padding: 12px 16px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  transition: transform var(--transition-smooth);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sticky-cta-sub {
  font-size: 0.75rem;
  color: var(--emerald);
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-dismiss-btn {
  color: var(--text-muted);
  padding: 6px;
  font-size: 1.2rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   18. LEGAL MODAL
   -------------------------------------------------------------------------- */
.legal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-modal-backdrop.active {
  display: flex;
}

.legal-modal-window {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-elevated);
}

.legal-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
}

.legal-modal-close:hover {
  color: var(--text-primary);
}

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

.legal-modal-body p {
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .micro-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rider-flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 360px;
    margin-top: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
  }

  .hero-section {
    min-height: auto;
    display: block;
    padding-top: 88px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-video-overlay-left,
  .hero-video-overlay-top,
  .hero-video-overlay-bottom {
    display: none;
  }

  .toolkit-steps-grid {
    grid-template-columns: 1fr;
  }

  .no-pitching-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .objections-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .aspirational-section {
    min-height: 440px;
  }

  .aspirational-overlay {
    background: linear-gradient(180deg, rgba(4, 8, 13, 0.9) 0%, rgba(4, 8, 13, 0.6) 100%);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .micro-trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .micro-trust-item {
    justify-content: flex-start;
  }

  .dashboard-metrics-grid {
    grid-template-columns: 1fr;
  }

  .rider-flow-steps {
    grid-template-columns: 1fr;
  }

  .footer-top-row, .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn-lg {
    width: 100%;
  }
}

@media (min-width: 861px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}
