﻿:root {
  --primary: #1D9E75;
  --primary-dark: #0F6E56;
  --primary-light: #E1F5EE;
  --accent: #BA7517;
  --urgent: #E24B4A;
  --text: #0F172A;
  --text-light: #475569;
  --text-muted: #94A3B8;
  --bg: #FFFFFF;
  --bg-soft: #F8FAF9;
  --bg-section: #F1F5F4;
  --border: #E2E8E5;
  --border-light: #EFF2F0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

button { font-family: inherit; cursor: pointer; border: 0; }

/* ============================================ */
/* HEADER */
/* ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  letter-spacing: -0.02em;
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

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

.lang-switcher {
  display: flex;
  background: var(--bg-section);
  border-radius: 999px;
  padding: 3px;
  margin-left: 8px;
}

.lang-btn {
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  padding: 8px;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================ */
/* HERO */
/* ============================================ */

.hero {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(186, 117, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(29, 158, 117, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(29, 158, 117, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(29, 158, 117, 0.05); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title span { display: block; }

.hero-accent {
  color: var(--primary);
  margin-top: 4px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.waitlist-form {
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-input-group {
  display: flex;
  gap: 8px;
  background: white;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.waitlist-input-group input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 14px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}

.waitlist-input-group input::placeholder { color: var(--text-muted); }

.waitlist-input-group button {
  background: var(--primary);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s;
}

.waitlist-input-group button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.waitlist-input-group button:disabled { opacity: 0.6; cursor: not-allowed; }

.waitlist-options {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.interest-pill {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.interest-pill input { display: none; }

.interest-pill:has(input:checked) {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.interest-pill:hover { border-color: var(--primary); }

.waitlist-error {
  background: #FEF2F2;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid #FECACA;
}

.waitlist-success {
  max-width: 560px;
  margin: 0 auto 24px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.success-text {
  font-size: 13px;
  color: var(--text-light);
}

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

.meta-item { text-align: center; }

.meta-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.meta-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================ */
/* SECTIONS */
/* ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================ */
/* CATEGORIES */
/* ============================================ */

.categories { padding: 100px 0; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.cat-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.2s;
}

.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-icon-pink { background: #FBEAF0; color: #993556; }
.cat-icon-blue { background: #E6F1FB; color: #185FA5; }
.cat-icon-amber { background: #FAEEDA; color: #854F0B; }
.cat-icon-purple { background: #EEEDFE; color: #3C3489; }
.cat-icon-coral { background: #FAECE7; color: #993C1D; }
.cat-icon-teal { background: var(--primary-light); color: var(--primary-dark); }

.cat-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.cat-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cat-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================ */
/* HOW */
/* ============================================ */

.how {
  background: var(--bg-section);
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  text-align: center;
  border: 1px solid var(--border-light);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 4px solid var(--bg-section);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.step-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================ */
/* DRIVER */
/* ============================================ */

.driver { padding: 100px 0; }

.driver-card {
  background: linear-gradient(135deg, var(--text) 0%, #1A2438 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.driver-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.driver-content { position: relative; z-index: 1; }

.driver-content .section-label { color: var(--primary); }

.driver-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.driver-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.driver-features {
  list-style: none;
  margin-bottom: 32px;
}

.driver-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.driver-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.btn-driver {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-driver:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.driver-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.driver-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}

.driver-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.driver-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .driver-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
  }
}

/* ============================================ */
/* CITIES */
/* ============================================ */

.cities {
  background: var(--bg-section);
  padding: 60px 0;
  text-align: center;
}

.cities .section-label { margin-bottom: 20px; }

.cities-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.city {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.city-sep { color: var(--text-muted); }

.cities-note {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
  background: var(--text);
  color: white;
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: var(--primary);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-links { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

/* ============================================ */
/* MOBILE */
/* ============================================ */

@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; }
  .hero-meta { gap: 32px; }
  .meta-value { font-size: 26px; }
  
  .waitlist-input-group {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .waitlist-input-group input { padding: 12px 16px; }
  .waitlist-input-group button { justify-content: center; border-radius: var(--radius-sm); }
  
  .categories, .how, .driver { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
  
  .driver-card { padding: 32px 24px; }
  .driver-features li { font-size: 13px; }
}

.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 4px;
  transition: color 0.2s;
}

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

.nav-signup {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-signup:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .nav-signin { display: none; }
  .nav-signup { 
    padding: 8px 16px; 
    font-size: 13px; 
  }
}
