* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #e5e5e5;
  background: #0a0a0a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh
}

/* Simple Dark Gradient Background - Performance Optimized */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at 20% 10%, rgba(30, 30, 50, 0.4) 0%, transparent 50%), radial-gradient(ellipse at 80% 90%, rgba(20, 40, 30, 0.3) 0%, transparent 50%), #0a0a0a
}

.stars2,
.stars3 {
  display: none
}

/* Top Right Corner Icons */
.top-icons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 12px;
  align-items: center
}


/* Limited Time Offer Banner */
.limited-time-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.limited-time-offer:hover {
  transform: scale(1.02);
}

/* Red Stopwatch */
.stopwatch {
  width: 58px;
  height: 64px;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  margin-right: -14px;
  animation: stopwatchPulse 2s ease-in-out infinite;
}

@keyframes stopwatchPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stopwatch-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #333 0%, #111 100%);
  border-radius: 3px 3px 1px 1px;
}

.stopwatch-btn {
  position: absolute;
  top: 4px;
  width: 7px;
  height: 10px;
  background: linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
  border-radius: 2px;
}

.stopwatch-btn.left {
  left: 5px;
  transform: rotate(-30deg);
}

.stopwatch-btn.right {
  right: 5px;
  transform: rotate(30deg);
}

.stopwatch-ring {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, #f44336 0%, #c62828 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.stopwatch-face {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
  border-radius: 50%;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Tick marks */
.tick {
  position: absolute;
  width: 2px;
  height: 5px;
  background: #555;
  left: 50%;
  top: 4px;
  transform-origin: 50% 18px;
  border-radius: 1px;
}

.tick.t1 { transform: translateX(-50%) rotate(30deg); }
.tick.t2 { transform: translateX(-50%) rotate(60deg); }
.tick.t3 { transform: translateX(-50%) rotate(90deg); width: 2.5px; height: 6px; background: #333; }
.tick.t4 { transform: translateX(-50%) rotate(120deg); }
.tick.t5 { transform: translateX(-50%) rotate(150deg); }
.tick.t6 { transform: translateX(-50%) rotate(180deg); width: 2.5px; height: 6px; background: #333; }
.tick.t7 { transform: translateX(-50%) rotate(210deg); }
.tick.t8 { transform: translateX(-50%) rotate(240deg); }
.tick.t9 { transform: translateX(-50%) rotate(270deg); width: 2.5px; height: 6px; background: #333; }
.tick.t10 { transform: translateX(-50%) rotate(300deg); }
.tick.t11 { transform: translateX(-50%) rotate(330deg); }
.tick.t12 { transform: translateX(-50%) rotate(0deg); width: 2.5px; height: 6px; background: #333; }

/* Clock hands */
.hand {
  position: absolute;
  background: #1a1a1a;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}

.hand.hour {
  width: 2.5px;
  height: 12px;
  bottom: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.hand.minute {
  width: 2px;
  height: 15px;
  bottom: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.hand-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #c62828;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 3px rgba(198, 40, 40, 0.5);
}

/* Red Banner - Single Row Layout */
.offer-banner {
  background: linear-gradient(135deg, #f44336 0%, #c62828 50%, #b71c1c 100%);
  padding: 12px 24px 12px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 6px 24px rgba(198, 40, 40, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-labels {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.text-limited {
  font-size: 10px;
  font-weight: 700;
  color: #ffeb3b;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.text-time {
  font-size: 26px;
  font-weight: 900;
  color: #ffeb3b;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.text-offer {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

/* Offer Info Text - Inline */
.offer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.offer-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.offer-amount {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}



/* Shooting stars removed for performance */
.meteors,
.meteor {
  display: none
}

/* Subtle Glitter Effects */
.glitter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6
}

.glitter-particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px #fff, 0 0 4px rgba(255, 255, 255, 0.5);
  animation: glitter 6s ease-in-out infinite
}

.glitter-particle:nth-child(1) {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 4s
}

.glitter-particle:nth-child(2) {
  top: 15%;
  left: 30%;
  animation-delay: 1s;
  animation-duration: 5s
}

.glitter-particle:nth-child(3) {
  top: 25%;
  left: 50%;
  animation-delay: 2s;
  animation-duration: 4.5s
}

.glitter-particle:nth-child(4) {
  top: 35%;
  left: 70%;
  animation-delay: 3s;
  animation-duration: 5.5s
}

.glitter-particle:nth-child(5) {
  top: 45%;
  left: 90%;
  animation-delay: 4s;
  animation-duration: 4s
}

.glitter-particle:nth-child(6) {
  top: 55%;
  left: 80%;
  animation-delay: 5s;
  animation-duration: 5s
}

@keyframes glitter {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.2);
    box-shadow: 0 0 1px #fff
  }

  25% {
    opacity: 0.4;
    transform: scale(0.6);
    box-shadow: 0 0 2px #fff, 0 0 4px rgba(255, 255, 255, 0.3)
  }

  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 3px #fff, 0 0 6px rgba(255, 255, 255, 0.6)
  }

  75% {
    opacity: 0.6;
    transform: scale(0.8);
    box-shadow: 0 0 2px #fff, 0 0 4px rgba(255, 255, 255, 0.4)
  }
}


/* Enhanced Distant Galaxy Effects */
.galaxy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.15
}

.galaxy-1 {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 300px;
  height: 150px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  transform: rotate(45deg);
  -webkit-animation: galaxyGlow 30s ease-in-out infinite;
  -moz-animation: galaxyGlow 30s ease-in-out infinite;
  -o-animation: galaxyGlow 30s ease-in-out infinite;
  -ms-animation: galaxyGlow 30s ease-in-out infinite;
  animation: galaxyGlow 30s ease-in-out infinite
}

.galaxy-2 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-30deg);
  -webkit-animation: galaxyGlow 40s ease-in-out infinite reverse;
  -moz-animation: galaxyGlow 40s ease-in-out infinite reverse;
  -o-animation: galaxyGlow 40s ease-in-out infinite reverse;
  -ms-animation: galaxyGlow 40s ease-in-out infinite reverse;
  animation: galaxyGlow 40s ease-in-out infinite reverse
}

.galaxy-3 {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 180px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 65%);
  border-radius: 50%;
  transform: rotate(60deg);
  -webkit-animation: galaxyGlow 50s ease-in-out infinite;
  -moz-animation: galaxyGlow 50s ease-in-out infinite;
  -o-animation: galaxyGlow 50s ease-in-out infinite;
  -ms-animation: galaxyGlow 50s ease-in-out infinite;
  animation: galaxyGlow 50s ease-in-out infinite
}

@keyframes galaxyGlow {

  0%,
  100% {
    opacity: 0.1;
    transform: rotate(45deg) scale(1)
  }

  50% {
    opacity: 0.2;
    transform: rotate(45deg) scale(1.1)
  }
}

/* Cross-browser compatibility for galaxy */
@-webkit-keyframes galaxyGlow {

  0%,
  100% {
    opacity: 0.1;
    transform: rotate(45deg) scale(1)
  }

  50% {
    opacity: 0.2;
    transform: rotate(45deg) scale(1.1)
  }
}

@-moz-keyframes galaxyGlow {

  0%,
  100% {
    opacity: 0.1;
    transform: rotate(45deg) scale(1)
  }

  50% {
    opacity: 0.2;
    transform: rotate(45deg) scale(1.1)
  }
}

@-o-keyframes galaxyGlow {

  0%,
  100% {
    opacity: 0.1;
    transform: rotate(45deg) scale(1)
  }

  50% {
    opacity: 0.2;
    transform: rotate(45deg) scale(1.1)
  }
}

@-ms-keyframes galaxyGlow {

  0%,
  100% {
    opacity: 0.1;
    transform: rotate(45deg) scale(1)
  }

  50% {
    opacity: 0.2;
    transform: rotate(45deg) scale(1.1)
  }
}

:root {
  --border: #1f1f1f;
  --muted: #0b0b0b;
  --muted-2: #111;
  --primary: #7FDB61;
  --primary-2: #6BC94D;
  --primary-light: #A8F08A
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px
}

.nav {
  position: relative;
  backdrop-filter: saturate(120%) blur(6px);
  background: rgba(0, 0, 0, .0);
  border-bottom: 1px solid transparent
}

.hero-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  gap: 22px
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
  padding: 70px 0
}

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

.intro {
  color: #e5e5e5;
  opacity: .9;
  margin: 0;
  font-weight: 800;
  font-size: 60px
}

.intro-row {
  display: flex;
  align-items: center;
  gap: 16px
}

.logo {
  height: 36px
}

.logo-img {
  width: 300px;
  height: auto;
  display: block
}

.tagline {
  max-width: 980px;
  color: #c9c9c9;
  font-size: 24px;
  line-height: 1.35
}

.tagline span {
  color: var(--primary);
  font-weight: 900
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px
}

.cta.big {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  min-width: 180px;
  text-align: center;
  position: relative
}

.cta.big:hover {
  background: var(--primary);
  color: #000
}

.cta.big::after {
  content: '→';
  margin-left: 8px;
  transition: all 0.2s ease
}

.cta.big:hover::after {
  transform: translateX(2px)
}

.chip {
  background: #0c0c0c;
  border: 1px solid var(--primary-2);
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800
}

/* Hero section chip */
.hero-only > .chip {
  margin: 8px 0;
}

/* ===== App Download Section ===== */
.app-download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 28px 0 16px;
}

.app-download-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.app-download-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.free-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.15), rgba(163, 230, 53, 0.08));
  border: 1px solid rgba(163, 230, 53, 0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #a3e635;
  letter-spacing: 0.02em;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(163, 230, 53, 0); }
}

.app-store-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #f7f7f7;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: auto;
  min-height: auto;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.store-btn:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 6px 16px rgba(0, 0, 0, 0.12);
}

.store-btn:active {
  transform: translateY(-1px);
}

.store-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.apple-icon {
  color: #1a1a1a;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #8a8a8a;
  line-height: 1.3;
}

.play-store .store-subtitle {
  text-transform: uppercase;
}

.app-store .store-subtitle {
  text-transform: none;
  letter-spacing: 0;
}

.store-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.05;
  color: #1a1a1a;
}

/* Mobile Responsive - App Download */
@media (max-width: 768px) {
  .app-download-section {
    margin: 20px 0 10px;
    gap: 12px;
  }

  .app-store-buttons {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .app-download-section {
    margin: 16px 0 8px;
    gap: 10px;
  }

  .app-download-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .store-btn {
    padding: 8px 14px;
    gap: 8px;
  }

  .store-icon {
    width: 26px;
    height: 26px;
  }

  .store-title {
    font-size: 15px;
  }

  .store-subtitle {
    font-size: 9px;
  }
}

.trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: #9a9a9a;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  width: 100%;
}

/* New Hero Section Styles */
.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  color: #c9c9c9;
  margin: 0 0 32px;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle span {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}


/* Christmas Offer Styles */

.christmas-offer {
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.15) 0%, rgba(139, 0, 0, 0.1) 100%);
  border: 2px solid rgba(0, 128, 0, 0.4);
  border-radius: 16px;
  padding: 16px 24px;
  margin: 20px auto;
  max-width: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 128, 0, 0.2), inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.christmas-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.christmas-decorations {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
}

.christmas-decorations.bottom {
  margin-bottom: 0;
  margin-top: 8px;
}

.decoration {
  font-size: 20px;
  animation: christmasFloat 2s ease-in-out infinite;
}

.decoration.bell {
  animation: bellSwing 1s ease-in-out infinite;
}

.decoration:nth-child(2) {
  animation-delay: 0.3s;
}

.decoration:nth-child(3) {
  animation-delay: 0.6s;
}

.christmas-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.christmas-icon {
  font-size: 32px;
  animation: santaBounce 1.5s ease-in-out infinite;
}

.christmas-text {
  text-align: center;
}

.christmas-title {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 128, 0, 0.3);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ff6b6b 0%, #fff 50%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.christmas-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ffd700;
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.christmas-subtitle strong {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
}

@keyframes christmasFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes bellSwing {

  0%,
  100% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(8deg);
  }
}

@keyframes santaBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}


.blackfriday-tag {
  position: relative;
  background: #dc143c;
  background: linear-gradient(135deg, #ff1a3d 0%, #dc143c 50%, #b8122e 100%);
  padding: 12px 40px 12px 24px;
  transform: rotate(-5deg);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}

.blackfriday-black {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1;
  text-shadow: none;
  display: block;
}

.tag-hole {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tag-hole::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
}

.blackfriday-friday {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(220, 20, 60, 0.4);
  margin-top: 4px;
  animation: blackFridayPulse 3s ease-in-out infinite;
}

.blackfriday-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-top: 8px;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

@keyframes blackFridayPulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
      0 4px 16px rgba(0, 0, 0, 0.6),
      0 0 20px rgba(220, 20, 60, 0.4);
  }

  50% {
    transform: scale(1.02);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
      0 4px 16px rgba(0, 0, 0, 0.6),
      0 0 30px rgba(220, 20, 60, 0.6);
  }
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100%
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  padding: 64px 0
}

.hero-copy h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 14px
}

.hero-copy p {
  color: #a3a3a3;
  margin: 0 0 18px
}

.commute {
  display: grid;
  gap: 12px;
  margin: 18px 0
}

.grid2 {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr
}

.commute input,
.commute select {
  width: 100%;
  background: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff
}

.commute .cta {
  background: var(--primary-2);
  color: #0a0a0a;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  text-align: center
}

.commute .cta:hover {
  background: var(--primary)
}

.fine {
  font-size: 12px;
  color: #8a8a8a
}

.hero-card {
  position: relative
}

.badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -12px;
  background: var(--primary-2);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px
}

.card {
  background: var(--muted);
  border: 1px solid var(--primary-2);
  border-radius: 14px;
  padding: 22px
}

.card .icon {
  font-size: 22px
}

.card h2 {
  margin: 6px 0 4px;
  font-size: 28px
}

.card .sub {
  color: #a3a3a3;
  margin: 0 0 8px
}

.price {
  margin: 12px 0 12px
}

.price span {
  font-size: 36px;
  font-weight: 800;
  margin-right: 6px
}

.price small {
  color: #a3a3a3
}

.features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c7c7c7
}

.features li::before {
  content: '✔';
  color: var(--primary-2);
  margin-right: 8px
}

.cta {
  display: block;
  text-align: center;
  background: var(--primary-2);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 12px
}

.cta:hover {
  background: var(--primary)
}

.foot {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: #8a8a8a;
  margin-top: auto;
  text-align: center
}

.foot p {
  margin: 0 0 8px 0
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px
}

.footer-links a {
  color: #7FDB61;
  text-decoration: none;
  transition: opacity 0.2s
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline
}

.footer-divider {
  color: #555
}

@media (max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }

  .hero-card {
    order: 2
  }

  .hero-copy {
    order: 1
  }
}

/* Features section */
.features-wrap {
  background: #050505;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 42px 0
}

.feat {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px
}

.feat .i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #0f0f0f;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-2);
  font-size: 22px
}

.feat h4 {
  margin: 2px 0 6px;
  font-size: 16px
}

.feat p {
  margin: 0;
  color: #a3a3a3;
  font-size: 13px;
  line-height: 1.3
}

@media (max-width:1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

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

.hero-illus {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-svg {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #0b0b0b, #060606)
}

/* Two-column form + why */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  padding: 40px 0 70px
}

.two-col-only {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 10px 0 70px
}

.panel {
  background: #070707cc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 20px
}

#quoteForm {
  margin-bottom: 0
}

.panel-title {
  margin: 6px 2px 2px;
  font-size: 22px;
  font-weight: 800
}

.panel-sub {
  margin: 0 2px 16px;
  color: #9aa09e;
  font-size: 13px
}

.seg {
  margin: 12px 0
}

.seg label {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px
}

.form-label {
  display: block;
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px
}

.seg-row,
.dir-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.seg-btn,
.dir-btn {
  background: #1a1a1a;
  border: 2px solid #333;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  transition: border-color 0.15s ease, background 0.15s ease
}

.seg-btn span {
  display: block;
  color: #aaa;
  font-weight: 500;
  font-size: 13px;
  margin-top: 4px
}

.btn-icon {
  font-size: 14px;
  margin-right: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 4px;
  border: 1px solid #444;
  transition: all 0.2s ease
}

.btn-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1
}

.btn-title {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  transition: color 0.2s ease
}

.btn-subtitle {
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
  transition: color 0.2s ease
}

.seg-btn.active .btn-title,
.dir-btn.active .btn-title {
  color: #000;
  font-weight: 700
}

.seg-btn.active .btn-subtitle,
.dir-btn.active .btn-subtitle {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600
}

.seg-btn.active,
.dir-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #000;
  font-weight: 600
}

.seg-btn.active .btn-icon,
.dir-btn.active .btn-icon {
  background: rgba(0, 0, 0, 0.15);
  color: #000;
  border-color: rgba(0, 0, 0, 0.2);
  font-weight: 700
}

.seg-btn:hover,
.dir-btn:hover {
  border-color: #555;
  background: #222
}

.nudge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e, #ffa8a8);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 14px;
  animation: nudgePulse 2s ease-in-out infinite;
  box-shadow: 0 3px 15px rgba(255, 107, 107, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

@keyframes nudgePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05)
  }
}

#directionRow[aria-hidden="true"] {
  display: none
}

#directionRow {
  margin-top: 16px
}

.field {
  margin: 12px 0
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0
}

@media (max-width:768px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

/* Time Slots Styling */
.time-slots-row {
  display: flex;
  gap: 12px;
  margin: 16px 0
}

.time-slots-row .field {
  flex: 1;
  min-width: 0
}

.input select.time-select {
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  flex: 1;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none
}

.input select.time-select option {
  background: #1a1a1a;
  color: #fff;
  padding: 8px
}

.input select.time-select::-ms-expand {
  display: none
}

@media (max-width:768px) {
  .time-slots-row {
    flex-direction: column;
    gap: 12px
  }
}

/* Timing Flexibility Checkbox */
.flexibility-container {
  margin: 20px 0 16px 0
}

.checkbox-simple {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none
}

.checkbox-simple input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0
}

.checkbox-box {
  position: relative;
  height: 18px;
  width: 18px;
  min-width: 18px;
  background: transparent;
  border: 2px solid #555;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-right: 10px
}

.checkbox-simple:hover .checkbox-box {
  border-color: #7FDB61
}

.checkbox-simple input:checked~.checkbox-box {
  background: #7FDB61;
  border-color: #7FDB61
}

.checkbox-box::after {
  content: '';
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.checkbox-simple input:checked~.checkbox-box::after {
  display: block
}

.checkbox-text {
  font-size: 14px;
  color: #ccc;
  font-weight: 500
}

.flexibility-hint {
  margin: 6px 0 0 28px;
  font-size: 12px;
  color: #777;
  font-style: italic
}

.panel-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  text-align: center
}

.panel-sub {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.4
}

.field label {
  display: block;
  margin: 0 0 10px;
  color: #b9b9b9;
  font-size: 14px;
  font-weight: 600
}

.input {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  min-height: 40px;
  transition: all 0.2s ease;
  position: relative
}

.input.with-icon {
  justify-content: space-between
}

.input.with-icon span {
  opacity: .7
}

.input input {
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  flex: 1
}

.input-icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 4px;
  border: 1px solid #444
}

.phone-prefix {
  color: #aaa;
  font-size: 15px;
  font-weight: 500;
  padding: 0 8px 0 0;
  border-right: 1px solid #444;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 8px 0 0 8px;
  min-width: 40px
}

.input-icon-right {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 4px;
  border: 1px solid #444;
  transition: all 0.2s ease
}

.input:focus-within {
  border-color: var(--primary);
  background: #222
}

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 10px;
  min-height: 44px;
  transition: all 0.2s ease
}

.select-wrapper select {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  flex: 1
}

.select-icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 4px;
  border: 1px solid #444
}

.select-wrapper:focus-within {
  border-color: var(--primary);
  background: #222
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0
}

.chip {
  padding: 6px 12px;
  border-radius: 16px;
  background: transparent;
  border: 2px solid #444;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  font-weight: 600;
  font-size: 12px
}

.chip.active {
  border-color: var(--primary);
  color: #000;
  background: var(--primary)
}

.chip:hover {
  border-color: #666;
  background: #222;
  color: #fff
}

.chip-icon {
  font-weight: 600;
  font-size: 12px;
  color: inherit;
  background: rgba(127, 219, 97, 0.1);
  border-radius: 50px;
  padding: 4px 6px;
  min-width: 20px;
  text-align: center;
  border: 1px solid rgba(127, 219, 97, 0.2)
}

.chip-text {
  font-weight: 600;
  font-size: 12px
}

.hint {
  color: #aaa;
  font-size: 12px;
  margin: 6px 0 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px
}

.days-hint {
  color: #aaa;
  font-size: 12px;
  margin: 8px 0 0;
  font-weight: 500
}

.days-hint.warning {
  color: #f59e0b;
  font-weight: 600
}

.cta.full {
  width: 100%;
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  font-size: 15px
}

.cta.full:hover {
  background: var(--primary);
  color: #000
}

.cta-icon {
  font-size: 18px;
  flex-shrink: 0
}

.cta-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700
}

.cta-arrow {
  font-size: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  width: 100%
}

@media (max-width:768px) {
  .button-group {
    justify-content: center;
    gap: 16px
  }

  .cta.primary {
    min-width: 85%;
    width: 85%;
    padding: 14px 24px
  }
}

.cta.primary {
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  border: 2px solid var(--primary);
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 75%;
  width: 75%;
  padding: 16px 32px;
  justify-content: center;
  text-align: center
}

.cta.primary:hover {
  background: linear-gradient(135deg, #4CAF50, var(--primary));
  border-color: #4CAF50;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3)
}

.cta {
  position: relative;
  overflow: hidden
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s
}

.cta:hover::before {
  left: 100%
}

.field.error .input {
  border-color: #ff4444;
  box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.15)
}

.field.error .select-wrapper {
  border-color: #ff4444;
  box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.15)
}

.field.error .form-label {
  color: #ff4444
}

.seg.error {
  border: 2px solid #ff4444;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 68, 68, 0.05)
}

.seg.error .form-label {
  color: #ff4444
}

.chips.error {
  border: 2px solid #ff4444;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 68, 68, 0.05)
}

.chips.error .form-label {
  color: #ff4444
}

.error-message {
  color: #ff4444;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 6px
}

.error-message.show {
  display: flex
}

.error-message::before {
  content: '⚠️';
  font-size: 12px
}

.why .panel-title {
  margin-bottom: 8px
}

.primary {
  color: var(--primary)
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #0b0b0b;
  border: 1px solid #1b1b1b;
  border-radius: 10px;
  padding: 12px;
  position: relative;
  transition: all 0.3s ease
}

.why-item.active {
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.08), rgba(107, 201, 77, 0.04));
  border: 1px solid rgba(127, 219, 97, 0.2);
  position: relative;
  overflow: hidden
}

.why-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--primary));
  z-index: 1
}

.why-item.active::after {
  content: 'FEATURED';
  position: absolute;
  top: 8px;
  right: 12px;
  background: var(--primary);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite
}

.why-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  border: 1px solid #222;
  color: var(--primary);
  font-size: 16px;
  transition: all 0.3s ease
}

.why-item.active .icon {
  background: var(--primary);
  color: #000;
  border-color: var(--primary-2);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(127, 219, 97, 0.4)
}

.why-item h4 {
  margin: 0 0 3px;
  font-size: 15px;
  transition: color 0.3s ease
}

.why-item.active h4 {
  color: var(--primary);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(127, 219, 97, 0.3)
}

.why-item p {
  margin: 0;
  color: #a1a1a1;
  font-size: 12px;
  line-height: 1.4;
  transition: color 0.3s ease
}

.why-item.active p {
  color: #e0e0e0;
  font-weight: 500
}

.why-image {
  margin-top: 24px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.08), rgba(107, 201, 77, 0.04));
  border: 1px solid rgba(127, 219, 97, 0.15);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px
}

.why-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.1) 0%, rgba(107, 201, 77, 0.05) 50%, rgba(127, 219, 97, 0.08) 100%);
  z-index: 1;
  pointer-events: none
}

.why-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--primary));
  z-index: 2;
  pointer-events: none
}

.why-image picture {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(127, 219, 97, 0.2)
}

.why-image img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease
}

.why-image:hover img {
  transform: scale(1.02)
}

/* Inspirational Quote Section */
.quote-section {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.05), rgba(107, 201, 77, 0.02));
  border: 1px solid rgba(127, 219, 97, 0.1);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--primary));
  opacity: 0.6
}

.inspirational-quote {
  margin: 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: #e5e5e5;
  position: relative;
  z-index: 1
}

.inspirational-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
  opacity: 0.9
}

/* Clean Ride-Sharing Scene */
.ride-scene {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden
}

/* Map Background */
.map-background {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 120px;
  background: #e8e9ea;
  border-radius: 12px;
  z-index: 1
}

.map-route {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  opacity: 0.6
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2)
}

.pin1 {
  top: 30%;
  left: 15%
}

.pin2 {
  top: 60%;
  left: 35%
}

.pin3 {
  top: 40%;
  left: 65%
}

.pin4 {
  top: 70%;
  left: 80%
}

.moving-car-icon {
  position: absolute;
  top: 45%;
  left: 25%;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 3px;
  animation: carMove 4s ease-in-out infinite
}

/* Main Car */
.main-car {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 180px;
  height: 80px
}

.car-body {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 20px 8px 8px 20px;
  box-shadow: 0 4px 15px rgba(127, 219, 97, 0.3)
}

.car-front {
  position: absolute;
  top: 10px;
  left: 0;
  width: 20px;
  height: 60px;
  background: var(--primary-2);
  border-radius: 20px 0 0 20px
}

.car-windshield {
  position: absolute;
  top: 15px;
  left: 25px;
  right: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px
}

.car-door-left {
  position: absolute;
  top: 45px;
  left: 30px;
  width: 25px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px
}

.car-door-right {
  position: absolute;
  top: 45px;
  right: 30px;
  width: 25px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px
}

.car-wheel-left {
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  border: 3px solid #666
}

.car-wheel-right {
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  border: 3px solid #666
}

.car-headlight-left {
  position: absolute;
  top: 25px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff
}

.car-headlight-right {
  position: absolute;
  top: 25px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff
}

/* People */
.scene-people {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4
}

.person {
  position: absolute
}

.person1 {
  top: 60%;
  left: 10%;
  animation: personWalk 3s ease-in-out infinite
}

.person2 {
  top: 45%;
  left: 45%;
  z-index: 2
}

.person3 {
  top: 50%;
  right: 15%
}

.person-head {
  width: 20px;
  height: 20px;
  background: #ffdbac;
  border-radius: 50%;
  margin: 0 auto 5px;
  position: relative
}

.person-body {
  width: 24px;
  height: 30px;
  margin: 0 auto;
  border-radius: 4px;
  position: relative
}

.person1 .person-body {
  background: var(--primary)
}

.person2 .person-body {
  background: #333
}

.person3 .person-body {
  background: var(--primary)
}

.person-bag {
  position: absolute;
  top: 15px;
  right: -8px;
  width: 12px;
  height: 16px;
  background: #666;
  border-radius: 3px
}

.person-arm {
  position: absolute;
  top: 10px;
  right: -5px;
  width: 8px;
  height: 12px;
  background: #ffdbac;
  border-radius: 4px;
  transform: rotate(15deg)
}

.person-hand {
  position: absolute;
  top: 25px;
  left: -5px;
  width: 6px;
  height: 8px;
  background: #ffdbac;
  border-radius: 3px
}

/* Decorative Elements */
.scene-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none
}

.leaf-cluster {
  position: absolute;
  width: 30px;
  height: 20px;
  background: #2d5a2d;
  border-radius: 50% 20% 50% 20%;
  opacity: 0.6
}

.leaf1 {
  bottom: 10px;
  left: 10px;
  transform: rotate(-15deg)
}

.leaf2 {
  bottom: 15px;
  right: 15px;
  transform: rotate(20deg)
}

/* Animations */
@keyframes carMove {

  0%,
  100% {
    transform: translateX(0px) rotate(0deg)
  }

  25% {
    transform: translateX(20px) rotate(2deg)
  }

  50% {
    transform: translateX(40px) rotate(0deg)
  }

  75% {
    transform: translateX(20px) rotate(-2deg)
  }
}

@keyframes personWalk {

  0%,
  100% {
    transform: translateX(0px)
  }

  50% {
    transform: translateX(10px)
  }
}

/* What Happens Next Section */
.next-steps-section {
  background: linear-gradient(135deg, #0a0a0a, #111111);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  z-index: 2
}

.next-steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(127, 219, 97, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(107, 201, 77, 0.02) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(127, 219, 97, 0.02) 0%, transparent 50%);
  pointer-events: none
}

.next-steps-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.next-steps-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 60px;
  letter-spacing: 0.5px;
  line-height: 1.2
}

.next-steps-title .primary {
  color: var(--primary)
}

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

.step-item {
  text-align: center;
  position: relative;
  padding: 20px
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #0a0a0a;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(127, 219, 97, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2
}

.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
  transition: all 0.3s ease
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(127, 219, 97, 0.4)
}

.step-item:hover .step-number::before {
  opacity: 0.3;
  transform: scale(1.1)
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.3px
}

.step-description {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  max-width: 280px;
  margin: 0 auto
}

/* Connecting Lines */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.3;
  z-index: 1
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 48px;
  right: -18px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 2
}

@media (max-width:1100px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0 60px
  }

  .hero-split {
    grid-template-columns: 1fr
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 16px
  }

  .hero {
    padding: 40px 0;
    gap: 24px
  }

  /* Hero section mobile optimization */
  .hero-only {
    padding: 40px 0 20px 0
  }

  .intro-row {
    text-align: center;
    margin-bottom: 16px
  }

  .logo-img {
    margin-top: 24px
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 12px
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px
  }

  .cta-row {
    text-align: center;
    margin-bottom: 16px
  }

  .chip {
    text-align: center;
    margin: 0 auto 16px;
    display: inline-block
  }

  .christmas-offer {
    padding: 14px 20px;
    max-width: 300px;
    margin: 16px auto
  }

  .christmas-title {
    font-size: 20px
  }

  .christmas-subtitle {
    font-size: 12px
  }

  .christmas-icon {
    font-size: 28px
  }

  .decoration {
    font-size: 18px
  }

  .trust {
    justify-content: center;
    text-align: center;
    margin-top: 16px
  }

  /* Two-column layout becomes single column on mobile */
  .two-col {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0 50px
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.2
  }

  .hero-copy p {
    font-size: 16px;
    margin-bottom: 16px
  }

  .tagline {
    font-size: 16px;
    line-height: 1.5
  }

  .cta.big {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px
  }

  .trust {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 16px
  }

  .panel {
    padding: 16px;
    border-radius: 12px
  }

  .panel-title {
    font-size: 20px;
    margin-bottom: 8px
  }

  .panel-sub {
    font-size: 14px;
    margin-bottom: 20px
  }

  .seg {
    margin: 16px 0
  }

  .seg label {
    font-size: 15px;
    margin-bottom: 12px
  }

  .seg-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px
  }

  .seg-btn {
    padding: 8px 10px;
    min-height: 40px;
    gap: 6px
  }

  .btn-title {
    font-size: 12px
  }

  .btn-subtitle {
    font-size: 9px
  }

  .btn-icon {
    width: 20px;
    height: 20px;
    font-size: 14px
  }

  .form-label {
    font-size: 15px;
    margin-bottom: 12px
  }

  .field {
    margin: 12px 0
  }

  .input {
    padding: 14px 16px;
    min-height: 48px;
    font-size: 15px
  }

  .input-icon {
    font-size: 16px
  }

  .select-wrapper {
    padding: 14px 16px;
    min-height: 48px
  }

  .select-icon {
    font-size: 16px
  }

  .chips {
    gap: 6px;
    padding: 8px
  }

  .chip {
    padding: 8px 12px;
    min-height: 36px;
    font-size: 13px;
    font-weight: 600
  }

  .hint {
    font-size: 12px;
    margin-top: 8px
  }

  .cta.full {
    padding: 16px 24px;
    font-size: 15px;
    min-width: 180px
  }

  .cta-icon {
    font-size: 16px
  }

  .cta-text {
    font-size: 15px
  }

  .error-message {
    font-size: 13px;
    margin-top: 4px
  }

  .why-image {
    margin-top: 20px;
    padding: 14px;
    min-height: 160px
  }

  .why-image picture {
    max-width: 350px
  }

  .why-image img {
    max-height: 140px
  }

  .quote-section {
    margin-top: 18px;
    padding: 16px
  }

  .inspirational-quote {
    font-size: 15px
  }

  .inspirational-quote cite {
    font-size: 12px;
    margin-top: 6px
  }

  .tech-icon,
  .code-symbol {
    font-size: 14px
  }

  .tech-icon {
    font-size: 16px
  }

  .why-image {
    min-height: 250px;
    padding: 18px;
    border-radius: 18px
  }

  .why-image picture {
    max-width: 450px
  }

  .why-image img {
    max-height: 250px
  }

  .ride-scene {
    height: 150px
  }

  .main-car {
    width: 140px;
    height: 60px
  }

  .map-background {
    height: 90px;
    top: 15px;
    left: 15px;
    right: 15px
  }

  .person-head {
    width: 16px;
    height: 16px
  }

  .person-body {
    width: 20px;
    height: 24px
  }

  .next-steps-section {
    padding: 60px 0
  }

  .next-steps-title {
    font-size: 36px;
    margin-bottom: 50px
  }

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

  .step-item {
    padding: 16px
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px
  }

  .step-title {
    font-size: 20px;
    margin-bottom: 12px
  }

  .step-description {
    font-size: 15px;
    max-width: 100%
  }

  .step-item:not(:last-child)::after {
    display: none
  }

  .step-item:not(:last-child)::before {
    display: none
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px
  }

  .hero {
    padding: 32px 0;
    gap: 20px
  }

  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.3
  }

  .hero-copy p {
    font-size: 15px
  }

  .tagline {
    font-size: 15px
  }

  .cta.big {
    padding: 14px 24px;
    font-size: 15px;
    min-width: 160px
  }

  .panel {
    padding: 12px;
    border-radius: 8px
  }

  .panel-title {
    font-size: 18px
  }

  .panel-sub {
    font-size: 13px
  }

  .seg-btn {
    padding: 8px 10px;
    min-height: 40px;
    gap: 6px
  }

  .btn-title {
    font-size: 11px
  }

  .btn-subtitle {
    font-size: 8px
  }

  .btn-icon {
    width: 18px;
    height: 18px;
    font-size: 12px
  }

  .form-label {
    font-size: 14px
  }

  .input {
    padding: 12px 14px;
    min-height: 44px;
    font-size: 14px
  }

  .select-wrapper {
    padding: 12px 14px;
    min-height: 44px
  }

  .chips {
    gap: 5px;
    padding: 6px
  }

  .chip {
    padding: 6px 10px;
    min-height: 32px;
    font-size: 12px;
    font-weight: 600
  }

  .cta.full {
    padding: 14px 20px;
    font-size: 14px;
    min-width: 160px
  }

  .cta-icon {
    font-size: 14px
  }

  .cta-text {
    font-size: 14px
  }

  .error-message {
    font-size: 12px
  }

  /* Extra small mobile optimizations */
  .hero-only {
    padding: 32px 0 16px 0
  }

  .logo-img {
    margin-top: 20px
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 10px
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px
  }

  .christmas-offer {
    padding: 12px 16px;
    max-width: 260px;
    margin: 14px auto
  }

  .christmas-title {
    font-size: 18px
  }

  .christmas-subtitle {
    font-size: 11px
  }

  .christmas-icon {
    font-size: 24px
  }

  .christmas-decorations {
    gap: 16px;
    margin-bottom: 6px
  }

  .christmas-decorations.bottom {
    margin-top: 6px
  }

  .decoration {
    font-size: 16px
  }

  .two-col {
    padding: 16px 0 40px;
    gap: 16px
  }

  .panel {
    padding: 12px;
    border-radius: 8px
  }

  .seg {
    margin: 10px 0
  }

  .field {
    margin: 10px 0
  }

  .field-row {
    gap: 8px;
    margin: 12px 0
  }

  .button-group {
    gap: 12px;
    margin-top: 10px
  }

  .cta.primary {
    min-width: 90%;
    width: 90%;
    padding: 12px 20px
  }

  .chips {
    gap: 5px;
    margin: 8px 0
  }

  .chip {
    padding: 6px 10px;
    min-height: 30px;
    font-size: 11px;
    font-weight: 600
  }

  .hint {
    font-size: 11px;
    margin-top: 6px
  }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
  .container {
    padding: 0 8px
  }

  .hero {
    padding: 24px 0;
    gap: 16px
  }

  .hero-only {
    padding: 24px 0 12px 0
  }

  .logo-img {
    margin-top: 16px
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 8px
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 16px
  }

  .christmas-offer {
    padding: 10px 14px;
    max-width: 240px;
    margin: 12px auto
  }

  .christmas-title {
    font-size: 16px
  }

  .christmas-subtitle {
    font-size: 10px
  }

  .christmas-icon {
    font-size: 22px
  }

  .christmas-decorations {
    gap: 12px;
    margin-bottom: 5px
  }

  .christmas-decorations.bottom {
    margin-top: 5px
  }

  .decoration {
    font-size: 14px
  }

  .cta.big {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 140px
  }

  .panel {
    padding: 10px;
    border-radius: 6px
  }

  .panel-title {
    font-size: 16px
  }

  .panel-sub {
    font-size: 12px
  }

  .seg {
    margin: 8px 0
  }

  .field {
    margin: 8px 0
  }

  .field-row {
    gap: 6px;
    margin: 10px 0
  }

  .input {
    padding: 10px 12px;
    min-height: 40px;
    font-size: 13px
  }

  .select-wrapper {
    padding: 10px 12px;
    min-height: 40px
  }

  .seg-btn {
    padding: 6px 8px;
    min-height: 36px;
    gap: 4px
  }

  .btn-title {
    font-size: 10px
  }

  .btn-subtitle {
    font-size: 7px
  }

  .btn-icon {
    width: 16px;
    height: 16px;
    font-size: 10px
  }

  .chip {
    padding: 5px 8px;
    min-height: 28px;
    font-size: 10px;
    font-weight: 600
  }

  .chips {
    gap: 4px;
    margin: 6px 0
  }

  .button-group {
    gap: 8px;
    margin-top: 8px
  }

  .cta.primary {
    min-width: 95%;
    width: 95%;
    padding: 10px 16px
  }

  .cta {
    padding: 10px 14px;
    font-size: 13px;
    min-height: 40px
  }

  .cta-icon {
    font-size: 12px
  }

  .cta-text {
    font-size: 13px
  }

  .hint {
    font-size: 10px;
    margin-top: 4px
  }

  .two-col {
    padding: 12px 0 30px;
    gap: 12px
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 24px 0
  }

  .hero-copy h1 {
    font-size: 32px
  }

  .panel {
    padding: 12px
  }

  .seg-btn {
    min-height: 48px;
    padding: 12px 16px
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

  .seg-btn:hover,
  .dir-btn:hover {
    transform: none
  }

  .seg-btn:active,
  .dir-btn:active {
    transform: scale(0.98)
  }

  .chip:hover {
    transform: none
  }

  .chip:active {
    transform: scale(0.98)
  }

  .cta.big:hover {
    transform: none
  }

  .cta.big:active {
    transform: scale(0.98)
  }

  .cta.full:hover {
    transform: none
  }

  .cta.full:active {
    transform: scale(0.98)
  }

  .cta:hover {
    transform: none
  }

  .cta:active {
    transform: scale(0.98)
  }

  .top-icon:hover {
    transform: none
  }

  .top-icon:active {
    transform: scale(0.95)
  }

  /* Ensure minimum touch target size */
  .seg-btn {
    min-height: 44px
  }

  .chip {
    min-height: 44px
  }

  .cta {
    min-height: 44px
  }

  .input {
    min-height: 44px
  }

  .select-wrapper {
    min-height: 44px
  }

  .top-icon {
    min-width: 44px;
    min-height: 44px
  }
}

/* Prevent zoom on input focus (iOS) */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container{padding:0 16px}
  .hero{padding:40px 0;gap:24px}
  
  /* Hero section mobile optimization */
  .hero-only{padding:40px 0 20px 0}
  .intro-row{text-align:center;margin-bottom:16px}
  .logo-img{margin-top:24px}
  .hero-title{font-size:32px;margin-bottom:12px}
  .hero-subtitle{font-size:16px;margin-bottom:24px}
  .cta-row{text-align:center;margin-bottom:8px}
  .chip{text-align:center;margin:6px auto;display:inline-block}
  .limited-time-offer{margin:10px auto}
  .stopwatch{width:48px;height:54px;margin-right:-10px}
  .stopwatch-ring{width:42px;height:42px;top:8px}
  .stopwatch-face{width:34px;height:34px;top:12px}
  .stopwatch-top{width:8px;height:8px}
  .stopwatch-btn{width:6px;height:8px;top:3px}
  .tick{height:4px;transform-origin:50% 14px}
  .hand.hour{height:9px}
  .hand.minute{height:12px}
  .hand-center{width:5px;height:5px}
  .offer-banner{padding:10px 16px 10px 20px;gap:12px;border-radius:6px}
  .banner-labels{gap:0}
  .text-limited{font-size:8px;letter-spacing:1.5px}
  .text-time{font-size:20px}
  .text-offer{font-size:10px;letter-spacing:2px}
  .banner-divider{height:38px}
  .offer-title{font-size:10px}
  .offer-amount{font-size:18px}
  .trust{justify-content:center;text-align:center;margin-top:8px}
  
  /* Two-column layout becomes single column on mobile */
  .two-col{grid-template-columns:1fr;gap:20px;padding:20px 0 50px}
  .hero-copy h1{font-size:36px;line-height:1.2}
  .hero-copy p{font-size:16px;margin-bottom:16px}
  .tagline{font-size:16px;line-height:1.5}
  .cta.big{padding:16px 32px;font-size:16px;min-width:180px}
  .trust{flex-direction:column;gap:8px;text-align:center;margin-top:8px}
  .panel{padding:16px;border-radius:12px}
  .panel-title{font-size:20px;margin-bottom:8px}
  .panel-sub{font-size:14px;margin-bottom:20px}
  .seg{margin:16px 0}
  .seg label{font-size:15px;margin-bottom:12px}
  .seg-row{grid-template-columns:1fr 1fr;gap:6px}
  .seg-btn{padding:8px 10px;min-height:40px;gap:6px}
  .btn-title{font-size:12px}
  .btn-subtitle{font-size:9px}
  .btn-icon{width:20px;height:20px;font-size:14px}
  .form-label{font-size:15px;margin-bottom:12px}
  .field{margin:12px 0}
  .input{padding:14px 16px;min-height:48px;font-size:15px}
  .input-icon{font-size:16px}
  .select-wrapper{padding:14px 16px;min-height:48px}
  .select-icon{font-size:16px}
  .chips{gap:6px;padding:8px}
  .chip{padding:8px 12px;min-height:36px;font-size:13px;font-weight:600}
  .hint{font-size:12px;margin-top:8px}
  .cta.full{padding:16px 24px;font-size:15px;min-width:180px}
  .cta-icon{font-size:16px}
  .cta-text{font-size:15px}
  .error-message{font-size:13px;margin-top:4px}
  .why-image{margin-top:20px;padding:14px;min-height:160px}
  .why-image picture{max-width:350px}
  .why-image img{max-height:140px}
  .quote-section{margin-top:18px;padding:16px}
  .inspirational-quote{font-size:15px}
  .inspirational-quote cite{font-size:12px;margin-top:6px}
  .tech-icon, .code-symbol{font-size:14px}
  .tech-icon{font-size:16px}
  .why-image{min-height:250px;padding:18px;border-radius:18px}
  .why-image picture{max-width:450px}
  .why-image img{max-height:250px}
  .ride-scene{height:150px}
  .main-car{width:140px;height:60px}
  .map-background{height:90px;top:15px;left:15px;right:15px}
  .person-head{width:16px;height:16px}
  .person-body{width:20px;height:24px}
  .next-steps-section{padding:60px 0}
  .next-steps-title{font-size:36px;margin-bottom:50px}
  .steps-grid{grid-template-columns:1fr;gap:32px;margin-top:32px}
  .step-item{padding:16px}
  .step-number{width:50px;height:50px;font-size:20px;margin-bottom:20px}
  .step-title{font-size:20px;margin-bottom:12px}
  .step-description{font-size:15px;max-width:100%}
  .step-item:not(:last-child)::after{display:none}
  .step-item:not(:last-child)::before{display:none}
}

@media (max-width: 480px) {
  .container{padding:0 12px}
  .hero{padding:32px 0;gap:20px}
  .hero-copy h1{font-size:28px;line-height:1.3}
  .hero-copy p{font-size:15px}
  .tagline{font-size:15px}
  .cta.big{padding:14px 24px;font-size:15px;min-width:160px}
  .panel{padding:12px;border-radius:8px}
  .panel-title{font-size:18px}
  .panel-sub{font-size:13px}
  .seg-btn{padding:8px 10px;min-height:40px;gap:6px}
  .btn-title{font-size:11px}
  .btn-subtitle{font-size:8px}
  .btn-icon{width:18px;height:18px;font-size:12px}
  .form-label{font-size:14px}
  .input{padding:12px 14px;min-height:44px;font-size:14px}
  .select-wrapper{padding:12px 14px;min-height:44px}
  .chips{gap:5px;padding:6px}
  .chip{padding:6px 10px;min-height:32px;font-size:12px;font-weight:600}
  .cta.full{padding:14px 20px;font-size:14px;min-width:160px}
  .cta-icon{font-size:14px}
  .cta-text{font-size:14px}
  .error-message{font-size:12px}
  
  /* Extra small mobile optimizations */
  .hero-only{padding:32px 0 16px 0}
  .logo-img{margin-top:20px}
  .hero-title{font-size:28px;margin-bottom:10px}
  .hero-subtitle{font-size:15px;margin-bottom:20px}
  .two-col{padding:16px 0 40px;gap:16px}
  .panel{padding:12px;border-radius:8px}
  .seg{margin:10px 0}
  .field{margin:10px 0}
  .field-row{gap:8px;margin:12px 0}
  .button-group{gap:12px;margin-top:10px}.cta.primary{min-width:90%;width:90%;padding:12px 20px}
  .chips{gap:5px;margin:8px 0}
  .chip{padding:6px 10px;min-height:30px;font-size:11px;font-weight:600}
  .hint{font-size:11px;margin-top:6px}
  
  /* Limited Time Offer - 480px */
  .limited-time-offer{margin:14px auto;transform:scale(0.9)}
  .stopwatch{animation:none}
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
  .container{padding:0 8px}
  .hero{padding:24px 0;gap:16px}
  .hero-only{padding:24px 0 12px 0}
  .logo-img{margin-top:16px}
  .hero-title{font-size:24px;margin-bottom:8px}
  .hero-subtitle{font-size:14px;margin-bottom:16px}
  .cta.big{padding:12px 20px;font-size:14px;min-width:140px}
  .panel{padding:10px;border-radius:6px}
  .panel-title{font-size:16px}
  .panel-sub{font-size:12px}
  .seg{margin:8px 0}
  .field{margin:8px 0}
  .field-row{gap:6px;margin:10px 0}
  .input{padding:10px 12px;min-height:40px;font-size:13px}
  .select-wrapper{padding:10px 12px;min-height:40px}
  .seg-btn{padding:6px 8px;min-height:36px;gap:4px}
  .btn-title{font-size:10px}
  .btn-subtitle{font-size:7px}
  .btn-icon{width:16px;height:16px;font-size:10px}
  .chip{padding:5px 8px;min-height:28px;font-size:10px;font-weight:600}
  .chips{gap:4px;margin:6px 0}
  .button-group{gap:8px;margin-top:8px}.cta.primary{min-width:95%;width:95%;padding:10px 16px}
  .cta{padding:10px 14px;font-size:13px;min-height:40px}
  .cta-icon{font-size:12px}
  .cta-text{font-size:13px}
  .hint{font-size:10px;margin-top:4px}
  .two-col{padding:12px 0 30px;gap:12px}
  
  /* Limited Time Offer - 320px */
  .limited-time-offer{margin:12px auto;transform:scale(0.85)}
  .stopwatch{animation:none}
  .offer-banner{padding:8px 12px 8px 16px;gap:8px}
  .text-limited{font-size:6px}
  .text-time{font-size:14px}
  .text-offer{font-size:8px}
  .banner-divider{height:28px}
  .offer-title{font-size:8px}
  .offer-amount{font-size:14px}
}

/* Help Section Header */
.help-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.help-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.1), rgba(107, 201, 77, 0.05));
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease
}

.help-icon:hover {
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.2), rgba(107, 201, 77, 0.1));
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(127, 219, 97, 0.3)
}

.help-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

.help-subtitle {
  font-size: 18px;
  color: #aaa;
  font-weight: 500;
  margin: 0 auto 28px;
  line-height: 1.5;
  text-align: center;
  max-width: 500px;
}

.help-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px
}

.help-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
  border: 2px solid #333;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 80px
}

.help-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  opacity: 0;
  transition: opacity 0.3s ease
}

.help-btn:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(127, 219, 97, 0.2)
}

.help-btn:hover::before {
  opacity: 1
}

.phone-btn:hover {
  background: linear-gradient(135deg, rgba(127, 219, 97, 0.1), rgba(107, 201, 77, 0.05))
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(25, 160, 71, 0.05));
  border-color: #25D366
}

.whatsapp-btn:hover::before {
  background: linear-gradient(90deg, #25D366, #19A047)
}

.help-btn .btn-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 219, 97, 0.1);
  border: 1px solid rgba(127, 219, 97, 0.2);
  border-radius: 12px;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0
}

.whatsapp-btn .btn-icon {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
  color: #25D366
}

.help-btn:hover .btn-icon {
  background: rgba(127, 219, 97, 0.2);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(127, 219, 97, 0.3)
}

.whatsapp-btn:hover .btn-icon {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3)
}

.help-btn .btn-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: left
}

.help-btn .btn-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0
}

.help-btn .btn-subtitle {
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
  margin: 0
}

.help-btn .btn-arrow {
  font-size: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
  font-weight: 700
}

.help-btn:hover .btn-arrow {
  transform: translateX(4px);
  color: var(--primary)
}

.whatsapp-btn:hover .btn-arrow {
  color: #25D366
}

.help-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 14px;
  font-weight: 500
}

.info-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0
}

/* Mobile responsiveness for help section */
@media (max-width: 768px) {
  .help-section {
    padding: 40px 0
  }

  .help-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px
  }

  .help-title {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center
  }

  .help-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center
  }

  .help-actions {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px
  }

  .help-btn {
    padding: 16px 20px;
    min-height: 70px;
    gap: 12px
  }

  .help-btn .btn-icon {
    width: 40px;
    height: 40px
  }

  .help-btn .btn-title {
    font-size: 16px
  }

  .help-btn .btn-subtitle {
    font-size: 13px
  }

  .help-info {
    gap: 24px
  }

  .info-item {
    font-size: 13px
  }
}

@media (max-width: 480px) {
  .help-section {
    padding: 32px 0
  }

  .help-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px
  }

  .help-title {
    font-size: 24px;
    text-align: center
  }

  .help-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
    text-align: center
  }

  .help-actions {
    gap: 12px;
    margin-bottom: 24px
  }

  .help-btn {
    padding: 14px 16px;
    min-height: 64px;
    gap: 10px
  }

  .help-btn .btn-icon {
    width: 36px;
    height: 36px
  }

  .help-btn .btn-title {
    font-size: 15px
  }

  .help-btn .btn-subtitle {
    font-size: 12px
  }

  .help-info {
    gap: 16px;
    flex-direction: column
  }

  .info-item {
    font-size: 12px
  }

  .why-image {
    margin-top: 16px;
    padding: 12px;
    min-height: 140px;
    border-radius: 12px
  }

  .why-image picture {
    max-width: 100%
  }

  .why-image img {
    max-height: 120px
  }

  .why-item.active::after {
    font-size: 8px;
    padding: 1px 4px;
    top: 6px;
    right: 8px
  }

  .quote-section {
    margin-top: 16px;
    padding: 14px
  }

  .inspirational-quote {
    font-size: 14px
  }

  .inspirational-quote cite {
    font-size: 11px;
    margin-top: 6px
  }

  .tech-icon,
  .code-symbol {
    font-size: 12px
  }

  .tech-icon {
    font-size: 14px
  }

  .happy-face {
    font-size: 10px
  }

  .ride-scene {
    height: 120px
  }

  .main-car {
    width: 120px;
    height: 50px
  }

  .map-background {
    height: 70px;
    top: 10px;
    left: 10px;
    right: 10px
  }

  .person-head {
    width: 14px;
    height: 14px
  }

  .person-body {
    width: 18px;
    height: 22px
  }

  .next-steps-section {
    padding: 50px 0
  }

  .next-steps-title {
    font-size: 32px;
    margin-bottom: 40px
  }

  .steps-grid {
    gap: 28px;
    margin-top: 28px
  }

  .step-item {
    padding: 12px
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 16px
  }

  .step-title {
    font-size: 18px;
    margin-bottom: 10px
  }

  .step-description {
    font-size: 14px
  }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Google Places Autocomplete Styling */
.pac-container {
  background-color: #1a1a1a !important;
  border: 2px solid var(--primary) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
  margin-top: 4px !important;
  font-family: Inter, system-ui, -apple-system, sans-serif !important;
  z-index: 9999 !important;
}

.pac-container:after {
  background-image: none !important;
  height: 0 !important;
}

.pac-item {
  background-color: #1a1a1a !important;
  border-top: 1px solid #333 !important;
  color: #e5e5e5 !important;
  cursor: pointer !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.pac-item:hover {
  background-color: #2a2a2a !important;
}

.pac-item-selected,
.pac-item-selected:hover {
  background-color: rgba(127, 219, 97, 0.15) !important;
}

.pac-item-query {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.pac-matched {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

.pac-icon {
  background-image: none !important;
  background-position: 0 0 !important;
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px !important;
}

.pac-icon:before {
  content: '📍';
  font-size: 16px;
  display: block;
}

.pac-logo:after {
  display: none !important;
}

/* Autocomplete input styling when active */
.pac-target-input {
  transition: all 0.2s ease !important;
}

.pac-target-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(127, 219, 97, 0.1) !important;
}

/* Custom Places Autocomplete Dropdown (using AutocompleteService) */
.places-autocomplete-dropdown {
  position: absolute;
  background-color: #1a1a1a !important;
  border: 2px solid var(--primary) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
  margin-top: 4px !important;
  font-family: Inter, system-ui, -apple-system, sans-serif !important;
  z-index: 9999 !important;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
}

/* Google Places Autocomplete Dark Theme */

/* Remove Google's default input styling */
.pac-target-input {
  box-shadow: none !important;
  outline: none !important;
}

.pac-target-input:focus {
  box-shadow: none !important;
  outline: none !important;
}

.pac-container {
  background-color: #0a0a0a !important;
  border: 1px solid #333 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
  margin-top: 4px !important;
  font-family: Inter, system-ui, -apple-system, sans-serif !important;
}

.pac-item {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
  border-top: 1px solid #222 !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
  transition: background-color 0.15s ease !important;
}

.pac-item:first-child {
  border-top: none !important;
}

.pac-item:hover,
.pac-item.pac-item-selected {
  background-color: #1a1a1a !important;
}

.pac-item-query {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.pac-item .pac-icon {
  filter: invert(1) !important;
}

.pac-matched {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

.pac-container::after {
  background-color: #0a0a0a !important;
  padding: 6px 10px !important;
  border-top: 1px solid #222 !important;
}

/* Google Maps Fallback - Prevent error icons */
#start,
#destination,
.pac-target-input {
  background-image: none !important;
}

/* India On Time Section */
.india-section {
  position: relative;
  background: #0d0d0d;
  padding: 48px 24px;
  overflow: hidden;
}

.india-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 0 10%;
}

.india-hashtag {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: 1px;
}

.india-tagline {
  font-size: 18px;
  color: #b0b0b0;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.india-tagline:last-child {
  margin-bottom: 0;
}

/* Background Pattern */
.india-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="30" fill="%23222" font-size="8">TEAM</text><circle cx="70" cy="25" r="8" fill="none" stroke="%23222" stroke-width="1"/><rect x="15" y="50" width="20" height="15" fill="none" stroke="%23222" stroke-width="1"/><text x="18" y="62" fill="%23222" font-size="6">BANK</text><circle cx="60" cy="60" r="6" fill="none" stroke="%23222" stroke-width="1"/><path d="M58 60 L62 60 M60 58 L60 62" stroke="%23222" stroke-width="1"/><ellipse cx="85" cy="70" rx="10" ry="8" fill="none" stroke="%23222" stroke-width="1"/><circle cx="25" cy="80" r="10" fill="none" stroke="%23222" stroke-width="1"/><path d="M20 78 L25 85 L30 78" fill="none" stroke="%23222" stroke-width="1"/></svg>') repeat,
    linear-gradient(135deg, transparent 0%, rgba(30, 30, 30, 0.3) 100%);
  background-size: 150px 150px, 100%;
  opacity: 0.6;
  pointer-events: none;
}

/* Business icons pattern overlay */
.india-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(50, 50, 50, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 60% 70%, rgba(40, 40, 40, 0.3) 0%, transparent 25%);
}

/* Responsive */
@media (max-width: 768px) {
  .india-section {
    padding: 40px 20px;
  }
  
  .india-content {
    margin: 0 auto;
    text-align: center;
  }
  
  .india-hashtag {
    font-size: 36px;
  }
  
  .india-tagline {
    font-size: 16px;
    justify-content: center;
  }
  
  .india-bg-pattern {
    width: 100%;
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .india-hashtag {
    font-size: 28px;
  }
  
  .india-tagline {
    font-size: 14px;
  }
}