@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --accent-white: #ffffff;
  --accent-glow: rgba(255, 255, 255, 0.25);
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #9ca3af;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .bebas {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

a, button, input, select {
  cursor: pointer;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--white);
  letter-spacing: 4px;
  opacity: 0;
}

#loader-line-container {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

#loader-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--accent-white);
  transform: translateX(-100%);
}

/* Removed Custom Cursor */



/* CANVAS BACKGROUND */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* TYPOGRAPHY UTILS */
.label {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--accent-white);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
}

.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 8vw, 90px);
  line-height: 0.9;
  margin-bottom: 40px;
}

.body-text {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
}

/* GLOBAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* HERO SECTION */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  animation: grid-drift 20s linear infinite;
  z-index: -1;
}

@keyframes grid-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 15vw, 160px);
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.hero-logo .hindi {
  color: var(--accent-white);
}

.hero-underline-container {
  width: 100%;
  height: 4px;
  background: transparent;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.hero-underline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-white);
  transform: translateX(-100%);
}

.hero-subtext {
  font-size: 14px;
  letter-spacing: 10px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 24px;
}

.hero-body {
  font-size: 22px;
  font-weight: 300;
  margin-top: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 16px 40px;
  border: none;
  background: transparent;
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--accent-white);
  color: #000;
  font-weight: 900;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
  border: 1px solid var(--white);
  padding: 15px 39px; /* adjust for border */
}

.btn-secondary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.scroll-line-container {
  height: 60px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scroll-down 2s infinite ease-in-out;
}

@keyframes scroll-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 10px;
  color: var(--gray);
  text-transform: uppercase;
}

/* PROBLEM SECTION */
#problem {
  padding: 80px 5%;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.problem-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  font-style: italic;
  line-height: 0.9;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.problem-headline .word {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
}

.problem-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  position: relative;
  border-radius: 4px;
}

.speech-bubble {
  background: rgba(10, 20, 50, 0.8);
  border: 1px solid var(--accent-white);
  padding: 20px 30px;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 20px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: transparent transparent var(--accent-white) transparent;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  top: -13px;
  left: 21px;
  border-width: 0 0 14px 14px;
  border-style: solid;
  border-color: transparent transparent rgba(10, 20, 50, 0.8) transparent;
}

.speech-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--accent-white);
  letter-spacing: 1px;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pain-icon svg {
  stroke: #ef4444;
  width: 24px;
  height: 24px;
}

.pain-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.5;
}

/* JOURNEY SECTION */
#journey {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 20vh;
  justify-content: center;
  overflow: hidden;
}

.journey-content {
  width: 100%;
  position: relative;
}

.road {
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: relative;
}

.road-dashes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #fff 0, #fff 40px, transparent 40px, transparent 80px);
  opacity: 0.2;
  animation: road-move 1s linear infinite;
}

@keyframes road-move {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-80px); }
}

.speed-lines-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 15px, rgba(255,255,255,0.1) 16px, transparent 17px);
  opacity: 0;
}

.scooter-container {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  left: 3%;
  width: 120px;
  z-index: 10;
}

.scooter-container svg {
  width: 100%;
  height: auto;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.scooter-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse at left, rgba(255, 255, 255,0.3) 0%, transparent 70%);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

.milestones {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 300px;
  pointer-events: none;
}

.milestone {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.m-pole {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-white) 0%, transparent 100%);
}

.milestone:nth-child(even) .m-pole {
  height: 150px;
}

.m-sign {
  background: var(--bg);
  border: 1px solid var(--accent-white);
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 255, 255,0);
  transition: all 0.3s;
  min-width: 120px;
}

.m-sign.active {
  box-shadow: 0 0 20px var(--accent-glow);
  transform: scale(1);
  animation: pulse-sign 0.4s ease;
}

@keyframes pulse-sign {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.m-badge {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent-white);
  font-size: 20px;
  margin-bottom: 8px;
}

.m-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 8px;
}

.m-action {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
}

.wb-container {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wb-container.active {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-bubble {
  background: #1f2c34;
  border-radius: 0 12px 12px 12px;
  padding: 8px 12px;
  min-width: 160px;
  max-width: 200px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  position: relative;
}

.wb-sender {
  color: #00a884;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}

.wb-text {
  color: var(--white);
  font-size: 13px;
  line-height: 1.4;
  padding-bottom: 8px;
}

.wb-ticks {
  position: absolute;
  bottom: 6px;
  right: 8px;
}

.wb-ticks svg {
  width: 14px;
  height: 14px;
  stroke: #53bdeb;
  stroke-width: 2;
  fill: none;
}

.milestone.final .m-sign {
  border-color: var(--white);
  padding: 16px 24px;
}

.milestone.final .m-sign.active {
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.milestone.final .m-badge {
  font-size: 28px;
}

.celebration-text {
  position: absolute;
  top: calc(100% + 440px);
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.celebration-120 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--accent-white);
  line-height: 1;
}

.celebration-not2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(255,255,255,0.15);
  line-height: 0.8;
}

.celebration-crush {
  font-size: 18px;
  color: var(--gray);
  margin-top: 16px;
}

.skyline {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 200%;
  height: 200px;
  opacity: 0.04;
  z-index: -1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" preserveAspectRatio="none"><path d="M0,200 L0,150 L50,150 L50,100 L100,100 L100,180 L150,180 L150,80 L200,80 L200,120 L250,120 L250,50 L300,50 L300,160 L350,160 L350,90 L400,90 L400,140 L450,140 L450,70 L500,70 L500,110 L550,110 L550,40 L600,40 L600,130 L650,130 L650,60 L700,60 L700,150 L750,150 L750,80 L800,80 L800,170 L850,170 L850,100 L900,100 L900,190 L950,190 L950,120 L1000,120 L1000,200 Z" fill="%23ffffff"/></svg>');
  background-repeat: repeat-x;
  background-size: 1000px 200px;
}

/* SERVICES SECTION */
#services {
  padding: 0 5% 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 28px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent-white);
  transform: translateY(-10px);
}

.service-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: var(--accent-white);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover .service-glow {
  opacity: 0.3;
}

.service-icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-white);
  stroke-width: 1.5;
  fill: none;
}

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-icon 1s forwards ease-out;
}

@keyframes draw-icon {
  to { stroke-dashoffset: 0; }
}

.service-watermark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(255, 255, 255,0.06);
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 0;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* MARQUEE */
#marquee {
  width: 100%;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--gray);
  margin-right: 48px;
}

.marquee-item .highlight {
  color: var(--accent-white);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  stroke: var(--accent-white);
  fill: none;
  stroke-width: 2;
}

/* WHY NOW SECTION */
#whynow {
  padding: 40px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-card {
  background: var(--surface-2);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-white);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-white);
  stroke-width: 1.5;
  fill: none;
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
}

.why-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* BUSINESS MODEL SECTION */
#business {
  padding: 40px 5% 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.biz-card {
  background: var(--surface);
  border-left: 3px solid transparent;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.biz-card.b2b {
  border-color: var(--accent-white);
}

.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: var(--accent-white);
  background: var(--surface-2);
}

.biz-tag {
  display: inline-block;
  border: 1px solid var(--accent-white);
  color: var(--accent-white);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.biz-icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--accent-white);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 30px;
}

.biz-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 20px;
}

.biz-desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.biz-watermark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(255, 255, 255,0.04);
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 0;
}

.biz-footer {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

/* FORM SECTION */
#early-access {
  padding: 40px 5% 60px;
  background: var(--bg);
  position: relative;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 60px;
}

.form-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  line-height: 0.9;
}

.form-headline .blue {
  color: var(--accent-white);
}

.form-subtext {
  font-size: 18px;
  color: var(--gray);
  margin-top: 16px;
}

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

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-input, .form-select {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 16px 20px;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-white);
  box-shadow: 0 0 15px rgba(255, 255, 255,0.15);
}

.btn-submit {
  background: var(--accent-white);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  padding: 24px;
  border: none;
  width: 100%;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-submit:hover::after {
  animation: shimmer 0.7s forwards;
}

@keyframes shimmer {
  100% { left: 200%; }
}

.success-state {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-white);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.success-icon.active svg {
  animation: draw-icon 1s forwards ease-out;
}

.success-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--accent-white);
  letter-spacing: 1px;
}

.form-deco {
  position: absolute;
  top: 50px;
  right: -50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px;
  color: rgba(255, 255, 255,0.04);
  pointer-events: none;
  z-index: 0;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 5% 40px;
  text-align: center;
  background: var(--bg);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--white);
  letter-spacing: 8px;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.social-link svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.social-link:hover svg {
  stroke: var(--accent-white);
}

.footer-divider {
  height: 1px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, var(--accent-white), transparent);
}

.footer-quote {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}

.footer-quote .blue {
  color: var(--accent-white);
}

.footer-bottom {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-logo {
    font-size: 180px;
  }
  .celebration-120 {
    font-size: 80px;
  }
  .celebration-not2 {
    font-size: 60px;
  }
  .services-grid, .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-logo {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .services-grid, .problem-grid, .whynow-grid, .biz-grid, .input-row {
    grid-template-columns: 1fr;
  }
  
  #problem, #services, #whynow, #business, #early-access {
    padding: 40px 5%;
  }

  .title, .problem-headline, .form-headline {
    font-size: 40px;
  }
  
  .hero-logo {
    font-size: 80px;
  }
  
  .celebration-120 {
    font-size: 60px;
  }
  
  .celebration-not2 {
    font-size: 40px;
  }
  
  .form-deco {
    display: none;
  }

  .form-wrapper {
    padding: 24px;
  }

  /* Scooter Journey Mobile Adaptation */
  #journey {
    height: auto;
    padding: 80px 5%;
    align-items: stretch;
  }
  
  .journey-content {
    display: flex;
    flex-direction: column;
  }
  
  .road {
    display: none; /* Hide horizontal road on mobile */
  }
  
  .milestones {
    position: relative;
    top: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 30px;
    margin-bottom: 60px;
  }
  
  .milestone {
    position: relative;
    transform: none;
    left: 0 !important;
    align-items: flex-start;
  }
  
  .m-pole {
    position: absolute;
    left: -30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--accent-white);
  }

  .m-sign {
    transform: none !important;
  }

  .wb-container {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-top: 16px;
    width: 280px;
  }

  .celebration-text {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 0;
    opacity: 0;
  }
}
