/* HD-раздел сайта Quantum. Светлая палитра, единый стиль с формой анкеты.
   Шрифты увеличены по фидбеку Ивана (комфорт чтения). */

:root {
  --bg: #f5f3ee;
  --bg-card: #ffffff;
  --bg-accent: #efe9d8;
  --text: #1f2328;
  --text-muted: #5b6470;
  --accent: #7a5a1a;
  --accent-soft: #b8924a;
  --accent-bg-soft: #fff8e6;
  --border: #e3ddd0;
  --border-soft: #efeae0;
  --warn-bg: #fff7e8;
  --warn-border: #e6d6a8;
  --warn-text: #6b5217;
  --radius: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  font: 18px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* layout */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

header.site {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
header.site .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { font-weight: 700; letter-spacing: 0.02em; color: var(--text); font-size: 20px; }
.brand span { color: var(--accent); font-weight: 500; }
nav.main a { margin-left: 24px; color: var(--text-muted); font-size: 16px; }
nav.main a:hover { color: var(--accent); text-decoration: none; }

/* hero */
.hero { padding: 64px 0 36px; }
.hero h1 { font-size: 48px; line-height: 1.1; margin: 0 0 16px; font-weight: 700; letter-spacing: -0.015em; }
.hero .sub { font-size: 22px; color: var(--text-muted); margin: 0 0 20px; max-width: 760px; line-height: 1.5; }
.hero .tag { font-size: 19px; color: var(--accent); margin: 0 0 32px; max-width: 760px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.price { display: inline-flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price .num { font-size: 28px; font-weight: 700; color: var(--text); }
.price .was { font-size: 17px; color: var(--text-muted); text-decoration: line-through; }
.price .note { font-size: 14px; color: var(--text-muted); margin-left: 8px; }

/* кнопки */
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 15px 30px; border-radius: 10px; font-weight: 700; font-size: 17px;
  border: 0; cursor: pointer; transition: background 0.15s;
}
.btn:hover { background: #6a4d15; text-decoration: none; color: #fff; }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 14px 28px; }
.btn-ghost:hover { background: var(--accent); color: #fff; }

/* секции */
section { padding: 50px 0; }
section + section { border-top: 1px solid var(--border-soft); }
section.accent-bg { background: var(--bg-accent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section.accent-bg + section.accent-bg { border-top: 0; }
section h2 { font-size: 30px; margin: 0 0 22px; font-weight: 700; line-height: 1.25; }
section h2 .num { color: var(--accent-soft); margin-right: 12px; font-weight: 700; }
.lead { font-size: 19px; color: var(--text-muted); max-width: 760px; margin: 0 0 24px; line-height: 1.65; }

/* списки */
ul.bullets { list-style: none; padding: 0; margin: 0; }
ul.bullets li {
  padding: 14px 0 14px 32px; position: relative; border-bottom: 1px solid var(--border-soft);
  font-size: 18px; line-height: 1.6;
}
ul.bullets li:last-child { border-bottom: 0; }
ul.bullets li::before {
  content: "◆"; color: var(--accent-soft); position: absolute; left: 4px; top: 14px; font-size: 14px;
}
ul.bullets.check li::before {
  content: "✓"; color: var(--accent); font-weight: 700; font-size: 18px; top: 12px;
}

/* карточка */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 28px;
}
.cards-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.product-card { display: flex; flex-direction: column; }
.product-card h3 { font-size: 21px; margin: 0 0 8px; }
.product-card .sub { color: var(--text-muted); font-size: 15px; margin: 0 0 16px; line-height: 1.55; flex-grow: 1; }
.product-card .price-line { font-size: 16px; margin: 0 0 14px; }
.product-card .price-line .num { font-weight: 700; }
.product-card .price-line .club { color: var(--text-muted); font-size: 14px; }
.product-card a.go { color: var(--accent); font-weight: 600; font-size: 16px; }

/* "Что внутри отчёта" — карточки контента */
.content-list { display: grid; gap: 16px; }
.content-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px;
}
.content-item h3 {
  font-size: 19px; margin: 0 0 8px; font-weight: 700; color: var(--text);
}
.content-item h3::before {
  content: "◆"; color: var(--accent-soft); margin-right: 10px; font-size: 14px;
}
.content-item p { margin: 0; color: var(--text); font-size: 17px; line-height: 1.6; }

/* "Чем наш подход отличается" */
.diff-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.diff-card {
  background: var(--bg-card); border-left: 4px solid var(--accent); border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.diff-card p { margin: 0; font-size: 17px; line-height: 1.6; }

/* Выдержка из отчёта */
blockquote.excerpt {
  background: var(--accent-bg-soft); border-left: 5px solid var(--accent-soft);
  padding: 28px 30px; border-radius: var(--radius); margin: 0;
  font-size: 19px; line-height: 1.7; color: var(--text); font-style: italic;
}
blockquote.excerpt::before { content: "« "; color: var(--accent-soft); font-size: 28px; font-style: normal; }
blockquote.excerpt::after { content: " »"; color: var(--accent-soft); font-size: 28px; font-style: normal; }

/* Формат и доставка */
.format-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 28px;
}
.format-row {
  display: flex; padding: 18px 0; border-bottom: 1px solid var(--border-soft);
  gap: 24px; align-items: baseline; font-size: 17px;
}
.format-row:last-child { border-bottom: 0; }
.format-row .label { color: var(--text-muted); min-width: 150px; font-weight: 600; }
.format-row .val { color: var(--text); flex: 1; }

/* варианты (для pair, packages) */
.variants { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin-top: 18px; }
.variants .card h3 { font-size: 20px; margin: 0 0 8px; }
.variants .card .note { color: var(--text-muted); font-size: 16px; margin: 0 0 14px; line-height: 1.55; }
@media (max-width: 760px) {
  .variants { grid-template-columns: 1fr; }
}

/* шаги "как это работает" */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr 1fr 1fr; margin-top: 8px; }
.steps .step .n {
  display: inline-block; width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff; text-align: center; line-height: 38px;
  font-weight: 700; margin-bottom: 12px; font-size: 17px;
}
.steps .step h3 { font-size: 19px; margin: 6px 0 8px; }
.steps .step p { color: var(--text-muted); font-size: 16px; margin: 0; line-height: 1.6; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0;
}
.faq-item summary {
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 17px; line-height: 1.45;
  list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 18px;
  color: var(--accent); font-size: 22px; font-weight: 400; transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a {
  padding: 0 22px 20px; font-size: 17px; line-height: 1.65; color: var(--text);
}

/* footer */
footer.site {
  margin-top: 80px; padding: 40px 0 60px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 15px;
}
footer.site .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer.site a { color: var(--text-muted); }
footer.site a:hover { color: var(--accent); }

/* мобильный */
@media (max-width: 760px) {
  body { font-size: 17px; }
  .hero { padding: 40px 0 22px; }
  .hero h1 { font-size: 34px; }
  .hero .sub { font-size: 19px; }
  section { padding: 36px 0; }
  section h2 { font-size: 25px; }
  .lead { font-size: 17px; }
  blockquote.excerpt { font-size: 17px; padding: 22px 24px; }
  nav.main a { margin-left: 14px; font-size: 14px; }
  nav.main a:nth-child(n+4) { display: none; }
  .format-row { flex-direction: column; gap: 6px; }
  .format-row .label { min-width: 0; }
}
