:root {
  --ink: #3d4a44;
  --muted: #7a877f;
  --line: #e4ddd4;
  --paper: #f4efe8;
  --white: #fffcf8;
  --sage: #7d9a8a;
  --sage-deep: #5d7a6b;
  --sage-soft: #e7efe9;
  --blush: #f3ddd4;
  --sand: #f4ead4;
  --lilac: #e6e2f0;
  --sky: #dce8ef;
  --terracotta: #c4785a;
  --ok: #6a9a7b;
  --warn: #c49a5a;
  --danger: #c46a62;
  --shadow: 0 18px 50px rgba(93, 122, 107, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 8% -8%, #e7efe9 0%, transparent 55%),
    radial-gradient(700px 420px at 100% 8%, #f3ddd4 0%, transparent 50%),
    radial-gradient(640px 380px at 70% 100%, #e6e2f0 0%, transparent 45%),
    var(--paper);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.ico-lg {
  width: 28px;
  height: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 252, 248, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 221, 212, 0.8);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img { height: 34px; width: auto; }
.nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a:hover { background: var(--sage-soft); color: var(--sage-deep); }
.lang {
  display: flex;
  gap: 2px;
  padding: 3px;
  background: var(--sage-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 999px;
}
.lang button.is-on {
  background: var(--white);
  color: var(--sage-deep);
  box-shadow: 0 1px 4px rgba(93, 122, 107, 0.12);
}
.header-cta {
  margin-left: 4px;
  background: var(--sage);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
}
.header-cta:hover { background: var(--sage-deep); }

.hero {
  padding: 64px 0 28px;
  background: transparent;
  color: var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero p {
  margin: 0 0 28px;
  max-width: 40em;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-panel {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 8px;
  background: var(--paper);
  font-size: 14px;
}
.hero-row.is-crit { background: #f8e8e4; }
.hero-row.is-warn { background: #f6eedc; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 999px;
}
.chip-crit { background: #f0d2ce; color: #9a4a44; }
.chip-warn { background: #efe3c4; color: #8a6a32; }
.old { color: var(--muted); text-decoration: line-through; }
.new { font-weight: 700; }
.hero-foot {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
}
.btn-gold { background: var(--terracotta); color: #fff; }
.btn-gold:hover { filter: brightness(1.05); }
.btn-ghost {
  background: var(--white);
  color: var(--sage-deep);
  box-shadow: 0 0 0 1px var(--line);
}
.btn-ghost:hover { background: var(--sage-soft); }
.btn-navy { background: var(--sage); color: #fff; }
.btn-navy:hover { background: var(--sage-deep); }
.btn-line {
  background: var(--white);
  color: var(--sage-deep);
  box-shadow: 0 0 0 1px var(--line);
}

section { padding: 72px 0; scroll-margin-top: 84px; }
.band-sage { background: rgba(231, 239, 233, 0.55); }
.band-lilac { background: rgba(230, 226, 240, 0.4); }
.band-blush { background: rgba(243, 221, 212, 0.35); }

h2 {
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lead { color: var(--muted); margin: 0 0 36px; max-width: 46em; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--white);
  padding: 26px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.9);
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step-icon svg { width: 26px; height: 26px; }
.step:nth-child(1) .step-icon { background: var(--sage-soft); color: var(--sage-deep); }
.step:nth-child(2) .step-icon { background: var(--blush); color: var(--terracotta); }
.step:nth-child(3) .step-icon { background: var(--sand); color: #9a7a3a; }
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.shots { display: grid; gap: 32px; }
figure { margin: 0; }
figure img {
  width: 100%;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  padding-left: 8px;
}

.cms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cms-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  text-align: left;
  font-size: 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-items: center;
}
.cms-mark {
  grid-row: span 3;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}
.cms-mark svg { width: 24px; height: 24px; }
.cms-card:nth-child(1) .cms-mark { background: var(--sky); color: #4a7390; }
.cms-card:nth-child(2) .cms-mark { background: var(--sage-soft); color: var(--sage-deep); }
.cms-card:nth-child(3) .cms-mark { background: var(--lilac); color: #6a6290; }
.cms-card:nth-child(4) .cms-mark { background: var(--blush); color: var(--terracotta); }
.cms-card:nth-child(5) .cms-mark { background: var(--sand); color: #8a7040; }
.cms-card:nth-child(6) .cms-mark { background: #dceee4; color: var(--ok); }
.cms-card strong {
  display: block;
  font-size: 16px;
}
.cms-card span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.cms-card .cms-ok {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ok);
}

.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price {
  background: var(--white);
  border-radius: 26px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.price.is-best {
  background: linear-gradient(180deg, #fff 0%, var(--sage-soft) 140%);
  box-shadow: 0 0 0 2px var(--sage), var(--shadow);
}
.price .amount {
  font-family: Georgia, serif;
  font-size: 40px;
  margin: 8px 0 4px;
}
.price .amount small { font-size: 18px; font-weight: 400; color: var(--muted); }
.price p { color: var(--muted); font-size: 14px; flex: 1; }
.trial-note {
  margin: 28px 0 0;
  padding: 16px 20px;
  background: var(--sand);
  border-radius: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trial-note svg { width: 28px; height: 28px; flex-shrink: 0; color: #9a7a3a; }

.faq details {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 10px;
  box-shadow: 0 8px 24px rgba(93, 122, 107, 0.06);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { color: var(--sage); }
.faq p { margin: 10px 0 0 34px; color: var(--muted); font-size: 15px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.contact-link strong { display: block; font-size: 16px; color: var(--ink); }
.contact-link span { color: var(--muted); font-size: 13px; }
.contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.form {
  display: grid;
  gap: 10px;
  background: var(--white);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.form label { font-size: 13px; font-weight: 700; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 14px;
  background: var(--paper);
  border-radius: 12px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--sage);
  border-color: transparent;
  background: #fff;
}
.form textarea { min-height: 90px; resize: vertical; }
.form-msg { font-size: 14px; color: var(--ok); min-height: 1.2em; }
.form-msg.err { color: #9b2c2c; }
.form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .steps, .prices, .cms-grid, .contact-grid { grid-template-columns: 1fr; }
  .cms-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0 16px; }
  section { padding: 48px 0; }
  .hero-row { grid-template-columns: 1fr auto; }
  .hero-row .old, .hero-row .new { display: none; }
}
@media (max-width: 560px) {
  .cms-grid { grid-template-columns: 1fr; }
}
