:root {
  --bg: #f4f2ff;
  --bg-dark: #0b0b10;
  --ink: #121016;
  --muted: #5b5a66;
  --accent: #2f6bff;
  --accent-soft: rgba(47, 107, 255, 0.12);
  --card: #ffffff;
  --card-border: rgba(18, 16, 22, 0.08);
  --shadow: 0 18px 50px rgba(32, 29, 57, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, #e8e6ff 100%);
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 60px;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.25);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--card-border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 107, 255, 0.2);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.cta-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-row {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.proof-row strong {
  display: block;
  color: var(--ink);
}

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

.phone {
  width: 280px;
  background: #0c0c12;
  border-radius: 40px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-screen {
  background: #f8f7ff;
  border-radius: 28px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.trip-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(21, 19, 39, 0.08);
}

.thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5b8cff, #88f1c5);
}

.thumb.alt {
  background: linear-gradient(135deg, #f6c676, #ff7b7b);
}

.thumb.third {
  background: linear-gradient(135deg, #7ac8ff, #6b6bff);
}

.trip-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.trip-meta,
.trip-date {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  margin-bottom: 70px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.testimonial {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(25, 22, 43, 0.08);
}

.card h3,
.testimonial p {
  margin-bottom: 8px;
}

.step {
  display: inline-flex;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.feature-row {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(47, 107, 255, 0.1);
}

.cta-box {
  background: #11111d;
  color: #fff;
  padding: 32px;
  border-radius: 22px;
  text-align: center;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 20px;
}

.cta-box.alt {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--card-border);
}

.cta-box.alt p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

summary {
  font-weight: 600;
  cursor: pointer;
}

details {
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
}

.footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .phone {
    width: 100%;
  }

  .cta-box {
    text-align: left;
  }
}
