/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #D97757;
  --primary-dark: #C2654A;
  --primary-light: #E8A48D;
  --primary-bg: #FFF0EB;
  --accent: #D97757;
  --accent-light: #E8A48D;
  --dark: #1A1A2E;
  --text: #444444;
  --text-light: #777777;
  --bg: #FFFFFF;
  --bg-gray: #F7F7F7;
  --border: #E8E8E8;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

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

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #FFF0F6 0%, #FFF 40%, #F5F0FF 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -1.5px;
}

.highlight {
  background: linear-gradient(135deg, #D97757, #C2654A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 500px;
}

.hero-cta-group {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-mockup {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateY(-5deg); }
  50% { transform: translateY(-15px) rotateY(0deg); }
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #1A1A2E;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.1) inset;
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #1A1A2E;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #FFFFFF;
  border-radius: 24px;
  height: calc(100% - 12px);
  margin-top: -12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 20px;
  position: relative;
}

.mock-card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.mock-card-behind {
  position: absolute;
  bottom: 12px;
  left: 24px;
  right: 24px;
  z-index: 1;
  opacity: 0.5;
  transform: scale(0.95);
}

.mock-card-image {
  height: 200px;
  background: linear-gradient(135deg, #D97757, #C2654A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.mock-card-image-2 {
  height: 200px;
  background: linear-gradient(135deg, #6C63FF, #9F97FF);
}

.mock-card-body {
  padding: 16px;
}

.mock-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.mock-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.mock-meta {
  font-size: 12px;
  color: var(--text-light);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-gray {
  background: var(--bg-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-title-light {
  color: #fff;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text-light);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

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

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  padding-top: 60px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ===== CITIES ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.city-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.city-emoji {
  font-size: 56px;
  margin-bottom: 16px;
}

.city-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.city-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 16px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.city-tags span {
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.cities-coming-soon {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== FOR HOSTS ===== */
.section-accent {
  background: linear-gradient(135deg, #D97757 0%, #C2654A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.section-accent::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hosts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hosts-description {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.hosts-perks {
  list-style: none;
  margin-top: 28px;
  margin-bottom: 36px;
}

.hosts-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}

.perk-icon {
  font-size: 18px;
}

/* Host mock card */
.host-card-stack {
  display: flex;
  justify-content: center;
}

.host-mock-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  width: 320px;
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}

.host-mock-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.host-mock-avatar {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.host-mock-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

.host-mock-role {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

.host-mock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.host-mock-stat {
  text-align: center;
  background: var(--bg-gray);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
}

.host-mock-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.host-mock-stat-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== DOWNLOAD CTA ===== */
.section-download {
  background: var(--bg-gray);
  text-align: center;
}

.download-inner {
  max-width: 600px;
  margin: 0 auto;
}

.download-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.2;
}

.download-subtitle {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-light);
}

.download-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  transition: var(--transition);
}

.store-badge:hover {
  background: #2A2A4E;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.store-badge svg {
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  text-align: left;
}

.store-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.download-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 15px;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .download-title {
    font-size: 36px;
  }

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

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

  .cities-grid .city-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-inner {
    height: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

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

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

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
    border-radius: 28px;
  }

  .mock-card-image {
    height: 150px;
    font-size: 48px;
  }

  .mock-card-image-2 {
    height: 150px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cities-grid .city-card:last-child {
    max-width: none;
  }

  .hosts-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hosts-perks li {
    justify-content: center;
  }

  .host-mock-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .download-title {
    font-size: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-content strong {
  color: var(--dark);
}

@media (max-width: 768px) {
  .legal-page {
    padding: 90px 0 60px;
  }

  .legal-content h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 19px;
    margin-top: 28px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
