/* ============================================================
   HAVEN — Design System
   ============================================================ */

:root {
  --bg-dark: #080c14;
  --bg-card: #0d1525;
  --bg-card2: #111827;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);

  --accent: #4f8ef7;
  --accent2: #7c3aed;
  --accent-grad: linear-gradient(135deg, #4f8ef7, #7c3aed);
  --accent-glow: rgba(79,142,247,0.25);

  --gold: #f59e0b;
  --emerald: #10b981;
  --coral: #f97316;

  --text-1: #f0f4ff;
  --text-2: #94a3b8;
  --text-3: #64748b;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent-grad);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  color: var(--text-1);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1px solid rgba(79,142,247,0.4);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(79,142,247,0.1);
  border-color: var(--accent);
}

.btn-large { padding: 18px 40px; font-size: 16px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0;
}
.section-header p {
  color: var(--text-2);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light h2, .section-header.light { color: var(--text-1); }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,12,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-icon {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
}
.logo-text { color: var(--text-1); }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-1); }

.nav-cta { display: flex; gap: 12px; align-items: center; margin-left: auto; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 {
  width: 600px; height: 600px;
  background: rgba(79,142,247,0.12);
  top: -200px; left: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.1);
  bottom: -100px; right: -150px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: rgba(249,115,22,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.grid-overlay {
  inset: 0;
  position: absolute;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-2);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* SEARCH CARD */
.search-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 12px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.search-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 8px;
  margin-bottom: 12px;
}
.search-field {
  flex: 1;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.search-field input,
.search-field select {
  background: none;
  border: none;
  outline: none;
  color: var(--text-1);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
}
.search-field select option { background: var(--bg-card); }
.search-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--accent-grad);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover { transform: scale(1.02); box-shadow: 0 8px 24px var(--accent-glow); }

.search-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 4px 8px;
}
.tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-2);
}
.tag:hover, .tag.active {
  background: rgba(79,142,247,0.12);
  border-color: rgba(79,142,247,0.4);
  color: var(--accent);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO SCROLL */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 10px;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.trust-item span {
  font-size: 12px;
  color: var(--text-3);
}

/* ============================================================
   LISTINGS
   ============================================================ */
.listings-section { padding: 100px 0; }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.listing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.listing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.listing-card.featured { border-color: rgba(79,142,247,0.3); }

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.listing-card:hover .card-img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.card-badge.verified {
  background: rgba(16,185,129,0.9);
  color: #fff;
  backdrop-filter: blur(8px);
}
.card-badge-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(8,12,20,0.85);
  color: var(--text-1);
  backdrop-filter: blur(8px);
}
.card-featured-label {
  position: absolute;
  top: 12px;
  right: 48px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(249,115,22,0.9);
  color: #fff;
  backdrop-filter: blur(8px);
}
.card-save {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,12,20,0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.card-save:hover { background: rgba(239,68,68,0.8); }

.card-body { padding: 20px; }
.card-location { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.card-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.card-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.card-rating { font-size: 13px; font-weight: 600; color: var(--gold); }
.card-rating span { color: var(--text-3); font-weight: 400; }
.card-tag-exp {
  font-size: 12px;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.listings-cta { text-align: center; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--bg-card);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tabs-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.tabs {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
}
.tab {
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  background: none;
  color: var(--text-3);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab.active {
  background: var(--accent-grad);
  color: #fff;
}

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

.step-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   AI PRICING
   ============================================================ */
.ai-section { padding: 100px 0; }

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

.ai-content h2 { font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; margin: 12px 0 20px; line-height: 1.15; }
.ai-content p { color: var(--text-2); font-size: 16px; margin-bottom: 28px; line-height: 1.7; }

.ai-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.ai-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* PRICING CARD */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}
.pc-icon { font-size: 20px; }
.pc-live {
  margin-left: auto;
  font-size: 12px;
  color: var(--emerald);
  font-weight: 600;
}
.pricing-header-sub { font-size: 12px; color: var(--text-3); margin-bottom: 24px; }

.price-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.price-row.highlighted { background: rgba(79,142,247,0.07); }
.price-row.peak { background: rgba(249,115,22,0.08); }
.price-day { width: 32px; font-size: 12px; font-weight: 600; color: var(--text-3); flex-shrink: 0; }
.price-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.price-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--accent-grad);
  transition: width 1s ease;
}
.price-row.peak .price-bar { background: linear-gradient(90deg, var(--coral), var(--gold)); }
.price-val { font-size: 13px; font-weight: 700; color: var(--text-1); width: 60px; text-align: right; flex-shrink: 0; }

.pricing-insight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-2);
}
.insight-icon { font-size: 16px; flex-shrink: 0; }
.pricing-insight strong { color: var(--gold); }

/* ============================================================
   NOMAD SECTION
   ============================================================ */
.nomad-section {
  background: var(--bg-card);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nomad-tag { color: var(--gold); border-color: rgba(245,158,11,0.3); }

.nomad-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.city-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}
.city-card.active { border-color: var(--accent); }
.city-card:hover { transform: scale(1.02); }
.city-img { height: 200px; }
.city-info {
  padding: 20px;
  background: var(--bg-card2);
}
.city-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.city-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}

.nomad-perks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.perk {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.perk:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.perk span { font-size: 28px; display: block; margin-bottom: 10px; }
.perk p { font-size: 12px; color: var(--text-2); font-weight: 500; }

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section { padding: 100px 0; }

.exp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-content h2 { font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; margin: 12px 0 20px; line-height: 1.15; }
.exp-content p { color: var(--text-2); margin-bottom: 28px; font-size: 16px; }

.exp-list { display: flex; flex-direction: column; gap: 16px; }
.exp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.exp-item:hover { border-color: var(--border-hover); background: var(--surface-hover); }
.exp-emoji { font-size: 28px; flex-shrink: 0; }
.exp-item > div { flex: 1; }
.exp-item strong { display: block; font-size: 15px; font-weight: 600; }
.exp-item span { font-size: 12px; color: var(--text-3); }
.exp-price { font-size: 15px; font-weight: 700; color: var(--accent); white-space: nowrap; }

.exp-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.exp-photo {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.exp-photo:hover { transform: scale(1.02); }
.p1 { height: 220px; }
.p2 { height: 160px; }
.p3 { height: 160px; }
.p4 { height: 220px; }

/* ============================================================
   HOST SECTION
   ============================================================ */
.host-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.host-bg { position: absolute; inset: 0; }
.host-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.08);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -200px; right: -200px;
}

.host-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.host-content h2 { font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; margin: 12px 0 20px; line-height: 1.2; }
.host-content p { color: var(--text-2); margin-bottom: 28px; font-size: 16px; }

.host-earnings {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
}
.earning-compare {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.earn-col { display: flex; flex-direction: column; gap: 4px; }
.earn-label { font-size: 12px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.earn-amount { font-size: 22px; font-weight: 700; }
.earn-low { color: var(--text-2); text-decoration: line-through; opacity: 0.6; }
.earn-high { color: var(--emerald); }
.earn-arrow { font-size: 24px; color: var(--accent); }
.earn-badge {
  margin-left: auto;
  padding: 8px 16px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  color: var(--emerald);
}

.host-note { font-size: 13px; color: var(--text-3); margin-top: 12px; }

.host-steps { display: flex; flex-direction: column; gap: 0; padding-top: 20px; }
.hs-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.hs-step:last-child { border-bottom: none; }
.hs-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-grad);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  color: white;
}
.hs-step strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hs-step span { font-size: 13px; color: var(--text-3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 100px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.testimonial-card.featured-t { border-color: rgba(79,142,247,0.3); background: rgba(79,142,247,0.04); }
.t-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; font-weight: 700; }
.t-author span { font-size: 12px; color: var(--text-3); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.cta-bg { position: absolute; inset: 0; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.c1 { width: 500px; height: 500px; background: rgba(79,142,247,0.12); top: -200px; left: -100px; }
.c2 { width: 400px; height: 400px; background: rgba(124,58,237,0.1); bottom: -150px; right: -100px; }

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 800; margin-bottom: 16px; line-height: 1.1; }
.cta-content p { font-size: 18px; color: var(--text-2); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cta-cities { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--text-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-3); font-size: 14px; margin: 12px 0 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-2); margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: var(--text-3); transition: color var(--transition); }
.footer-links a:hover { color: var(--text-1); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ai-grid, .exp-split, .host-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nomad-perks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .listings-grid { grid-template-columns: 1fr; }
  .nomad-cities { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .nomad-perks { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .search-row { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .trust-items { gap: 16px; }
  .exp-photo-grid { grid-template-columns: 1fr; }
  .p1, .p2, .p3, .p4 { height: 180px; }
  .earning-compare { flex-direction: column; align-items: flex-start; }
  .earn-badge { margin-left: 0; }
}

@media (max-width: 480px) {
  .nomad-perks { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}
