/* ==========================================================================
   SearchMyBus - Components Stylesheet
   Hero, Interactive Mockups, Steps, Values, Vision, Waitlist Modal
   ========================================================================== */

/* --------------------------------------------------
   1. HEADER / NAVBAR
   -------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

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

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

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(97, 0, 237, 0.25);
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--primary);
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary);
}

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* --------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 90px;
  background: var(--hero-bg-gradient);
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 0, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-content .badge-coming-soon {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-store-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  width: 100%;
}

.hero-store-block label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------
   3. HERO PHONE MOCKUP (CONCEPT VISUALIZER)
   -------------------------------------------------- */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 320px;
  background: #ffffff;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-phone);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  transition: var(--transition-smooth);
}

.phone-frame:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 35px 90px -15px rgba(97, 0, 237, 0.28);
}

.phone-notch {
  width: 120px;
  height: 18px;
  background: #000000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px auto;
}

.phone-screen {
  background: #f8f9fe;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

/* Screen 1: Search UI (From User Image 1) */
.mock-search-header {
  background: var(--violet-gradient);
  padding: 24px 16px 50px 16px;
  color: #ffffff;
  position: relative;
}

.mock-top-greeting {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 2px;
}

.mock-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mock-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mock-search-card {
  background: #ffffff;
  margin: -35px 12px 14px 12px;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.mock-input-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8f9fe;
  border-radius: 12px;
  margin-bottom: 8px;
}

.mock-input-box .icon {
  color: var(--primary);
  font-size: 0.9rem;
}

.mock-input-box .lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.mock-input-box .val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

.mock-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f8f9fe;
  border-radius: 12px;
  margin-bottom: 14px;
}

.mock-btn-search {
  background: var(--violet-gradient);
  color: #ffffff;
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(97, 0, 237, 0.3);
}

.mock-routes-section {
  padding: 0 14px 16px 14px;
}

.mock-routes-title {
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-route-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid #f1f5f9;
}

.mock-route-info h4 {
  font-size: 0.8rem;
  font-weight: 700;
}

.mock-route-info p {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mock-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}

/* Floating feature callouts around hero mockup */
.hero-floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid var(--border-primary-subtle);
  animation: floatBadge 4s infinite ease-in-out;
}

.hero-floating-badge.badge-1 {
  top: 40px;
  left: -40px;
}

.hero-floating-badge.badge-2 {
  bottom: 60px;
  right: -30px;
  animation-delay: 2s;
}

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

.hero-floating-badge .icon-box {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.hero-floating-badge .text-box {
  display: flex;
  flex-direction: column;
}

.hero-floating-badge .text-box strong {
  font-size: 0.85rem;
  color: var(--text-main);
}

.hero-floating-badge .text-box span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------
   4. WHY SEARCHMYBUS SECTION
   -------------------------------------------------- */
.why-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.comparison-card.old-way {
  background: #fcf8f8;
  border: 1px dashed #fca5a5;
}

.comparison-card.new-way {
  background: var(--primary-lighter);
  border: 1.5px solid var(--border-primary-subtle);
  box-shadow: var(--shadow-md);
}

.card-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.old-way .card-tag {
  background: #fee2e2;
  color: #dc2626;
}

.new-way .card-tag {
  background: var(--primary-light);
  color: var(--primary);
}

.comparison-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}

.old-way .comparison-list li i {
  color: #ef4444;
  margin-top: 4px;
}

.new-way .comparison-list li i {
  color: var(--primary);
  margin-top: 4px;
}

/* --------------------------------------------------
   5. HOW IT WORKS SECTION (3 ILLUSTRATED STEPS & MOCKUP)
   -------------------------------------------------- */
.how-it-works-section {
  padding: 110px 0;
  background: var(--bg-subtle);
  position: relative;
}

.how-it-works-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.step-card:hover, .step-card.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  background: #ffffff;
}

.step-card.active {
  border-left: 5px solid var(--primary);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card.active .step-num {
  background: var(--violet-gradient);
  color: #ffffff;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Interactive Interactive Display Phone for "How It Works" */
.interactive-mockup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.interactive-mockup-container .disclaimer-pill {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* Screen 2: Compare UI (From User Image 2) */
.mock-results-screen {
  background: #f8f9fe;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.mock-results-header {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 12px;
  margin: -12px -12px 6px -12px;
  border-radius: 0 0 16px 16px;
}

.mock-route-top {
  font-size: 0.9rem;
  font-weight: 800;
}

.mock-route-sub {
  font-size: 0.68rem;
  opacity: 0.8;
}

.mock-filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  overflow-x: auto;
}

.mock-filter-tab {
  background: #ffffff;
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.mock-filter-tab.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--border-primary-subtle);
}

.mock-bus-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-bus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mock-operator-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
}

.mock-bus-type {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mock-rating-badge {
  background: #fef3c7;
  color: #d97706;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
}

.mock-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.mock-bus-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px stroke #f1f5f9;
  padding-top: 6px;
}

.mock-partner-avatars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mock-partner-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-btn-compare-sm {
  background: var(--violet-gradient);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Screen 3: Redirect UI (From User Image 3) */
.mock-redirect-screen {
  background: #f8f9fe;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-redirect-header {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 12px;
  margin: -12px -12px 6px -12px;
}

.mock-redirect-header h3 {
  color: #ffffff;
  font-size: 0.95rem;
}

.mock-platform-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid #edf2f7;
}

.mock-platform-item.cheapest {
  border: 2px solid var(--primary);
  background: #faf7ff;
}

.mock-platform-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-platform-meta h5 {
  font-size: 0.8rem;
  font-weight: 800;
}

.mock-platform-meta p {
  font-size: 0.65rem;
  color: var(--accent-green);
  font-weight: 700;
}

.mock-platform-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-platform-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
}

.mock-btn-redirect-sm {
  background: var(--violet-gradient);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
}

/* --------------------------------------------------
   6. VALUES SECTION
   -------------------------------------------------- */
.values-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-primary-subtle);
  box-shadow: var(--shadow-md);
}

.value-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------
   7. OUR VISION SECTION
   -------------------------------------------------- */
.vision-section {
  padding: 90px 0;
  background: var(--bg-subtle);
}

.vision-card-banner {
  background: var(--violet-gradient);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.vision-card-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vision-text h2 {
  color: #ffffff;
  font-size: 2.75rem;
  margin-bottom: 24px;
}

.vision-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.vision-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-item h4 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.metric-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

/* --------------------------------------------------
   8. LAUNCHING SOON / WAITLIST SECTION
   -------------------------------------------------- */
.launching-soon-section {
  padding: 110px 0;
  background: var(--bg-main);
  text-align: center;
}

.waitlist-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--primary-lighter);
  border: 1px solid var(--border-primary-subtle);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
}

.waitlist-card h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.waitlist-card p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 20px auto;
  background: #ffffff;
  padding: 6px 6px 6px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(97, 0, 237, 0.1);
  border: 1px solid var(--border-subtle);
}

.waitlist-form input[type="email"] {
  flex: 1;
  font-size: 1rem;
  color: var(--text-main);
  background: transparent;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-form button {
  white-space: nowrap;
}

.waitlist-privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
   9. FOOTER
   -------------------------------------------------- */
.site-footer {
  background: #0f172a;
  color: #ffffff;
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-name {
  color: #ffffff;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer {
  max-width: 600px;
  line-height: 1.5;
}

/* --------------------------------------------------
   10. WAITLIST SUCCESS MODAL
   -------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

.modal-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal-card p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* --------------------------------------------------
   11. RESPONSIVE BREAKPOINTS
   -------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-store-block {
    align-items: center;
  }

  .store-badges {
    justify-content: center;
  }

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

  .how-it-works-layout {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .waitlist-form {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .waitlist-form input[type="email"] {
    width: 100%;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .waitlist-form button {
    width: 100%;
  }

  .hero-floating-badge {
    display: none;
  }
}

/* --------------------------------------------------
   12. DARK MODE SPECIFIC COMPONENT OVERRIDES
   -------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-header {
    background: rgba(11, 15, 25, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  :root:not([data-theme="light"]) .site-header.scrolled {
    background: rgba(11, 15, 25, 0.96);
  }

  :root:not([data-theme="light"]) .brand-name {
    color: #ffffff;
  }

  :root:not([data-theme="light"]) .nav-links a {
    color: #cbd5e1;
  }

  :root:not([data-theme="light"]) .nav-links a:hover {
    color: #c084fc;
  }

  :root:not([data-theme="light"]) .btn-secondary {
    background: #151c2e;
    color: #f8fafc;
    border-color: #334155;
  }

  :root:not([data-theme="light"]) .btn-secondary:hover {
    background: #1e293b;
    border-color: var(--primary);
    color: #ffffff;
  }

  :root:not([data-theme="light"]) .phone-frame {
    background: #0f172a;
    border-color: #334155;
    box-shadow: 0 30px 80px -15px rgba(168, 85, 247, 0.25);
  }

  :root:not([data-theme="light"]) .hero-floating-badge {
    background: #151c2e;
    border-color: #334155;
    color: #ffffff;
  }

  :root:not([data-theme="light"]) .hero-floating-badge .text-box strong {
    color: #ffffff;
  }

  :root:not([data-theme="light"]) .hero-floating-badge .text-box span {
    color: #cbd5e1;
  }

  :root:not([data-theme="light"]) .comparison-card.old-way {
    background: #1c1012;
    border-color: #7f1d1d;
  }

  :root:not([data-theme="light"]) .comparison-card.new-way {
    background: #181028;
    border-color: #581c87;
  }

  :root:not([data-theme="light"]) .step-card {
    background: #151c2e;
    border-color: #334155;
  }

  :root:not([data-theme="light"]) .step-card:hover,
  :root:not([data-theme="light"]) .step-card.active {
    background: #1e293b;
  }

  :root:not([data-theme="light"]) .waitlist-card {
    background: #151c2e;
    border-color: #334155;
  }

  :root:not([data-theme="light"]) .waitlist-form {
    background: #1e293b;
    border-color: #334155;
  }

  :root:not([data-theme="light"]) .waitlist-form input[type="email"] {
    color: #ffffff;
  }

  :root:not([data-theme="light"]) .modal-card {
    background: #151c2e;
    color: #ffffff;
    border: 1px solid #334155;
  }

  :root:not([data-theme="light"]) .store-badge {
    background: #151c2e;
    border-color: #334155;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  }

  :root:not([data-theme="light"]) .store-badge:hover {
    background: #1e293b;
    border-color: var(--primary);
    color: #ffffff;
  }

  :root:not([data-theme="light"]) .store-badge svg {
    fill: #ffffff;
  }

  :root:not([data-theme="light"]) .store-badge-text .small {
    color: #cbd5e1;
  }

  :root:not([data-theme="light"]) .store-badge-text .title {
    color: #ffffff;
  }
}

/* Explicit data-theme="dark" Overrides */
html[data-theme="dark"] .site-header {
  background: rgba(11, 15, 25, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .site-header.scrolled {
  background: rgba(11, 15, 25, 0.96);
}

html[data-theme="dark"] .brand-name {
  color: #ffffff;
}

html[data-theme="dark"] .nav-links a {
  color: #cbd5e1;
}

html[data-theme="dark"] .nav-links a:hover {
  color: #c084fc;
}

html[data-theme="dark"] .btn-secondary {
  background: #151c2e;
  color: #f8fafc;
  border-color: #334155;
}

html[data-theme="dark"] .btn-secondary:hover {
  background: #1e293b;
  border-color: var(--primary);
  color: #ffffff;
}

html[data-theme="dark"] .phone-frame {
  background: #0f172a;
  border-color: #334155;
  box-shadow: 0 30px 80px -15px rgba(168, 85, 247, 0.25);
}

html[data-theme="dark"] .hero-floating-badge {
  background: #151c2e;
  border-color: #334155;
  color: #ffffff;
}

html[data-theme="dark"] .hero-floating-badge .text-box strong {
  color: #ffffff;
}

html[data-theme="dark"] .hero-floating-badge .text-box span {
  color: #cbd5e1;
}

html[data-theme="dark"] .store-badge {
  background: #151c2e;
  border-color: #334155;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .store-badge:hover {
  background: #1e293b;
  border-color: var(--primary);
  color: #ffffff;
}

html[data-theme="dark"] .store-badge svg {
  fill: #ffffff;
}

html[data-theme="dark"] .store-badge-text .small {
  color: #cbd5e1;
}

html[data-theme="dark"] .store-badge-text .title {
  color: #ffffff;
}

html[data-theme="dark"] .comparison-card.old-way {
  background: #1c1012;
  border-color: #7f1d1d;
}

html[data-theme="dark"] .comparison-card.new-way {
  background: #181028;
  border-color: #581c87;
}

html[data-theme="dark"] .step-card {
  background: #151c2e;
  border-color: #334155;
}

html[data-theme="dark"] .step-card:hover,
html[data-theme="dark"] .step-card.active {
  background: #1e293b;
}

html[data-theme="dark"] .waitlist-card {
  background: #151c2e;
  border-color: #334155;
}

html[data-theme="dark"] .waitlist-form {
  background: #1e293b;
  border-color: #334155;
}

html[data-theme="dark"] .waitlist-form input[type="email"] {
  color: #ffffff;
}

html[data-theme="dark"] .modal-card {
  background: #151c2e;
  color: #ffffff;
  border: 1px solid #334155;
}

/* Phone Mockup Screens Dark Mode Compatibility */
:root:not([data-theme="light"]) .phone-screen,
html[data-theme="dark"] .phone-screen,
:root:not([data-theme="light"]) .mock-results-screen,
html[data-theme="dark"] .mock-results-screen,
:root:not([data-theme="light"]) .mock-redirect-screen,
html[data-theme="dark"] .mock-redirect-screen {
  background: #0f172a;
  color: #f8fafc;
}

:root:not([data-theme="light"]) .mock-search-card,
html[data-theme="dark"] .mock-search-card,
:root:not([data-theme="light"]) .mock-route-card,
html[data-theme="dark"] .mock-route-card,
:root:not([data-theme="light"]) .mock-bus-card,
html[data-theme="dark"] .mock-bus-card,
:root:not([data-theme="light"]) .mock-platform-item,
html[data-theme="dark"] .mock-platform-item {
  background: #1e293b;
  border-color: #334155;
  color: #f8fafc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

:root:not([data-theme="light"]) .mock-platform-item.cheapest,
html[data-theme="dark"] .mock-platform-item.cheapest {
  background: #241442;
  border-color: var(--primary);
}

:root:not([data-theme="light"]) .mock-input-box,
html[data-theme="dark"] .mock-input-box,
:root:not([data-theme="light"]) .mock-date-row,
html[data-theme="dark"] .mock-date-row {
  background: #0f172a;
  border: 1px solid #334155;
}

:root:not([data-theme="light"]) .mock-input-box .val,
html[data-theme="dark"] .mock-input-box .val,
:root:not([data-theme="light"]) .mock-route-info h4,
html[data-theme="dark"] .mock-route-info h4,
:root:not([data-theme="light"]) .mock-routes-title,
html[data-theme="dark"] .mock-routes-title,
:root:not([data-theme="light"]) .mock-operator-name,
html[data-theme="dark"] .mock-operator-name,
:root:not([data-theme="light"]) .mock-platform-meta h5,
html[data-theme="dark"] .mock-platform-meta h5,
:root:not([data-theme="light"]) .mock-platform-price,
html[data-theme="dark"] .mock-platform-price,
:root:not([data-theme="light"]) .mock-time-row,
html[data-theme="dark"] .mock-time-row {
  color: #ffffff !important;
}

:root:not([data-theme="light"]) .mock-input-box .lbl,
html[data-theme="dark"] .mock-input-box .lbl,
:root:not([data-theme="light"]) .mock-route-info p,
html[data-theme="dark"] .mock-route-info p,
:root:not([data-theme="light"]) .mock-bus-type,
html[data-theme="dark"] .mock-bus-type,
:root:not([data-theme="light"]) .mock-platform-meta p,
html[data-theme="dark"] .mock-platform-meta p {
  color: #94a3b8;
}

:root:not([data-theme="light"]) .mock-filter-tab,
html[data-theme="dark"] .mock-filter-tab {
  background: #1e293b;
  border-color: #334155;
  color: #cbd5e1;
}

:root:not([data-theme="light"]) .mock-filter-tab.active,
html[data-theme="dark"] .mock-filter-tab.active {
  background: #241442;
  color: #c084fc;
  border-color: #7c3aed;
}

:root:not([data-theme="light"]) .mock-bus-footer,
html[data-theme="dark"] .mock-bus-footer {
  border-top-color: #334155;
}

:root:not([data-theme="light"]) .mock-rating-badge,
html[data-theme="dark"] .mock-rating-badge {
  background: #362503;
  color: #fbbf24;
}

:root:not([data-theme="light"]) .mock-price,
html[data-theme="dark"] .mock-price {
  color: #c084fc !important;
}

/* Theme Toggle Button Style */
.theme-toggle-btn {
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--border-primary-subtle);
}
