/* ==========================================================================
   Нейро-рассылки по-взрослому · МК 164 · стиль soft-pro
   ========================================================================== */

:root {
  --accent:        #c96b4a;
  --accent-hover:  #b45c3d;
  --accent-soft:   #c9a08c;
  --dark:          #1a3d52;
  --text:          #1a1a1a;
  --text-mid:      #555;
  --text-light:    #888;
  --bg:            #fff;
  --bg-warm:       #faf7f4;
  --bg-warmer:     #f9f1ec;
  --bg-gradient:   linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
  --border:        #ede8e3;
  --border-warm:   #e7d7cf;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }

/* --------------------------------------------------------------- контейнеры */

.section { padding: 80px 20px; }
.section-white    { background: #fff; }
.section-warm     { background: var(--bg-warm); }
.section-warmer   { background: var(--bg-warmer); }
.section-gradient { background: var(--bg-gradient); }
.section-dark     { background: var(--dark); color: #fff; }

.container        { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.section-dark .section-label { color: #e0b9a6; }

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700; color: var(--text);
  line-height: 1.2; margin-bottom: 20px;
}
.section-dark .section-title { color: #fff; }
.section-title em { font-style: normal; color: var(--accent); }
.section-dark .section-title em { color: #e8a184; }

.section-lead {
  font-size: 19px; line-height: 1.75;
  color: var(--text-mid); max-width: 720px;
  margin-bottom: 36px;
}
.section-dark .section-lead { color: rgba(255,255,255,0.75); }

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------------- кнопки */

.btn {
  display: inline-block;
  background: #1a1a1a; color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.03em;
  padding: 18px 36px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }

.btn-accent {
  background: var(--accent); color: #fff;
  border-radius: 999px; padding: 18px 34px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(201,107,74,0.24);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--dark); color: var(--dark);
  background: transparent; border-radius: 4px;
  padding: 16px 32px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }

.btn-light {
  background: #fff; color: var(--dark);
}
.btn-light:hover { background: var(--accent); color: #fff; }

/* ---------------------------------------------------------------- навигация */

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.32s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.topbar.visible { transform: translateY(0); }

.sticky-nav {
  position: relative; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.sticky-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 32px; height: 56px; align-items: center;
}
.sticky-nav a {
  color: var(--text-mid); text-decoration: none;
  font-size: 15px; font-weight: 600; opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}
.sticky-nav a:hover { opacity: 1; color: var(--accent); }
.sticky-nav .nav-cta {
  margin-left: auto; color: var(--accent); opacity: 1;
}

/* --------------------------------------------------------------- срочность */

.urgency-banner {
  background: var(--accent); color: #fff;
  text-align: center; font-weight: 600;
  font-size: 16px; padding: 13px 20px;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------------- герой */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 90px 20px;
  background: var(--dark);
  color: #fff;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 50% 35%,
    rgba(240,185,143,0.16) 0%,
    rgba(18,44,58,0.6) 45%,
    rgba(18,44,58,0.94) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; width: 100%; margin: 0 auto;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}

.hero-doodles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-doodle {
  position: absolute; color: rgba(240,185,143,0.4);
  fill: none; stroke: currentColor; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  filter: url(#sketchy);
}
.doodle-brain    { top: 9%;  left: 6%;  width: 110px; transform: rotate(-7deg); }
.doodle-van      { top: 13%; right: 5%; width: 150px; transform: rotate(4deg); }
.doodle-keyboard { bottom: 10%; left: 5%; width: 150px; transform: rotate(-4deg); }
.doodle-pen      { bottom: 8%; right: 6%; width: 120px; transform: rotate(6deg); }

@media (max-width: 900px) {
  .hero-doodles { display: none; }
}
.hero-kicker-wrap { position: relative; display: inline-block; margin-bottom: 26px; }
.hero-kicker {
  display: inline-flex; align-items: center;
  background: rgba(240,185,143,0.12);
  border: 1px solid rgba(240,185,143,0.4);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px; font-weight: 600;
  color: #f0b98f;
}
.hero-handnote {
  position: absolute; right: -6px; bottom: calc(100% + 30px);
  font-family: 'Caveat', cursive; font-weight: 600;
  font-size: 26px; line-height: 1; color: rgba(255,255,255,0.9);
  white-space: nowrap; transform: rotate(-3deg);
}
.hero-handnote::after {
  content: ''; position: absolute; right: 34px; top: calc(100% + 4px);
  width: 2px; height: 26px; background: rgba(255,255,255,0.55);
  transform: rotate(38deg); transform-origin: top;
}

.hero-title {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700; color: #fff;
  line-height: 1.05; letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-claim {
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 600;
  margin: 26px auto 0; max-width: 700px; line-height: 1.5;
  color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 32px 40px;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.75; margin: 18px auto 0; max-width: 560px;
}
.u-mark {
  color: #fff; font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}

.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  row-gap: 8px; column-gap: 28px; margin-top: 30px;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; align-items: center; margin-top: 34px; }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.85);
  border: none; padding: 16px 4px;
  font-size: 15px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { color: #fff; text-decoration-color: #fff; }
.hero-note { font-size: 14px; color: rgba(255,255,255,0.65); margin: 22px auto 0; max-width: 560px; }
.hero-note a {
  color: #fff; font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.45);
}
.hero-note a:hover { border-bottom-color: #fff; }


.hero-shot { display: none; }

/* Кадр 16:9. Пока окно шире — обрезка сверху/снизу, фигура на месте.
   Окно уже — обрезаются бока, поэтому держим фигуру ближе к правому краю. */
@media (max-aspect-ratio: 175/100) {
  .hero { background-position: 62% center; }
}
@media (max-aspect-ratio: 150/100) {
  .hero { background-position: 82% center; }
  .hero::before {
    background: linear-gradient(90deg,
      rgba(18,44,58,0.96) 0%,
      rgba(18,44,58,0.9) 40%,
      rgba(18,44,58,0.55) 68%,
      rgba(18,44,58,0.25) 100%);
  }
}

/* Совсем узко (планшет книжно, телефон): фото уходит отдельной полосой наверх,
   текст ложится на сплошной фон — так фигура видна целиком и буквы читаются. */
@media (max-aspect-ratio: 118/100), (max-width: 820px) {
  .hero {
    min-height: 0; display: block; padding: 0 0 52px;
    background: var(--dark);
  }
  .hero::before { display: none; }
  .hero-inner { padding: 26px 20px 0; max-width: 760px; }
  .hero-desc, .hero-claim, .hero-note { max-width: none; }
}

@media (max-width: 700px) {
  .hero-shot { height: 32vh; background-position: 66% center; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* -------------------------------------------------------------- цитата-боль */

.pain-quotes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-bottom: 40px;
}
.pain-quote {
  background: #fff; border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 6px; padding: 22px 24px;
  font-size: 17px; line-height: 1.65; color: var(--text-mid);
  font-style: italic;
}
.pain-quote strong { display: block; font-style: normal; color: var(--text); font-weight: 600; }

.statement {
  background: var(--dark); color: #fff;
  border-radius: 10px; padding: 36px 40px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55; font-weight: 600;
}
.statement em { font-style: normal; color: #e8a184; }

/* ------------------------------------------------------------------ карточки */

.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  padding: 34px 30px;
  border: 1.5px solid var(--border);
  background: #fff; border-radius: 6px;
  position: relative; overflow: hidden;
  transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #e4b3a2);
  transition: width 0.36s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(39,23,15,0.09);
  border-color: var(--accent);
}
.card:hover::before { width: 100%; }
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--dark); }
.card p { font-size: 16px; line-height: 1.7; color: var(--text-mid); }
.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-warmer); color: var(--accent);
  font-weight: 700; font-size: 16px; margin-bottom: 16px;
}

/* ----------------------------------------------------------------- два столпа */

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar {
  background: #fff; border: 1.5px solid var(--border-warm);
  border-radius: 8px; padding: 36px 34px;
}
.pillar-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.pillar h3 { font-size: 24px; margin-bottom: 14px; color: var(--dark); }
.pillar p { font-size: 17px; color: var(--text-mid); }

/* ------------------------------------------------------------ таблица каналов */

.channels-wrap { overflow-x: auto; border-radius: 8px; border: 1px solid var(--border-warm); background: #fff; }
.channels { width: 100%; border-collapse: collapse; min-width: 640px; }
.channels th {
  text-align: left; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); padding: 16px 20px;
  border-bottom: 1px solid var(--border-warm);
  background: var(--bg-warm);
}
.channels td {
  padding: 15px 20px; font-size: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.channels tr:last-child td { border-bottom: none; }
.channels td:first-child { font-weight: 600; color: var(--text); }
.tag-sure {
  display: inline-block; font-size: 13px; font-weight: 600;
  background: #e6f2e9; color: #2f7d4a;
  border-radius: 999px; padding: 3px 12px;
}
.tag-luck {
  display: inline-block; font-size: 13px; font-weight: 600;
  background: #fbeee8; color: var(--accent);
  border-radius: 999px; padding: 3px 12px;
}

/* ------------------------------------------------------------------- списки */

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  font-size: 17px; line-height: 1.7; color: var(--text-mid);
  padding-left: 22px; position: relative;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.section-dark .check-list li { color: rgba(255,255,255,0.8); }
.section-dark .check-list li::before { background: #e8a184; }

.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }

/* -------------------------------------------------------------- для кого / нет */

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-box { background: #fff; border-radius: 8px; padding: 34px 32px; border: 1.5px solid var(--border); }
.fit-box h3 { font-size: 20px; margin-bottom: 18px; }
.fit-yes { border-top: 4px solid #43a06a; }
.fit-yes h3 { color: #2f7d4a; }
.fit-no  { border-top: 4px solid #cf7060; }
.fit-no h3 { color: #b4503c; }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fit-list li { font-size: 16px; line-height: 1.65; color: var(--text-mid); padding-left: 28px; position: relative; }
.fit-yes .fit-list li::before { content: '✓'; position: absolute; left: 0; color: #43a06a; font-weight: 700; }
.fit-no  .fit-list li::before { content: '—'; position: absolute; left: 0; color: #cf7060; font-weight: 700; }

/* ---------------------------------------------------------------- программа */

.day-block { background: #fff; border: 1.5px solid var(--border-warm); border-radius: 8px; padding: 0; overflow: hidden; margin-bottom: 24px; }
.day-head { background: var(--dark); color: #fff; padding: 26px 34px; }
.day-head .day-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #e8a184; margin-bottom: 8px;
}
.day-head h3 { font-size: clamp(21px, 2.6vw, 27px); color: #fff; line-height: 1.25; }
.day-body { padding: 30px 34px 34px; }
.day-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.day-item:last-child { border-bottom: none; }
.day-item-mark {
  min-width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); margin-top: 10px;
}
.day-item h4 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.day-item p { font-size: 16px; line-height: 1.65; color: var(--text-mid); }

/* ------------------------------------------------------------------ материалы */

.mat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.mat-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 6px; padding: 22px 24px;
}
.mat-item strong { display: block; font-size: 17px; color: var(--dark); margin-bottom: 6px; }
.mat-item span { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* --------------------------------------------------------------------- автор */

.author-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.author-photo img { width: 100%; border-radius: 8px; box-shadow: 0 18px 44px rgba(56,34,21,0.14); }
.author-text p { font-size: 17px; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; }
.author-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.author-stat { background: var(--bg-warmer); border-radius: 8px; padding: 20px 16px; text-align: center; }
.author-stat strong { display: block; font-size: 24px; font-weight: 700; color: var(--accent); }
.author-stat span { font-size: 14px; color: var(--text-mid); line-height: 1.5; display: block; margin-top: 4px; }

/* ------------------------------------------------------------------- тарифы */

.pr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pr-card {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border-warm);
  background: #fff; border-radius: 8px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pr-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pr-card-featured { border: 2px solid var(--accent); }
.pr-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-bottom-left-radius: 8px;
}
.pr-card-head { padding: 36px 30px 24px; border-bottom: 1px solid var(--border); }
.pr-card-name { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pr-card-for { font-size: 15px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.pr-price { font-size: 42px; font-weight: 700; color: var(--accent); line-height: 1; }
.pr-price-old { font-size: 17px; color: var(--text-light); text-decoration: line-through; margin-bottom: 6px; }
.pr-price-note { font-size: 14px; color: var(--text-light); margin-top: 8px; }
.pr-price-next {
  display: inline-block; margin-top: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: var(--bg-warmer); border-radius: 999px; padding: 3px 12px;
}
.pr-card-body { padding: 26px 30px 30px; flex: 1; }
.pr-card-body .check-list li { font-size: 16px; }
.pr-promise {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 16px; line-height: 1.6; color: var(--dark); font-weight: 600;
}
.pr-card-foot { padding: 0 30px 30px; }
.pr-btn {
  display: block; text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 20px; text-decoration: none; border-radius: 4px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.pr-btn-outline { border: 2px solid var(--dark); color: var(--dark); background: transparent; }
.pr-btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.pr-btn-solid { background: var(--dark); color: #fff; border: 2px solid var(--dark); }
.pr-btn-solid:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* --------------------------------------------------------------------- клуб */

.club-box {
  background: #fff; border: 2px solid var(--accent);
  border-radius: 10px; padding: 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 36px; align-items: center; margin-top: 32px;
}
.club-box h3 { font-size: 24px; color: var(--dark); margin-bottom: 12px; }
.club-box p { font-size: 17px; color: var(--text-mid); line-height: 1.7; }

/* ---------------------------------------------------------------------- FAQ */

.faq-item { border-bottom: 1px solid var(--border-warm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px; font-weight: 600; color: var(--text);
  padding: 22px 44px 22px 0; cursor: pointer;
  position: relative; line-height: 1.5;
}
.faq-q::after {
  content: '+'; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--accent);
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 0 24px; font-size: 17px; line-height: 1.75; color: var(--text-mid); }
.faq-item.open .faq-a { display: block; }

/* ------------------------------------------------------------------- футер */

.footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 48px 20px 32px; font-size: 14px; line-height: 1.7; }
.footer a { color: #e8a184; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 24px; }
.footer-logo { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer-logo span { color: #e8a184; font-weight: 700; }
.footer-logo a { display: block; }
.footer-social { display: flex; gap: 16px; justify-content: center; }
.footer-social a {
  display: inline-block; padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.footer-social a:hover { border-color: #e8a184; color: #e8a184; text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: #e8a184; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 480px; line-height: 1.6; }

/* --------------------------------------------------------------- анимация */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------- адаптивность */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .author-grid { grid-template-columns: 1fr; gap: 32px; }
  .author-photo { max-width: 320px; }
  .pillars { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .club-box { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 860px) {
  .pr-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .section { padding: 56px 18px; }
  .sticky-nav-inner { gap: 20px; overflow-x: auto; }
  .sticky-nav a { font-size: 14px; }
  .day-head, .day-body { padding-left: 22px; padding-right: 22px; }
  .statement { padding: 28px 24px; }
  .club-box { padding: 30px 24px; }
  .author-stats { grid-template-columns: 1fr; }
  .hero-photo-caption { font-size: 12px; padding: 8px 16px; }
}

/* ------------------------------------------------------------- пульс кнопки */

.btn-pulse { animation: btn-pulse 2.4s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,107,74,0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(201,107,74,0); }
}

/* -------------------------------------------------------------------- таймер */

.ub-timer { font-weight: 700; font-variant-numeric: tabular-nums; }

.timer-box { text-align: center; margin-top: 36px; }
.timer { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.timer-cell {
  min-width: 92px; background: #fff;
  border: 1.5px solid var(--border-warm); border-radius: 8px;
  padding: 16px 10px;
}
.timer-num {
  font-size: 34px; font-weight: 700; color: var(--accent);
  line-height: 1.1; font-variant-numeric: tabular-nums;
}
.timer-lab {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-light); margin-top: 6px;
}
.timer-cap { font-size: 15px; color: var(--text-mid); margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }

@media (max-width: 700px) {
  .timer { gap: 8px; }
  .timer-cell { min-width: 70px; padding: 12px 6px; }
  .timer-num { font-size: 26px; }
  .timer-lab { font-size: 10px; }
}

/* Таблица каналов на узком экране: строки превращаются в карточки */
@media (max-width: 760px) {
  .channels-wrap { overflow: visible; border: none; background: transparent; }
  .channels { min-width: 0; display: block; }
  .channels thead { display: none; }
  .channels tbody, .channels tr, .channels td { display: block; width: 100%; }
  .channels tr {
    background: #fff; border: 1px solid var(--border-warm);
    border-radius: 10px; padding: 14px 16px; margin-bottom: 12px;
  }
  .channels td { border: none; padding: 3px 0; font-size: 16px; }
  .channels td:first-child { font-size: 18px; font-weight: 700; color: var(--text); }
  .channels td:not(:first-child)::before {
    content: attr(data-l) ': ';
    color: var(--text-light); font-size: 14px;
  }
}

/* ===========================================================================
   Мобильные правки 04.09.2026 — читаемость и доступность на телефоне
   Только медиа-выборки ≤820px; десктоп не затрагивается (кроме scroll-padding).
   =========================================================================== */

/* 3. Отступ под фиксированную шапку при переходе по якорям.
      Высота .topbar: 110px обычно, 137px при ≤360px (плашка срочности в 2 строки). */
html { scroll-padding-top: 120px; }
@media (max-width: 400px) { html { scroll-padding-top: 145px; } }

@media (max-width: 820px) {

  /* 1. Рукописная подпись — название продукта. Уезжала выше экрана,
        потому что плашка-кикер на мобиле переносится в две строки. */
  .hero-inner    { padding-top: 76px; }
  .hero-handnote { right: auto; left: 0; bottom: calc(100% + 16px); font-size: 22px; }
  .hero-handnote::after { right: 28px; height: 20px; }

  /* 2. Кнопка «Участвовать» — вынесена из прокручиваемой вбок ленты меню. */
  .sticky-nav       { overflow: hidden; }
  .sticky-nav-inner { gap: 16px; padding-right: 148px; }
  .sticky-nav .nav-cta {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    margin-left: 0; z-index: 3;
    background: var(--accent); color: #fff; opacity: 1;
    padding: 7px 13px; border-radius: 999px; font-size: 14px;
    box-shadow: -10px 0 10px 10px rgba(255,255,255,0.97);
  }

  /* 5. Мелкий текст — аудитория 50+. */
  .timer-cell { min-width: 72px; padding: 12px 4px; }
  .timer-lab  { font-size: 12px; letter-spacing: 0.08em; }
  .pr-badge   { font-size: 12px; }
  .section-label, .pillar-label, .footer-legal { font-size: 13px; }
  .day-head .day-num { font-size: 13px; letter-spacing: 0.08em; }
  .hero-kicker, .tag-luck, .tag-sure, .pr-price-next { font-size: 14px; }
  .pr-price-next { padding: 4px 10px; }
  .footer-links a { font-size: 14px; }
  .footer-disclaimer { font-size: 13px; color: rgba(255,255,255,0.4); }
}

/* Плашка «через … — цена» на самых узких экранах переносится в две строки —
   там оставляем прежние 13px, с 390px и шире держим 14px. */
@media (max-width: 380px) { .pr-price-next { font-size: 13px; } }

/* ---- Отзывы ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border-warm);
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card p.review-quote {
  font-family: 'Caveat', cursive;
  font-size: 1.7em;
  line-height: 1.25;
  color: var(--accent);
  transform: rotate(-1.5deg);
  transform-origin: left center;
}
.review-card p { color: var(--text-mid); font-size: 0.95em; }
.review-author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border-warm);
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-author > div { display: flex; flex-direction: column; gap: 2px; }
.review-avatar {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--border-warm);
}
.review-author a {
  align-self: flex-start;
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
}
.review-author a:hover { color: var(--accent); }
.review-author span { color: var(--text-light); font-size: 0.8em; }

/* ============================================================ ЗАПИСЬ ЭФИРА */

.efir {
  background: var(--dark); color: #fff;
  padding: 46px 20px 56px;
}
.efir-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #e0b9a6; margin-bottom: 14px;
}
.efir-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700; line-height: 1.18; color: #fff;
  margin-bottom: 14px;
}
.efir-title em { font-style: normal; color: #e8a688; }
.efir-meta {
  font-size: 15px; color: #a8c3d2; margin-bottom: 26px;
}
.efir-player {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: 12px; overflow: hidden;
  background: #000;
  box-shadow: 0 26px 60px rgba(0,0,0,0.35);
}
.efir-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.efir-note {
  margin-top: 22px; font-size: 16px; line-height: 1.65; color: #cfe0ea;
}
.efir-note a { color: #fff; text-decoration: underline; }

/* ======================================================= СПЕЦПРЕДЛОЖЕНИЕ */

.offer { background: var(--bg-warmer); padding: 56px 20px; }
.offer-head { text-align: center; }
.offer-title {
  font-size: clamp(24px, 3.4vw, 36px); font-weight: 700;
  color: var(--dark); line-height: 1.22; margin-bottom: 14px;
}
.offer-lead {
  font-size: 17px; line-height: 1.65; color: var(--text-mid);
  max-width: 660px; margin: 0 auto;
}
.offer-rates {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 34px;
}
.offer-rate {
  background: #fff; border: 1.5px solid var(--border-warm);
  border-radius: 12px; padding: 26px 22px;
  display: flex; flex-direction: column; text-align: center;
}
.offer-rate-featured { border-color: var(--accent); box-shadow: 0 16px 36px rgba(201,107,74,0.14); }
.offer-rate-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.offer-rate-for { font-size: 14px; color: var(--text-light); line-height: 1.55; margin-bottom: 16px; min-height: 66px; }
.offer-rate .pr-price { font-size: 34px; }
.offer-rate .pr-price-note { margin-bottom: 18px; }
.offer-rate .pr-btn { margin-top: auto; }
.offer-timer { margin-top: 36px; }
.offer-foot { text-align: center; margin-top: 26px; font-size: 15px; color: var(--text-mid); }
.offer-foot a { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .offer-rates { grid-template-columns: 1fr; }
  .offer-rate-for { min-height: 0; }
}
