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

:root {
  --cream:   #F7F4EE;
  --cream2:  #EDE9E0;
  --orange:  #FF8C42;
  --orange2: #E5722E;
  --green:   #22C55E;
  --text:    #1A1A1A;
  --muted:   #6B6560;
  --card-bg: #FFFFFF;
  --radius:  20px;
  --shadow:  0 4px 32px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: "Jost", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  line-height: 1.15;
}

/* ── Navbar ───────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,238,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-brand span {
  font-family: "Jost", "Futura", "Century Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.nav-download:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.nav-download svg { width: 16px; height: 16px; fill: #fff; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 80px 6vw 0;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream2);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 16px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: bold;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 22px;
  font-style: normal;
}

.hero p {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,66,0.35);
}

.btn-primary svg { width: 20px; height: 20px; fill: #fff; }

.btn-ghost {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--text); }

.hero-phone {
  position: relative;
  display: inline-block;
}

.hero-phone img {
  width: min(360px, 72vw);
  display: block;
  margin: 0 auto;
}


/* ── Features ─────────────────────────────────────────────── */
.features {
  padding: 100px 6vw;
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.features h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 60px;
}

.futura-title {
  font-weight: 800;
  letter-spacing: 1px;
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.11);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.feature-card:nth-child(1) .feature-icon { background: #FFF3E8; }
.feature-card:nth-child(2) .feature-icon { background: #F0FDF4; }
.feature-card:nth-child(3) .feature-icon { background: #F5F3FF; }

.feature-card h3 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  text-align: center;
}

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

/* ── How It Works ─────────────────────────────────────────── */
.how {
  padding: 80px 6vw 100px;
  background: var(--cream2);
}

.how h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--cream2);
}

.step:nth-child(2) .step-num { background: var(--orange); }
.step:nth-child(3) .step-num { background: var(--green); }

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta {
  padding: 100px 6vw;
  text-align: center;
}

.cta h2 {
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 16px;
}

.cta p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 36px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
}

.footer-brand span {
  font-family: "Jost", "Futura", "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 680px) {
  .hero { padding-top: 56px; }
  .hero h1 { letter-spacing: -1.2px; }
  .steps { flex-direction: column; gap: 40px; }
  .steps::before { display: none; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
