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

:root {
  --gold: #D6A84F;
  --gold-dark: #B8892E;
  --gold-light: #FFF4D6;
  --emerald: #0F3D2E;
  --emerald-soft: #E7F4EF;
  --emerald-accent: #2F8F6B;
  --dark: #08101D;
  --gray: #64748B;
  --light: #F9F8F4;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --primary: var(--gold);
  --shadow: 0 18px 50px rgba(8,16,29,.10);
  --gold-shadow: 0 15px 35px rgba(214,168,79,.35);
  --emerald-shadow: 0 14px 40px rgba(15,61,46,.25);
  --radius: 18px;
}

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

html { 
  scroll-behavior: smooth; 
}

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

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  max-width: 1300px;
  margin: auto;
  padding: 100px 6%;
}

/* HEADER */

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,16,29,.06);
}

.navbar {
  max-width: 1350px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
}

.logo img {
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--gray);
  transition: .3s;
  font-weight: 600;
  font-size: 15px;
}

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

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

select {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  color: var(--dark);
  font-weight: 600;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  transition: .3s;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg,#E6C46A,#C9962F);
  color: #111111;
  box-shadow: var(--gold-shadow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(214,168,79,.45);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: white;
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--gold-light);
  border-color: rgba(214,168,79,.45);
}

.btn-small {
  padding: 11px 20px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  min-height: 100vh;
  padding-top: 135px;
  background:
    linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),
    url("../assets/images/mobility-background.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 65px);
  line-height: 1.08;
  margin: 18px 0;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero-content p {
  color: #253044;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.hero-buttons .btn {
  min-width: 220px;
}

.hero-note {
  margin-top: 24px;
  font-size: 15px;
  color: var(--gray);
}

.eyebrow {
  color: #C9962F;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
}

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

.phone-frame {
  width: min(420px, 100%);
  margin: auto;
  border-radius: 45px;
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(8,16,29,.18);
  background: #111;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* LAYOUT SECTIONS */

.about-section,
.story-section,
.safety-section,
.split-section,
.waitlist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE CARDS */

.about-image,
.story-image,
.safety-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: white;
}

.about-image img,
.story-image img,
.safety-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-content h2,
.safety-content h2,
.experience-copy h2,
.vision-card h2,
.story-content h2 {
  font-size: clamp(34px, 5vw, 48px);
  margin: 20px 0;
  letter-spacing: -1px;
}

.about-content p,
.safety-content p,
.experience-copy p,
.vision-card p,
.story-content p {
  color: var(--gray);
  line-height: 2;
}

.mini-points,
.safety-list {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}

.mini-points div,
.safety-list div {
  padding: 22px;
  background: white;
  border: 1px solid rgba(214,168,79,.16);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(8,16,29,.06);
}

.mini-points strong,
.safety-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.mini-points span,
.safety-list span {
  color: var(--gray);
  line-height: 1.7;
}

/* FEATURES */

.features-section {
  background: linear-gradient(180deg,#ffffff,#fbfaf6);
  border-radius: 32px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 46px);
  margin: 20px 0;
  letter-spacing: -1px;
}

.section-heading p {
  color: var(--gray);
  line-height: 1.8;
}

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

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214,168,79,.12);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(8,16,29,.13);
}

.feature-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin: auto auto 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.8;
}

/* STATS */

.stats-row {
  display: flex;
  gap: 60px;
  margin-top: 35px;
}

.stats-row strong {
  display: block;
  font-size: 40px;
  color: var(--gold-dark);
}

.stats-row span {
  color: var(--gray);
}

/* SAFETY */

.safety-section {
  background:
    radial-gradient(circle at top right,rgba(214,168,79,.12),transparent 35%),
    linear-gradient(180deg,#ffffff,#fffaf0);
  border-radius: 32px;
}

/* RIDER / DRIVER */

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.split-content h2 {
  font-size: clamp(34px, 5vw, 46px);
  margin: 18px 0;
  letter-spacing: -1px;
}

.split-content p {
  color: var(--gray);
  line-height: 2;
}

.split-image img {
  max-width: 360px;
  margin: auto;
  filter: drop-shadow(0 30px 45px rgba(8,16,29,.16));
}

#riders {
  background:
    radial-gradient(circle at top left,rgba(214,168,79,.13),transparent 34%),
    linear-gradient(180deg,#ffffff,#fffaf0);
  border-radius: 32px;
}

#drivers {
  background:
    radial-gradient(circle at top right,rgba(47,143,107,.13),transparent 35%),
    linear-gradient(180deg,#ffffff,#f6fbf8);
  border-radius: 32px;
}

#drivers .eyebrow {
  color: var(--emerald-accent);
}

#drivers .split-content h2 {
  color: var(--emerald);
}

/* EXPERIENCE */

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  height: 560px;
  box-shadow: var(--shadow);
}

.experience-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(8,16,29,.88),rgba(8,16,29,.35),transparent);
}

.experience-copy {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 500px;
  color: white;
  z-index: 2;
}

.experience-copy p {
  color: rgba(255,255,255,.84);
}

/* VISION */

.vision-card,
.launch-card {
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at top left,rgba(214,168,79,.35),transparent 35%),
    radial-gradient(circle at bottom right,rgba(47,143,107,.25),transparent 35%),
    linear-gradient(135deg,#08101D,#0F3D2E);
  box-shadow: var(--emerald-shadow);
}

.vision-card {
  padding: 90px 8%;
  border-radius: 34px;
}

.vision-card p {
  max-width: 760px;
  margin: auto;
  color: rgba(255,255,255,.84);
}

.vision-card .eyebrow,
.launch-card .eyebrow {
  color: var(--gold-light);
}

/* PARTNERS */

.partners-section {
  background:
    radial-gradient(circle at top left, rgba(214,168,79,.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #fbfaf6);
  border-radius: 32px;
}

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

.partner-card {
  background: white;
  border-radius: 22px;
  padding: 34px;
  min-height: 230px;
  border: 1px solid rgba(214,168,79,.14);
  box-shadow: var(--shadow);
  transition: .3s;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(8,16,29,.13);
}

.partner-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--dark);
}

.partner-card p {
  color: var(--gray);
  line-height: 1.8;
}

.partners-cta {
  text-align: center;
  margin-top: 45px;
}

/* LAUNCH */

.launch-card {
  padding: 80px;
  border-radius: 28px;
}

.launch-card h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 20px 0;
  letter-spacing: -1px;
}

.launch-card p {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}

/* WAITLIST */

.waitlist-section {
  background:
    radial-gradient(circle at top right,rgba(214,168,79,.10),transparent 34%);
}

.waitlist-content h2 {
  font-size: clamp(34px, 5vw, 50px);
  margin: 20px 0;
  letter-spacing: -1px;
}

.waitlist-content p {
  color: var(--gray);
  line-height: 1.8;
}

.waitlist-form {
  background: white;
  padding: 45px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214,168,79,.15);
}

.waitlist-form label {
  display: block;
  margin-bottom: 20px;
}

.waitlist-form span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
  transition: .3s;
  font-size: 16px;
  font-family: inherit;
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 110px;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,168,79,.14);
}

.waitlist-form button {
  width: 100%;
  height: 58px;
  margin-top: 15px;
  font-size: 18px;
}

/* LEGAL */

.legal-page {
  padding-top: 90px;
}

.legal-section {
  max-width: 900px;
}

.legal-section h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin: 20px 0;
}

.legal-section h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 18px;
}

.legal-disclaimer {
  margin-top: 40px;
  padding: 22px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--gray);
  line-height: 1.8;
}

/* FOOTER */

.site-footer {
  background:
    radial-gradient(circle at top left,rgba(214,168,79,.12),transparent 30%),
    #08101d;
  color: white;
  padding: 80px 6%;
}

.footer-brand {
  max-width: 500px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 2;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.footer-links a {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.footer-socials a {
  color: #cbd5e1;
}

.footer-socials a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 50px;
  color: #94a3b8;
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(37, 211, 102, .35);
  transition: .3s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(37, 211, 102, .45);
}

/* CHATBOT WIDGET */

.chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 999;
}

.chatbot-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #E6C46A, #C9962F);
  color: #08101D;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 16px 38px rgba(214,168,79,.38);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8,16,29,.22);
  border: 1px solid rgba(214,168,79,.22);
  overflow: hidden;
  display: none;
}

.chatbot-panel.open {
  display: block;
}

.chatbot-header {
  background: linear-gradient(135deg, #08101D, #0F3D2E);
  color: white;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.chatbot-header strong {
  display: block;
  font-size: 16px;
}

.chatbot-header span {
  display: block;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
}

.chatbot-header button {
  border: none;
  background: transparent;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.chatbot-messages {
  padding: 18px;
  height: 280px;
  overflow-y: auto;
  background: #FBFAF7;
}

.bot-message,
.user-message {
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  line-height: 1.55;
  font-size: 14px;
}

.bot-message {
  background: white;
  color: var(--dark);
  border: 1px solid rgba(214,168,79,.15);
}

.user-message {
  background: var(--gold-light);
  color: var(--dark);
  margin-left: 34px;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: white;
}

.chatbot-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  outline: none;
  font-size: 14px;
}

.chatbot-form button {
  border: none;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 800;
  background: linear-gradient(135deg,#E6C46A,#C9962F);
  color: #111;
  cursor: pointer;
}

/* ANIMATIONS */

.hidden {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity .9s ease, transform .9s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */

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

  .hero,
  .about-section,
  .story-section,
  .safety-section,
  .split-section,
  .waitlist-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-buttons,
  .stats-row {
    justify-content: center;
  }

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

  .phone-frame {
    margin: 20px auto 0;
  }

  .split-image img {
    max-width: 330px;
  }
}

/* PHONE */

@media (max-width: 700px) {
  body {
    background: #FBFAF7;
  }

  .navbar {
    padding: 14px 5%;
  }

  .logo img {
    width: 92px;
  }

  .nav-actions select {
    max-width: 118px;
    font-size: 13px;
    padding: 8px 9px;
  }

  .nav-actions .btn-small {
    display: none;
  }

  .section {
    padding: 62px 5%;
  }

  .hero {
    gap: 32px;
    padding-top: 105px;
    padding-bottom: 54px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .hero-content p {
    font-size: 16.5px;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    height: 56px;
  }

  .hero-note {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 18px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .phone-frame {
    width: min(270px, 82vw);
    border-radius: 34px;
  }

  .about-section,
  .story-section,
  .safety-section,
  .split-section,
  .waitlist-section {
    gap: 34px;
  }

  .about-image,
  .story-image,
  .safety-image {
    height: 300px;
    border-radius: 22px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-content h2,
  .story-content h2,
  .safety-content h2,
  .split-content h2,
  .experience-copy h2,
  .vision-card h2,
  .launch-card h2,
  .waitlist-content h2,
  .legal-section h1 {
    font-size: 31px;
    line-height: 1.15;
  }

  .about-content p,
  .story-content p,
  .safety-content p,
  .split-content p,
  .waitlist-content p,
  .section-heading p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .mini-points,
  .safety-list {
    margin-top: 24px;
    gap: 14px;
  }

  .mini-points div,
  .safety-list div {
    padding: 18px;
    text-align: left;
  }

  .feature-grid,
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card,
  .partner-card {
    padding: 24px;
    min-height: auto;
  }

  .stats-row {
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
  }

  .stats-row strong {
    font-size: 34px;
  }

  .split-image img {
    max-width: 270px;
  }

  #riders,
  #drivers,
  .features-section,
  .safety-section,
  .partners-section {
    border-radius: 24px;
  }

  .experience-card {
    height: 560px;
    border-radius: 24px;
  }

  .experience-card::after {
    background: linear-gradient(180deg,rgba(8,16,29,.88),rgba(8,16,29,.58));
  }

  .experience-copy {
    left: 7%;
    right: 7%;
    max-width: none;
  }

  .vision-card,
  .launch-card {
    padding: 46px 24px;
    border-radius: 24px;
  }

  .launch-card p {
    font-size: 16px;
  }

  .waitlist-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .waitlist-form {
    padding: 24px;
    border-radius: 22px;
  }

  .waitlist-form input,
  .waitlist-form select {
    height: 52px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .chatbot-widget {
    right: 14px;
    bottom: 72px;
  }

  .chatbot-toggle {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .chatbot-panel {
    right: -2px;
    bottom: 64px;
    width: calc(100vw - 28px);
  }

  .chatbot-messages {
    height: 260px;
  }

  .footer-brand img {
    width: 125px;
  }

  .footer-links,
  .footer-socials {
    flex-direction: column;
    gap: 16px;
  }

  .site-footer {
    padding: 56px 6%;
  }
}

/* SMALL PHONES */

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .phone-frame {
    width: 250px;
  }

  .section {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }
}