@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

:root {
  --bg: #DCEEDB;
  --primary: #458873;
  --card: #EFF6EA;
  --title: #2D2D2D;
  --subtitle: #888888;
  --white: #ffffff;
  --primary-dark: #366b5a;
  --primary-light: #97D4C5;
  --nav-height: 89px;
}

/* ── DARK MODE ── */
[data-theme="dark"] {
  --bg: #1A2822;
  --primary: #5BAA93;
  --card: #223630;
  --title: #E8F0ED;
  --subtitle: #7A9E95;
  --primary-dark: #4A9A82;
  --primary-light: #6ABFAD;
}

[data-theme="dark"] nav {
  background: rgba(26, 40, 34, 0.94);
}

[data-theme="dark"] .mobile-nav {
  background: rgba(26, 40, 34, 0.97);
}

[data-theme="dark"] .hero::before {
  background-image: radial-gradient(circle, rgba(91, 170, 147, 0.22) 1.5px, transparent 1.5px);
}

[data-theme="dark"] .float-pin {
  background: rgba(34, 54, 48, 0.92);
  border-color: rgba(91, 170, 147, 0.25);
}

[data-theme="dark"] .feature-card {
  background: var(--card);
}

[data-theme="dark"] .feature-hero-card,
[data-theme="dark"] .trips-feature-card {
  background: var(--card);
}

[data-theme="dark"] .how {
  background: var(--bg);
}

[data-theme="dark"] .tui-card {
  background: #2A3F38;
}

[data-theme="dark"] .tui-divider {
  background: rgba(91, 170, 147, 0.15);
}

[data-theme="dark"] .tui-trip-row {
  border-color: rgba(91, 170, 147, 0.08);
}

[data-theme="dark"] .stats {
  background: var(--card);
}

[data-theme="dark"] .stat-divider {
  background: rgba(91, 170, 147, 0.15);
}

[data-theme="dark"] .testimonials {
  background: var(--bg);
}

[data-theme="dark"] .testimonial-card {
  background: var(--card);
  border-color: rgba(91, 170, 147, 0.12);
}

[data-theme="dark"] .pricing {
  background: var(--card);
}




[data-theme="dark"] .pricing-card {
  background: var(--bg);
  border-color: rgba(91, 170, 147, 0.15);
}

[data-theme="dark"] .pricing-card.pricing-featured {
  background: var(--primary-dark);
  border-color: transparent;
}

[data-theme="dark"] .pricing-card.pricing-featured .pricing-features li {
  color: rgba(232, 240, 237, 0.9);
}

[data-theme="dark"] .pricing-card.pricing-featured .pricing-period {
  color: rgba(232, 240, 237, 0.7);
}

[data-theme="dark"] .btn-pricing-secondary {
  background: rgba(91, 170, 147, 0.12);
  color: var(--primary);
  border-color: rgba(91, 170, 147, 0.25);
}

[data-theme="dark"] .faq {
  background: var(--bg);
}

[data-theme="dark"] .faq-item {
  border-color: rgba(91, 170, 147, 0.12);
}

[data-theme="dark"] .faq-item summary {
  color: var(--title);
}

[data-theme="dark"] .waitlist {
  background: var(--card);
}

[data-theme="dark"] .waitlist-card {
  background: var(--bg);
  border-color: rgba(91, 170, 147, 0.15);
}

[data-theme="dark"] .waitlist-form input {
  background: var(--card);
  border-color: rgba(91, 170, 147, 0.2);
  color: var(--title);
}

[data-theme="dark"] .waitlist-form input::placeholder {
  color: var(--subtitle);
}

[data-theme="dark"] footer {
  background: #1a3028;
}

[data-theme="dark"] .destinations-strip {
  background: var(--primary-dark);
}

/* Smooth theme transitions */
html {
  scroll-behavior: smooth;
}

body,
nav,
.mobile-nav,
.feature-card,
.feature-hero-card,
.trips-feature-card,
.tui-card,
.stats,
.testimonial-card,
.pricing-card,
.faq-item,
.waitlist-card,
footer {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease;
}

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--bg);
  color: var(--title);
  line-height: 1.7;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(24px, calc(50% - 524px));
  background: rgba(26, 40, 34, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 40, 34, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}


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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-signin {
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}

.nav-signin:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.nav-signin-disabled {
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: default;
  pointer-events: none;
}

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

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 9px;
  padding: 7px 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
  transition: fill 0.2s;
}

.icon-moon { display: block; }
.icon-sun  { display: none; }

[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(54, 107, 90, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0 20px;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0 24px;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 140px max(24px, calc(50% - 524px)) 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(69, 136, 115, 0.18) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-circles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69,136,115,0.12), transparent 70%);
}

.hero-bg-circles span:nth-child(1) { width: 600px; height: 600px; top: -100px; left: -150px; }
.hero-bg-circles span:nth-child(2) { width: 400px; height: 400px; bottom: -80px; right: -80px; }
.hero-bg-circles span:nth-child(3) { width: 250px; height: 250px; top: 40%; left: 60%; }

.float-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(69, 136, 115, 0.2);
  border-radius: 20px;
  padding: 8px 14px 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(69, 136, 115, 0.15);
  white-space: nowrap;
}

.float-pin svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

.pin-1 { top: 18%; left: 6%;  animation: pinFloat1 6s ease-in-out infinite; }
.pin-2 { bottom: 28%; left: 4%; animation: pinFloat2 7.5s ease-in-out infinite; }
.pin-3 { top: 22%; right: 6%; animation: pinFloat3 5.5s ease-in-out infinite; }

@keyframes pinFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes pinFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes pinFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-content {
  max-width: 580px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid rgba(69, 136, 115, 0.2);
  border-radius: 10px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--primary); }

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--title);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h1 em { color: var(--primary); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--subtitle);
  max-width: 480px;
  margin: 0 0 44px;
  font-weight: 400;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(69, 136, 115, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(69, 136, 115, 0.4);
}

.btn-primary svg { width: 20px; height: 20px; fill: var(--white); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: gap 0.2s;
}

.btn-secondary:hover { gap: 12px; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--subtitle);
  font-style: italic;
}

/* ── PHONE MOCKUP ── */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  perspective: 1200px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.phone {
  width: 240px;
  border-radius: 28px;
  border: 2px solid rgba(69, 136, 115, 0.18);
  box-shadow: 0 40px 80px rgba(0,0,0,0.14), 0 8px 20px rgba(69,136,115,0.15), inset 0 0 0 1px rgba(255,255,255,0.4);
  overflow: hidden;
  transform-style: preserve-3d;
}

.phone:nth-child(1) { transform: rotateY(6deg) rotateX(3deg); }
.phone:nth-child(2) { transform: rotateY(-6deg) rotateX(3deg); }

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

/* ── DESTINATIONS STRIP ── */
.destinations-strip {
  background: var(--primary);
  overflow: hidden;
  padding: 13px 0;
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.strip-track span { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.4px; }
.strip-sep { color: rgba(255,255,255,0.35) !important; font-size: 1rem !important; }

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

/* ── STATS ── */
.stats {
  background: var(--card);
  padding: 60px max(24px, calc(50% - 524px));
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--subtitle);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(69, 136, 115, 0.15);
  flex-shrink: 0;
}

/* ── SECTIONS SHARED ── */
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--title);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

h2 em { color: var(--primary); font-style: italic; }

.section-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--subtitle);
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ── FEATURES ── */
.features {
  padding: 100px 24px;
  background: var(--bg);
}

.feature-hero-card {
  max-width: 1000px;
  margin: 0 auto 32px;
  background: var(--card);
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  border: 1px solid rgba(69, 136, 115, 0.15);
  box-shadow: 0 2px 16px rgba(69, 136, 115, 0.07);
}

.feature-hero-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-hero-icon svg { width: 32px; height: 32px; fill: var(--white); }

.feature-tag {
  display: inline-block;
  background: rgba(69, 136, 115, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.feature-tag-optional { background: rgba(180, 130, 30, 0.1); color: #8a6a00; }
[data-theme="dark"] .feature-tag-optional { color: #c8a020; }

.feature-hero-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-hero-text h3 em { color: var(--primary); font-style: italic; }

.feature-hero-text p { font-size: 0.95rem; color: var(--subtitle); line-height: 1.8; max-width: 560px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.feature-card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(69, 136, 115, 0.12);
  box-shadow: 0 2px 12px rgba(69,136,115,0.08), 0 8px 32px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(69,136,115,0.12); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 24px; height: 24px; fill: var(--white); }

.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--title); margin-bottom: 10px; }
.feature-card p  { font-size: 0.9rem; color: var(--subtitle); line-height: 1.7; }

/* ── TRIPS SECTION ── */
.trips-section {
  background: var(--card);
  padding: 100px 24px;
}

/* Trips Feature Card */
.trips-feature-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid rgba(69, 136, 115, 0.15);
  box-shadow: 0 2px 16px rgba(69, 136, 115, 0.07);
}

.trips-feature-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 16px;
  line-height: 1.3;
}

.trips-feature-text h3 em { color: var(--primary); font-style: italic; }
.trips-feature-text p { font-size: 0.95rem; color: var(--subtitle); line-height: 1.8; margin-bottom: 24px; }

.trips-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.trips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--title);
  line-height: 1.5;
}

.trips-list li svg { width: 18px; height: 18px; fill: var(--primary); flex-shrink: 0; margin-top: 1px; }

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

.tui-card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  width: 100%;
  max-width: 290px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(69,136,115,0.1);
}

.tui-card-header { margin-bottom: 20px; }
.tui-card-title { font-size: 1rem; font-weight: 700; color: var(--title); }

.tui-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.tui-setting-info { display: flex; flex-direction: column; gap: 2px; }
.tui-setting-label { font-size: 0.9rem; font-weight: 600; color: var(--title); }
.tui-setting-desc  { font-size: 0.72rem; color: var(--subtitle); }

.tui-toggle {
  width: 46px;
  height: 28px;
  background: #ddd;
  border-radius: 14px;
  position: relative;
  flex-shrink: 0;
}

.tui-toggle-on { background: var(--primary); }

.tui-toggle-thumb {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  transition: transform 0.25s;
}

.tui-toggle-on .tui-toggle-thumb { transform: translateX(18px); }

.tui-divider { height: 1px; background: rgba(69,136,115,0.1); margin: 0 0 16px; }
.tui-section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--subtitle); margin-bottom: 12px; }

.tui-trip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(69,136,115,0.08);
}

.tui-trip-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tui-trip-icon svg { width: 16px; height: 16px; fill: white; }
.tui-trip-meta { display: flex; flex-direction: column; gap: 2px; }
.tui-trip-name  { font-size: 0.88rem; font-weight: 600; color: var(--title); }
.tui-trip-count { font-size: 0.72rem; color: var(--subtitle); }
.tui-trip-add   { padding: 12px 0 0; font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* ── HOW IT WORKS ── */
.how { padding: 100px 24px; background: var(--bg); }

.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }

.step { display: flex; gap: 28px; position: relative; }

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.step-num {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(69,136,115,0.3);
}

.step-body { padding-bottom: 48px; }
.step-body h3 { font-size: 1.05rem; font-weight: 600; color: var(--title); margin-bottom: 8px; }
.step-body p  { font-size: 0.9rem; color: var(--subtitle); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 24px;
  background: var(--card);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(69,136,115,0.12);
  box-shadow: 0 2px 12px rgba(69,136,115,0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(69,136,115,0.12);
}

.testimonial-stars { font-size: 1rem; color: var(--primary); letter-spacing: 2px; }

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--title);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-info strong { font-size: 0.9rem; font-weight: 600; color: var(--title); }
.testimonial-info span  { font-size: 0.78rem; color: var(--subtitle); }

/* ── PRICING ── */
.pricing {
  padding: 100px 24px;
  background: var(--card);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--card);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(69,136,115,0.15);
  box-shadow: 0 2px 16px rgba(69,136,115,0.07);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(69,136,115,0.13); }

.pricing-card.pricing-featured {
  background: var(--primary);
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(69,136,115,0.35);
}

.pricing-best-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-header { margin-bottom: 28px; }

.pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}

.pricing-card.pricing-featured .pricing-header h3 { color: var(--white); }

.pricing-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
  font-style: italic;
}

.pricing-card.pricing-featured .pricing-amount { color: var(--white); }

.pricing-per { font-size: 1.1rem; font-weight: 500; font-style: normal; }

.pricing-period {
  font-size: 0.82rem;
  color: var(--subtitle);
}

.pricing-card.pricing-featured .pricing-period { color: rgba(255,255,255,0.75); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--title);
}

.pricing-card.pricing-featured .pricing-features li { color: rgba(255,255,255,0.92); }

.pricing-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.pricing-card.pricing-featured .pricing-features li svg { fill: rgba(255,255,255,0.9); }

.btn-pricing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(69,136,115,0.08);
  color: var(--primary);
  border: 1.5px solid rgba(69,136,115,0.2);
  transition: background 0.2s, border-color 0.2s;
}

.btn-pricing-secondary:hover { background: rgba(69,136,115,0.14); border-color: var(--primary); }

.pricing-card .btn-primary { width: 100%; justify-content: center; }

.btn-wanderer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  background: #C2773A;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(194, 119, 58, 0.35);
}

.btn-wanderer:hover {
  background: #A8622D;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194, 119, 58, 0.45);
}

.btn-coming-soon {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

/* ── FAQ ── */
.faq {
  padding: 100px 24px;
  background: var(--bg);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(69,136,115,0.12);
}

.faq-item:first-child { border-top: 1px solid rgba(69,136,115,0.12); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--title);
  list-style: none;
  user-select: none;
  transition: color 0.2s;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--primary); }

.faq-chevron {
  width: 22px;
  height: 22px;
  fill: var(--subtitle);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary); }

.faq-item p {
  padding: 0 4px 20px;
  font-size: 0.92rem;
  color: var(--subtitle);
  line-height: 1.8;
}

/* ── WAITLIST ── */
.waitlist {
  padding: 80px 24px 100px;
  background: var(--bg);
}

.waitlist-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 28px;
  padding: 60px 52px;
  border: 1px solid rgba(69,136,115,0.15);
  box-shadow: 0 20px 60px rgba(69,136,115,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(151,212,197,0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.waitlist-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.waitlist-icon svg { width: 28px; height: 28px; fill: var(--white); }

.waitlist-card h2 { margin-bottom: 14px; }

.waitlist-sub {
  font-size: 1rem;
  color: var(--subtitle);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid rgba(69,136,115,0.2);
  border-radius: 12px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--title);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input:focus { border-color: var(--primary); }
.waitlist-form input::placeholder { color: #aaa; }

.waitlist-success {
  display: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 0;
}

/* ── FOOTER ── */
footer {
  background: #1a3028;
  color: rgba(255, 255, 255, 0.7);
  padding: 28px max(24px, calc(50% - 524px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-links {
  grid-column: 2;
  display: flex;
  gap: 28px;
  list-style: none;
  justify-self: center;
}

.footer-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-contact {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
}

.footer-contact strong { font-weight: 600; color: var(--white); }

.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--white); }

.footer-copy { font-size: 0.82rem; grid-column: 3; justify-self: end; text-align: right; color: rgba(255,255,255,0.6); }

/* ── LEGAL PAGES ── */
.legal-header {
  background: var(--card);
  padding: 120px 24px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(69,136,115,0.12);
}

.legal-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-header p  { color: var(--subtitle); font-size: 0.9rem; }

.legal-body { max-width: 740px; margin: 0 auto; padding: 64px 24px 100px; }

.legal-body h2 { text-align: left; font-size: 1.2rem; margin-top: 44px; margin-bottom: 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p  { color: var(--subtitle); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.legal-body ul { margin: 0 0 16px 24px; color: var(--subtitle); font-size: 0.95rem; line-height: 1.8; }
.legal-body a  { color: var(--primary); text-decoration: underline; }

.legal-body .contact-box {
  background: var(--card);
  border: 1px solid rgba(69,136,115,0.15);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 40px;
}

.legal-body .contact-box p { margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { gap: 40px; }
  .trips-feature-card { gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 85px; }

  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 120px 24px 64px;
  }

  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 44px; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }
  .float-pin { display: none; }

  .hero-mockup { gap: 16px; }
  .phone { width: 160px; border-radius: 20px; }
  .phone:nth-child(1) { transform: rotateY(4deg) rotateX(2deg) translateY(10px); }
  .phone:nth-child(2) { transform: rotateY(-4deg) rotateX(2deg) translateY(0px); }

  .stats { padding: 48px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 8px; }
  .stat { flex: 1 1 40%; padding: 16px; }
  .stat-divider { display: none; }

  .feature-hero-card { flex-direction: column; padding: 32px 24px; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .trips-feature-card { grid-template-columns: 1fr; gap: 36px; padding: 32px 24px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card { padding: 32px 28px; }

  .waitlist-card { padding: 40px 28px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input,
  .waitlist-form .btn-primary { width: 100%; justify-content: center; }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 32px 24px;
    gap: 12px;
    text-align: center;
  }

  .footer-contact { grid-column: 1; justify-self: center; align-items: center; }
  .footer-links { grid-column: 1; }
  .footer-copy { grid-column: 1; justify-self: center; }
}
