/* ============================================================
   DESIGN TOKENS — extracted from Figma "CLO BIO 1920"
   ============================================================ */
:root {
  /* Colours */
  --c-bg:        #FFFFE1;   /* Half and Half — main page background */
  --c-bg-soft:   #FFF8E3;   /* Gin Fizz */
  --c-bg-cream:  #FEFFBA;   /* Shalimar */
  --c-bg-yellow: #F8F991;   /* Texas — accent yellow */
  --c-bg-orange: #FFCC72;   /* Macaroni and Cheese */
  --c-bg-vis:    #FFEBA5;   /* Vis Vis */

  --c-navy:      #17007D;   /* Navy Blue — primary text */
  --c-navy-deep: #0B0059;   /* Stratos */
  --c-navy-darkest: #1D004A;/* Tolopea */
  --c-blue:      #0023D2;   /* Dark Blue — links/CTA accent */
  --c-blue-soft: #4E4C98;   /* Victoria */
  --c-blue-azure:#1A468D;   /* Chathams Blue */

  --c-purple:        #A988F4; /* Portage */
  --c-purple-soft:   #DFC8FF; /* Fog */
  --c-purple-dark:   #3D315B; /* Martinique */
  --c-purple-deep:   #362C70; /* Jacarta */

  --c-text:      #17007D;
  --c-text-muted:#444B6E;     /* Fiord */
  --c-white:     #FFFFFF;
  --c-shadow:    rgba(29, 0, 74, .12);

  /* Typography */
  --ff-sans:    "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-serif:   "Cormorant Garamond", "Times New Roman", serif;

  /* Layout */
  --container:  1200px;
  --gutter:     clamp(20px, 4vw, 60px);
  --radius-sm:  10px;
  --radius:     20px;
  --radius-lg:  32px;
  --radius-pill:999px;

  /* Spacing scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.15; color: var(--c-navy); }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.accent { color: var(--c-blue); }

.link {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link:hover { color: var(--c-navy); }

/* Reusable button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 36px;
  font: 700 16px/1.1 var(--ff-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--c-purple); outline-offset: 3px; }
.btn:hover         { transform: translateY(-1px); }
.btn:active        { transform: translateY(0); }

.btn--primary {
  color: var(--c-white);
  background: linear-gradient(180deg, #2D1FE0 0%, #17007D 100%);
  box-shadow: 0 12px 30px -8px rgba(23, 0, 125, .55);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #3A2BFF 0%, #1D04A0 100%);
  box-shadow: 0 16px 36px -10px rgba(23, 0, 125, .65);
}

/* Section title shared style */
.section-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--c-navy);
  margin: 0 auto var(--s-5);
  max-width: 1100px;
}

/* ============================================================
   HERO  — 1:1 with Figma "CLO BIO 1920" hero artboard (1920×850)
   Reference grid: container 1200, content column anchored at x=360,
   image overflows to the right starting at x=805.
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #FEFFBA;            /* sudba.pp.ua/Shalimar */
  min-height: 850px;
  padding: 22px 0 80px;
}

/* Right-side composition image (orb in hands), absolutely positioned, overflows */
.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(640px, 60.5vw, 1163px);   /* 1163 / 1920 ≈ 60.5% */
  height: 850px;
  z-index: 0;
  pointer-events: none;
}
.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  user-select: none;
  -webkit-user-drag: none;
}
.hero__visual-mobile { display: none; }

/* Floating book mockups — desktop */
.hero__book {
  position: absolute;
  width: 200px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(-2px 8px 18px rgba(11, 0, 89, .35));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.hero__book--1 {
  top: 90px;
  right: clamp(40px, 8vw, 120px);
  transform: rotate(-9deg);
}
.hero__book--2 {
  top: 360px;
  right: clamp(120px, 14vw, 220px);
  transform: rotate(11deg);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

/* ---- Top bar ---- */
.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 0 0;
  min-height: 32px;
  margin-bottom: 48px;
}
.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 45.6px;
  color: #2A2C34;                /* sudba.pp.ua/Shark */
}
.hero__date-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #2A2C34;
}
.hero__online {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #272727;                /* color/grey/15 */
}

/* ---- Title ---- */
.hero__copy {
  max-width: 648px;              /* matches Figma title image width */
}
.hero__title {
  margin: 32px 0 0;
  font-family: var(--ff-sans);
  font-weight: 800;
  text-transform: uppercase;
  color: #17007D;                /* Navy Blue */
  letter-spacing: .005em;
  line-height: 1.05;
}
.hero__title-line { display: block; }
.hero__title-line--1,
.hero__title-line--2 {
  font-size: 44px;
}
.hero__title-line--2 { color: #17007D; }
.hero__title-line--3 {
  margin-top: 14px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  color: #1D004A;                /* Tolopea */
}

/* ---- Lead paragraph (overlaps Figma subtitle area, but flows here) ---- */
.hero__lead {
  margin: 24px 0 0;
  max-width: 545px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #1E1E1E;                /* Cod Gray */
}

/* ---- Violet pill — "даже если вы новичок..." ---- */
.hero__pill {
  display: inline-block;
  margin: 24px 0 0;
  padding: 12px 28px;
  background: #3D315B;           /* Martinique */
  color: #FEFFBA;                /* Shalimar */
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  border-radius: 999px;
  max-width: 582px;
}

/* ---- CTA button — gradient pill 481×103 ---- */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 28px 0 0;
  width: 481px;
  max-width: 100%;
  min-height: 103px;
  padding: 18px 32px;
  border: 2px solid #17007D;
  border-radius: 36px;
  background: linear-gradient(125deg, #17007D 0%, #8877D1 51%, #17007D 100%);
  box-shadow: 0 0 11px 4px #17007D;
  color: #FFFFFF;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.hero__cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.hero__cta:active { transform: translateY(0); }
.hero__cta-sub { font-size: 25px; font-weight: 600; }

/* ---- Bonuses block ---- */
.hero__bonuses {
  margin-top: 48px;
  max-width: 720px;
}
.hero__bonus-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.hero__bonus-gift {
  width: 45px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}
.hero__bonus-gift svg { width: 100%; height: 100%; }
.hero__bonus-title {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #383838;                /* color/grey/22 */
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.hero__bonus-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 24px 18px 28px;
  min-height: 121px;
  border-radius: 17px;
  background: linear-gradient(89.64deg, #FFF8E3 41%, rgba(255, 253, 232, 0) 91%);
}
.hero__bonus-decor {
  display: none;                 /* hidden on desktop — books float in hero__visual */
  position: absolute;
  width: 96px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(-3px 8px 20px rgba(11, 0, 89, .35));
  transform: rotate(12deg);
}
.hero__bonus-list {
  display: grid;
  gap: 20px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.25;
  color: #000000;
}
.hero__bonus-list li { padding: 0; background: none; border: 0; }

.hero__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 121px;
}
.hero__timer-num {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #0023D2;                /* Dark Blue */
  letter-spacing: .01em;
}
.hero__timer-labels {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #000000;
}

/* ============================================================
   FEEL — Вы чувствуете (1:1 with Figma artboard 1:4377, 1920×544)
   ============================================================ */
.feel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 90px;
  color: #FFFFFF;
  background:
    linear-gradient(180deg, #3D315B 0%, rgba(61, 49, 91, .55) 51%, #3D315B 100%);
}
.feel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/clo1/assets/figma/feel-object.png") center/cover no-repeat;
  opacity: .10;
  pointer-events: none;
}
.feel::before, .feel::after {
  content: "";
  position: absolute;
  left: -25px;
  right: -25px;
  height: 195px;
  background: url("/clo1/assets/figma/feel-ellipse.png") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}
.feel::before { top: -57px; }
.feel::after  { bottom: -57px; transform: scaleY(-1); }
.feel__inner { position: relative; z-index: 1; }
.feel__inner { position: relative; }

.feel__title {
  margin: 0 auto 44px;
  max-width: 720px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 35px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
.feel__title b { font-weight: 700; }

.feel__pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 28px;
}
.feel-pill {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 8px 20px;
  background: #F8F991;             /* Texas */
  border: 2px solid #FFCC72;       /* Macaroni */
  border-radius: 12px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #2F2F2F;
  text-align: center;
  min-height: 72px;
}
/* Row 1: two side-by-side pills (291w + 347w in Figma) */
.feel-pill--a,
.feel-pill--b { display: inline-grid; }
.feel__pills::before { content: none; }

/* Custom layout: row1 (a + b) inline, row2 (c) on its own */
.feel-pill--a { width: 291px; }
.feel-pill--b { width: 347px; }
.feel-pill--c { width: 505px; max-width: 100%; }

.feel__pills {
  display: grid;
  grid-template-columns: 291px 347px;
  grid-auto-rows: auto;
  column-gap: 17px;
  row-gap: 12px;
  justify-content: center;
}
.feel-pill--c { grid-column: 1 / span 2; justify-self: center; }

.feel__lead-card {
  margin: 36px auto 0;
  max-width: 540px;
  padding: 14px 22px 16px;
  background: #3D315B;             /* Martinique solid */
  border: 2px solid #FFCC72;
  border-radius: 12px;
  text-align: center;
}
.feel__lead-title {
  margin: 0 0 4px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.feel__lead-text {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}

.feel__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 36px auto 0;
  width: 481px;
  max-width: 100%;
  min-height: 103px;
  padding: 18px 32px;
  border: 2px solid #F8F991;
  border-radius: 36px;
  background: linear-gradient(125deg, #F8F991 0%, #EEEEEE 51%, #F8F991 100%);
  box-shadow: 0 0 11px 4px #F8F991;
  color: #222222;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, filter .2s ease;
}
.feel__cta:hover { transform: translateY(-1px); filter: brightness(1.04); }
.feel__cta:active { transform: translateY(0); }

/* ============================================================
   STEPS — На интенсиве вы сделаете... (Figma 1:4415, 1920×1149)
   ============================================================ */
.steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 70px 0 90px;
  color: #FFFFFF;
  background: #1A468D;             /* Chathams Blue */
}
.steps__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("/clo1/assets/figma/steps-bg.png") center/cover no-repeat,
    #1A468D;
  opacity: .17;
  pointer-events: none;
}
.steps__inner { position: relative; z-index: 1; }

.steps__title {
  margin: 0 auto 48px;
  max-width: 1100px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 35px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
.steps__title b { font-weight: 700; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 540px));
  column-gap: 56px;
  row-gap: 48px;
  justify-content: center;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 109px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 140px;
  padding: 0 24px 0 0;
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: -3px 3px 14px 0 #A797BC;
  overflow: hidden;
}
.step-card::after {
  /* small white pill underline indicator */
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 80px;
  height: 10px;
  background: #FFFFFF;
  border-radius: 999px;
  filter: blur(.5px);
  box-shadow: 3px 0 3px 0 rgba(44, 44, 44, .2);
  pointer-events: none;
}
.step-card__avatar {
  position: relative;
  width: 109px;
  height: 140px;
  border-radius: 50px;
  background: #1D004A center/cover no-repeat;
  flex-shrink: 0;
  overflow: hidden;
}
.step-card__avatar[data-n="1"] { background-image: url("/clo1/assets/figma/step-avatar-1.png"); }
.step-card__avatar[data-n="2"] { background-image: url("/clo1/assets/figma/step-avatar-2.png"); }
.step-card__avatar[data-n="3"] { background-image: url("/clo1/assets/figma/step-avatar-3.png"); }
.step-card__avatar[data-n="4"] { background-image: url("/clo1/assets/figma/step-avatar-4.png"); }
.step-card__avatar[data-n="5"] { background-image: url("/clo1/assets/figma/step-avatar-5.png"); }
.step-card__avatar[data-n="6"] { background-image: url("/clo1/assets/figma/step-avatar-6.png"); }
.step-card__avatar[data-n="7"] { background-image: url("/clo1/assets/figma/step-avatar-7.png"); }
.step-card__text {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 21px;
  line-height: 29px;
  color: #222222;
}
.step-card__text b { font-weight: 700; }

.step-card--wide {
  grid-column: 1 / span 2;
  max-width: 540px;
  margin: 0 auto;
}

.steps__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 56px auto 0;
  width: 481px;
  max-width: 100%;
  min-height: 103px;
  padding: 18px 32px;
  border: 2px solid #F8F991;
  border-radius: 36px;
  background: linear-gradient(125deg, #F8F991 0%, #EEEEEE 51%, #F8F991 100%);
  box-shadow: 0 0 11px 4px #F8F991;
  color: #222222;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, filter .2s ease;
}
.steps__cta:hover { transform: translateY(-1px); filter: brightness(1.04); }
.steps__cta:active { transform: translateY(0); }

/* ============================================================
   AUDIENCE — Этот интенсив создан для… (Figma 1:4490, 1920×706)
   ============================================================ */
.audience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0 80px;
  background: #FFFFE1;             /* Half and Half */
}
.audience__inner { position: relative; }
.audience__title {
  margin: 0 auto 56px;
  max-width: 1100px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  color: #362C70;                  /* Jacarta */
}
.audience__title b { font-weight: 700; }

.audience__stage {
  position: absolute;
  inset: 60px 0 0 0;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
}
.audience__glow {
  width: min(1200px, 95%);
  height: 600px;
  background: url("/clo1/assets/figma/audience-mask.png") center/contain no-repeat;
}

.audience__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(120px, 1fr) minmax(0, 380px);
  grid-template-rows: auto auto;
  row-gap: 64px;
  column-gap: 40px;
  align-items: start;
}
.audience-card {
  position: relative;
  margin: 0;
  padding: 14px 18px;
  background: #444B6E;             /* Fiord */
  border: 2px solid #0023D2;       /* Dark Blue */
  border-radius: 12px;
  box-shadow: 0 0 13px 1px rgba(255, 255, 255, .8);
}
.audience-card p {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.audience-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  opacity: .68;
}
.audience-card--1::before { background-image: url("/clo1/assets/figma/audience-num-1.png"); }
.audience-card--2::before { background-image: url("/clo1/assets/figma/audience-num-2.png"); }
.audience-card--3::before { background-image: url("/clo1/assets/figma/audience-num-3.png"); }
.audience-card--4::before { background-image: url("/clo1/assets/figma/audience-num-4.png"); }

.audience-card--1 { grid-column: 1; grid-row: 1; }
.audience-card--3 { grid-column: 3; grid-row: 1; }
.audience-card--2 { grid-column: 1; grid-row: 2; transform: translateX(28%); }
.audience-card--4 { grid-column: 3; grid-row: 2; transform: translateX(-28%); }

.audience-card--1::before { left: -56px; top: -54px; }
.audience-card--3::before { right: -56px; top: -54px; }
.audience-card--2::before { left: -56px; top: -54px; }
.audience-card--4::before { right: -56px; top: -54px; }

/* ============================================================
   SPEAKER — Александр Салогуб (Figma 1:4532, 1920×799)
   ============================================================ */
.speaker {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background: #FFEBA5;             /* Vis Vis */
}
.speaker::before {
  /* top fade from Half-and-Half */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background: linear-gradient(180deg, #FFFFE1 10%, rgba(255, 255, 225, 0) 100%);
  z-index: 0;
  pointer-events: none;
}
.speaker::after {
  /* bottom fade into next dark section */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(0deg, #3D315B 10%, rgba(61, 49, 91, 0) 100%);
  z-index: 0;
  pointer-events: none;
}
.speaker__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 540px);
  align-items: start;
  gap: 32px;
  padding: 30px 0 90px;
}
.speaker__photo {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.speaker__photo-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.speaker__content { padding-top: 12px; }
.speaker__title {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 40px;
  line-height: 62px;
  text-transform: uppercase;
  color: #0B0059;                  /* Stratos */
}
.speaker__name {
  margin: 0 0 24px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 38px;
  line-height: 59px;
  text-transform: uppercase;
  color: #0B0059;
}

.speaker__card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 24px 32px;
  box-shadow: -2px 2px 12px 1px rgba(11, 76, 25, .3);
}
.speaker__lead {
  margin: 0 0 20px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 37px;
  color: #000000;
}
.speaker__list {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.speaker__list li {
  position: relative;
  padding-left: 36px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 32px;
  color: #000000;
}
.speaker__list li b { font-weight: 700; }
.speaker__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  background: url("/clo1/assets/figma/speaker-star.png") center/contain no-repeat;
}

/* ============================================================
   PROGRAM — Дни 1, 2, 3
   ============================================================ */
.program {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 0 90px;
  background: #3D315B;             /* Martinique */
  color: #FFFFFF;
}
.program::before, .program::after {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 60px;
  width: 530px;
  background: url("/clo1/assets/figma/program-burst.png") center/contain no-repeat;
  opacity: .85;
  pointer-events: none;
  z-index: 0;
}
.program::before { left: -180px; transform: scaleX(-1) rotate(-12deg); }
.program::after  { right: -180px; transform: rotate(8deg); }
.program > .container { position: relative; z-index: 1; }

.program__title {
  margin: 0 auto 48px;
  max-width: 1100px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: .005em;
}

.day {
  position: relative;
  margin: 0 auto 40px;
  max-width: 720px;
  padding: 24px 30px 28px;
  border-radius: 24px;
  background: #2F2748;
  box-shadow: 0 20px 50px -28px rgba(0, 0, 0, .6);
}
.day--1, .day--2, .day--3 { background: #2F2748; }

.day__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.day__num {
  font: 700 18px/1 var(--ff-sans);
  letter-spacing: .04em;
  color: #2A1F4A;
  padding: 10px 22px;
  background: #F8F991;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.day__title {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #FFEBA5;
  text-transform: uppercase;
  flex: 1 1 auto;
}
.day__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.day__list li {
  position: relative;
  padding: 0 0 0 18px;
  background: none;
  border: 0;
  border-radius: 0;
  color: #FFFFFF;
  font: 400 17px/1.5 var(--ff-sans);
}
.day__list li::before {
  content: "•";
  position: absolute;
  top: -1px; left: 4px;
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: #FFEBA5;
  font-size: 18px;
  line-height: 1.5;
}

.program__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 32px auto 0;
  width: 481px;
  max-width: 100%;
  min-height: 103px;
  padding: 18px 32px;
  border: 2px solid #F8F991;
  border-radius: 36px;
  background: linear-gradient(125deg, #F8F991 0%, #EEEEEE 51%, #F8F991 100%);
  box-shadow: 0 0 11px 4px #F8F991;
  color: #222222;
  font: 600 25px/1 var(--ff-sans);
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, filter .2s ease;
}
.program__cta:hover { transform: translateY(-1px); filter: brightness(1.04); }

/* ============================================================
   REVIEWS — heading on cream + photo testimonials
   ============================================================ */
.reviews {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #3D315B 0%, #FFEBD0 70px, #FFEBD0 100%);
  background:
    linear-gradient(180deg, #3D315B 0%, rgba(61, 49, 91, 0) 80px),
    #FFEBD0;
}
.reviews__title {
  margin: 0 auto 36px;
  font: 700 28px/1.1 var(--ff-sans);
  letter-spacing: .12em;
  text-align: center;
  color: #1D004A;
  text-transform: uppercase;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  margin: 0;
  padding: 28px 24px;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: -2px 4px 18px -8px rgba(0, 0, 0, .25);
  text-align: center;
}
.review-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  background: var(--c-bg-cream);
  box-shadow: 0 6px 18px -8px var(--c-shadow);
}
.review-card blockquote {
  margin: 0 0 12px;
  font: 400 16px/1.55 var(--ff-sans);
  color: #1D004A;
  font-style: italic;
}
.review-card figcaption {
  font: 700 14px/1 var(--ff-sans);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0023D2;
}

/* Expandable screenshot of original review */
.review-card__shot {
  margin-top: 16px;
  text-align: left;
}
.review-card__shot summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(23, 0, 125, .15);
  border-radius: 10px;
  background: #FFFCF0;
  transition: background .2s ease, border-color .2s ease;
}
.review-card__shot summary::-webkit-details-marker { display: none; }
.review-card__shot summary:hover { background: #FFF8E0; border-color: rgba(23, 0, 125, .3); }
.review-card__shot summary img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: #EEE;
  flex-shrink: 0;
}
.review-card__shot-label {
  font: 600 13px/1.3 var(--ff-sans);
  color: #17007D;
  text-transform: none;
  letter-spacing: 0;
}
.review-card__shot[open] summary { background: #FFF8E0; }
.review-card__shot-full {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 22px -10px rgba(23, 0, 125, .35);
  background: #EEE;
}

/* ============================================================
   FAQ — dark navy with thin separators (Figma 1:4759)
   ============================================================ */
.faq {
  padding: 60px 0 80px;
  background: #1A468D;             /* Chathams Blue */
  color: #FFFFFF;
}
.faq__title {
  display: none;                   /* Figma frame doesn't show a title */
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .35);
}
.faq-item {
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  transition: background .2s ease;
}
.faq-item[open] { background: rgba(255, 255, 255, .04); box-shadow: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 24px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #FFFFFF;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #FFFFFF;
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}
.faq-item summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] summary::after { opacity: 0; transform: translateY(-50%) rotate(0); }
.faq-item p {
  padding: 0 60px 22px 24px;
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
}

/* ============================================================
   CTA — Final form (Figma 1:4954, 1920×907)
   ============================================================ */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 70px 0 100px;
  background: #FEFFBA;             /* Shalimar */
  color: #1E1E1E;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 0% 60%, rgba(255, 215, 130, .35) 0%, transparent 70%),
    radial-gradient(40% 50% at 100% 50%, rgba(180, 200, 255, .25) 0%, transparent 70%);
}
.cta__bg::before {
  /* top fade from previous Chathams Blue section */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 80px;
  background: linear-gradient(180deg, #1A468D 10%, rgba(26, 70, 141, 0) 100%);
}

/* Decorative glowing hands on bottom-left */
.cta__hands {
  position: absolute;
  left: -120px;
  bottom: -40px;
  width: 900px;
  height: 660px;
  z-index: 0;
  pointer-events: none;
  background: url("/clo1/assets/figma/cta-hands.png") left bottom/contain no-repeat;
  opacity: .55;
  transform: rotate(-6deg);
  transform-origin: left bottom;
}

/* Decorative book covers — repositioned closer to the timer (gift bonus) */
.cta__books {
  position: absolute;
  right: clamp(16px, 4vw, 80px);
  top: 200px;
  width: 280px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}
.cta__book {
  position: absolute;
  width: 180px;
  height: auto;
  filter: drop-shadow(-2px 8px 18px rgba(11, 0, 89, .35));
}
.cta__book--1 { top: 0;   right: 80px; transform: rotate(-9deg); }
.cta__book--2 { top: 170px; right: 0;  transform: rotate(11deg); }
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
}

.cta__title {
  margin: 0 auto 22px;
  max-width: 1100px;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: #17007D;                  /* Navy Blue */
}
.cta__lead {
  margin: 0 auto 24px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: #1E1E1E;
}
.cta__lead b { font-weight: 700; }

.cta__timer-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 20px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, .55);
  border: 1px dashed rgba(23, 0, 125, .25);
  border-radius: 16px;
}
.cta__timer-gift {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}
.cta__timer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.cta__timer-label-top {
  font: 600 13px/1.2 var(--ff-sans);
  color: #1E1E1E;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.cta__timer-num {
  font: 800 40px/1 var(--ff-sans);
  color: #0023D2;
}
.cta__timer-labels {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  font: 400 12px/1 var(--ff-sans);
  color: #000000;
}

.cta__form {
  display: grid;
  gap: 16px;
  width: 552px;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 28px 32px 32px;
  background: #DFC8FF;             /* Fog */
  border-radius: 10px;
  box-shadow: none;
}
.cta__field {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 5px;
  overflow: hidden;
}
.cta__field input {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  padding: 0 18px;
  border: 0;
  background: transparent;
  font: 500 17px/1 "Cormorant Garamond", "Times New Roman", serif;
  color: #090909;
}
.cta__field input::placeholder { color: rgba(9, 9, 9, .5); }
.cta__field input:focus { outline: none; }
/* intl-tel-input — wrapper keeps the white-box visual; library handles internals */
.cta__field--phone {
  display: block;
  padding: 0;
  overflow: visible;        /* dropdown must escape the rounded box */
}
.cta__field--phone .iti { display: block; width: 100%; height: 100%; }

/* Unified field typography — input and dial code share the same font with email field */
.cta__field--phone .iti__tel-input {
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 18px;
  /* padding-left is set inline by the library based on country-button width — don't override */
  border: 0;
  background: transparent;
  font: 500 17px/1 "Cormorant Garamond", "Times New Roman", serif;
  color: #090909;
}
.cta__field--phone .iti__tel-input:focus { outline: none; }
.cta__field--phone .iti__tel-input::placeholder {
  color: rgba(9, 9, 9, .5);
  font: 500 17px/1 "Cormorant Garamond", "Times New Roman", serif;
}

/* Selected dial-code — same font/size as the input next to it */
.cta__field--phone .iti__selected-country,
.cta__field--phone .iti__selected-country-primary,
.cta__field--phone .iti__selected-dial-code {
  font: 500 17px/1 "Cormorant Garamond", "Times New Roman", serif;
  color: #090909;
}

/* Dropdown list typography — keep readable sans, but consistent across rows */
.cta__field--phone .iti__country-list,
.cta__field--phone .iti__country,
.cta__field--phone .iti__country-name,
.cta__field--phone .iti__dial-code {
  font: 500 14px/1.3 var(--ff-sans);
}

/* Dropdown panel — readable on the cream/violet form */
.cta__field--phone .iti__dropdown-content {
  border-radius: 8px;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, .3);
  font-family: var(--ff-sans);
  z-index: 5;
}
.cta__field--phone .iti__search-input {
  padding: 10px 12px;
  font: 500 14px/1.2 var(--ff-sans);
}

.cta__submit {
  margin-top: 4px;
  height: 65px;
  border: 0;
  border-radius: 35px;
  background: linear-gradient(126deg, #17007D 0%, #8877D1 51%, #17007D 100%);
  color: #FFFFFF;
  font: 700 20px/1 Arial, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}
.cta__submit:hover { transform: translateY(-1px); filter: brightness(1.05); }
.cta__submit:disabled { opacity: .6; cursor: default; transform: none; filter: none; }

.cta__error {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: #C0392B;
}
.cta__error[hidden] { display: none; }

.cta__note {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: rgba(30, 30, 30, .7);
}
.cta__note .link { color: #0023D2; }

.cta__ps {
  width: 524px;
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 6px 14px rgba(26, 70, 141, .25));
}
.cta__ps-title {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 14px 28px;
  background: #1A468D;             /* Chathams Blue */
  color: #FFFFFF;
  font: 700 20px/30px var(--ff-sans);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .005em;
  border-radius: 14px;
}
.cta__ps-text {
  display: block;
  width: 100%;
  margin: 0;
  padding: 22px 30px 26px;
  background: #FFFFFF;
  border: 2px solid #A988F4;       /* Portage */
  border-radius: 14px;
  font: 700 18px/27px var(--ff-sans);
  text-align: center;
  color: #2A2C34;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 24px 0 36px;
  background: #1A468D;
  color: #FFFFE1;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}
.footer .link { color: #FFCC72; }
.footer .link:hover { color: var(--c-white); }

/* ============================================================
   RESPONSIVE — tablet (between desktop and mobile)
   ============================================================ */
@media (max-width: 1024px) {
  .steps__grid          { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; }
  .step-card--wide      { grid-column: 1 / span 2; }
  .reviews__grid        { grid-template-columns: repeat(2, 1fr); }

  .speaker__inner       { grid-template-columns: 1fr; }
  .speaker__photo       { justify-content: center; }
  .speaker__photo-img   { max-width: 640px; }

  .audience__grid {
    grid-template-columns: minmax(0, 320px) minmax(0, 320px);
    column-gap: 56px;        /* room for the "0X" numbers peeking out at the sides */
    row-gap: 80px;
  }
  .audience-card--2,
  .audience-card--4     { transform: none; }
}

/* ============================================================
   MOBILE — Figma frame "390w light" (390×10178)
   ============================================================ */
@media (max-width: 768px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }

  /* ---- Hero (Figma 1:3660, 390×982) ---- */
  .hero {
    min-height: 0;
    padding: 18px 0 40px;
    text-align: center;
  }
  .hero__visual { display: none; }
  .hero__visual-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
    opacity: .22;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    -webkit-user-drag: none;
  }
  .hero__inner { position: relative; z-index: 1; }
  .hero__topbar {
    justify-content: center;
    margin-bottom: 18px;
    gap: 10px;
  }
  .hero__online { display: none; }                /* mobile bar shows date only */
  .hero__date { font-size: 16px; line-height: 1.2; }
  .hero__date-icon { width: 28px; height: 28px; }

  .hero__copy { max-width: none; padding: 0 4px; }
  .hero__title { margin-top: 0; line-height: 1.15; overflow-wrap: anywhere; }
  .hero__title-line {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero__title-line--1,
  .hero__title-line--2 { font-size: 22px; }
  .hero__title-line--3 { font-size: 14px; margin-top: 10px; }

  .hero__lead {
    margin: 14px auto 0;
    max-width: 340px;
    font-size: 16px;
    line-height: 1.45;
  }
  .hero__pill {
    margin: 18px auto 0;
    padding: 10px 22px;
    font-size: 15px;
    line-height: 1.4;
  }
  .hero__cta {
    width: min(360px, 100%);
    margin: 18px auto 0;
    min-height: 78px;
    padding: 14px 24px;
    font-size: 19px;
  }
  .hero__cta-sub { font-size: 19px; }

  .hero__bonuses {
    margin: 28px auto 0;
    max-width: 360px;
    padding: 0;
  }
  .hero__bonus-head { justify-content: flex-start; }
  .hero__bonus-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 16px;
    text-align: left;
  }
  .hero__bonus-list { font-size: 15px; gap: 14px; }
  .hero__timer { align-self: center; margin-top: 4px; }

  /* ---- Feel (Figma 1:3703, 390×582) ---- */
  .feel { padding: 50px 0 70px; text-align: center; }
  .feel__title { font-size: 22px; line-height: 28px; margin-bottom: 28px; }
  .feel__pills {
    grid-template-columns: minmax(0, 320px);
    column-gap: 0;
    row-gap: 10px;
  }
  .feel-pill,
  .feel-pill--a,
  .feel-pill--b,
  .feel-pill--c {
    width: 100%;
    grid-column: 1;
    min-height: 60px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 21px;
  }
  .feel__lead-card { padding: 14px 20px; max-width: 340px; }
  .feel__lead-title,
  .feel__lead-text { font-size: 15px; line-height: 22px; }
  .feel__cta {
    width: min(360px, 100%);
    min-height: 78px;
    padding: 14px 24px;
    font-size: 19px;
    margin-top: 28px;
  }

  /* ---- Steps (Figma 1:3741, 390×1305) ---- */
  .steps { padding: 50px 0 70px; }
  .steps__title { font-size: 22px; line-height: 30px; margin-bottom: 30px; }
  .steps__grid {
    grid-template-columns: minmax(0, 360px);
    column-gap: 0;
    row-gap: 14px;
  }
  .step-card,
  .step-card--wide {
    width: 100%;
    grid-column: 1;
    min-height: 0;
    padding: 0 18px 0 0;
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }
  .step-card__avatar { width: 80px; height: 110px; font-size: 28px; border-radius: 30px; }
  .step-card__text { padding: 14px 0; font-size: 16px; line-height: 22px; }
  .steps__cta {
    width: min(360px, 100%);
    min-height: 78px;
    padding: 14px 24px;
    font-size: 19px;
    margin-top: 28px;
  }

  /* ---- Audience (Figma 1:3816, 390×854) ---- */
  .audience { padding: 50px 0 70px; }
  .audience__title { font-size: 22px; line-height: 30px; margin-bottom: 70px; }
  .audience__stage { display: none; }
  .audience__grid {
    grid-template-columns: minmax(0, 340px);
    row-gap: 80px;          /* enough room for the next card's "0X" number to sit cleanly between cards */
    column-gap: 0;
    justify-content: center;
  }
  .audience-card,
  .audience-card--1,
  .audience-card--2,
  .audience-card--3,
  .audience-card--4 {
    grid-column: 1;
    grid-row: auto;
    transform: none;
    width: 100%;
  }
  .audience-card { padding: 16px 18px; }
  .audience-card p { font-size: 15px; line-height: 22px; }
  .audience-card::before {
    width: 88px;
    height: 88px;
    top: -54px;
    left: 6px;
    right: auto;
    opacity: .55;
    line-height: 1;
  }

  /* ---- Speaker (Figma 1:3855, 390×910) ---- */
  .speaker__inner {
    grid-template-columns: 1fr;
    padding: 0 0 32px;
    gap: 0;
    text-align: center;
  }
  .speaker__title { font-size: 26px; line-height: 1.2; }
  .speaker__name { font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
  .speaker__photo {
    order: 1;
    margin: 0 calc(var(--gutter) * -1);   /* break out of container gutter */
    margin-bottom: 0;
    width: 100vw;
    align-self: center;
  }
  .speaker__photo-img {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .speaker__content { order: 2; padding-top: 4px; }
  .speaker__card {
    margin-top: 0;
    padding: 18px 20px;
    text-align: left;
  }
  .speaker__lead { font-size: 17px; line-height: 26px; }
  .speaker__list { gap: 18px; }
  .speaker__list li { font-size: 15px; line-height: 22px; padding-left: 30px; }

  /* ---- Program (Figma 1:3888) ---- */
  .program { padding: 40px 0 60px; }
  .program__title { font-size: 22px; line-height: 30px; margin-bottom: 28px; }
  .day {
    margin-bottom: 24px;
    padding: 18px 18px 22px;
    border-radius: 18px;
  }
  .day__header { gap: 10px; margin-bottom: 14px; }
  .day__num { font-size: 14px; padding: 7px 16px; }
  .day__title { font-size: 16px; line-height: 1.2; }
  .day__list { gap: 6px; }
  .day__list li {
    padding: 0 0 0 14px;
    font-size: 13.5px;
    line-height: 1.4;
  }
  .day__list li::before { font-size: 14px; left: 2px; }
  .program__cta {
    width: min(360px, 100%);
    min-height: 78px;
    padding: 14px 24px;
    font-size: 19px;
    margin-top: 24px;
  }

  /* ---- Reviews ---- */
  .reviews { padding: 36px 0 50px; }
  .reviews__title { font-size: 22px; margin-bottom: 24px; }
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px 20px; }

  /* ---- FAQ ---- */
  .faq { padding: 40px 0 60px; }
  .faq-item summary {
    padding: 20px 52px 20px 16px;
    font-size: 20px;
    line-height: 1.3;
  }
  .faq-item summary::before,
  .faq-item summary::after { right: 18px; width: 14px; }
  .faq-item p { padding: 0 52px 20px 16px; font-size: 15px; }

  /* ---- CTA (Figma 1:4259, 390×973) ---- */
  .cta { padding: 40px 0 60px; }
  .cta__books { display: none; }
  .cta__hands {
    left: -40%;
    bottom: -40px;
    width: 180%;
    height: 360px;
    opacity: .7;
  }
  .cta__title { font-size: 22px; line-height: 30px; }
  .cta__lead { font-size: 16px; line-height: 22px; }
  .cta__form {
    width: 100%;
    max-width: 360px;
    padding: 18px 18px;
  }
  .cta__field { height: 46px; }
  .cta__field input,
  .cta__phone-prefix { font-size: 15px; }
  .cta__submit { height: 56px; font-size: 17px; }
  .cta__ps { width: 100%; max-width: 360px; }
  .cta__ps-title { display: block; padding: 10px 18px; font-size: 16px; line-height: 22px; }
  .cta__ps-text { padding: 14px 18px 16px; font-size: 14.5px; line-height: 22px; }

  /* ---- Footer ---- */
  .footer { padding: 22px 0 28px; }
  .footer__inner {
    flex-direction: column;
    text-align: center;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  :root { --gutter: 14px; }
  .hero__title-line--1,
  .hero__title-line--2 { font-size: 21px; }
  .hero__title-line--3 { font-size: 14px; }
  .hero__cta,
  .feel__cta,
  .steps__cta,
  .program__cta { font-size: 16px; min-height: 70px; }
  .hero__cta-sub { font-size: 16px; }
  .cta__title { font-size: 20px; line-height: 26px; }
  .speaker__title { font-size: 22px; }
  .speaker__name { font-size: 20px; }
}
