/* ============================================================
   Академія жіночого впливу Вести — landing design system
   Dark luxury · bordo · gold · Cormorant + Manrope
   ============================================================ */

:root {
  /* canvas */
  --bg:         #0F0A0A;
  --bg-soft:    #150D0D;
  --bg-panel:   #1B1111;   /* burgundy-tinted panel */
  --bg-deep:    #080505;
  --bg-card:    #18100F;

  /* bordo */
  --bordo:        #6E1B29;
  --bordo-deep:   #4E1320;
  --bordo-bright: #8A2433;

  /* gold */
  --gold:       #C9A86A;
  --gold-2:     #E6D0A0;
  --gold-deep:  #A4824A;
  --gold-grad:  linear-gradient(120deg, #E9D6A8 0%, #C9A86A 48%, #A4824A 100%);

  /* ink */
  --ink:   #F2E9DF;
  --ink-2: #CBBCAE;
  --ink-3: #8E7F72;
  --ink-4: #6A5C52;

  /* lines */
  --line:      rgba(201,168,106,0.20);
  --line-soft: rgba(242,233,223,0.08);

  /* shadows */
  --shadow:    0 30px 80px rgba(0,0,0,0.55);
  --shadow-sm: 0 14px 40px rgba(0,0,0,0.45);
  --glow-bordo: 0 18px 50px rgba(110,27,41,0.45);

  /* type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", system-ui, sans-serif;

  /* layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.label.center { justify-content: center; }
.label.center::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: 0.005em; }

.h-display {
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  line-height: 1.02;
}
.hero-copy .hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  margin: 22px 0 28px;
  letter-spacing: 0.005em;
}
.hero-copy .hero-sub .it { color: var(--gold); }
.h-section {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.06;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bordo-text { color: var(--bordo-bright); }
.it { font-style: italic; }

.lead { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.muted { color: var(--ink-3); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 600;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 4px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .2s ease; }
.btn-primary {
  background: linear-gradient(120deg, var(--bordo) 0%, var(--bordo-deep) 100%);
  color: var(--ink);
  box-shadow: var(--glow-bordo);
  border: 1px solid rgba(201,168,106,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(110,27,41,0.6); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-gold {
  background: var(--gold-grad);
  color: #1a0f0a;
  box-shadow: 0 16px 40px rgba(201,168,106,0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 54px rgba(201,168,106,0.42); }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.015);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ---------- section frame ---------- */
section { position: relative; }
.section-pad { padding: clamp(72px, 9vw, 130px) 0; }
.divider { height: 1px; background: var(--line-soft); }

/* ---------- image slot styling ---------- */
image-slot {
  --slot-bg: radial-gradient(120% 120% at 30% 20%, #241616 0%, #120b0b 60%, #070404 100%);
  background: var(--slot-bg);
  border: 1px solid var(--line);
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(11,7,7,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mono {
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--gold); border-radius: 3px;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 22px;
  color: var(--gold);
}
.brand .bn { line-height: 1.05; }
.brand .bn b {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase;
}
.brand .bn .bn-grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand .bn span { display: block; font-size: 8.5px; letter-spacing: 0.42em; color: var(--ink-3); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 12.5px; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500; color: var(--ink-2); transition: color .18s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; }
.burger span { height: 1.5px; background: var(--gold); width: 100%; transition: .25s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,5,5,0.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 28px; color: var(--ink); letter-spacing: 0.04em; }
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 110px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 90% at 78% 50%, rgba(110,27,41,0.30) 0%, transparent 55%),
    radial-gradient(60% 80% at 12% 18%, rgba(201,168,106,0.07) 0%, transparent 60%),
    linear-gradient(90deg, var(--bg) 0%, rgba(15,10,10,0.55) 46%, rgba(15,10,10,0.15) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero-copy { max-width: 620px; }
.hero-copy h1 { margin: 26px 0 28px; }
.hero-copy .lead { max-width: 460px; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-portrait { position: relative; }
.hero-portrait image-slot { width: 100%; height: 620px; }
.hero-portrait .frame-tag {
  position: absolute; left: -18px; bottom: 38px; z-index: 3;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 10.5px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); opacity: 0.8;
}

/* ============================================================
   ABOUT (про академію)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy h2 { margin: 22px 0 26px; }
.about-copy p + p { margin-top: 18px; }
.about-img image-slot { width: 100%; height: 460px; }

/* ============================================================
   PAINS (для кого / болі)
   ============================================================ */
.pains { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.center-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.center-head h2 { margin-top: 22px; }
.center-head .lead { margin-top: 18px; }
.pains-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.pain {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 30px 32px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(110,27,41,0.06), rgba(255,255,255,0.01));
}
.pain .x { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(138,36,51,0.5); color: var(--bordo-bright); display: grid; place-items: center; font-size: 15px; margin-top: 2px; }
.pain p { color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* ============================================================
   PROGRAMS (освітні програми)
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.prog-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; border: none; border-radius: 0; }
.prog-card .veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,5,5,0.15) 0%, rgba(8,5,5,0.55) 50%, rgba(8,5,5,0.94) 100%); pointer-events: none; }
.prog-card .pc-body { position: relative; z-index: 2; padding: 34px 32px 32px; pointer-events: none; }
.prog-card .pc-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); opacity: 0.75; }
.prog-card h3 { font-size: 27px; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.08; margin: 10px 0 14px; font-weight: 600; }
.prog-card .pc-desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 22px; min-height: 66px; }
.prog-card .pc-link { pointer-events: auto; display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--gold); border-top: 1px solid var(--line); padding-top: 18px; }
.prog-card .pc-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.prog-card:hover .pc-link svg { transform: translateX(5px); }

/* ============================================================
   RESULTS (що ти отримаєш)
   ============================================================ */
.results { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.res-cell { background: var(--bg); padding: 44px 36px; transition: background .25s ease; }
.res-cell:hover { background: var(--bg-card); }
.res-ic { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 24px; }
.res-ic svg { width: 24px; height: 24px; color: var(--gold); }
.res-cell h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.res-cell p { font-size: 15px; color: var(--ink-3); line-height: 1.6; }

/* ============================================================
   MODULES (програма по модулях)
   ============================================================ */
.mod-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.mod-grid--solo { grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; }
.mod-list { display: flex; flex-direction: column; }
.mod {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--line-soft);
}
.mod:first-child { padding-top: 0; }
.mod-num { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--bordo-bright); transition: color .25s ease, -webkit-text-stroke-color .25s ease; }
.mod:hover .mod-num { color: var(--bordo-bright); -webkit-text-stroke-color: transparent; }
.mod-txt h3 { font-family: var(--sans); font-size: 19px; font-weight: 700; letter-spacing: 0.01em; margin-bottom: 8px; line-height: 1.3; }
.mod-txt p { font-size: 15px; color: var(--ink-3); line-height: 1.6; }
.mod-aside { position: sticky; top: 110px; }
.mod-aside image-slot { width: 100%; height: 540px; }

/* ============================================================
   TESTIMONIALS (відгуки)
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst {
  padding: 36px 32px; border-radius: var(--radius); border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, var(--bg-card), rgba(255,255,255,0.008));
  display: flex; flex-direction: column;
}
.tst .quote { font-family: var(--serif); font-size: 34px; color: var(--gold); opacity: 0.5; line-height: 0.6; height: 22px; }
.tst p { color: var(--ink); font-size: 16.5px; line-height: 1.62; margin: 18px 0 26px; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line-soft); padding-top: 22px; }
.tst .who image-slot { width: 46px; height: 46px; flex: none; }
.tst .who b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.tst .who span { font-size: 12px; color: var(--ink-3); letter-spacing: 0.05em; }

/* ============================================================
   ABOUT VESTA (про весту)
   ============================================================ */
.vesta { background: var(--bg-deep); }
.vesta-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.vesta-photo { position: relative; }
.vesta-photo image-slot { width: 100%; height: 560px; }
.vesta-copy h2 { margin: 22px 0 24px; }
.creds { list-style: none; margin: 30px 0; display: flex; flex-direction: column; gap: 16px; }
.creds li { display: flex; align-items: center; gap: 16px; font-size: 16px; color: var(--ink-2); }
.creds li svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; padding-top: 44px; border-top: 1px solid var(--line-soft); }
.stat .n { font-family: var(--serif); font-size: clamp(38px, 4vw, 52px); font-weight: 600; line-height: 1; }
.stat .l { font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.08em; margin-top: 10px; text-transform: uppercase; }

/* ============================================================
   PRICING (тариф)
   ============================================================ */
.pricing { position: relative; overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 100% at 50% 0%, rgba(110,27,41,0.30) 0%, transparent 60%);
}
.price-card {
  position: relative; z-index: 2; max-width: 720px; margin: 56px auto 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg-deep) 100%);
  box-shadow: var(--shadow); overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--bordo-bright) 25%, var(--bordo-bright) 75%, transparent 100%);
  z-index: 4;
}
.price-card::after {
  content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bordo-bright);
  box-shadow: 0 0 18px rgba(138,36,51,0.6);
  z-index: 5;
}
.price-head { padding: 40px 48px 32px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.price-tag-row { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-top: 18px; }
.price-now { font-family: var(--serif); font-size: 68px; font-weight: 600; line-height: 1; white-space: nowrap; }
.price-old { font-family: var(--serif); font-size: 30px; color: var(--ink-4); text-decoration: line-through; white-space: nowrap; }
.price-badge { display: inline-block; margin-top: 16px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 7px 18px; }
.price-body { padding: 40px 48px 48px; }
.incl { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; margin-bottom: 36px; }
.incl li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.incl li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.price-card .btn { width: 100%; justify-content: center; font-size: 14px; padding: 20px; }
.price-note { text-align: center; font-size: 13px; color: var(--ink-4); margin-top: 18px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 840px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 4px; font-family: var(--serif); font-size: clamp(20px, 2.2vw, 25px); font-weight: 500; color: var(--ink); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: transform .3s ease, background .3s ease; }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform .3s ease; }
.faq-item.open .pm { background: rgba(201,168,106,0.1); }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 28px; color: var(--ink-3); font-size: 16px; line-height: 1.7; max-width: 92%; }

/* ============================================================
   FREE MATERIALS (безкоштовні матеріали)
   ============================================================ */
.free { background: var(--bg-soft); border-top: 1px solid var(--line-soft); }
.free-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
.free-card {
  text-align: center; padding: 40px 28px; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: var(--bg-card);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.free-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-sm); }
.free-ic { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: var(--gold-grad); color: #1a0f0a; }
.free-ic svg { width: 26px; height: 26px; }
.free-card h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 8px; }
.free-card p { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); padding: 80px 0 36px; border-top: 1px solid var(--line-soft); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-soft); }
.foot-brand .brand { margin-bottom: 22px; }
.foot-brand p { color: var(--ink-3); font-size: 14px; max-width: 280px; line-height: 1.6; }
.foot-col h4 { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 600; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.foot-col a { font-size: 14.5px; color: var(--ink-2); transition: color .18s ease; }
.foot-col a:hover { color: var(--gold); }
.foot-contacts li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); }
.foot-contacts svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { font-size: 12.5px; color: var(--ink-4); letter-spacing: 0.04em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   DECOR — ghost monogram + panel texture
   ============================================================ */
.center-head { position: relative; }
.center-head > * { position: relative; z-index: 1; }
.center-head::before {
  content: "V"; font-family: var(--serif); font-weight: 600; font-style: italic;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -60%);
  font-size: clamp(160px, 20vw, 260px); line-height: 1; z-index: 0; pointer-events: none;
  color: rgba(201,168,106,0.045);
}
.pains, .results, .free, .vesta { background-image:
  radial-gradient(60% 60% at 50% 0%, rgba(201,168,106,0.05) 0%, transparent 55%); }

/* subtle bordo accent under lessons + understand + about sections */
#lessons {
  background-image: radial-gradient(50% 50% at 50% 100%, rgba(110,27,41,0.08) 0%, transparent 60%);
}
#understand {
  background-image: radial-gradient(45% 50% at 100% 50%, rgba(110,27,41,0.06) 0%, transparent 60%),
                    radial-gradient(45% 50% at 0% 50%, rgba(201,168,106,0.04) 0%, transparent 60%);
}

/* bordo accent dot for centered label decoration */
.center-head .label::before,
.center-head .label::after { background: var(--gold); }
.center-head .label .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--bordo-bright);
  box-shadow: 0 0 12px rgba(138,36,51,0.55);
  margin: 0 4px;
}

/* ============================================================
   FOR YOU / NOT FOR YOU (для кого)
   ============================================================ */
.foryou-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1040px; margin: 0 auto; }
.foryou-col { padding: 44px 40px; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.foryou-col.yes { background: linear-gradient(165deg, rgba(201,168,106,0.07), rgba(255,255,255,0.008)); border-color: var(--line); }
.foryou-col.no { background: linear-gradient(165deg, rgba(110,27,41,0.08), rgba(255,255,255,0.006)); }
.foryou-col h3 { font-size: 27px; font-weight: 500; margin-bottom: 26px; display: flex; align-items: center; gap: 14px; }
.foryou-col h3 .ic { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.foryou-col.yes h3 .ic { background: var(--gold-grad); color: #1a0f0a; }
.foryou-col.no h3 .ic { border: 1px solid rgba(138,36,51,0.6); color: var(--bordo-bright); }
.foryou-col h3 .ic svg { width: 20px; height: 20px; }
.foryou-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.foryou-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.foryou-list li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.foryou-col.yes .foryou-list li svg { color: var(--gold); }
.foryou-col.no .foryou-list li svg { color: var(--bordo-bright); }

/* ============================================================
   TRANSFORMATION (до → після)
   ============================================================ */
.transform { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.tr-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 36px; align-items: stretch; max-width: 1040px; margin: 0 auto; }
.tr-col { padding: 44px 40px; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.tr-col.before { background: rgba(255,255,255,0.012); }
.tr-col.after { background: linear-gradient(165deg, rgba(110,27,41,0.14), rgba(201,168,106,0.05)); border-color: var(--line); box-shadow: var(--shadow-sm); }
.tr-col .tr-label { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; display: block; }
.tr-col.before .tr-label { color: var(--ink-3); }
.tr-col.after .tr-label { color: var(--gold); }
.tr-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.tr-list li { font-size: 16.5px; line-height: 1.5; display: flex; gap: 13px; align-items: flex-start; }
.tr-list li svg { width: 18px; height: 18px; flex: none; margin-top: 4px; }
.tr-col.before .tr-list li { color: var(--ink-3); }
.tr-col.before .tr-list li svg { color: var(--ink-4); }
.tr-col.after .tr-list li { color: var(--ink); }
.tr-col.after .tr-list li svg { color: var(--gold); }
.tr-arrow { align-self: center; width: 58px; height: 58px; border-radius: 50%; background: var(--gold-grad); color: #1a0f0a; display: grid; place-items: center; box-shadow: 0 14px 36px rgba(201,168,106,0.3); }
.tr-arrow svg { width: 26px; height: 26px; }

/* ============================================================
   TESTIMONIAL SCREENSHOT SLOT
   ============================================================ */
.tst-shot { width: 100%; height: 190px; margin-bottom: 24px; }
.tst .quote { font-family: var(--serif); }

/* ============================================================
   BONUS BAND (in pricing)
   ============================================================ */
.bonus { position: relative; z-index: 2; max-width: 720px; margin: 48px auto 0; }
.bonus-head { text-align: center; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bonus-card { padding: 26px 22px; border-radius: var(--radius-sm); border: 1px dashed var(--line); background: rgba(201,168,106,0.04); text-align: center; }
.bonus-card .bic { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; margin: 0 auto 16px; }
.bonus-card .bic svg { width: 20px; height: 20px; color: var(--gold); }
.bonus-card h4 { font-family: var(--sans); font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.bonus-card p { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.cd-cell { min-width: 64px; padding: 12px 8px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); }
.cd-cell .num { font-family: var(--serif); font-size: 34px; font-weight: 600; line-height: 1; color: var(--ink); }
.cd-cell .unit { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 7px; }
.cd-note { text-align: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bordo-bright); margin-top: 18px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; overflow: hidden; background: var(--bg-deep); text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(80% 120% at 50% 110%, rgba(110,27,41,0.55) 0%, transparent 60%),
  radial-gradient(60% 80% at 50% -10%, rgba(201,168,106,0.10) 0%, transparent 55%); }
.final-cta .wrap { position: relative; z-index: 2; max-width: 860px; }
.final-cta h2 { font-size: clamp(36px, 5.4vw, 68px); font-weight: 500; line-height: 1.05; margin: 22px 0 26px; }
.final-cta .lead { max-width: 600px; margin: 0 auto 40px; }
.final-cta .btn { font-size: 14px; padding: 21px 44px; }
.final-cta .fc-reassure { display: flex; justify-content: center; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.final-cta .fc-reassure span { font-size: 13px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 9px; }
.final-cta .fc-reassure svg { width: 16px; height: 16px; color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait image-slot { height: 460px; }
  .hero-portrait .frame-tag { display: none; }
  .about-grid, .mod-grid, .vesta-grid { grid-template-columns: 1fr; gap: 40px; }
  .mod-aside { position: static; order: -1; }
  .mod-aside image-slot { height: 360px; }
  .prog-grid, .res-grid, .tst-grid, .free-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tr-grid { grid-template-columns: 1fr; gap: 20px; }
  .tr-arrow { justify-self: center; transform: rotate(90deg); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { height: 60px; gap: 14px; }
  .hero { padding-top: 84px; }
  .pains-grid, .prog-grid, .res-grid, .tst-grid, .free-grid, .incl, .stats, .foryou-grid, .bonus-grid { grid-template-columns: 1fr; }
  .foryou-col, .tr-col { padding: 32px 26px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .res-grid { border-radius: var(--radius); }
  .hero-cta .btn, .hero-cta { width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .price-head, .price-body { padding-left: 26px; padding-right: 26px; }
  .price-now { font-size: 52px; }
  .foot-grid { grid-template-columns: 1fr; }
  .brand .mono { width: 32px; height: 32px; font-size: 17px; }
  .brand .bn b { font-size: 11.5px; letter-spacing: 0.18em; }
  .brand .bn span { font-size: 7.5px; letter-spacing: 0.36em; }
  .nav-right .btn { padding: 10px 16px; font-size: 11px; letter-spacing: 0.14em; }
}
@media (max-width: 380px) {
  .brand .mono { display: none; }
}

/* ============================================================
   PRODUCTION IMAGE SLOTS (img.slot — mirrors image-slot sizing)
   ============================================================ */
img.slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius);
  background: radial-gradient(120% 120% at 30% 20%, #241616 0%, #120b0b 60%, #070404 100%);
}
.hero-portrait img.slot { height: 620px; object-position: 50% 22%; }
.about-img img.slot   { height: 460px; object-position: 50% 10%; }
.vesta-photo img.slot { height: 560px; object-position: 50% 32%; }
.tst-shot.slot        { height: 190px; border-radius: var(--radius-sm); }
.tst .who img.slot    { width: 46px; height: 46px; border-radius: 50%; object-position: 50% 50%; }
@media (max-width: 1024px) {
  .hero-portrait img.slot { height: 460px; }
}

/* ============================================================
   UNDERSTAND (що зрозумієш на курсі) — 5 cards
   ============================================================ */
.und-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.und-card:nth-child(4) { grid-column: 1 / span 1; grid-row: 2; }
.und-card:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }
.und-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, var(--bg-card), rgba(255,255,255,0.008));
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.und-card:hover {
  transform: translateY(-4px);
  border-color: var(--bordo-bright);
  box-shadow: 0 14px 40px rgba(110,27,41,0.25);
}
.und-ic {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.und-ic svg { width: 22px; height: 22px; color: var(--gold); }
.und-body h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.005em;
  margin-bottom: 8px;
}
.und-body p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .und-grid { grid-template-columns: repeat(2, 1fr); }
  .und-card:nth-child(4),
  .und-card:nth-child(5) { grid-column: auto; grid-row: auto; }
  .und-card:nth-child(5) { grid-column: 1 / span 2; }
}
@media (max-width: 640px) {
  .und-grid { grid-template-columns: 1fr; }
  .und-card:nth-child(5) { grid-column: auto; }
}

/* ============================================================
   BONUS LESSON (9-й урок з кейсами)
   ============================================================ */
.mod--bonus {
  position: relative;
  background: linear-gradient(165deg, rgba(110,27,41,0.12), rgba(201,168,106,0.04));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 28px;
  margin-top: 8px;
}
.mod--bonus { border-bottom: 1px solid var(--line); }
.mod--bonus .mod-num { -webkit-text-stroke-color: var(--gold); color: var(--gold); -webkit-text-fill-color: transparent; }
.mod--bonus:hover .mod-num { -webkit-text-stroke-color: transparent; color: var(--gold); -webkit-text-fill-color: var(--gold); }
.mod-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,106,0.1);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ============================================================
   OTHER COURSES (cross-sell)
   ============================================================ */
.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  max-width: 720px;
  margin: 54px auto 0;
}
.other-card {
  display: block;
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, var(--bg-card), rgba(255,255,255,0.008));
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  text-decoration: none;
  color: inherit;
}
.other-card:hover {
  transform: translateY(-5px);
  border-color: var(--bordo-bright);
  box-shadow: 0 18px 50px rgba(110,27,41,0.30);
}
.other-card .oc-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.other-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.other-card p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 22px;
}
.other-card .oc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  width: 100%;
}
.other-card .oc-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.other-card:hover .oc-link svg { transform: translateX(5px); }

/* meta-list inside course card */
.other-card .oc-meta {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.other-card .oc-meta li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.other-card .oc-meta svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }

/* featured course card (higher tier) */
.other-card--feature {
  background: linear-gradient(165deg, rgba(110,27,41,0.14), rgba(201,168,106,0.05));
  border-color: var(--line);
  position: relative;
}
.other-card--feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--bordo-bright) 30%, var(--bordo-bright) 70%, transparent);
  z-index: 2;
}

/* courses grid 2-col → 1-col responsive */
.courses-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1040px;
}
@media (max-width: 900px) {
  .courses-grid { grid-template-columns: 1fr; }
}

/* 3-col variant for main page courses section */
.courses-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}
@media (max-width: 1024px) {
  .courses-grid--3 { grid-template-columns: 1fr; max-width: 640px; }
}

/* note under courses */
.courses-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.6;
}
.courses-note a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,106,0.4);
  transition: color .2s ease, border-color .2s ease;
}
.courses-note a:hover { color: var(--gold-2); border-color: var(--gold-2); }

/* ============================================================
   MANIFEST (pull quote from Vesta)
   ============================================================ */
.manifest {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.manifest::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(110,27,41,0.22) 0%, transparent 60%),
    radial-gradient(40% 60% at 50% 100%, rgba(201,168,106,0.06) 0%, transparent 65%);
  z-index: 0;
}
.manifest::after {
  content: "V";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(220px, 32vw, 460px);
  color: rgba(201,168,106,0.04);
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}
.manifest .wrap { position: relative; z-index: 1; max-width: 980px; }
.manifest .label.center { margin-bottom: 36px; display: inline-flex; }
.manifest-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 auto 32px;
  letter-spacing: 0.005em;
  max-width: 880px;
}
.manifest-byline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
