:root {
  --bg: #f6f3ee;
  --paper: #fffdf9;
  --stone: #ece5dc;
  --text: #2d2a26;
  --muted: #6b645c;
  --accent: #177d74;
  --accent-dark: #0f635d;
  --border: #ddd4ca;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }
.center { text-align: center; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.brand { font-weight: 800; font-size: 1.35rem; color: var(--text); }
.nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.nav a { color: var(--muted); font-weight: 600; }
.hero { padding: 4rem 0 3rem; background: linear-gradient(180deg, #f8efe5 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.3rem, 4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }
.pill { display: inline-block; padding: .45rem .85rem; border: 1px solid var(--border); border-radius: 999px; background: var(--paper); color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.center-row { justify-content: center; }
.button {
  display: inline-block; padding: .9rem 1.2rem; border-radius: 1rem; font-weight: 700; border: 1px solid transparent;
}
.button:hover { text-decoration: none; }
.button.primary { background: var(--accent); color: white; }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { background: var(--paper); color: var(--text); border-color: var(--border); }
.button.block { display: block; text-align: center; }
.small-note { color: var(--muted); font-size: .95rem; }
.section { padding: 4rem 0; }
.section.alt { background: #fffaf4; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-grid, .feature-list-grid, .faq-grid {
  display: grid; gap: 1.25rem;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-list-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.feature-card, .price-card, .info-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow);
}
.screen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.app-shot {
  background: var(--paper); border: 1px solid var(--border); border-radius: 1.75rem; box-shadow: var(--shadow); overflow: hidden;
}
.large-shot { min-height: 480px; }
.shot-topbar {
  display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1.2rem; font-size: .95rem; color: var(--muted); border-bottom: 1px solid var(--border); background: white;
}
.shot-body.split { display: grid; grid-template-columns: 220px 1fr; min-height: 420px; }
.shot-sidebar { background: #f0ebe3; border-right: 1px solid var(--border); padding: 1.2rem; }
.shot-brand { font-weight: 800; margin-bottom: 1rem; }
.shot-nav-item { color: var(--muted); padding: .45rem 0; }
.shot-nav-item.active { color: var(--accent-dark); font-weight: 700; }
.shot-main { background: #f8f5ef; padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; }
.card { background: white; border: 1px solid var(--border); border-radius: 1.25rem; padding: 1rem; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.small-card { min-height: 110px; }
.mini-button { display: inline-block; margin-top: .65rem; padding: .6rem .9rem; border-radius: .9rem; background: var(--accent); color: white; font-weight: 600; font-size: .9rem; }
.mini-button.ghost { background: white; color: var(--text); border: 1px solid var(--border); }
.title-center { text-align: center; font-size: 1.5rem; }
.welcome-shot, .booklet-shot { min-height: 300px; padding: 2rem; background: linear-gradient(180deg, #fffaf3 0%, white 100%); }
.welcome-shot p.center { text-align: center; color: var(--muted); }
.booklet-shot { display: grid; grid-template-columns: 220px 1fr; gap: 1rem; }
.booklet-menu { background: #fcf4e4; border: 1px solid var(--border); border-radius: 1rem; padding: 1rem; }
.booklet-menu div { padding: .5rem 0; color: var(--muted); }
.booklet-menu .active { color: var(--accent-dark); font-weight: 700; }
.booklet-content { background: white; border: 1px solid var(--border); border-radius: 1rem; padding: 1rem; }
.page-main { min-height: 70vh; }
.page-hero { padding: 3rem 0 1rem; }
.pricing-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.5rem; align-items: start; }
.price-card.featured { border-color: #cabca7; }
.price-line { font-size: 1.5rem; font-weight: 800; }
.check-list, .steps { padding-left: 1.2rem; }
.price-choices { display: grid; gap: .8rem; margin-top: 1rem; }
.site-footer { padding: 2rem 0; border-top: 1px solid var(--border); background: #fffdf9; }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 920px) {
  .hero-grid, .screen-grid, .pricing-grid, .feature-grid, .feature-list-grid, .faq-grid, .booklet-shot { grid-template-columns: 1fr; }
  .shot-body.split { grid-template-columns: 1fr; }
  .shot-sidebar { border-right: 0; border-bottom: 1px solid var(--border); }
  .footer-grid, .nav-wrap { flex-direction: column; align-items: flex-start; }
}
