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

:root {
  --bg:        #ECE9E3;
  --bg2:       #E4E1DA;
  --surface:   #F8F6F1;
  --sunken:    #E6E1D8;
  --ink:       #1A1A1A;
  --ink2:      #555555;
  --ink3:      #888888;
  --border:    #D4D0C8;
  --gold:      #C9A84C;
  --gold-lt:   #F0E6C8;
  --white:     #FFFDF9;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08), 0 1px 0 rgba(255,255,255,.7);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06), 0 1px 0 rgba(255,255,255,.8);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08), 0 1px 0 rgba(255,255,255,.9);
  --shadow-xl: 0 40px 80px rgba(0,0,0,.18), 0 12px 32px rgba(0,0,0,.10);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll reveal base ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── Nav ────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(236,233,227,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,208,200,.5);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-box {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.nav-logo-box svg { width: 18px; height: 18px; }
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -.3px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--ink2);
  text-decoration: none; letter-spacing: .2px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  height: 38px; padding: 0 20px; border-radius: var(--r-sm);
  background: var(--ink); color: var(--surface) !important;
  font-weight: 500 !important; font-size: 13px !important;
  display: flex; align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.25) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ── Hero ───────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,26,26,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .25;
}
.hero-bg-orb.orb1 { width: 500px; height: 500px; background: #D4CEC4; top: -100px; right: -80px; }
.hero-bg-orb.orb2 { width: 350px; height: 350px; background: #C9A84C; bottom: 0; left: -60px; opacity: .12; }

.hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  color: var(--ink3); text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .6s .2s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -2px; color: var(--ink);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .7s .35s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-title em { font-style: italic; color: var(--ink2); }

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.65;
  color: var(--ink2); max-width: 440px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .7s .5s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s .65s cubic-bezier(.22,1,.36,1) forwards;
}

.btn-primary {
  height: 54px; padding: 0 32px; border-radius: var(--r-md);
  background: var(--ink); color: var(--surface);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: .3px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.14);
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.28), 0 4px 8px rgba(0,0,0,.14); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  height: 54px; padding: 0 28px; border-radius: var(--r-md);
  background: var(--surface); color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--border); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--white); }

.hero-download-hint {
  font-size: 11px; color: var(--ink3); font-weight: 400; letter-spacing: .2px;
  margin-top: 12px;
  opacity: 0; animation: fadeUp .7s .8s cubic-bezier(.22,1,.36,1) forwards;
}

/* Phone mockup */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: fadeUp .9s .4s cubic-bezier(.22,1,.36,1) forwards;
}
.phone-mockup {
  width: 260px; height: 540px; border-radius: 38px;
  background: var(--surface);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.8);
  position: relative; overflow: hidden;
  border: 1px solid rgba(212,208,200,.6);
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 20px; background: var(--ink);
  border-radius: 10px; z-index: 2;
}
.phone-screen { position: absolute; inset: 0; padding: 48px 18px 18px; }
.phone-screen-bg {
  position: absolute; inset: 0;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(26,26,26,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,.025) 1px, transparent 1px);
  background-size: 16px 16px;
}
.phone-ui { position: relative; z-index: 1; }
.phone-ui-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.phone-ui-greeting { font-size: 8px; font-weight: 600; letter-spacing: 3px; color: var(--ink3); text-transform: uppercase; }
.phone-ui-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.phone-ui-card {
  background: var(--surface); border-radius: 14px; padding: 14px;
  box-shadow: var(--shadow-md); margin-bottom: 10px;
}
.phone-ui-card-label { font-size: 7px; font-weight: 600; letter-spacing: 2.5px; color: var(--ink3); text-transform: uppercase; margin-bottom: 4px; }
.phone-ui-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.3px; }
.phone-ui-card-sub { font-size: 8px; color: var(--ink2); margin-top: 2px; font-weight: 300; }
.phone-ui-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.phone-ui-stat {
  background: var(--sunken); border-radius: 10px; padding: 10px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.06), 0 1px 0 rgba(255,255,255,.6);
}
.phone-ui-stat-n { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.phone-ui-stat-l { font-size: 7px; font-weight: 500; letter-spacing: 1.5px; color: var(--ink3); text-transform: uppercase; margin-top: 2px; }
.phone-ui-appointments { background: var(--surface); border-radius: 14px; padding: 12px; box-shadow: var(--shadow-sm); }
.phone-ui-appt-title { font-size: 7px; font-weight: 600; letter-spacing: 2.5px; color: var(--ink3); text-transform: uppercase; margin-bottom: 8px; }
.phone-ui-appt-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.phone-ui-appt-row:last-child { border-bottom: none; }
.phone-ui-appt-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.phone-ui-appt-dot.gold { background: var(--gold); }
.phone-ui-appt-info { flex: 1; }
.phone-ui-appt-name { font-size: 8px; font-weight: 500; color: var(--ink); }
.phone-ui-appt-time { font-size: 7px; color: var(--ink3); }
.phone-ui-appt-price { font-size: 8px; font-weight: 600; color: var(--ink); }

/* floating cards */
.hero-float-card {
  position: absolute;
  background: var(--surface); border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,208,200,.5);
}
.float-card-1 { top: 60px; right: -30px; min-width: 130px; }
.float-card-2 { bottom: 80px; left: -40px; min-width: 120px; }
.float-card-label { font-size: 8px; font-weight: 600; letter-spacing: 2.5px; color: var(--ink3); text-transform: uppercase; margin-bottom: 4px; }
.float-card-value { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.float-card-sub { font-size: 9px; color: var(--ink2); margin-top: 2px; }
.float-card-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 50px; background: #E8F5E9; font-size: 9px; font-weight: 600; color: #2E7D32; margin-top: 6px; }
.float-card-badge::before { content: '▲'; font-size: 7px; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.phone-mockup-wrap { position: relative; animation: float 5s ease-in-out infinite; }
.float-card-1 { animation: float2 4s 1s ease-in-out infinite; }
.float-card-2 { animation: float 4.5s .5s ease-in-out infinite; }

/* ── Section base ───────────────────────────────────────────────────── */
section { padding: 100px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 5px;
  color: var(--ink3); text-transform: uppercase; margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  color: var(--ink); letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; font-weight: 300; line-height: 1.65;
  color: var(--ink2); max-width: 520px;
}
.section-header { margin-bottom: 64px; }

/* ── Features ───────────────────────────────────────────────────────── */
#features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,208,200,.4);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card.featured {
  background: var(--ink); color: var(--surface);
  grid-row: span 1;
}
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--sunken);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.07), 0 1px 0 rgba(255,255,255,.7);
}
.feature-card.featured .feature-icon { background: rgba(255,255,255,.1); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 700; color: var(--ink);
  letter-spacing: -.3px; margin-bottom: 10px;
}
.feature-card.featured .feature-title { color: var(--surface); }
.feature-desc { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--ink2); }
.feature-card.featured .feature-desc { color: rgba(248,246,241,.7); }
.feature-tag {
  display: inline-block; margin-top: 16px;
  padding: 4px 12px; border-radius: 50px;
  background: var(--sunken); font-size: 10px;
  font-weight: 600; letter-spacing: 1.5px; color: var(--ink3);
  text-transform: uppercase;
}
.feature-card.featured .feature-tag { background: rgba(255,255,255,.12); color: rgba(248,246,241,.7); }

/* ── How it works ───────────────────────────────────────────────────── */
#how { background: var(--bg2); }

.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: none; }
.how-step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
  transition: background .3s, color .3s, box-shadow .3s;
}
.how-step.active .how-step-num {
  background: var(--ink); color: var(--surface);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.how-step-content {}
.how-step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: -.2px; margin-bottom: 6px;
}
.how-step-desc { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--ink2); }

.how-visual {
  position: relative; display: flex; justify-content: center;
}
.how-phone {
  width: 240px; height: 500px; border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.8);
  overflow: hidden; position: relative;
  border: 1px solid rgba(212,208,200,.6);
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.how-phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 18px; background: var(--ink); border-radius: 9px; z-index: 2;
}
.how-screen { position: absolute; inset: 0; padding: 42px 16px 16px; }
.how-screen-bg { position: absolute; inset: 0; background: var(--bg); }
.how-screen-content { position: relative; z-index: 1; }

/* step screens */
.how-step-screen { display: none; }
.how-step-screen.active { display: block; }
.how-screen-title { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.3px; margin-bottom: 14px; }
.how-input-mock {
  height: 38px; background: var(--sunken); border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.07), 0 1px 0 rgba(255,255,255,.6);
  margin-bottom: 10px; padding: 0 12px;
  display: flex; align-items: center;
  font-size: 9px; color: var(--ink3);
}
.how-slot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.how-slot {
  height: 34px; border-radius: 9px; border: 1px solid var(--border);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: background .2s;
}
.how-slot.selected { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.how-confirm-card { background: var(--sunken); border-radius: 12px; padding: 14px; box-shadow: inset 0 2px 4px rgba(0,0,0,.06); }
.how-confirm-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 9px; }
.how-confirm-row:last-child { border-bottom: none; }
.how-confirm-label { color: var(--ink3); font-weight: 400; }
.how-confirm-value { color: var(--ink); font-weight: 600; }
.how-success { text-align: center; padding: 20px 0; }
.how-success-icon { width: 48px; height: 48px; border-radius: 50%; background: #E8F5E9; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(46,125,50,.15); }
.how-success-title { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.how-success-sub { font-size: 9px; color: var(--ink2); font-weight: 300; line-height: 1.5; }

/* ── Pricing ────────────────────────────────────────────────────────── */
#pricing { background: var(--bg); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: var(--surface); border-radius: var(--r-lg); padding: 36px 28px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(212,208,200,.4);
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: var(--ink); border-color: var(--ink);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: var(--gold); color: var(--ink);
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--ink);
  letter-spacing: -.3px; margin-bottom: 8px;
}
.pricing-card.popular .pricing-name { color: var(--surface); }
.pricing-desc { font-size: 12px; font-weight: 300; color: var(--ink2); margin-bottom: 24px; line-height: 1.55; }
.pricing-card.popular .pricing-desc { color: rgba(248,246,241,.65); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.pricing-currency { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 4px; }
.pricing-card.popular .pricing-currency { color: var(--surface); }
.pricing-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px; font-weight: 900; color: var(--ink);
  letter-spacing: -2px; line-height: 1;
}
.pricing-card.popular .pricing-amount { color: var(--surface); }
.pricing-period { font-size: 12px; color: var(--ink3); font-weight: 300; }
.pricing-card.popular .pricing-period { color: rgba(248,246,241,.5); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.pricing-card.popular .pricing-divider { border-color: rgba(255,255,255,.12); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 400; color: var(--ink2); }
.pricing-card.popular .pricing-features li { color: rgba(248,246,241,.8); }
.pricing-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--sunken);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
}
.pricing-card.popular .pricing-check { background: rgba(255,255,255,.12); }
.pricing-check svg { width: 10px; height: 10px; }
.btn-pricing {
  height: 48px; border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; border: none; text-align: center;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .18s, box-shadow .18s;
}
.btn-pricing:hover { transform: translateY(-2px); }
.btn-pricing-light {
  background: var(--sunken); color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-pricing-light:hover { box-shadow: var(--shadow-md); }
.btn-pricing-dark {
  background: var(--surface); color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-pricing-dark:hover { box-shadow: 0 8px 28px rgba(0,0,0,.28); }

/* ── Download ───────────────────────────────────────────────────────── */
#download {
  background: var(--ink);
  padding: 100px 40px;
}
.download-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.download-eyebrow { color: rgba(248,246,241,.4); }
.download-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 900;
  color: var(--surface); letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 16px;
}
.download-sub { font-size: 15px; font-weight: 300; color: rgba(248,246,241,.6); line-height: 1.65; margin-bottom: 40px; }
.download-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.download-store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.download-store-btn:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
}
.download-store-icon { width: 28px; height: 28px; }
.download-store-info {}
.download-store-sub { font-size: 9px; color: rgba(248,246,241,.45); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.download-store-name { font-size: 15px; font-weight: 500; color: var(--surface); margin-top: 1px; letter-spacing: -.2px; }
.download-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.dl-stat-n { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 900; color: var(--surface); letter-spacing: -1px; }
.dl-stat-l { font-size: 11px; font-weight: 400; color: rgba(248,246,241,.4); letter-spacing: .5px; margin-top: 2px; }

.download-visual { display: flex; justify-content: center; gap: 20px; align-items: flex-end; }
.dl-phone {
  border-radius: 32px; overflow: hidden;
  background: var(--surface); position: relative;
  border: 1px solid rgba(212,208,200,.2);
}
.dl-phone-1 { width: 180px; height: 380px; box-shadow: 0 32px 64px rgba(0,0,0,.4); }
.dl-phone-2 { width: 160px; height: 340px; box-shadow: 0 24px 48px rgba(0,0,0,.35); margin-bottom: 20px; opacity: .8; }
.dl-phone-screen { position: absolute; inset: 0; background: var(--bg); }
.dl-phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 54px; height: 16px; background: #1a1a1a; border-radius: 8px; z-index: 2;
}
.dl-phone-content { position: absolute; inset: 0; padding: 36px 14px 14px; z-index: 1; }
.dl-top-label { font-size: 7px; font-weight: 600; letter-spacing: 3px; color: var(--ink3); text-transform: uppercase; margin-bottom: 10px; }
.dl-big-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 900; color: var(--ink); line-height: 1.1; letter-spacing: -.5px; margin-bottom: 14px; }
.dl-mini-card { background: var(--surface); border-radius: 10px; padding: 10px; box-shadow: var(--shadow-sm); margin-bottom: 8px; }
.dl-mini-row { display: flex; justify-content: space-between; align-items: center; }
.dl-mini-name { font-size: 8px; font-weight: 500; color: var(--ink); }
.dl-mini-time { font-size: 7px; color: var(--ink3); }
.dl-mini-price { font-size: 8px; font-weight: 600; color: var(--ink); }
.dl-slot-row { display: flex; gap: 6px; margin-top: 10px; }
.dl-slot { height: 28px; border-radius: 7px; background: var(--sunken); flex: 1; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 500; color: var(--ink); box-shadow: inset 0 1px 3px rgba(0,0,0,.06); }
.dl-slot.sel { background: var(--ink); color: var(--surface); }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 40px 40px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-box {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.footer-logo-box svg { width: 16px; height: 16px; }
.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.footer-tagline { font-size: 13px; font-weight: 300; color: var(--ink3); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--ink); text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 400; color: var(--ink2); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--ink3); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.footer-social:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.footer-social svg { width: 14px; height: 14px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(236,233,227,.97);
    backdrop-filter: blur(16px);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a {
    padding: 14px 0; border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .nav-links.open .nav-cta {
    margin-top: 12px; justify-content: center; border-radius: var(--r-sm);
    height: 48px;
  }
  .nav-hamburger { display: flex; }

  section, #download { padding: 72px 20px; }
  #hero { padding: 100px 20px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; height: 460px; }
  .float-card-1 { right: -10px; }
  .float-card-2 { left: -10px; }

  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .download-inner { grid-template-columns: 1fr; }
  .download-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .download-btns { flex-direction: column; }
  .download-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
}
