/* ===== DARK VIOLET BRAND TOKENS ===== */
:root {
  --bg-darkest: #0E0726;
  --bg-dark:    #160B3A;
  --bg-mid:     #1F1148;
  --bg-card:    #251559;
  --bg-light:   #2E1A6A;

  --violet:        #6B52E0;
  --violet-bright: #8973FF;
  --violet-glow:   #9C82FF;
  --violet-deep:   #4327B5;
  --violet-darker: #2E1788;
  --violet-pale:   #C5B5EA;
  --violet-tint:   #E4DAF5;

  --text:       #F0EBFA;
  --text-soft:  #BAB1D3;
  --text-mute:  #877D9D;
  --text-faint: #5D5475;

  --line:       rgba(197, 181, 234, 0.14);
  --line-soft:  rgba(197, 181, 234, 0.08);
  --card-bg:    rgba(255, 255, 255, 0.04);
  --card-bg-2:  rgba(255, 255, 255, 0.07);
  --glass:      rgba(14, 7, 38, 0.55);

  --display: "Fraunces", Georgia, serif;
  --sans:    "Manrope", system-ui, sans-serif;
  --hand:    "Caveat", cursive;

  --maxw: 1280px;
  --pad: clamp(20px, 3.6vw, 44px);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  overflow-x: clip;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-darkest);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }
p { margin: 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

:focus-visible {
  outline: 2px solid var(--violet-glow);
  outline-offset: 4px;
}

/* Ambient noise (subtle grain) */
body::before {
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background-image: radial-gradient(circle at 1px 1px, rgba(197,181,234,0.025) 1px, transparent 0);
  background-size: 3px 3px;
}

/* Глобальні background glows */
.glow {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(80px);
  opacity: 0.45;
  border-radius: 50%;
}
.glow-v {  background: radial-gradient(circle, var(--violet) 0%, transparent 70%); }
.glow-vd { background: radial-gradient(circle, var(--violet-deep) 0%, transparent 70%); }
.glow-vb { background: radial-gradient(circle, var(--violet-bright) 0%, transparent 65%); }

/* ===== TYPO ===== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 380;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 460;
}
h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 480;
  letter-spacing: -0.01em;
}
em.ital, .ital {
  font-style: italic;
  color: var(--violet-glow);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hand {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--violet-glow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-glow);
}
.eyebrow::before {
  content:"";
  width: 22px; height: 1px;
  background: var(--violet);
}

.lede {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 56ch;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(28px, 3vw, 44px);
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head--flush { margin-bottom: 0; }
.section-head--teacher { margin-bottom: clamp(20px, 2.5vw, 32px); }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; align-items: start; } }

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-darkest) 80%, transparent);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-emblem {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-darker));
  border: 1px solid var(--violet);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 6px 18px -6px rgba(107,82,224,0.45);
}
.brand-emblem::before {
  content:""; position:absolute; inset:3px;
  border-radius: 50%; border: 0.5px solid var(--violet-glow);
  opacity: 0.5;
}
.brand-emblem svg { width: 22px; height: 22px; }
.brand-mark { height: 34px; width: auto; display: block; filter: drop-shadow(0 4px 12px rgba(107,82,224,0.35)); }
.brand-full { height: 96px; width: auto; display: block; filter: drop-shadow(0 6px 20px rgba(107,82,224,0.3)); }
.brand-footer { display: inline-block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 480;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-name em { font-style: italic; font-weight: 380; color: var(--violet-glow); }
.brand-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
  font-weight: 500;
}

.nav { display: flex; gap: 26px; font-size: 12.5px; color: var(--text-soft); font-weight: 500; }
.nav a { position: relative; transition: color .2s; padding: 4px 0; }
.nav a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background: var(--violet-glow);
  transition: width .3s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
@media (max-width: 940px) { .nav { display: none; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 18px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .15s, background .25s, border-color .25s, color .25s, box-shadow .25s;
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 13px; height: 13px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--violet);
  color: #fff;
  border: 1px solid var(--violet);
  padding-right: 5px;
  height: 46px;
  padding-left: 22px;
  box-shadow: 0 0 0 0 transparent, 0 8px 24px -8px rgba(107,82,224,0.55);
}
.btn-primary .arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--violet-bright);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-left: 5px;
  transition: transform .25s, background .25s;
}
.btn-primary:hover .arrow { background: var(--violet-glow); transform: rotate(-45deg); }
.btn-primary:hover {
  background: var(--violet-bright);
  border-color: var(--violet-bright);
  box-shadow: 0 14px 36px -10px rgba(152,130,255,0.55), 0 0 0 1px var(--violet-glow) inset;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  height: 46px;
  padding: 0 22px;
}
.btn-ghost:hover { border-color: var(--violet-glow); color: var(--violet-glow); }

.btn-cta {
  background: var(--violet);
  color: #fff;
  border: 1px solid var(--violet);
  font-weight: 600;
}
.btn-cta:hover { background: var(--violet-bright); border-color: var(--violet-bright); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 80% 20%, var(--bg-light) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 80%, var(--bg-mid) 0%, transparent 60%),
    var(--bg-darkest);
}

.hero-blob-bg {
  position: absolute;
  top: 5%; right: -8%;
  width: 580px; height: 580px;
  background:
    radial-gradient(circle at 35% 30%, var(--violet-bright) 0%, var(--violet) 35%, var(--violet-deep) 75%, transparent 100%);
  border-radius: 65% 35% 50% 50% / 55% 45% 55% 45%;
  filter: blur(50px);
  opacity: 0.50;
  z-index: 1;
  animation: blobMorph 18s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 65% 35% 50% 50% / 55% 45% 55% 45%; transform: rotate(0deg) scale(1); }
  50%      { border-radius: 35% 65% 45% 55% / 45% 55% 45% 55%; transform: rotate(12deg) scale(1.05); }
}



.hero-container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
  padding-bottom: clamp(24px, 3vw, 36px);
}
@media (min-width: 961px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    column-gap: clamp(36px, 4vw, 56px);
  }
}

.hero-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center; margin-bottom: 22px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 30px; padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--card-bg);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--text-soft);
}
.pill.solid {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}
.pill.outlined {
  background: transparent;
  color: var(--violet-glow);
  border-color: var(--violet);
}
.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-glow);
}
.pill.solid .dot {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulsePill 1.6s ease-out infinite;
}
@keyframes pulsePill {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hero-left { display: flex; flex-direction: column; }
.hero h1 {
  margin-bottom: 18px;
  text-wrap: balance;
  max-width: 16ch;
}
.hero-lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 48ch;
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.stat-item { position: relative; padding: 0 6px; }
.stat-item:not(:first-child) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.stat-item .v {
  font-family: var(--display);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 380;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.stat-item .v em {
  font-style: italic;
  color: var(--violet-glow);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.stat-item .l {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 7px;
}

.hero-block-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.hbp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
}
.hbp.hbp-mid {
  background: rgba(107,82,224,0.18);
  border-color: var(--violet);
  color: var(--violet-glow);
}
.hbp-n {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  font-weight: 380;
  color: var(--violet-glow);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  padding-right: 6px;
  border-right: 1px solid var(--line);
  margin-right: 2px;
}
.hbp.hbp-mid .hbp-n { border-color: var(--violet); }

/* Hero ART */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 380px;
  max-height: 520px;
}
.hero-photo-wrap { position: absolute; inset: 0; z-index: 2; }
.hero-photo-frame {
  position: absolute;
  top: 6%; left: 6%; right: 6%; bottom: 6%;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, var(--violet-bright) 0%, var(--violet) 40%, var(--violet-deep) 80%, var(--violet-darker) 100%);
  box-shadow:
    0 24px 80px -20px rgba(107,82,224,0.55),
    0 4px 16px -4px rgba(46,23,136,0.4);
  animation: photoMorph 22s ease-in-out infinite;
}
.hero-photo-frame::after {
  content:""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.02);
}
@keyframes photoMorph {
  0%, 100% { border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%; }
  50%      { border-radius: 42% 58% 48% 52% / 52% 48% 52% 48%; }
}

.hero-photo-orbit {
  position: absolute; inset: -3%;
  border-radius: 50%; pointer-events: none; z-index: 3;
}
.hero-photo-orbit svg { width: 100%; height: 100%; }

.float-card {
  position: absolute;
  z-index: 5;
  background: rgba(37, 21, 89, 0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(197, 181, 234, 0.22);
  border-radius: 16px;
  padding: 11px 14px;
  box-shadow:
    0 16px 36px -12px rgba(0,0,0,0.55),
    0 3px 10px -3px rgba(67,39,181,0.35),
    0 1px 0 rgba(255,255,255,0.08) inset;
}

.fc-stat {
  top: 4%; left: -10%;
  display: flex; align-items: center; gap: 11px;
}
.fc-stat .fc-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-stat .fc-ico svg { width: 16px; height: 16px; }
.fc-stat .fc-text { line-height: 1.1; }
.fc-stat .fc-k {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 380;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.fc-stat .fc-k em { font-style: italic; color: var(--violet-glow); }
.fc-stat .fc-l {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}

.fc-chat {
  bottom: 2%; right: -8%;
  max-width: 235px;
  padding: 11px 13px 9px;
}
.fc-chat .fc-head {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 7px;
}
.fc-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--violet-deep);
  flex-shrink: 0;
  border: 1px solid var(--violet-glow);
  position: relative;
}
.fc-avatar::after {
  content:""; position: absolute;
  bottom: -1px; right: -1px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #50E060;
  border: 1.5px solid var(--bg-card);
}
.fc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fc-chat .fc-name {
  font-family: var(--display);
  font-weight: 480;
  font-size: 11.5px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.fc-chat .fc-role {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-glow);
  margin-top: 2px;
  font-weight: 600;
}
.fc-chat .fc-msg {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-soft);
  margin-bottom: 5px;
}
.fc-chat .fc-time {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

.fc-price {
  top: 36%; right: -10%;
  display: flex; flex-direction: column; gap: 3px;
  padding: 11px 14px;
}
.fc-price .fc-l {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.fc-price .fc-v {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 380;
  color: var(--violet-glow);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.fc-price .fc-old {
  font-size: 10px;
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-color: var(--violet);
}

.hand-note {
  position: absolute;
  z-index: 6;
  color: var(--violet-glow);
  font-family: var(--hand);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  display: flex; align-items: center; gap: 6px;
}
.hand-note.note-1 {
  top: 26%; left: 0%;
  transform: rotate(-6deg);
}
.hand-note svg {
  width: 30px; height: 22px;
  stroke: var(--violet-glow);
}

@media (max-width: 1180px) {
  .fc-stat { left: 0; }
  .fc-chat { right: 0; }
  .fc-price { right: 0; }
  .hand-note.note-1 { left: 4%; }
}
@media (max-width: 720px) {
  .hero-art { min-height: 360px; }
  .fc-stat { transform: scale(0.85); transform-origin: top left; left: 0; }
  .fc-chat { transform: scale(0.85); transform-origin: bottom right; right: 0; max-width: 200px; }
  .fc-price { display: none; }
  .hand-note.note-1 { display: none; }
}

.hero-marquee {
  margin-top: 12px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
}
.marquee-wrap { display: flex; }
.marquee-track {
  display: flex; align-items: center;
  gap: 28px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marqueeRun 42s linear infinite;
  flex-shrink: 0;
}
.marquee-track .m-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 4px;
  background: transparent;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(186,177,211,0.4);
  text-transform: uppercase;
}
.marquee-track .m-badge.m-badge-accent {
  background: transparent;
  border: none;
  color: rgba(156,130,255,0.5);
}
.marquee-track .m-badge-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  font-weight: 380;
  color: rgba(240,235,250,0.5);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
}
.m-badge.m-badge-accent .m-badge-num {
  color: rgba(156,130,255,0.6);
}
.marquee-track .m-sep {
  width: 3px; height: 3px;
  background: rgba(186,177,211,0.25);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== MANIFESTO ===== */
.manifesto {
  position: relative;
  padding: clamp(64px, 7vw, 100px) 0 clamp(72px, 8vw, 110px);
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, var(--bg-light) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 70%, var(--bg-mid) 0%, transparent 50%),
    var(--bg-dark);
  overflow: hidden;
}
.manifesto-mq-bg {
  position: absolute; width: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.35;
}
.manifesto-mq-bg.top { top: 5%; }
.manifesto-mq-bg.bot { bottom: 5%; }
.mq-mute {
  display: flex; align-items: center;
  gap: 44px; white-space: nowrap;
  animation: marqueeRun 60s linear infinite;
  flex-shrink: 0;
}
.mq-mute.mq-mute-reverse {
  animation-direction: reverse;
}
.mq-mute .mqi {
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(36px, 5vw, 72px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(156,130,255,0.45);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.mfst-container { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.mfst-eyebrow-row { display: flex; justify-content: center; margin-bottom: clamp(22px, 2.5vw, 32px); }

.mfst-bubble {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px);
  position: relative;
  box-shadow:
    0 30px 70px -25px rgba(0,0,0,0.5),
    0 6px 18px -6px rgba(67,39,181,0.25),
    0 1px 0 rgba(255,255,255,0.05) inset;
}
.mfst-bubble::after {
  content:"";
  position: absolute;
  bottom: -11px;
  left: clamp(24px, 3.5vw, 44px);
  width: 22px; height: 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 0; border-left: 0;
  transform: rotate(45deg);
  border-radius: 0 0 6px 0;
}
.mfst-text {
  font-family: var(--display);
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 380;
  line-height: 1.32;
  color: var(--text);
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  text-wrap: balance;
}
.mfst-inline-card {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 1.1em;
  padding: 0 0.45em;
  margin: 0 0.12em;
  background: rgba(107,82,224,0.18);
  border: 1px solid rgba(156,130,255,0.4);
  border-radius: 999px;
  vertical-align: -0.15em;
  font-size: 0.62em;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--violet-glow);
  font-variation-settings: normal;
  white-space: nowrap;
}
.mfst-inline-card.solid {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}
.mfst-inline-card.outlined {
  background: transparent;
  border-color: var(--violet-glow);
  color: var(--violet-glow);
}
.mfst-inline-card .mic-emoji { font-size: 1.2em; line-height: 1; }

.mfst-author {
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: clamp(14px, 1.6vw, 22px);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.mau-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-bright), var(--violet-deep));
  border: 2px solid var(--violet-glow);
  overflow: hidden;
  flex-shrink: 0;
}
.mau-photo img { width: 100%; height: 100%; object-fit: cover; }
.mau-text { display: flex; flex-direction: column; line-height: 1.2; }
.mau-name {
  font-family: var(--display);
  font-weight: 480;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.mau-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 3px;
}
.mau-sig {
  margin-left: auto;
  font-family: var(--hand);
  font-size: 24px;
  color: var(--violet-glow);
  transform: rotate(-4deg);
}

/* ===== WHAT IS СР ===== */
.what-is {
  position: relative;
  background: var(--bg-darkest);
  padding-bottom: clamp(64px, 7vw, 100px);
  overflow: hidden;
}
.what-is .glow { width: 600px; height: 600px; }
.what-is .glow-1 { top: -10%; right: -10%; }
.wi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  position: relative; z-index: 2;
}
@media (min-width: 961px) {
  .wi-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.wi-text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 16px;
  max-width: 56ch;
}
.wi-text p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: 1.7em;
  float: left;
  line-height: 0.9;
  margin: 4px 8px 0 0;
  color: var(--violet-glow);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.wi-text p strong {
  color: var(--text);
  font-weight: 500;
}
.wi-card {
  background: var(--bg-mid);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}
.wi-card::before {
  content:""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet-glow), transparent);
}
.wi-card-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-glow);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.wi-card-eyebrow::before {
  content:""; width: 22px; height: 1px; background: var(--violet);
}
.wi-card h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.wi-card h3 em { font-style: italic; color: var(--violet-glow); }
.wi-list {
  display: flex; flex-direction: column;
  gap: 0;
}
.wi-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 14px 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line-soft);
  list-style: none;
}
.wi-list li:last-child { border-bottom: 0; }
.wi-list li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--violet-deep);
  border: 1px solid var(--violet-glow);
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
  position: relative;
}
.wi-list li {
  position: relative;
}
.wi-list li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 14px;
  font-size: 11px;
  color: var(--violet-glow);
  font-weight: 700;
}
.wi-list ul { list-style: none; padding: 0; margin: 0; }

/* ===== AUDIENCE ===== */
.audience {
  position: relative;
  background: var(--bg-dark);
  padding-bottom: clamp(64px, 7vw, 100px);
  overflow: hidden;
}
.audience .glow { width: 500px; height: 500px; }
.audience .glow-1 { top: 20%; left: -15%; }
.aud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative; z-index: 2;
}
@media (min-width: 861px) { .aud-grid { grid-template-columns: 1fr 1fr; } }

.aud-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 38px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.aud-card::after {
  content:""; position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(107,82,224,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.aud-card > * { position: relative; z-index: 1; }
.aud-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(107,82,224,0.15);
  border: 1px solid var(--violet);
  color: var(--violet-glow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  align-self: flex-start;
}
.aud-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.aud-card h3 em { font-style: italic; color: var(--violet-glow); }
.aud-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 12px;
}

/* ===== PROGRAM ===== */
.program {
  position: relative;
  background: var(--bg-darkest);
  padding-bottom: clamp(64px, 7vw, 100px);
  overflow: hidden;
}
.program .glow { width: 650px; height: 650px; }
.program .glow-1 { top: 10%; right: -15%; opacity: 0.25; }

.prog-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 22px;
}
.prog-meta .pms {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.prog-meta .pms strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: 24px;
  color: var(--violet-glow);
  letter-spacing: -0.02em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.prog-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.prog-tabs-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-right: 6px;
  font-weight: 600;
}
.prog-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 18px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: all .25s ease;
}
.prog-tab:hover { border-color: var(--violet); color: var(--text); }
.prog-tab.active {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}
.prog-tab .tn {
  font-size: 9.5px;
  color: var(--violet-glow);
  letter-spacing: 0.04em;
  font-weight: 700;
}
.prog-tab.active .tn { color: rgba(255,255,255,0.7); }

.prog-list { display: flex; flex-direction: column; gap: 0; }
.module {
  border-top: 1px solid var(--line);
  transition: background .2s;
}
.module:last-child { border-bottom: 1px solid var(--line); }
.module:hover { background: rgba(255,255,255,0.02); }
.module-head {
  display: grid;
  grid-template-columns: 44px 1fr auto 28px;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  text-align: left;
  width: 100%;
}
.module-n {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 380;
  color: var(--violet-glow);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.module-title {
  font-family: var(--display);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 460;
  color: var(--text);
  letter-spacing: -0.012em;
}
.module-cat {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.module-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color .2s, background .2s;
}
.module-toggle::before, .module-toggle::after {
  content:""; position: absolute;
  background: var(--text-soft); transition: transform .3s ease, background .2s;
}
.module-toggle::before { width: 10px; height: 1.5px; }
.module-toggle::after { width: 1.5px; height: 10px; }
.module.open .module-toggle { background: var(--violet-glow); border-color: var(--violet-glow); }
.module.open .module-toggle::before { background: var(--bg-darkest); }
.module.open .module-toggle::after { transform: rotate(90deg); background: var(--bg-darkest); }

.module-body {
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease;
}
.module.open .module-body { max-height: 2200px; }
.module-body-inner {
  padding: 0 4px 28px 66px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.module-body-inner .mb-summary {
  grid-column: 1 / -1;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.module-body-inner .mb-summary strong { color: var(--text); font-weight: 500; }
.mb-col h5 {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--violet-glow);
  letter-spacing: -0.01em;
}
.mb-col h5::before {
  content: "—"; margin-right: 6px; color: var(--violet); font-style: italic;
}
.mb-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mb-col li {
  font-size: 13px; color: var(--text-soft); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.mb-col li::before {
  content:""; position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--violet);
}
@media (max-width: 720px) {
  .module-body-inner { grid-template-columns: 1fr; padding-left: 4px; }
  .module-head { grid-template-columns: 36px 1fr 26px; }
  .module-cat { display: none; }
}

/* ===== PROCESS ===== */
.process {
  position: relative;
  background: var(--bg-dark);
  padding-bottom: clamp(64px, 7vw, 100px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content:""; position: absolute;
  top: 22px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 10%, var(--violet) 90%, transparent);
}
.step { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.step-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--violet-glow);
  font-weight: 380;
  position: relative; z-index: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.step h4 { font-size: 15.5px; }
.step p { font-size: 13.5px; color: var(--text-soft); line-height: 1.5; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps::before { display: none; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* Process CTA */
.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.process-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--display);
  letter-spacing: -0.01em;
}
.process-cta-note {
  color: var(--text-mute);
  font-size: 13px;
}
.icon-inline {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-tg-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  background: #229ED9;
  color: #fff;
  border: 1px solid #229ED9;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-tg-inline:hover { background: #1B85B8; transform: translateY(-1px); }
.btn-tg-inline:active { transform: translateY(0); }

/* ===== FORMAT (Spotlight Hover Cards) ===== */
.format {
  position: relative;
  background: var(--bg-darkest);
  padding-bottom: clamp(64px, 7vw, 100px);
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  perspective: 1200px; /* Дозволяє 3D нахил карток */
}
@media (min-width: 861px) { .format-grid { grid-template-columns: 1fr 1fr; } }

.fmt-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255,255,255,0.05) inset;
  transition: 
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform, border-color, box-shadow;
  cursor: pointer;
}
.fmt-block.dark {
  background: linear-gradient(135deg, var(--violet-darker), var(--violet-deep));
  border-color: rgba(107, 82, 224, 0.4);
}

/* Spotlight ефект */
.fmt-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(156, 130, 255, 0.14),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.fmt-block:hover::before {
  opacity: 1;
}

/* Межі Spotlight за допомогою градієнтної підсвітки при ховері */
.fmt-block:hover {
  border-color: rgba(156, 130, 255, 0.5);
  box-shadow: 
    0 24px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 35px -5px rgba(107, 82, 224, 0.22),
    0 1px 0 rgba(255,255,255,0.1) inset;
}
.fmt-block.dark:hover {
  border-color: var(--violet-glow);
  box-shadow: 
    0 24px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 35px -5px rgba(156, 130, 255, 0.3),
    0 1px 0 rgba(255,255,255,0.15) inset;
}

/* Декоративна лінія зверху */
.fmt-block::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 130, 255, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}
.fmt-block.dark::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Скляний бейдж з 3D глибиною */
.fmt-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-glow);
  background: rgba(107, 82, 224, 0.15);
  border: 1px solid rgba(156, 130, 255, 0.25);
  padding: 5px 12px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s;
  pointer-events: none;
}
.fmt-block.dark .fmt-badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.fmt-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.fmt-block.dark .fmt-head { border-color: rgba(255,255,255,0.15); }

.fmt-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(107,82,224,0.2);
  border: 1px solid var(--violet);
  color: var(--violet-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s;
}
.fmt-block.dark .fmt-ico {
  background: rgba(255,255,255,0.1);
  border-color: var(--violet-glow);
  color: #fff;
}
.fmt-ico svg { width: 20px; height: 20px; }

.fmt-head h3 {
  flex: 1;
  font-size: clamp(18px, 1.7vw, 22px);
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fmt-head h3 em { font-style: italic; color: var(--violet-glow); }
.fmt-block.dark .fmt-head h3 em { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.fmt-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fmt-row:last-child { border-bottom: 0; }

.fmt-row .k {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  padding-top: 2px;
}
.fmt-row .v {
  font-family: var(--display);
  font-size: 15px;
  color: var(--text);
  font-weight: 460;
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: -0.01em;
}
.fmt-row .v small {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0;
  margin-top: 2px;
}

/* Mobile: badge sits above the heading instead of overlapping it */
@media (max-width: 640px) {
  .fmt-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
}

/* 3D Parallax ефекти для пристроїв з підтримкою ховеру */
@media (hover: hover) and (min-width: 861px) {
  .fmt-badge {
    transform: translateZ(40px);
  }
  .fmt-head {
    transform: translateZ(25px);
  }
  .fmt-ico {
    transform: translateZ(35px);
  }
  .fmt-head h3 {
    transform: translateZ(30px);
  }
  .fmt-row {
    transform: translateZ(15px);
  }
}

/* ===== TEACHER ===== */
.teacher {
  position: relative;
  background: var(--bg-dark);
  padding-bottom: clamp(64px, 7vw, 100px);
  overflow: hidden;
}
.teacher .glow { width: 500px; height: 500px; }
.teacher .glow-1 { bottom: -10%; left: -10%; }
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  position: relative; z-index: 2;
}
@media (min-width: 861px) { .t-grid { grid-template-columns: 0.85fr 1.15fr; } }

.t-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-card);
}
.t-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(0.95); }
.t-photo::after {
  content:""; position: absolute;
  inset: 12px;
  border: 1px solid rgba(156,130,255,0.45);
  border-radius: 12px;
  pointer-events: none;
}
.t-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(14,7,38,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--violet);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
  z-index: 2;
}
.t-badge strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--violet-glow);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 4px;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

.t-content .t-role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-glow);
}
.t-content .t-role::before {
  content:""; width: 22px; height: 1px; background: var(--violet);
}
.t-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.t-content p strong { color: var(--text); font-weight: 500; }
.t-quote {
  margin: 22px 0;
  padding: 18px 22px;
  background: var(--bg-card);
  border-left: 2px solid var(--violet-glow);
  border-radius: 0 14px 14px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
}
.t-quote::before {
  content: "\201C";
  position: absolute;
  left: 12px; top: -8px;
  font-family: var(--display);
  font-size: 50px;
  color: var(--violet);
  line-height: 1;
}
.t-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.t-cred { padding: 0 14px; }
.t-cred:not(:first-child) { border-left: 1px solid var(--line); }
.t-cred .k {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1;
  font-weight: 380;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.t-cred .k em { font-style: italic; color: var(--violet-glow); font-variation-settings: "opsz" 144, "SOFT" 100; }
.t-cred .l {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-top: 9px;
}

/* ===== INCLUDED ===== */
.included {
  position: relative;
  background: var(--bg-darkest);
  padding-bottom: clamp(64px, 7vw, 100px);
}
.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .incl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .incl-grid { grid-template-columns: 1fr; } }
.incl-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, background .25s;
}
.incl-item:hover { border-color: var(--violet); background: var(--bg-mid); }
.incl-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(107,82,224,0.18);
  border: 1px solid var(--violet);
  color: var(--violet-glow);
  display: flex; align-items: center; justify-content: center;
}
.incl-ico svg { width: 18px; height: 18px; }
.incl-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.incl-item p { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; }

/* ===== REVIEWS ===== */
.reviews { position: relative; background: var(--bg-dark); padding-bottom: clamp(56px, 6vw, 80px); }

/* The widget shell: dark-violet card containing summary + carousel */
.rv-widget {
  position: relative;
  background: #0C0626;
  border: 1px solid rgba(156,130,255,0.12);
  border-radius: 24px;
  padding: clamp(22px, 2.8vw, 36px) clamp(20px, 2.6vw, 36px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: center;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.03);
}
.rv-widget::before {
  content:""; position: absolute;
  top: 0; left: 28px; right: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-glow), transparent);
  opacity: 0.35;
}
@media (min-width: 900px) {
  .rv-widget { grid-template-columns: 230px 1fr; gap: clamp(24px, 2.6vw, 40px); }
}

/* Summary column */
.rv-summary {
  text-align: left;
  padding-right: clamp(0px, 1.4vw, 20px);
}
@media (min-width: 900px) {
  .rv-summary { border-right: 1px solid rgba(255,255,255,0.07); }
}
.rv-excellent {
  font-family: var(--sans);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1;
}
.rv-stars {
  color: #FFB400;
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: 3px;
  margin-bottom: 14px;
  line-height: 1;
  text-shadow: 0 0 26px rgba(255,180,0,0.22);
}
.rv-based {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.45;
}
.rv-based strong { color: var(--text); font-weight: 700; }
.rv-google {
  display: inline-flex; gap: 1px;
  font-family: "Product Sans", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.rv-google span:nth-child(1) { color: #4285F4; }
.rv-google span:nth-child(2) { color: #EA4335; }
.rv-google span:nth-child(3) { color: #FBBC05; }
.rv-google span:nth-child(4) { color: #4285F4; }
.rv-google span:nth-child(5) { color: #34A853; }
.rv-google span:nth-child(6) { color: #EA4335; }

/* Carousel column */
.rv-carousel { position: relative; min-width: 0; }
.rv-track-wrap { overflow: hidden; }
.rv-track {
  display: flex;
  gap: 16px;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.rv-card {
  background: #170B3B;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  transition: border-color .25s, transform .25s;
}
.rv-card:hover { border-color: rgba(156,130,255,0.4); }
@media (max-width: 1024px) { .rv-card { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 640px)  { .rv-card { flex-basis: 100%; } }

.rv-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.rv-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.rv-av--1 { background: linear-gradient(135deg, #6B52E0, #4327B5); }
.rv-av--2 { background: linear-gradient(135deg, #8973FF, #4327B5); }
.rv-av--3 { background: linear-gradient(135deg, #9C82FF, #6B52E0); }
.rv-av--4 { background: linear-gradient(135deg, #C5B5EA, #6B52E0); }
.rv-av--5 { background: linear-gradient(135deg, #6B52E0, #2E1788); }
.rv-av--6 { background: linear-gradient(135deg, #4327B5, #160B3A); }
.rv-av--7 { background: linear-gradient(135deg, #8973FF, #36205C); }
.rv-av--8 { background: linear-gradient(135deg, #C5B5EA, #4327B5); }
.rv-name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }
.rv-when { font-size: 12.5px; color: var(--text-mute); margin-top: 2px; }
.rv-glogo { width: 22px; height: 22px; flex-shrink: 0; }
.rv-card-stars { color: #FFB400; font-size: 16px; letter-spacing: 2px; line-height: 1; }
.rv-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.rv-card.expanded .rv-text {
  display: block;
  overflow: visible;
}
.rv-readmore {
  font-size: 13.5px;
  color: var(--violet-glow);
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  transition: color .2s, transform .2s;
  cursor: pointer;
}
.rv-readmore:hover { color: var(--text); transform: translateX(2px); }

/* Carousel nav arrows */
.rv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  transition: background .2s, border-color .2s, transform .2s, opacity .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rv-nav:hover:not(:disabled) {
  background: var(--violet);
  border-color: var(--violet);
  transform: translateY(-50%) scale(1.06);
}
.rv-nav:disabled { opacity: 0.25; cursor: not-allowed; }
.rv-nav svg { width: 14px; height: 14px; }
.rv-nav-prev { left: -20px; }
.rv-nav-next { right: -20px; }
@media (max-width: 900px) {
  .rv-nav-prev { left: 4px; }
  .rv-nav-next { right: 4px; }
}

/* ===== GALLERY ===== */
.gallery { position: relative; background: var(--bg-darkest); padding-bottom: clamp(64px, 7vw, 100px); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 860px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gal-grid { grid-template-columns: 1fr; } }
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.gal-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
@media (max-width: 860px) {
  .gal-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 540px) {
  .gal-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: contrast(1.05) saturate(0.95) brightness(0.88);
}
.gal-item::after {
  content:""; position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,7,38,0.75) 100%);
  pointer-events: none;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text);
  background: var(--violet);
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gal-item:hover .gal-tag { transform: translateY(-3px); }

/* ===== PRICING ===== */
.pricing-section {
  position: relative;
  background: var(--bg-dark);
  padding-bottom: clamp(64px, 7vw, 100px);
  overflow: hidden;
}
.pricing-section .glow { width: 700px; height: 700px; }
.pricing-section .glow-1 { top: 20%; right: -15%; opacity: 0.35; }

.pricing-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-mid);
  border: 1px solid var(--violet);
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 861px) {
  .pricing-card { grid-template-columns: 1.3fr 0.7fr; }
}
.pricing-card::before {
  content:""; position: absolute;
  inset: 8px;
  border: 1px solid rgba(156,130,255,0.3);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
}
.pricing-left {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .pricing-left { border-right: 0; border-bottom: 1px solid var(--line); }
}
.pricing-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 14px;
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: var(--violet);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pricing-amount {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pricing-amount .new {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.pricing-amount .new em {
  font-style: italic;
  color: var(--violet-glow);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pricing-amount .currency {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--violet-glow);
  font-weight: 380;
  font-style: italic;
}
.pricing-desc {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 48ch;
}
.pricing-opts {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.pricing-card-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 6px;
}
.po {
  padding: 11px 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.po .pt {
  font-family: var(--display);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.po .pd { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

.pricing-mono {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 14px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  box-shadow: 0 10px 28px -12px rgba(0,0,0,0.5);
}
.pricing-mono img {
  width: 104px;
  height: auto;
  flex-shrink: 0;
}
.pricing-mono span {
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 600;
  color: #14141a;
  letter-spacing: -0.005em;
}
@media (max-width: 460px) {
  .pricing-mono { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pricing-mono img { width: 130px; }
}

.pricing-right {
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-mid) 100%);
  position: relative;
  z-index: 2;
}
.pr-meta-title {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-glow);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.pr-row {
  display: flex; flex-direction: column; gap: 3px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.pr-row:last-child { border-bottom: 0; }
.pr-row .k {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.pr-row .v {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 460;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pr-row .v small {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-mute);
  margin-top: 3px;
}

/* ===== FAQ ===== */
.faq-section { position: relative; background: var(--bg-darkest); padding-bottom: clamp(64px, 7vw, 100px); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-top: clamp(60px, 7vw, 100px);
  align-items: start;
}
@media (min-width: 861px) { .faq-layout { grid-template-columns: 0.85fr 1.15fr; } }
.faq-layout > div:first-child .eyebrow { margin-bottom: 18px; }
.faq-layout > div:first-child h2 { margin-bottom: 18px; }
.faq-layout > div:first-child p {
  font-size: 15px; line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.faq-ask {
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--violet);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-glow);
  font-weight: 600;
  transition: color .2s;
}
.faq-ask:hover { color: var(--text); }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 460;
  color: var(--text);
  letter-spacing: -0.012em;
  transition: color .2s;
}
.faq-q:hover { color: var(--violet-glow); }
.faq-toggle {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.faq-toggle::before, .faq-toggle::after {
  content:""; position: absolute;
  background: var(--text-soft);
  transition: transform .3s ease;
}
.faq-toggle::before { width: 9px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 9px; }
.faq-item.open .faq-toggle { background: var(--violet-glow); border-color: var(--violet-glow); }
.faq-item.open .faq-toggle::before { background: var(--bg-darkest); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); background: var(--bg-darkest); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a > div { padding: 0 0 18px; }
.faq-a p { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; max-width: 62ch; }

.po.po-highlight {
  border-color: var(--violet);
  background: rgba(107,82,224,0.12);
}
.po.po-highlight .pt {
  color: var(--violet-glow);
}

/* ===== FINAL CTA ===== */
.final {
  position: relative;
  background: var(--bg-dark);
  padding-bottom: clamp(56px, 6vw, 84px);
  overflow: hidden;
}
.final-card {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, var(--violet-deep) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, var(--violet-darker) 0%, transparent 50%),
    var(--bg-mid);
  border: 1px solid var(--violet);
  border-radius: 28px;
  padding: clamp(32px, 4.5vw, 64px);
  overflow: hidden;
  z-index: 2;
}
.final-card::before {
  content:""; position: absolute;
  inset: 12px;
  border: 1px solid rgba(156,130,255,0.3);
  border-radius: 20px;
  pointer-events: none;
}
.final-bg-mono {
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  opacity: 0.07;
  pointer-events: none;
}
.final-bg-mono svg { width: 100%; height: 100%; }
.final-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  position: relative; z-index: 1;
  align-items: center;
}
@media (min-width: 861px) { .final-wrap { grid-template-columns: 1.1fr 0.9fr; } }

.final-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-glow);
  font-weight: 700;
  margin-bottom: 18px;
}
.final-eyebrow::before {
  content:""; width: 22px; height: 1px; background: var(--violet-glow);
}
.final-card h2 { color: var(--text); margin-bottom: 18px; }
.final-card h2 em { color: var(--violet-glow); font-style: italic; }
.final-sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 14px;
  max-width: 48ch;
}
.no-pressure {
  display: inline-block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(156,130,255,0.25);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

.tg-card {
  background: var(--bg-darkest);
  border: 1px solid var(--violet);
  border-radius: 20px;
  padding: 22px;
  position: relative;
}
.tg-av-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tg-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--violet-glow);
  flex-shrink: 0;
  background: var(--violet-deep);
}
.tg-av img { width: 100%; height: 100%; object-fit: cover; }
.tg-name {
  font-family: var(--display);
  font-weight: 480;
  font-size: 14.5px;
  color: var(--text);
}
.tg-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-glow);
  margin-top: 2px;
}
.tg-bubble {
  background: var(--bg-card);
  border-left: 2px solid var(--violet-glow);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.tg-time {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-top: 8px;
}
.tg-btn-wrap { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.tg-handle {
  font-size: 10.5px;
  color: var(--text-mute);
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.btn-tg-full {
  background: #229ED9;
  color: #fff;
  border: 1px solid #229ED9;
  justify-content: center;
  height: 46px;
}
.btn-tg-full:hover { background: #1B85B8; border-color: #1B85B8; }
.btn-final-open { margin-top: 22px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darkest);
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 4vw, 56px) 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr; } }
.footer-brand p {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 42ch;
}
.footer-meta {
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.footer-meta a:hover { color: var(--violet-glow); }
.footer-bottom {
  padding-top: 18px;
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

/* ===== JOURNEY PATH — 04 (Sticky Scroll) ===== */
.journey {
  position: relative;
  background: var(--bg-darkest);
  height: 450vh; /* Скрол-відстань для десктопу */
}
@media (max-width: 820px) {
  .journey {
    height: auto;
  }
}

.j-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 820px) {
  .j-sticky-container {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    overflow: visible;
    padding-top: clamp(40px, 5vw, 72px);
    padding-bottom: clamp(40px, 5vw, 72px);
  }
}

/* Progress Bar on the Left */
.j-progress-col {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 820px) {
  .j-progress-col {
    display: none;
  }
}
.j-progress-bar-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 360px;
  padding-left: 20px;
}
.j-progress-line-track {
  position: absolute;
  left: 25px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: rgba(197, 181, 234, 0.12);
  border-radius: 99px;
}
.j-progress-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--violet-bright), var(--violet-glow));
  border-radius: 99px;
  transition: height 0.1s linear;
  box-shadow: 0 0 10px var(--violet-glow);
}
.j-progress-nodes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}
.j-progress-node {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  user-select: none;
}
.j-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 2px solid rgba(197, 181, 234, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  left: 0px;
}
.j-progress-node:hover .j-progress-dot {
  border-color: var(--violet-bright);
  transform: scale(1.2);
}
.j-progress-node.active .j-progress-dot {
  border-color: var(--violet-glow);
  background: var(--violet-glow);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--violet-glow), 0 0 0 4px rgba(156, 130, 255, 0.25);
}
.j-progress-node.completed .j-progress-dot {
  border-color: var(--violet-bright);
  background: var(--violet-bright);
}
.j-progress-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  transition: color 0.4s, font-weight 0.4s;
  font-family: var(--sans);
  letter-spacing: 0.05em;
}
.j-progress-node.active .j-progress-label {
  color: var(--text);
  font-weight: 600;
}
.j-progress-node.completed .j-progress-label {
  color: var(--text-soft);
}

/* Cards Column on the Right */
.j-cards-col {
  position: relative;
  width: 100%;
}
.j-viewport {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: visible;
}
@media (max-width: 820px) {
  .j-viewport {
    height: auto;
    min-height: 0;
  }
}
.j-slides-track {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 820px) {
  .j-slides-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
}

.j-slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) translateY(40px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.75s;
  will-change: transform, opacity;
  box-sizing: border-box;
}
@media (max-width: 820px) {
  .j-slide {
    position: relative;
    top: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.j-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateY(0px) scale(1);
  z-index: 10;
}
.j-slide.past {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateY(-40px) scale(0.96);
  z-index: 1;
}
.j-slide.future {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateY(40px) scale(0.96);
  z-index: 2;
}

.j-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(22px,3vw,40px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px,3vw,38px);
  align-items: start;
  width: 100%;
}
@media (max-width:820px) { .j-card { grid-template-columns: 1fr; } }

/* Step indicator integrated into the card */
.j-card-step {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  width: 100%;
  box-sizing: border-box;
}
.j-card-step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 380;
  color: var(--violet-glow);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
}
.j-card-step-lbl {
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.j-card-step-of {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.j-card-ey { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--violet-glow); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px; }
.j-card-ey::before { content:""; width: 18px; height: 1px; background: var(--violet); }
.j-card h3 { font-size: clamp(18px,1.8vw,24px); margin-bottom: 14px; font-weight: 400; }
.j-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); margin-bottom: 12px; }
.j-card p:last-of-type { margin-bottom: 0; }
.j-card strong { color: var(--text); font-weight: 500; }
.j-blocks { display: flex; flex-direction: column; gap: 8px; }
.j-block { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: start; padding: 9px 12px; background: var(--bg-mid); border-radius: 10px; border: 1px solid var(--line-soft); }
.j-block-n { font-family: var(--display); font-style: italic; font-size: 13px; color: var(--violet-glow); font-weight: 380; padding-top: 1px; font-variation-settings: "opsz" 144,"SOFT" 100; }
.j-block-title { font-family: var(--display); font-size: 13px; font-weight: 460; color: var(--text); letter-spacing: -0.01em; line-height: 1.3; }
.j-block-sub { font-size: 11.5px; color: var(--text-mute); margin-top: 2px; line-height: 1.35; }

.j-zero-block { display: flex; flex-direction: column; }
.j-zero-note {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-mute);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}
.j-zero-ey {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet-glow);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.j-zero-ey::before { content:""; width: 18px; height: 1px; background: var(--violet); }
.j-zero-h {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 380;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  margin: 0;
}
.j-zero-h em { font-style: italic; color: var(--violet-glow); font-variation-settings: "opsz" 144, "SOFT" 100; }

/* ===== LEAD MODAL ===== */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.lead-modal[hidden] { display: none; }
.lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 3, 19, 0.78);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  animation: leadFadeIn 0.25s ease;
}
.lead-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg-mid);
  border: 1px solid var(--violet);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.7),
    0 0 60px rgba(107,82,224,0.18),
    0 1px 0 rgba(255,255,255,0.06) inset;
  animation: leadSlideUp 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
}
.lead-dialog::-webkit-scrollbar { width: 6px; }
.lead-dialog::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }
.lead-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 1px solid var(--line);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
  z-index: 2;
}
.lead-close:hover {
  border-color: var(--violet-glow);
  color: var(--violet-glow);
  transform: rotate(90deg);
}
.lead-close svg { width: 16px; height: 16px; }

.lead-header {
  margin-bottom: 22px;
  padding-right: 40px;
}
.lead-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-glow);
  margin-bottom: 10px;
}
.lead-header h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 380;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.lead-header h3 em {
  font-style: italic;
  color: var(--violet-glow);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lead-header p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

@keyframes leadFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes leadSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Form fields (shared between modal and any inline use) */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.ff-row { display: flex; gap: 10px; }
.ff-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 540px) {
  .ff-row-2 { grid-template-columns: 1fr; }
}
.ff-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.ff-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.ff-label .ff-opt {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text-faint);
}
.ff-field input,
.ff-field textarea {
  width: 100%;
  background: var(--bg-darkest);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
  resize: none;
}
.ff-field input::placeholder,
.ff-field textarea::placeholder { color: var(--text-faint); }
.ff-field input:focus,
.ff-field textarea:focus {
  outline: none;
  border-color: var(--violet-glow);
  background: var(--bg-mid);
}
.ff-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 95, 95, 0.55);
}
.ff-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  margin-top: 4px;
}
.ff-agree input[type="checkbox"] {
  width: 16px; height: 16px;
  margin: 2px 0 0 0;
  flex-shrink: 0;
  accent-color: var(--violet);
  cursor: pointer;
}
.ff-agree a { color: var(--violet-glow); text-decoration: underline; text-underline-offset: 2px; }
.ff-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.ff-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(107, 82, 224, 0.15);
  border: 1px solid var(--violet);
  border-radius: 14px;
  margin-top: 4px;
}
.ff-success.shown { display: flex; }
.ff-success svg {
  width: 32px; height: 32px;
  color: var(--violet-glow);
  flex-shrink: 0;
}
.ff-success-t {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 460;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.ff-success-d {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.lead-form.submitted .ff-row,
.lead-form.submitted .ff-agree,
.lead-form.submitted .ff-submit { display: none; }

/* When modal is open — lock body scroll */
body.lead-modal-open { overflow: hidden; }

/* Mobile modal tweaks */
@media (max-width: 540px) {
  .lead-modal {
    align-items: center;
    justify-content: center;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }
  .lead-dialog {
    width: min(100%, calc(100vw - 20px));
    max-width: none;
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
    padding: 28px 20px 22px;
    animation: leadSlideUpMobile 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lead-header {
    margin-bottom: 18px;
    padding-right: 38px;
  }
  .lead-eyebrow {
    font-size: 10px;
    line-height: 1.35;
  }
  .lead-header h3 {
    font-size: 26px;
    line-height: 1.04;
  }
  .lead-header p {
    font-size: 13px;
    line-height: 1.45;
  }
  .lead-form { gap: 12px; }
  .ff-row,
  .ff-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  @keyframes leadSlideUpMobile {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .ff-field input,
  .ff-field textarea {
    min-height: 50px;
    font-size: 16px;
  }   /* iOS no-zoom */
  .ff-field textarea { min-height: 96px; }
  .ff-submit {
    min-height: 54px;
    margin-top: 6px;
    white-space: nowrap;
  }
}

.tg-or {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 8px;
}

/* ===== TEACHER MANIFESTO CARD — 09 ===== */
.teacher-manifesto { position:relative; background:var(--bg-dark); padding-top: clamp(44px,5vw,64px); padding-bottom:clamp(44px,5vw,64px); overflow:hidden; }
.teacher-manifesto .glow { width:400px; height:400px; }
.teacher-manifesto .glow-1 { bottom:-10%; left:-10%; }
.tm-card {
  position:relative; z-index:2;
  background:linear-gradient(140deg,var(--violet-darker) 0%,var(--bg-light) 55%,var(--bg-card) 100%);
  border:1px solid var(--violet); border-radius:22px; padding:clamp(22px,3vw,36px); overflow:hidden;
}
.tm-card::before { content:""; position:absolute; inset:10px; border:1px solid rgba(156,130,255,.22); border-radius:14px; pointer-events:none; }
.tm-card-glow { position:absolute; top:-80px; left:-80px; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(107,82,224,.25),transparent 65%); filter:blur(45px); pointer-events:none; z-index:0; }
.tm-main { position:relative; z-index:1; display:grid; grid-template-columns:minmax(300px,360px) 1fr; gap:clamp(20px,3vw,40px); align-items:stretch; }
@media (max-width:820px) { .tm-main { grid-template-columns:1fr; align-items:start; } }
.tm-left { display:flex; }
.tm-role { font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--violet-glow); margin-bottom:12px; display:inline-flex; align-items:center; gap:8px; }
.tm-role::before { content:""; width:18px; height:1px; background:var(--violet-glow); }
.tm-name { font-family:var(--display); font-size:clamp(24px,2.6vw,38px); font-weight:380; color:var(--text); letter-spacing:-.035em; line-height:1.02; margin-bottom:18px; font-variation-settings:"opsz" 144,"SOFT" 50; }
.tm-name em { font-style:italic; color:var(--violet-glow); font-variation-settings:"opsz" 144,"SOFT" 100; }
.tm-intro { font-size:14px; line-height:1.6; color:var(--text-soft); margin-bottom:14px; }
.tm-intro:last-of-type { margin-bottom:12px; }
.tm-intro strong { color:var(--text); font-weight:500; }
.tm-sig { font-family:var(--hand); font-size:20px; color:var(--violet-glow); display:inline-block; transform:rotate(-3deg); margin-top:16px; }
.tm-quote-block { position:relative; padding-left:22px; margin-top:4px; }
.tm-quote-block::before { content:"\201C"; position:absolute; left:-4px; top:-10px; font-family:var(--display); font-size:52px; color:var(--violet); font-style:italic; line-height:1; pointer-events:none; }
.tm-quote { font-family:var(--display); font-style:italic; font-size:clamp(13.5px,1.3vw,16px); line-height:1.5; color:var(--text-soft); font-weight:380; letter-spacing:-.01em; font-variation-settings:"opsz" 144,"SOFT" 100; }
.tm-quote p { margin-bottom:10px; }
.tm-quote p:last-child { margin-bottom:0; }
.tm-quote strong { color:var(--text); font-weight:500; font-style:normal; }
.tm-stats { position:relative; z-index:1; display:flex; gap:clamp(28px,3vw,44px); margin-top:clamp(20px,2.2vw,28px); padding-top:clamp(16px,1.8vw,22px); border-top:1px solid rgba(156,130,255,.22); }
.tm-stat { text-align:left; padding:0; }
.tm-stat:not(:first-child) { border-left:1px solid rgba(156,130,255,.15); padding-left:clamp(28px,3vw,44px); }
.tm-stat .k { font-family:var(--display); font-size:clamp(24px,2.6vw,34px); font-weight:380; line-height:1; color:var(--text); letter-spacing:-.03em; font-variation-settings:"opsz" 144,"SOFT" 50; }
.tm-stat .l { font-size:9.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mute); margin-top:7px; }

/* Teacher photo placeholder — square */
.tm-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(107,82,224,0.07);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tm-photo-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.04) saturate(0.97);
}
.tm-photo-placeholder::after {
  content:""; position: absolute; inset: 8px;
  border: 1px solid rgba(156,130,255,0.4);
  border-radius: 9px;
  pointer-events: none;
}
@media (max-width: 820px) {
  .tm-photo-placeholder { width: 140px; height: 140px; }
}
.tm-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.tm-photo-inner svg { width: 36px; height: 36px; opacity: 0.5; }

/* ===== PACKAGE SUMMARY — 10 (Static grid list) ===== */
.pkg-section {
  position: relative;
  background: var(--bg-darkest);
  padding-bottom: clamp(64px, 7vw, 100px);
}

.pkg-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
@media (max-width: 720px) {
  .pkg-list { grid-template-columns: 1fr; }
}

.pkg-li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  transition: border-color 0.25s, transform 0.25s;
}
.pkg-li:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}

.pkg-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(107, 82, 224, 0.18);
  border: 1px solid var(--violet);
  color: var(--violet-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pkg-ico svg { width: 20px; height: 20px; }
.pkg-li-title {
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 420;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.pkg-li-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}
.pkg-li-desc strong { color: var(--text); font-weight: 500; }

.pkg-li-title {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 460;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 5px;
}
.pkg-li-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}
.pkg-li-desc strong { color: var(--text); font-weight: 500; }
/* ===== GRADUATES ORBIT — Social Proof ===== */
.orbit-section {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(ellipse 70% 60% at 50% 18%, rgba(107,82,224,0.14), transparent 62%),
    linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-dark) 54%, var(--bg-dark) 100%);
  padding: clamp(42px, 6vh, 64px) 0 clamp(34px, 5vh, 58px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.orbit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,181,234,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,181,234,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 68% at 50% 52%, #000 0%, transparent 76%);
  pointer-events: none;
}
.orbit-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -260px;
  width: min(900px, 90vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(137,115,255,0.2), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}

.orbit-heading {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(18px, 3vh, 30px);
  text-align: center;
}
.orbit-heading h2 {
  font-size: clamp(31px, 4.35vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.orbit-heading .orbit-num {
  color: var(--violet-glow);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-shadow: 0 0 24px rgba(156,130,255,0.32);
}
.orbit-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--violet-glow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.orbit-kicker::before,
.orbit-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--violet);
}

.orbit-arena {
  position: relative;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  margin: 0 auto;
  z-index: 2;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-ring-1 {
  inset: 27%;
  border: 1px dashed rgba(156,130,255,0.22);
}
.orbit-ring-2 {
  inset: 13%;
  border: 1px solid rgba(197,181,234,0.12);
  box-shadow: 0 0 70px rgba(107,82,224,0.08) inset;
}
.orbit-ring-3 {
  inset: 0;
  border: 1px dashed rgba(156,130,255,0.2);
}

.orbit-center-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 32vw, 300px);
  transform: translate(-50%, -50%);
  padding: clamp(20px, 2.8vw, 30px) clamp(18px, 2.5vw, 28px);
  text-align: center;
  z-index: 10;
  background: rgba(37,21,89,0.88);
  border: 1px solid rgba(197,181,234,0.24);
  border-radius: 22px;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 26px 70px -20px rgba(0,0,0,0.62),
    0 0 36px rgba(107,82,224,0.14),
    0 1px 0 rgba(255,255,255,0.08) inset;
}
.orbit-stars {
  color: var(--violet-glow);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.orbit-quote {
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 420;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.orbit-divider {
  height: 1px;
  margin: 0 auto 13px;
  width: 84%;
  background: linear-gradient(90deg, transparent, rgba(156,130,255,0.42), transparent);
}
.orbit-author {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
}
.orbit-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet-bright), var(--violet-deep));
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 8px 18px -8px rgba(137,115,255,0.75);
}
.orbit-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orbit-author-info { text-align: left; }
.orbit-author-name {
  font-size: 13px;
  font-weight: 650;
  color: var(--text);
}
.orbit-author-year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-glow);
}

.orbit-node {
  --size: 54px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet-bright), var(--violet-deep));
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 520;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow:
    0 14px 28px -12px rgba(107,82,224,0.8),
    0 0 0 8px rgba(197,181,234,0.07);
  animation: orbitPulse 4.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.orbit-node.small {
  --size: 44px;
  font-size: 16px;
  opacity: 0.9;
}
.orbit-node.deep {
  background: linear-gradient(145deg, var(--violet), var(--violet-darker));
}
.orbit-node img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.orbit-tag {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 16px;
  background: rgba(240,235,250,0.92);
  color: var(--bg-mid);
  border: 1px solid rgba(197,181,234,0.35);
  border-radius: 999px;
  box-shadow:
    0 16px 34px -18px rgba(0,0,0,0.65),
    0 0 24px rgba(137,115,255,0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  z-index: 7;
}
.orbit-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(107,82,224,0.12);
}
.orbit-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(37,21,89,0.62);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12.5px;
  line-height: 1.5;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.orbit-note strong { color: var(--text); font-weight: 650; }

@keyframes orbitPulse {
  0%, 100% { translate: 0 0; filter: brightness(1); }
  50% { translate: 0 -7px; filter: brightness(1.12); }
}

@media (max-width: 760px) {
  .orbit-section {
    min-height: auto;
    padding-top: 58px;
  }
  .orbit-heading h2 { font-size: clamp(31px, 10vw, 44px); }
  .orbit-arena {
    width: min(92vw, 390px);
    height: min(92vw, 390px);
  }
  .orbit-tag {
    max-width: 190px;
    min-height: 30px;
    padding: 6px 11px;
    font-size: 9.5px;
  }
  .orbit-tag.left-mobile { --x: 24%; }
  .orbit-tag.right-mobile { --x: 77%; }
  .orbit-node { --size: 34px; font-size: 13px; }
  .orbit-node.small { --size: 28px; font-size: 11px; }
  .orbit-note { display: none; }
}

/* =====================================================
   KILLER ANIMATIONS — додано після першого фідбеку
===================================================== */

/* COUNTER — використовується для цифр що тикаються від 0 */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* PROCESS — лінія, що проростає + staggered steps */
.steps::before {
  background: linear-gradient(90deg, var(--violet) 0%, var(--violet-glow) 50%, var(--violet) 100%);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
  height: 2px;
  top: 21px;
  box-shadow: 0 0 12px rgba(156,130,255,0.6);
}
.steps.in-view::before { transform: scaleX(1); }

.step {
  transition: opacity 0.6s ease;
  opacity: 0.35;
}
.step.active { opacity: 1; }

.step-dot {
  transition:
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}
.step.active .step-dot {
  background: var(--violet);
  border-color: var(--violet-glow);
  color: #fff;
  font-style: italic;
  box-shadow:
    0 0 0 6px rgba(107,82,224,0.18),
    0 8px 28px -6px rgba(107,82,224,0.55);
  transform: scale(1.08);
}

/* REVIEWS — (legacy marquee removed; carousel controlled via JS in .rv-widget) */

/* PRICING — aura that breathes + animated counter */
.pricing-card { position: relative; }
.pricing-aura {
  position: absolute;
  inset: -30px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 50%, rgba(107,82,224,0.35), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  animation: auraBreathe 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes auraBreathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.04); }
}
.pricing-amount .currency {
  animation: currencyFloat 4s ease-in-out infinite;
  display: inline-block;
}
@keyframes currencyFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* FINAL CTA — typing indicator + avatar pulse rings */
.tg-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.tg-typing span {
  width: 6px; height: 6px;
  background: var(--violet-glow);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}
.tg-typing span:nth-child(2) { animation-delay: 0.18s; }
.tg-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

.tg-av {
  position: relative;
  isolation: isolate;
}
.tg-av::before, .tg-av::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--violet-glow);
  animation: pulseRing 2.4s infinite cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: -1;
}
.tg-av::after { animation-delay: 1.2s; }
@keyframes pulseRing {
  0%   { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* TEACHER photo — glow ring (subtle constant accent) */
.t-photo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--violet) 0%, transparent 30%, transparent 70%, var(--violet-glow) 100%);
  z-index: 0;
  opacity: 0.6;
  animation: ringSpin 14s linear infinite;
}
@keyframes ringSpin {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(40deg); }
}
.t-photo { position: relative; z-index: 0; }
.t-photo img, .t-photo::after, .t-badge { position: relative; z-index: 1; }

/* AUDIENCE — magnetic hover */
.aud-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}
.aud-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow:
    0 20px 50px -16px rgba(107,82,224,0.35),
    0 6px 18px -6px rgba(67,39,181,0.3);
}

/* INCLUDED — subtle lift on hover (already had basic hover) */
.incl-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              background 0.25s ease;
}
.incl-item:hover { transform: translateY(-3px); }

/* GALLERY — caption fade */
.gal-tag {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gal-item:hover .gal-tag { transform: translateY(-3px); }

/* HERO blob pulse on entry */
.hero.in-view .hero-blob-bg { animation: blobMorph 18s ease-in-out infinite, blobEntry 1.6s ease-out; }
@keyframes blobEntry {
  0%   { opacity: 0; transform: scale(0.7); }
  100% { opacity: 0.5; transform: scale(1); }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track,
  .mq-mute {
    animation: none !important;
  }
}
/* =====================================================
   ━━━ MOBILE OVERRIDES (≤ 768px) ━━━
   Mass adjustments — hero, journey, program tabs,
   process stack, teacher photo, gallery scroll,
   orbit reviews, final contact, package stack.
===================================================== */

/* Default-hidden mobile-only helpers */
.j-mobile-hint { display: none; }
.j-mobile-header { display: none; }

/* Toggle full / short CTA text */
.cta-short { display: none; }
@media (max-width: 540px) {
  .hero-pills { display: none; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
}

@keyframes jHintShift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (max-width: 768px) {

  /* ── 1) HERO buttons in one line ── */
  .hero-ctas {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-ctas .btn {
    flex: 1;
    min-width: 0;
    padding-left: 16px;
    padding-right: 14px;
    font-size: 13px;
    white-space: nowrap;
    justify-content: center;
  }
  .hero-ctas .btn-primary .arrow {
    width: 24px; height: 24px;
    margin-left: 4px;
  }

  /* ── 2) Journey — horizontal scroll with peek ── */
  .journey { padding-bottom: clamp(28px, 5vw, 48px); }
  .j-cards-col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  /* Section head above carousel with hint */
  .j-mobile-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px;
    margin-bottom: 18px;
  }
  .j-mobile-header .section-head {
    grid-template-columns: 1fr !important;
    gap: 8px;
    margin-bottom: 0 !important;
  }
  .j-mobile-header .section-head h2 {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.1;
  }
  .j-mobile-header .section-head .eyebrow {
    margin-bottom: 4px !important;
  }
  .j-viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 4px;     /* лівий відступ 20px */
    margin: 0;
    scrollbar-width: none;
    display: block;
    height: auto;
    min-height: 0;
  }
  .j-viewport::-webkit-scrollbar { display: none; }
  .j-slides-track {
    display: inline-flex !important;
    flex-direction: row !important;
    width: max-content !important;
    transform: none !important;
    transition: none;
    gap: 12px;
    height: auto;
    align-items: stretch;
  }
  .j-slide {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 78vw !important;
    max-width: 78vw !important;
    min-width: 78vw !important;
    flex: 0 0 78vw !important;
    scroll-snap-align: start;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    box-sizing: border-box;
  }
  .j-slide > .j-card,
  .j-slide .j-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    border-radius: 18px !important;
    box-sizing: border-box;
  }
  .j-slide .j-card > * { min-width: 0; }
  .j-slide .j-blocks { width: 100%; min-width: 0; }

  /* Hint inside header */
  .j-mobile-header .j-mobile-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet-glow);
    padding: 6px 12px;
    background: rgba(107,82,224,0.12);
    border: 1px solid rgba(107,82,224,0.3);
    border-radius: 999px;
    align-self: flex-start;
  }
  .j-mobile-header .j-mobile-hint svg {
    width: 14px; height: 14px;
    animation: jHintShift 1.6s ease-in-out infinite;
  }

  /* ── 3) Program tabs — 3 categories in one line ── */
  .prog-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    overflow-x: visible;
  }
  .prog-tabs-label { display: none; }
  .prog-tab {
    padding: 9px 6px;
    font-size: 12.5px;
    text-align: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    line-height: 1.2;
    white-space: normal;
    word-break: keep-all;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .prog-tab .tn {
    font-size: 13px;
    margin: 0 0 2px;
  }

  /* ── 4) PROCESS steps — stack-scroll cards ── */
  .process { padding-bottom: clamp(28px, 5vw, 48px); }
  .steps {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0;
    position: relative;
  }
  .steps .step {
    position: sticky;
    top: 84px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 18px !important;
    margin-bottom: 14px;
    box-shadow: 0 -12px 30px -8px rgba(0,0,0,0.5);
  }
  .steps .step:nth-child(1) { top: 84px;  z-index: 1; }
  .steps .step:nth-child(2) { top: 100px; z-index: 2; }
  .steps .step:nth-child(3) { top: 116px; z-index: 3; }
  .steps .step:nth-child(4) { top: 132px; z-index: 4; }
  .steps .step:nth-child(5) { top: 148px; z-index: 5; }
  .steps .step h4 { font-size: 17px; margin: 0 0 6px; }
  .steps .step p { font-size: 13.5px; line-height: 1.5; }
  .steps .step-dot { margin-bottom: 4px; }

  /* ── 5) Teacher photo — full width ── */
  .tm-main { grid-template-columns: 1fr !important; gap: 18px; }
  .tm-left { display: flex; flex-direction: column; align-items: stretch; }
  .tm-photo-placeholder {
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-width: 100%;
    border-radius: 18px;
  }
  .tm-photo-inner svg { width: 56px; height: 56px; }

  /* ── 6) PACKAGE — stack-scroll cards ── */
  .pkg-section { padding-bottom: clamp(28px, 5vw, 48px); }
  .pkg-list {
    display: block !important;
    grid-template-columns: none !important;
    position: relative;
  }
  .pkg-list .pkg-li {
    position: sticky;
    top: 84px;
    margin-bottom: 14px;
    box-shadow: 0 -12px 30px -8px rgba(0,0,0,0.5);
    padding: 18px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .pkg-list .pkg-li:nth-child(1) { top: 84px;  z-index: 1; }
  .pkg-list .pkg-li:nth-child(2) { top: 100px; z-index: 2; }
  .pkg-list .pkg-li:nth-child(3) { top: 116px; z-index: 3; }
  .pkg-list .pkg-li:nth-child(4) { top: 132px; z-index: 4; }
  .pkg-list .pkg-li:nth-child(5) { top: 148px; z-index: 5; }
  .pkg-list .pkg-li:nth-child(6) { top: 164px; z-index: 6; }
  .pkg-li .pkg-ico { width: 44px; height: 44px; }
  .pkg-li .pkg-ico svg { width: 18px; height: 18px; }
  .pkg-li-title { font-size: 15px; margin-bottom: 6px; }
  .pkg-li-desc  { font-size: 13px; line-height: 1.5; }

  /* ── 7) GALLERY — horizontal scroll ── */
  .gallery { padding-bottom: clamp(28px, 5vw, 48px); }
  .gal-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 16px;
    margin-right: -16px;
    scrollbar-width: none;
  }
  .gal-grid::-webkit-scrollbar { display: none; }
  .gal-item {
    flex: 0 0 75%;
    min-width: 75%;
    grid-column: auto !important;
    aspect-ratio: 4 / 3 !important;
    scroll-snap-align: start;
    border-radius: 14px;
  }
  .gal-item:first-child {
    flex: 0 0 75%;
    min-width: 75%;
    aspect-ratio: 4 / 3 !important;
  }

  /* ── 8) ORBIT reviews — bigger ring, smaller card ── */
  /* Зробити плавний перехід — використовуємо той самий фон що й pricing-section знизу */
  .orbit-section {
    min-height: auto !important;
    background: var(--bg-dark) !important;
    padding: clamp(32px, 5vh, 56px) 0 clamp(20px, 3vh, 36px) !important;
    display: block !important;
  }
  .orbit-section::before {
    /* Тонке підсвічування зверху замість важкого градієнта на всю висоту */
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 12%, rgba(107,82,224,0.18), transparent 60%),
      linear-gradient(rgba(197,181,234,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(197,181,234,0.02) 1px, transparent 1px) !important;
    background-size: 100% 100%, 56px 56px, 56px 56px !important;
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%) !important;
  }
  .orbit-section::after { display: none !important; }

  .reviews .container,
  .orbit-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .orbit-heading h2 { font-size: clamp(22px, 6vw, 32px) !important; line-height: 1.15 !important; }
  .orbit-heading { margin-bottom: 20px !important; padding-bottom: 0 !important; }
  .orbit-kicker { font-size: 9px !important; letter-spacing: 0.2em !important; margin-bottom: 10px !important; }
  .orbit-arena {
    width: 90vw !important;
    height: 90vw !important;
    max-width: 460px !important;
    max-height: 460px !important;
    margin: 0 auto !important;
  }
  /* Hide overflowing tag pills on mobile — clean orbit */
  .orbit-tag { display: none !important; }

  .orbit-center-card {
    width: 56vw !important;
    max-width: 230px !important;
    padding: 14px 12px !important;
    border-radius: 14px;
  }
  .orbit-quote {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }
  .orbit-author-name { font-size: 10.5px !important; }
  .orbit-author-year { font-size: 8.5px !important; }
  .orbit-stars { font-size: 10px !important; margin-bottom: 6px !important; letter-spacing: 1.5px !important; }
  .orbit-center-card .orbit-avatar { width: 24px !important; height: 24px !important; font-size: 10px !important; }
  .orbit-node { --size: 34px !important; font-size: 13px !important; }
  .orbit-node.small { --size: 26px !important; font-size: 10px !important; }

  /* Pricing section — drop any top edge so it flows from orbit smoothly */
  .pricing-section {
    background: var(--bg-dark) !important;
    padding-top: clamp(20px, 3vh, 36px);
  }

  /* ── 9) FINAL contact — trim copy & animation ── */
  .final { padding-bottom: clamp(28px, 5vw, 48px); }
  .final-card { padding: clamp(22px, 4vw, 32px); }
  .final-bg-mono { display: none; }              /* убираємо великий тло-СР */
  .final-card h2 { font-size: clamp(22px, 6vw, 28px); margin-bottom: 12px; }
  .final-sub.final-sub-long { display: none; }   /* приховуємо другий абзац */
  .final-sub { font-size: 14px; line-height: 1.5; margin-bottom: 12px; }
  .no-pressure { font-size: 10px; padding: 8px 12px; }
  /* Form spacing on mobile */
  .final-form { margin-top: 18px; gap: 12px; }
  .ff-field input,
  .ff-field textarea { font-size: 16px; padding: 11px 13px; }  /* 16px щоб iOS не зумив */
  .ff-label { font-size: 10px; }
  .ff-agree { font-size: 11.5px; }
  .ff-success { padding: 14px; gap: 12px; }
  .ff-success svg { width: 26px; height: 26px; }
  .ff-success-t { font-size: 14.5px; }
  .ff-success-d { font-size: 12px; }
}
.lead-modal .wpcf7,
.lead-modal .wpcf7-form,
.lead-modal .wpcf7-form-control-wrap {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.lead-modal > .wpcf7 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  max-width: 520px;
}

.lead-modal .wpcf7-form,
.lead-modal .wpcf7 form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100%;
}

.lead-modal .wpcf7-form p {
  margin: 0;
}

.lead-modal .wpcf7-form-control-wrap {
  display: block;
}

.lead-modal .wpcf7-form-control {
  width: 100%;
}

.lead-modal .wpcf7-spinner {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
}

.lead-modal .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #ffb4c2;
}

.lead-modal .wpcf7-response-output {
  width: 100%;
  box-sizing: border-box;
  margin: 18px 0 0 !important;
  padding: 13px 15px !important;
  border-radius: 14px;
  color: #f0ebfa;
  font-size: 13px;
  line-height: 1.45;
  border: 1px solid rgba(156, 130, 255, 0.45) !important;
  background: rgba(107, 82, 224, 0.14);
}

.lead-modal .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(129, 222, 178, 0.65) !important;
  background: rgba(65, 188, 128, 0.14);
  color: #e9fff3;
}

.lead-modal .wpcf7 form.invalid .wpcf7-response-output,
.lead-modal .wpcf7 form.failed .wpcf7-response-output,
.lead-modal .wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(255, 180, 194, 0.72) !important;
  background: rgba(255, 82, 118, 0.12);
  color: #ffe7ed;
}

.lead-modal .wpcf7-response-output.is-success {
  border-color: rgba(129, 222, 178, 0.65) !important;
  background: rgba(65, 188, 128, 0.14);
  color: #e9fff3;
}

.lead-modal .wpcf7-response-output.is-error {
  border-color: rgba(255, 180, 194, 0.72) !important;
  background: rgba(255, 82, 118, 0.12);
  color: #ffe7ed;
}

@media (max-width: 540px) {
  .lead-modal > .wpcf7 {
    width: min(100%, calc(100vw - 20px));
    max-width: none;
  }

  .lead-modal .wpcf7-response-output {
    margin-top: 14px !important;
    padding: 12px 13px !important;
    font-size: 12.5px;
  }
}

/* =====================================================
   END MOBILE OVERRIDES
===================================================== */