:root {
  --bg: #f3eee6;
  --bg-deep: #e7dfd3;
  --surface: #fbf8f3;
  --ink: #1c140f;
  --ink-soft: #4a3c32;
  --muted: #6d5e52;
  --line: rgba(28, 20, 15, 0.1);
  --accent: #8b3a2f;
  --accent-2: #6e2c24;
  --accent-soft: rgba(139, 58, 47, 0.12);
  --radius: 6px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --max: 1080px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 230, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
}

.logo-text span { color: var(--accent); }

.nav-note { margin: 0; color: var(--muted); font-size: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 0.7rem 1.1rem;
}
[hidden],
.btn[hidden] {
  display: none !important;
}

.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.9rem; }
.btn-lg { padding: 0.95rem 1.35rem; font-size: 1.05rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-primary:disabled { opacity: 0.6; cursor: wait; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }

.hero {
  padding: 2.5rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}

.hero-lead, .lead {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.price-now { font-size: 2rem; font-weight: 800; }
.price-compare {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 14rem;
  line-height: 1.25;
}
.price-note { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.92rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1rem; }

.checks { margin: 0; padding: 0; list-style: none; color: var(--ink-soft); }
.checks li { padding: 0.2rem 0 0.2rem 1.2rem; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: 0.7rem; width: 0.5rem; height: 0.5rem; background: var(--accent); border-radius: 1px; }

.order-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.15rem;
}

.order-card h2 { margin: 0 0 0.75rem; font-size: 1.15rem; }

.drop {
  border: 1px dashed rgba(28, 20, 15, 0.28);
  border-radius: 8px;
  padding: 1.1rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  margin-bottom: 0.85rem;
}

.drop.drag, .drop:hover { border-color: var(--accent); background: var(--accent-soft); }
.drop img { margin: 0 auto 0.5rem; max-height: 180px; border-radius: 4px; }
.drop .hint { margin: 0; color: var(--muted); font-size: 0.9rem; }
.field { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.8rem; }
.field span { font-size: 0.85rem; color: var(--muted); }
.field input[type="email"] {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.agree { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.85rem; color: var(--muted); margin: 0 0 0.9rem; }
.agree a { color: var(--accent); }
.form-error { color: var(--accent); font-size: 0.9rem; margin: 0 0 0.6rem; }
.pay-btn { width: 100%; }

.section { padding: 2.5rem 0; }
.section-alt { background: var(--bg-deep); }
.section-header { margin-bottom: 1.4rem; }
.section-header h2 { margin: 0 0 0.4rem; font-size: 1.55rem; }
.section-header p { margin: 0; color: var(--ink-soft); }

.steps, .benefits, .faq { display: grid; gap: 1rem; }
.steps { grid-template-columns: repeat(3, 1fr); }
.benefits { grid-template-columns: repeat(3, 1fr); }

.step, .benefit, .faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.step h3, .benefit h3, .faq-item h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.step p, .benefit p, .faq-item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.compare-wrap { max-width: 520px; }
.compare {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #111;
  aspect-ratio: 4 / 5;
  container-type: inline-size;
}
.compare > img,
.compare-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.compare-after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  overflow: hidden;
  border-right: 2px solid #fff;
}
.compare-after img {
  width: 100cqw;
  height: 100%;
}
.compare input[type="range"] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  width: calc(100% - 24px);
  margin: 0 12px;
}
.compare-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.compare-hint { color: var(--accent); font-weight: 700; }
.compare-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer a { color: var(--ink-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; margin-bottom: 0.7rem; }

.legal-page { padding: 2rem 0 3rem; max-width: 720px; }
.legal-page h1 { font-size: 1.7rem; }
.legal-page h2 { font-size: 1.15rem; margin: 1.4rem 0 0.4rem; }

.ready-main { padding: 3rem 0 5rem; }
.ready-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.6rem;
  text-align: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; color: var(--muted); margin: 0 0 0.4rem; }
.spinner {
  width: 36px;
  height: 36px;
  margin: 1rem auto;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.micro { color: var(--muted); font-size: 0.88rem; }
.micro a { color: var(--accent); }

.header-cta-short { display: none; }

@media (max-width: 860px) {
  .hero-grid, .steps, .benefits { grid-template-columns: 1fr; }
  .nav-note { display: none; }
  .header-cta-long { display: none; }
  .header-cta-short { display: inline; }
}
