/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a1a2e;
  --deep:    #16213e;
  --coral:   #e94560;
  --coral-d: #c73650;
  --cream:   #f8f6f2;
  --white:   #ffffff;
  --gray:    #6b7280;
  --gray-lt: #e5e7eb;
  --radius:  8px;
  --max-w:   1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary   { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-d); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-lt);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:not(.btn):hover { color: var(--coral); }
.nav-links .btn { background: var(--navy); color: var(--white); }
.nav-links .btn:hover { background: var(--coral); }

/* ── Hero ── */
.hero {
  padding: 160px 24px 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(233,69,96,0.2);
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section shared ── */
.section {
  padding: 100px 24px;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}
.section--alt { background: var(--cream); }

/* ── How It Works ── */
.steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.step {
  text-align: center;
  padding: 32px 24px;
}
.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--alt .step-icon { background: var(--white); }
.step-icon img { width: 40px; height: 40px; }
.step-number {
  display: inline-block;
  width: 28px; height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── Features split ── */
.features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.features-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(233,69,96,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e94560'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
.features-visual {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.section--alt .features-visual { background: var(--white); }

/* ── Map illustration ── */
.map-illustration {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  position: relative;
}
.map-illustration svg { width: 100%; height: 100%; }

/* ── CTA ── */
.cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%);
  color: var(--white);
}
.cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px;
  text-align: center;
}
.footer-container { max-width: var(--max-w); margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline { margin-bottom: 20px; font-size: 0.9rem; }
.footer-links { margin-bottom: 20px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; opacity: 0.5; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links a:not(.btn) { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-visual { min-height: 260px; padding: 32px; }
  .hero { padding: 140px 24px 80px; }
  .section { padding: 72px 24px; }
}
