/* Вариант F — Светлый современный.
   Off-white фон, один приглушённый sage-зелёный акцент, белые карточки
   с тонкой тенью, без анимации mesh, без gradient text-fill.
   Стиль Notion / Stripe / Linear light mode — calm but modern. */

:root {
  --bg:           #FAFAF8;
  --bg-alt:       #F2F2EE;
  --surface:      #FFFFFF;
  --border:       #E8E7E2;
  --border-h:     #D0CFC8;
  --text:         #18181B;
  --text-soft:    #52525B;
  --text-mute:    #8E8E8E;
  --accent:       #4F7B68;
  --accent-dk:    #3C5F50;
  --accent-soft:  #E8F0EC;
  --warm-tint:    #F4ECDF;
  --shadow-sm:    0 1px 2px 0 rgba(24, 24, 27, 0.04);
  --shadow-md:    0 2px 6px -1px rgba(24, 24, 27, 0.06), 0 4px 12px -4px rgba(24, 24, 27, 0.04);
  --shadow-lg:    0 8px 24px -8px rgba(24, 24, 27, 0.10);
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --serif:        'Iowan Old Style', 'Apple Garamond', Georgia, 'Times New Roman', serif;
  --mono:         'SF Mono', 'JetBrains Mono', Menlo, monospace;
  --radius:       16px;
  --radius-sm:    10px;
}

*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dk); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .15s; }
a:hover { border-bottom-color: var(--accent); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 680px; }

.section-title {
  font-weight: 600; font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 24px;
  color: var(--text);
}

/* ============================================================ */
/* === HERO                                                      */
/* ============================================================ */
/* Layout: hero — relative-контейнер с padding'ом и max-width;
   inner и ticker — обычные block-элементы в левой половине;
   media и overlay — absolute, прибиты к границам padding'а справа.
   Так высота фото гарантированно совпадает с (inner + ticker). */
.hero {
  position: relative;
  background: var(--bg); overflow: hidden;
  padding: 56px 32px 0;
  max-width: 1340px; margin: 0 auto;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 1000px 700px at 85% 30%, rgba(79, 123, 104, 0.08), transparent 65%),
    radial-gradient(ellipse 700px 500px at 10% 85%, rgba(244, 236, 223, 0.7), transparent 65%);
}

.hero__media,
.hero__overlay {
  position: absolute;
  top: 56px; right: 32px; bottom: 0;
  width: calc(50% - 64px);
  border-radius: 24px;
  z-index: 1;
}
.hero__media {
  background: url('../assets/cover-hero.jpg') center center / cover no-repeat;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  filter: saturate(0.92) brightness(1.02);
}
.hero__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(79, 123, 104, 0.18) 100%);
  pointer-events: none; z-index: 2;
}

.hero__inner,
.hero__ticker {
  position: relative; z-index: 5;
  width: calc(50% - 32px);
  max-width: calc(50% - 32px);
}
.hero__inner {
  display: flex; flex-direction: column; justify-content: center;
}
.hero__ticker {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .hero { padding: 32px 24px; }
  .hero__media, .hero__overlay {
    position: relative; top: auto; right: auto; bottom: auto;
    width: 100%; height: 360px; margin: 24px 0 0;
  }
  .hero__overlay { margin-top: -360px; }
  .hero__inner, .hero__ticker { width: 100%; max-width: 100%; }
}

.hero__logo { width: 88px; margin: 0 0 32px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--text-soft); margin: 0 0 24px;
  box-shadow: var(--shadow-sm);
}
.hero__kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.hero__title {
  font-size: clamp(38px, 4.2vw, 62px); font-weight: 600;
  line-height: 1.06; letter-spacing: -0.03em;
  margin: 0 0 24px; color: var(--text);
  overflow-wrap: break-word; hyphens: auto;
}
.hero__title em {
  font-style: normal; font-weight: 600;
  display: block; color: var(--accent-dk);
}
.hero__lead {
  font-size: 19px; line-height: 1.55; color: var(--text-soft);
  margin: 0 0 36px; max-width: 38ch;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  background: var(--accent); color: var(--surface);
  border: 0; font-size: 15px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 4px 16px -6px rgba(79, 123, 104, 0.4);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.hero__cta::after { content: '→'; font-size: 18px; transition: transform .15s; }
.hero__cta:hover { background: var(--accent-dk); border: 0; transform: translateY(-1px); }
.hero__cta:hover::after { transform: translateX(3px); }

.hero__ticker {
  list-style: none; padding: 24px 0 0;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px 32px;
}
@media (max-width: 480px) { .hero__ticker { grid-template-columns: 1fr 1fr; } }
.hero__ticker li {
  font-size: 13px; color: var(--text);
  display: flex; flex-direction: column; gap: 2px;
}
.hero__ticker li span {
  font-family: var(--mono); font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ============================================================ */
/* === INTRO — лид + dates-карточки                             */
/* ============================================================ */
.intro { padding: 96px 0; margin-top: 56px; }
.intro__lead {
  font-size: clamp(24px, 2.5vw, 32px); font-weight: 500;
  line-height: 1.35; letter-spacing: -0.018em;
  max-width: 800px; margin: 0 0 48px; color: var(--text);
}
.intro__dates {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 640px; margin: 0 0 32px;
}
@media (max-width: 540px) { .intro__dates { grid-template-columns: 1fr; } }
.date {
  padding: 24px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.date__label { display: block; font-family: var(--mono); font-size: 12px; color: var(--text-mute); margin-bottom: 8px; letter-spacing: 0.02em; }
.date__value { display: block; font-size: 30px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.intro__meta { font-size: 17px; color: var(--text-soft); max-width: 680px; margin: 0 0 24px; }
.intro__callout {
  padding: 20px 24px; border-radius: var(--radius);
  background: var(--accent-soft); border: 1px solid rgba(79, 123, 104, 0.2);
  font-size: 16px; max-width: 680px; color: var(--accent-dk);
  font-weight: 500;
}

/* ============================================================ */
/* === FOR WHOM — карточки 2×2                                 */
/* ============================================================ */
.for-whom { padding: 96px 0; background: var(--bg-alt); }
.for-whom__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .for-whom__list { grid-template-columns: 1fr; } }
.for-whom__list li {
  padding: 28px 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 18px; line-height: 1.45; box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; gap: 16px; align-items: flex-start;
}
.for-whom__list li:hover { border-color: var(--border-h); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.for-whom__list li::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px;
  margin-top: 12px; border-radius: 50%;
  background: var(--accent);
}

/* ============================================================ */
/* === RESULTS — 5 карточек с иконкой-чипом                    */
/* ============================================================ */
.results { padding: 96px 0; }
.results__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.results__list li {
  padding: 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 16px; line-height: 1.45; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 20px; min-height: 180px;
  transition: border-color .15s, box-shadow .15s;
}
.results__list li:hover { border-color: var(--border-h); box-shadow: var(--shadow-md); }
.results__list li::before {
  content: '✓'; width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-dk);
  display: grid; place-items: center; font-size: 16px; font-weight: 700;
}

/* ============================================================ */
/* === PLAN — карточки с большой цифрой                         */
/* ============================================================ */
.plan { padding: 96px 0; background: var(--bg-alt); }
.plan__intro { font-size: 17px; color: var(--text-soft); max-width: 600px; margin: -16px 0 48px; }
.plan__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.plan__item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 24px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); align-items: start;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.plan__item:hover { border-color: var(--border-h); box-shadow: var(--shadow-md); transform: translateY(-1px); }
@media (max-width: 640px) { .plan__item { grid-template-columns: 1fr; gap: 12px; } }
.plan__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-dk);
  font-family: var(--mono); font-size: 14px; font-weight: 600;
}
.plan__body h3 { margin: 6px 0 6px; font-size: 21px; font-weight: 600; letter-spacing: -0.015em; }
.plan__body p { margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.55; }

/* ============================================================ */
/* === EXPERT — большая карточка                               */
/* ============================================================ */
.expert { padding: 96px 0; }
.expert__grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center;
  padding: 48px; border-radius: 24px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) { .expert__grid { grid-template-columns: 1fr; gap: 24px; padding: 32px; text-align: center; justify-items: center; } }
.expert__media {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--warm-tint);
  display: grid; place-items: stretch; border: 1px solid var(--border);
  overflow: hidden;
}
.expert__photo {
  width: 100%; height: 100%;
  background: url('../assets/expert.png') center 15% / cover no-repeat;
}
.expert__role {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dk);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.expert__name { font-size: clamp(36px, 4vw, 52px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 20px; }
.expert__title { font-size: 18px; margin: 0 0 16px; color: var(--text); font-weight: 500; }
.expert__desc { margin: 0; color: var(--text-soft); max-width: 540px; }

/* ============================================================ */
/* === APPLICATION — форма-карточка                            */
/* ============================================================ */
.application { padding: 96px 0; background: var(--bg-alt); }
.application .section-title { text-align: center; }
.application__intro {
  text-align: center; color: var(--text-soft); margin: -8px auto 48px;
  max-width: 600px; font-size: 17px;
}
.application__intro strong { color: var(--accent-dk); font-weight: 600; }

#our-form {
  display: grid; gap: 20px;
  padding: 40px; border-radius: 20px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
@media (max-width: 540px) { #our-form { padding: 24px; } }
.field { display: grid; gap: 8px; }
.field > span, .field legend {
  font-size: 13px; color: var(--text); font-weight: 500;
  letter-spacing: -0.005em;
}
.field input, .field textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  background: var(--bg); border-radius: var(--radius-sm); font: inherit;
  color: var(--text); transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(79, 123, 104, 0.15);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field textarea { resize: vertical; min-height: 80px; }
.field--radio { border: 0; padding: 0; margin: 0; }
.field--radio legend { padding: 0; margin-bottom: 8px; }
.radio { display: inline-flex; align-items: center; gap: 8px; margin-right: 24px; cursor: pointer; }
.radio input { accent-color: var(--accent); width: 16px; height: 16px; }
.field__err { color: #B91C1C; font-size: 12px; min-height: 14px; }
.field.is-error input, .field.is-error textarea { border-color: #B91C1C; box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12); }

/* === Чекбокс согласия с политикой === */
.field--consent {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}
.field--consent input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
  margin: 0; padding: 0;
  flex-shrink: 0; cursor: pointer;
  margin-top: 2px;
}
.field--consent > span { display: block; }
.field--consent a { color: var(--accent-dk); text-decoration: underline; text-underline-offset: 2px; }
.field--consent a:hover { color: var(--accent); }
.field--consent .field__err { grid-column: 1 / -1; }
.field--consent.is-error > span { color: #B91C1C; }
.field--consent.is-error input[type="checkbox"] { outline: 2px solid #B91C1C; outline-offset: 2px; }

.honeypot { position: absolute; left: -9999px; }

.form__submit {
  margin-top: 12px; padding: 14px 32px;
  background: var(--accent); color: var(--surface);
  border: 0; border-radius: 12px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 4px 16px -6px rgba(79, 123, 104, 0.4);
}
.form__submit:hover { background: var(--accent-dk); transform: translateY(-1px); }
.form__submit:disabled,
.form__submit[disabled] {
  background: #C7C7C2;
  color: #FFFFFF;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.form__submit:disabled:hover,
.form__submit[disabled]:hover {
  background: #C7C7C2;
  transform: none;
}
.form__terms { font-size: 13px; color: var(--text-mute); text-align: center; margin: 8px 0 0; }
.js-successbox {
  padding: 24px; border-radius: var(--radius);
  background: var(--accent-soft); border: 1px solid rgba(79, 123, 104, 0.3);
  color: var(--accent-dk); margin-bottom: 16px;
}

/* ============================================================ */
/* === FOOTER                                                    */
/* ============================================================ */
.footer { padding: 64px 0; background: var(--surface); border-top: 1px solid var(--border); text-align: center; }
.footer__brand { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 12px; color: var(--text); }
.footer__email a { color: var(--accent-dk); border: 0; font-size: 19px; font-weight: 500; }
.footer__email a:hover { border-bottom: 1px solid var(--accent); }
.footer__links { list-style: none; padding: 0; margin: 24px 0 0; display: flex; gap: 24px; justify-content: center; font-size: 14px; }
.footer__links a { color: var(--text-soft); border: 0; }
.footer__links a:hover { color: var(--text); border-bottom: 1px solid var(--text); }

