:root {
  --bg: #f4f2ef;
  --surface: #efedea;
  --surface-2: #ece8e3;
  --text: #161311;
  --muted: #665f59;
  --soft: #d9d2cb;
  --line: #ded8d2;
  --button: #151210;
  --button-text: #ffffff;
  --max: 1460px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.container {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 239, 0.94);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nav a {
  font-size: 15px;
  color: var(--muted);
}
.nav a.active,
.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 120px 0 92px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
}
.hero-copy h1,
.section-problem h2,
.section-offer h2,
.section-steps h2,
.section-cta h2,
.legal-wrap h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: #12100f;
}
.hero-copy h1 {
  font-size: clamp(66px, 8vw, 96px);
  max-width: 720px;
}
.lead,
.section-text,
.problem-item p,
.offer-item p,
.step-item p,
.fit-box li,
.legal-block p {
  font-size: 18px;
  color: #57514b;
}
.lead {
  margin: 26px 0 0;
  max-width: 760px;
  line-height: 1.6;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 17px;
  font-weight: 600;
}
.button-primary {
  background: var(--button);
  border-color: var(--button);
  color: var(--button-text);
}
.button-secondary {
  background: transparent;
  color: var(--text);
}
.hero-panel {
  min-height: 520px;
  border: 1px solid var(--soft);
  border-radius: 26px;
  padding: 42px 34px;
  background:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  background-color: rgba(255,255,255,0.34);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.logic-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(222,216,210,0.9);
  border-radius: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.34);
  color: #c8c1bb;
  font-size: 17px;
}
.logic-row strong {
  text-align: right;
  color: #d5d0ca;
  font-weight: 500;
}
.logic-arrow {
  color: #d1cbc5;
  font-size: 34px;
  line-height: 1;
}

section { padding: 88px 0; }
.section-problem h2,
.section-offer h2,
.section-steps h2,
.section-cta h2,
.legal-wrap h1 {
  font-size: clamp(54px, 7vw, 82px);
  max-width: 900px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 72px;
  margin-top: 56px;
}
.problem-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 22px;
  align-items: start;
}
.number,
.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 0.9;
  color: #d9d4ce;
  font-weight: 600;
}
.problem-item p,
.step-item p,
.offer-item p,
.section-text,
.fit-box li {
  margin: 0;
  line-height: 1.55;
}
.section-offer {
  background: rgba(255,255,255,0.12);
}
.offer-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}
.offer-right {
  display: grid;
}
.offer-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.offer-item:last-of-type {
  border-bottom: 1px solid var(--line);
}
.offer-item h3,
.step-item h3,
.fit-box h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.offer-note {
  margin-top: 34px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--soft);
  border-radius: 0;
  font-size: 18px;
  color: #5a544e;
}
.steps-grid {
  display: grid;
  gap: 34px;
  margin-top: 56px;
}
.step-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 28px;
  align-items: start;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fit-box {
  border: 1px solid var(--soft);
  background: rgba(255,255,255,0.28);
  padding: 32px 34px;
}
.fit-box ul {
  margin: 0;
  padding-left: 20px;
}
.fit-box li + li {
  margin-top: 12px;
}
.section-cta {
  padding-top: 96px;
  padding-bottom: 110px;
}
.cta-box {
  border-top: 1px solid var(--line);
  padding-top: 42px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-brand {
  font-size: 15px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-size: 14px;
}
.legal-page {
  padding: 82px 0 110px;
}
.legal-wrap {
  max-width: 900px;
}
.legal-block {
  margin-top: 36px;
}
.legal-block p + p {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .container { width: min(var(--max), calc(100% - 48px)); }
  .hero-grid,
  .offer-grid,
  .fit-grid,
  .problem-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: auto; }
}

@media (max-width: 760px) {
  .header-inner { padding: 18px 0; align-items: flex-start; }
  .nav { gap: 16px; }
  .hero { padding: 84px 0 56px; }
  section { padding: 58px 0; }
  .problem-item,
  .step-item { grid-template-columns: 66px 1fr; gap: 14px; }
  .button { width: 100%; }
}
