:root {
  --bg: #FDF6EE;
  --fg: #1C1C1C;
  --accent: #E85D2D;
  --accent-dark: #C94A20;
  --muted: #6B5F54;
  --surface: #FFFFFF;
  --border: #E8DDD4;
  --warm-gray: #8B7D75;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.2rem; color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-badge { font-size: 0.75rem; background: var(--accent); color: white; padding: 4px 10px; border-radius: 20px; font-weight: 500; letter-spacing: 0.02em; }

/* HERO */
.hero { padding: 80px 48px 64px; overflow: hidden; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 32px; line-height: 1.7; max-width: 420px; }
.hero-pillars { display: flex; flex-direction: column; gap: 12px; }
.pillar { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--fg); font-weight: 500; }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.screen-frame {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border);
}
.screen-topbar { background: #F5F0EB; padding: 10px 16px; display: flex; gap: 6px; align-items: center; border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }
.screen-content { padding: 20px; }

.old-label, .new-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 8px; }
.old-site { background: #F5F0EB; border: 1px solid var(--border); border-radius: 8px; padding: 12px; margin-bottom: 8px; }
.old-bar { height: 7px; background: #D9D0C9; border-radius: 4px; margin-bottom: 7px; }
.old-bar-title { height: 14px; width: 55%; margin-bottom: 10px; }
.old-bar-text { width: 85%; }
.old-bar-text.short { width: 60%; margin-bottom: 12px; }
.old-img-placeholder { height: 48px; background: #D9D0C9; border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.vs-badge { text-align: center; font-size: 0.75rem; font-weight: 700; color: var(--accent); margin: 4px 0; }
.new-site { border: 2px solid var(--accent); border-radius: 8px; padding: 12px; }
.new-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.new-logo { width: 32px; height: 32px; background: var(--accent); border-radius: 6px; }
.new-nav-dots { display: flex; gap: 4px; }
.new-nav-dots span { width: 6px; height: 6px; background: var(--warm-gray); border-radius: 50%; display: block; }
.new-big-bar { height: 14px; background: var(--accent); border-radius: 4px; width: 70%; margin-bottom: 8px; opacity: 0.9; }
.new-med-bar { height: 8px; background: var(--fg); border-radius: 4px; width: 50%; margin-bottom: 12px; opacity: 0.3; }
.new-split { display: flex; gap: 8px; }
.new-box { flex: 1; height: 36px; background: var(--accent); border-radius: 6px; opacity: 0.25; }
.new-box:last-child { opacity: 0.15; }

.guarantee-stamp {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* PROBLEM */
.problem { background: var(--fg); padding: 48px 48px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-stat-row { display: flex; align-items: stretch; gap: 0; }
.stat { flex: 1; padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.stat-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* GUARANTEE */
.guarantee { padding: 96px 48px; }
.guarantee-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.guarantee-badge { margin-bottom: 28px; display: inline-block; }
.guarantee-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--fg); }
.guarantee-body { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
.guarantee-pillars { display: flex; gap: 32px; justify-content: center; }
.g-pillar { text-align: left; font-size: 0.9rem; color: var(--fg); line-height: 1.5; max-width: 200px; }
.g-pillar strong { color: var(--accent); display: block; margin-bottom: 4px; font-size: 0.8rem; letter-spacing: 0.05em; }

/* HOW */
.how { padding: 96px 48px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { margin-bottom: 64px; }
.section-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }
.how-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; line-height: 1.25; max-width: 540px; }
.how-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.step { display: flex; gap: 24px; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); opacity: 0.3; line-height: 1; flex-shrink: 0; width: 48px; }
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--fg); }
.step-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* PRICING */
.pricing { padding: 96px 48px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { margin-bottom: 48px; }
.pricing-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; line-height: 1.25; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.card-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 16px; }
.featured-tag { color: var(--accent); }
.card-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--fg); line-height: 1; margin-bottom: 8px; }
.card-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.card-features { list-style: none; margin-bottom: 28px; }
.card-features li { font-size: 0.9rem; color: var(--fg); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.card-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.card-note { font-size: 0.85rem; color: var(--accent); font-weight: 600; text-align: center; padding: 12px 0; border-top: 1px solid var(--border); }

/* CLOSING */
.closing { padding: 96px 48px; background: var(--fg); }
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 20px; }
.closing-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 64px; max-width: 560px; }
.closing-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 48px; }
.c-stat { flex: 1; padding: 0 40px; }
.c-stat:first-child { padding-left: 0; }
.c-stat:last-child { padding-right: 0; }
.c-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 8px; }
.c-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* FOOTER */
.footer { padding: 48px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo span { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; }
.footer-copy { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; line-height: 1.7; }
.footer-meta { font-size: 0.8rem; color: var(--warm-gray); }

/* NAV LINKS */
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; padding: 4px 8px; border-radius: 6px; }
.nav-link:hover { color: var(--fg); }
.nav-link-accent { color: var(--accent); }
.nav-link-accent:hover { color: var(--accent-dark); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 1.8rem; }
  .problem { padding: 40px 24px; }
  .problem-stat-row { flex-direction: column; gap: 32px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .stat-num { font-size: 2.4rem; }
  .guarantee { padding: 64px 24px; }
  .guarantee-pillars { flex-direction: column; gap: 20px; }
  .g-pillar { max-width: 100%; }
  .how { padding: 64px 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .closing-stats { flex-direction: column; gap: 32px; }
  .c-stat { padding: 0; }
  .footer { padding: 40px 24px; }
}