:root {
  --bg: #FDF6EC;
  --fg: #2A1F1A;
  --accent: #E8875A;
  --accent-dark: #C46B45;
  --accent-light: #FBE0CE;
  --muted: #9A7B6B;
  --surface: #F7EDDF;
  --border: rgba(196,107,69,0.2);
  --shadow: rgba(42,31,26,0.08);

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1100px;
  --section-py: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-dashboard-btn {
  background: var(--accent);
  color: white !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}
.nav-dashboard-btn:hover { background: var(--accent-dark) !important; color: white !important; }

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(232,135,90,0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(232,135,90,0.45);
}
.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-stack {
  position: relative;
  height: 280px;
}
.mock-card {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 8px 40px var(--shadow);
}
.mock-card-1 {
  width: 240px;
  height: 160px;
  background: white;
  border: 1px solid var(--border);
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px;
}
.mock-card-2 {
  width: 220px;
  height: 145px;
  background: linear-gradient(135deg, var(--accent-light), #F9D9C4);
  bottom: 20px;
  left: 50px;
  z-index: 2;
  padding: 18px;
}
.mock-card-3 {
  width: 200px;
  height: 130px;
  background: var(--accent);
  bottom: 40px;
  left: 100px;
  z-index: 1;
  padding: 16px;
}
.mock-card-inner { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.mock-card-3 .mock-card-inner { color: white; }
.mock-card-msg { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.mock-card-from { font-size: 12px; opacity: 0.75; margin-top: 6px; font-family: var(--font-display); font-style: italic; }
.mock-card-date { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--accent-dark); }
.mock-card-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.mock-reminder-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.reminder-icon { font-size: 18px; }
.reminder-title { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.reminder-sub { font-size: 12px; color: var(--muted); }
.mock-card-preview { background: var(--surface); border-radius: 8px; padding: 10px; display: flex; gap: 10px; align-items: center; }
.preview-art { width: 40px; height: 40px; border-radius: 6px; background: linear-gradient(135deg, #F9C4A8, #E8875A); flex-shrink: 0; }
.preview-text { font-size: 11px; color: var(--muted); }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}
.stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROBLEM ── */
.problem { padding: var(--section-py) 0; }
.problem-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.problem-label, .section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 28px;
}
.problem-headline em { font-style: italic; color: var(--accent); }
.problem-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}
.problem-quote {
  position: relative;
  padding: 32px 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  max-width: 620px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  position: relative;
  z-index: 1;
  padding-left: 16px;
}
.problem-quote blockquote strong { font-style: normal; font-weight: 600; color: var(--accent); }

/* ── FEATURES ── */
.features { padding: var(--section-py) 0; background: white; }
.features-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section-header { margin-bottom: 56px; }
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--shadow); }
.feature-card-accent {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 100%);
  border-color: rgba(232,135,90,0.3);
}
.feature-icon-wrap {
  margin-bottom: 20px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}
.feature-card-accent .feature-icon { color: var(--accent-dark); }
.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}
.feature-detail {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-display);
}

/* ── HOW IT WORKS ── */
.howitworks { padding: var(--section-py) 0; }
.howitworks-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 2px 1fr 320px;
  gap: 0 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  padding-top: 4px;
}
.step-connector {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-light), var(--accent));
  border-radius: 2px;
}
.step-content { padding-top: 8px; }
.step-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
}
.step-visual { padding-top: 8px; }

/* Step mocks */
.step-mock {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}
.mock-contact { display: flex; align-items: center; gap: 12px; }
.contact-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info { flex: 1; }
.contact-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.contact-date { font-size: 12px; color: var(--muted); }
.contact-badge {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.step-mock-notification {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px var(--shadow);
  overflow: hidden;
}
.notif-header {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.notif-body { padding: 20px; }
.notif-emoji { font-size: 28px; margin-bottom: 8px; }
.notif-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--fg); }
.notif-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.notif-preview {
  background: var(--surface);
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--fg);
  margin: 16px 0;
  border-left: 3px solid var(--accent);
}
.notif-actions { display: flex; gap: 8px; }
.notif-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--bg);
  text-align: center;
}
.notif-btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.step-mock-delivery {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}
.delivery-card-art {
  height: 100px;
  background: linear-gradient(135deg, var(--accent-light) 0%, #F9C4A8 50%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-art-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.delivery-card-text { padding: 20px; }
.delivery-from { font-size: 11px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.delivery-msg {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
}
.delivery-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 56px;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent-light);
  line-height: 1;
  position: absolute;
  top: 24px;
  left: 32px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: var(--fg);
  padding-left: 48px;
  position: relative;
  z-index: 1;
}
.testimonial-context {
  font-size: 13px;
  color: var(--muted);
  padding-left: 48px;
  margin-top: 16px;
}
.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mstat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.mstat:last-child { border-right: none; }
.mstat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.mstat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing { padding: var(--section-py) 0; }
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-deco {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border-radius: 2px;
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.closing-actions { margin-top: 48px; }

/* ── FOOTER ── */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--muted); margin-bottom: 16px; }
.footer-meta { font-size: 12px; color: var(--muted); opacity: 0.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1px 1fr; }
  .step-visual { display: none; }
  .market-stats { grid-template-columns: 1fr 1fr; }
  .mstat { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  :root { --section-py: 72px; }
  .nav-links { display: none; }
  .hero { padding: 60px 0 40px; }
  .hero-headline { font-size: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1px 1fr; }
  .step-title { font-size: 22px; }
  .market-stats { grid-template-columns: 1fr 1fr; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-text { font-size: 18px; padding-left: 0; }
  .testimonial-context { padding-left: 0; }
  .closing-headline { font-size: 36px; }
}