:root {
  --bg: #f4efe7;
  --paper: #fbf8f3;
  --ink: #1f2b28;
  --muted: #58645f;
  --line: #d9d1c3;
  --accent: #2f6b63;
  --accent-2: #c97d58;
  --panel: #efe5d6;
  --shadow: 0 20px 60px rgba(31, 43, 40, 0.08);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, #f7f2ea 0%, #f4efe7 100%);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }

.site-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 22px 40px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 8px 0 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 8px rgba(47, 107, 99, 0.08);
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 42px;
}

.hero-copy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,125,88,0.14) 0%, rgba(201,125,88,0) 70%);
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.hero h1,
.page-title {
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 0.98;
  margin: 0 0 20px;
  font-weight: 600;
}

.lead {
  font-size: 1.12rem;
  max-width: 54ch;
  color: #31403c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn,
button,
input,
select,
textarea {
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.hero-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.stat-panel,
.note-panel,
.content-panel,
.guide-card,
.faq-item,
.form-panel,
.legal-panel,
.thanks-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-panel {
  padding: 22px;
  background: linear-gradient(180deg, #255d56 0%, #1f4944 100%);
  color: #f7f2ea;
}

.stat-panel .small-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 6px;
}

.note-panel {
  padding: 24px;
  background: var(--panel);
}

.note-panel h3,
.section-head h2,
.form-panel h2,
.legal-panel h2,
.thanks-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.05;
}

.section-band {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 30px;
  align-items: start;
}

.section-aside {
  position: sticky;
  top: 18px;
}

.aside-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.aside-copy {
  font-size: 0.98rem;
  color: var(--muted);
}

.content-panel {
  padding: 28px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--accent);
}

.guide-card h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.12;
}

.guide-points,
.benefit-list,
.flow-list,
.legal-list {
  margin: 0;
  padding-left: 20px;
}

.guide-points li,
.benefit-list li,
.flow-list li,
.legal-list li { margin-bottom: 8px; }

.editorial-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.pull-quote {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f0e2d3 0%, #ead9c7 100%);
  border: 1px solid var(--line);
  font-size: 1.3rem;
  line-height: 1.25;
}

.flow-list {
  list-style: none;
  padding: 0;
  counter-reset: flow;
}

.flow-list li {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.flow-list li:first-child { border-top: none; padding-top: 0; }

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item { padding: 22px; }

.form-panel,
.legal-panel,
.thanks-panel {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field-full { grid-column: 1 / -1; }

.disclaimer {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7ef;
  border: 1px solid #ecd3b9;
  color: #624836;
  font-size: 0.95rem;
}

.footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding: 22px 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-hero {
  max-width: 860px;
  margin: 0 auto 26px;
  padding: 26px 0 10px;
}

.page-hero p { max-width: 62ch; color: var(--muted); }

.legal-wrap,
.thanks-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.legal-panel p + h3,
.legal-panel ul + h3,
.thanks-panel p + h3 { margin-top: 24px; }

.legal-panel h3,
.thanks-panel h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.contact-block {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 18px;
}

.contact-block strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .hero,
  .section-band,
  .editorial-columns,
  .guides-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-aside { position: static; }
  .topbar, .footer { flex-direction: column; }
  .top-meta { justify-items: start; text-align: left; }
  .hero-copy { padding: 30px; }
}

@media (max-width: 640px) {
  .site-shell { padding: 16px 16px 34px; }
  .hero-copy, .content-panel, .form-panel, .legal-panel, .thanks-panel { padding: 22px; }
  .hero h1, .page-title { font-size: 2.3rem; }
  .btn { width: 100%; }
}
