:root {
  --bg: #f7f0ef;
  --surface: rgba(255, 251, 250, 0.9);
  --surface-strong: #fff8f7;
  --surface-accent: #f2dfdf;
  --text: #211617;
  --muted: #6b5759;
  --brand: #7f2036;
  --brand-dark: #541423;
  --accent: #c1657f;
  --stroke: rgba(97, 31, 48, 0.14);
  --shadow: 0 24px 60px rgba(70, 18, 31, 0.09);
  --kaspi: #ea0029;
  --kaspi-dark: #c80023;
  --radius-lg: 34px;
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(193, 101, 127, 0.14), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(127, 32, 54, 0.1), transparent 24%),
    linear-gradient(180deg, #faf5f6 0%, #f4edef 100%);
  line-height: 1.68;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(84px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.page-glow--top {
  top: -14rem;
  right: -8rem;
  background: #b74867;
}

.page-glow--bottom {
  bottom: -16rem;
  left: -12rem;
  background: #d5879c;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 248, 249, 0.72), rgba(245, 234, 237, 0.68));
  border-top: 1px solid rgba(84, 20, 35, 0.08);
  border-bottom: 1px solid rgba(84, 20, 35, 0.08);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 240, 239, 0.86);
  border-bottom: 1px solid rgba(84, 20, 35, 0.08);
  transition: transform 0.28s ease;
}

.header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand,
h1,
h2,
h3 {
  font-family: "Lora", serif;
}

.brand {
  text-decoration: none;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  font-weight: 700;
  color: var(--brand-dark);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(127, 32, 54, 0.08);
  border: 1px solid rgba(84, 20, 35, 0.1);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  color: #6b555b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-switch a.is-active {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
}

.nav-links a,
.nav-cta,
.text-link {
  text-decoration: none;
  color: #5d4549;
  font-size: 0.95rem;
}

.nav-cta,
.text-link {
  font-weight: 700;
}

.nav-links a:hover,
.nav-cta:hover,
.text-link:hover {
  color: var(--brand);
}

.hero {
  padding-top: 4.6rem;
}

.hero-frame,
.story-card,
.card,
.module-card,
.compare-card,
.highlight-card,
.price-card,
.faq-wrap,
.cta-box,
.about-hero,
.timeline-card,
.principle-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-frame,
.story-card,
.card,
.module-card,
.compare-card,
.highlight-card,
.price-card,
.faq-wrap,
.cta-box,
.about-hero,
.timeline-card,
.principle-card {
  padding: 1.6rem;
}

.hero-frame {
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 251, 0.96), rgba(247, 237, 240, 0.92)),
    var(--surface-strong);
}

.story-card,
.card,
.module-card,
.compare-card,
.highlight-card,
.price-card,
.program-lead-card,
.review-shot,
.cta-box,
.faq-wrap {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-position 0.35s ease,
    background-color 0.28s ease;
}

.story-card:hover,
.card:hover,
.module-card:hover,
.compare-card:hover,
.highlight-card:hover,
.price-card:hover,
.program-lead-card:hover,
.review-shot:hover,
.cta-box:hover,
.faq-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(70, 18, 31, 0.14);
  border-color: rgba(127, 32, 54, 0.22);
}

.card:hover,
.highlight-card:hover,
.compare-card:hover,
.review-shot:hover,
.story-card:hover,
.faq-wrap:hover,
.cta-box:hover {
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.12), transparent 34%),
    rgba(255, 252, 251, 0.96);
}

.module-card:hover {
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 253, 0.98), rgba(248, 240, 242, 0.94));
}

.price-card:hover {
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 252, 0.98), rgba(247, 238, 240, 0.94));
}

.price-card--featured:hover {
  background:
    radial-gradient(circle at top right, rgba(255, 232, 236, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(96, 24, 41, 0.99), rgba(144, 38, 62, 0.98));
}

.review-shot:hover img {
  transform: scale(1.03);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-mobile-portrait {
  display: none;
}

.hero-mobile-portrait img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-md) + 2px);
  border: 1px solid rgba(84, 20, 35, 0.12);
  box-shadow: var(--shadow);
}

.hero-portrait {
  position: relative;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-md) + 4px);
  border: 1px solid rgba(84, 20, 35, 0.12);
  box-shadow: var(--shadow);
}

.hero-portrait-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  max-width: 15rem;
  border-radius: 18px;
  background: rgba(84, 20, 35, 0.86);
  color: #fff6f7;
  font-size: 0.92rem;
  font-weight: 700;
}

.kicker {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand);
}

.hero-start-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.05rem;
  padding: 0.62rem 1.05rem 0.68rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127, 32, 54, 0.12), rgba(193, 101, 127, 0.24));
  border: 1px solid rgba(127, 32, 54, 0.18);
  box-shadow: 0 14px 30px rgba(84, 20, 35, 0.1);
  color: var(--brand-dark);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-start-badge::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7f8, #b43154 62%, #7f2036 100%);
  box-shadow: 0 0 0 0.28rem rgba(127, 32, 54, 0.08);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #2a1519;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  margin-bottom: 0.7rem;
}

.hero-title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: 0.9rem;
  padding: 0.18em 0.22em 0.28em;
  font-family: "Cormorant Garamond", "Lora", serif;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  text-wrap: balance;
}

.hero-title::before {
  content: "";
  position: absolute;
  inset: 0.26em -0.1em -0.02em;
  z-index: -1;
  border-radius: 999px 999px 2.6rem 2rem;
  background:
    radial-gradient(circle at 18% 36%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(115deg, rgba(193, 101, 127, 0.18), rgba(127, 32, 54, 0.08));
  filter: blur(0.2px);
  transform: rotate(-3deg);
}

.hero-title-line {
  display: block;
  position: relative;
  width: fit-content;
  text-shadow: 0 10px 24px rgba(84, 20, 35, 0.14);
}

.hero-title-line--top {
  transform: rotate(-4deg) translateX(0.05em);
}

.hero-title-line--bottom {
  margin-left: 0.72em;
  transform: rotate(2.6deg);
  color: var(--brand);
}

.hero-title-line--bottom::after {
  content: "";
  position: absolute;
  left: 0.12em;
  right: -0.18em;
  bottom: 0.08em;
  height: 0.14em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 32, 54, 0.1), rgba(127, 32, 54, 0.34), rgba(127, 32, 54, 0.04));
  transform: rotate(-1.5deg);
}

.hero-title--kz .hero-title-line--bottom {
  margin-left: 1.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  margin-bottom: 0.6rem;
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.subtitle,
.section-text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-head .section-text {
  margin-inline: 0;
}

.author-photo-card {
  margin: 1.35rem 0 0;
  overflow: hidden;
  border-radius: calc(var(--radius-md) + 4px);
  border: 1px solid rgba(84, 20, 35, 0.12);
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.12), transparent 32%),
    rgba(255, 252, 251, 0.96);
  box-shadow: var(--shadow);
}

.author-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center top;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  box-shadow: 0 12px 28px rgba(84, 20, 35, 0.2);
}

.btn-ghost {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(84, 20, 35, 0.14);
}

.btn-light {
  color: var(--brand-dark);
  background: #fff8fb;
}

.btn-kaspi {
  color: #fff;
  background: linear-gradient(180deg, var(--kaspi), var(--kaspi-dark));
  box-shadow: 0 12px 24px rgba(234, 0, 41, 0.24);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: #6d5960;
  font-size: 0.94rem;
}

.hero-meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(84, 20, 35, 0.1);
}

.split-grid,
.audience-grid,
.before-after-grid,
.benefits-grid,
.pricing-shell,
.pricing-stack,
.pricing-grid,
.timeline-grid,
.principles-grid {
  display: grid;
  gap: 1rem;
}

.split-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.split-grid--wide {
  grid-template-columns: 1.02fr 0.98fr;
}

.audience-grid,
.before-after-grid,
.benefits-grid,
.principles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-shell {
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
}

.pricing-stack {
  gap: 1.6rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.program-list {
  display: grid;
  gap: 0.9rem;
}

.program-showcase {
  display: grid;
  gap: 1.2rem;
}

.program-lead-card {
  padding: 1.7rem;
  border-radius: 28px;
  border: 1px solid rgba(97, 31, 48, 0.12);
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 249, 250, 0.98), rgba(247, 236, 239, 0.92));
  box-shadow: var(--shadow);
}

.program-lead-card h3 {
  margin-bottom: 0.75rem;
}

.program-lead-card p:last-child {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.module-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 252, 0.96), rgba(246, 238, 240, 0.9));
}

.module-card h3,
.module-card p {
  margin: 0;
}

.module-card h3 {
  margin-bottom: 0.45rem;
}

.module-card p {
  color: var(--muted);
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto -2.2rem -2.2rem auto;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 101, 127, 0.15), transparent 68%);
}

.module-side {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.module-body {
  position: relative;
  z-index: 1;
}

.module-number,
.card-tag,
.tier {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
}

.price-card .tier {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(127, 32, 54, 0.08);
  border: 1px solid rgba(84, 20, 35, 0.12);
  color: var(--brand-dark);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.35;
}

.price-card--featured .tier {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff7f8;
}

.module-number {
  margin-bottom: 0;
}

.module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--brand-dark), var(--brand));
  color: #fff6f7;
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(84, 20, 35, 0.16);
}

.plain-list,
.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.plain-list li,
.price-card li {
  margin-bottom: 0.7rem;
}

.plain-list--tight li {
  margin-bottom: 0.55rem;
}

.audience-fast-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.audience-point {
  position: relative;
  padding: 0.92rem 1rem 0.92rem 3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(84, 20, 35, 0.08);
  color: #4b363a;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.audience-point::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(127, 32, 54, 0.16), rgba(127, 32, 54, 0.3));
  box-shadow: 0 0 0 0.28rem rgba(127, 32, 54, 0.08);
}

.audience-point::after {
  content: "";
  position: absolute;
  left: 1.37rem;
  top: 50%;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
}

.audience-fast-grid--accent .audience-point {
  background: linear-gradient(180deg, rgba(255, 251, 252, 0.96), rgba(249, 238, 241, 0.92));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-item {
  position: relative;
  overflow: hidden;
  padding: 1.05rem 1rem 1.1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 241, 243, 0.96));
  border: 1px solid rgba(84, 20, 35, 0.08);
}

.proof-item::after {
  content: "";
  position: absolute;
  right: -1.6rem;
  top: -1.6rem;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(193, 101, 127, 0.18), rgba(193, 101, 127, 0));
}

.proof-item__label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.proof-item--hero {
  grid-row: span 2;
  padding: 1.2rem 1.15rem 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(127, 32, 54, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(96, 24, 41, 0.98), rgba(144, 38, 62, 0.96));
  border-color: rgba(127, 32, 54, 0.16);
}

.proof-item--hero .proof-item__label,
.proof-item--hero strong,
.proof-item--hero span {
  color: #ffffff;
}

.proof-item--hero .proof-item__label {
  color: #ffffff;
}

.proof-item--hero strong {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.proof-item--hero span {
  max-width: 16rem;
  color: #ffffff;
}

.proof-item--accent {
  background:
    radial-gradient(circle at top right, rgba(242, 181, 107, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(252, 240, 225, 0.95));
}

.proof-item--wide {
  grid-column: span 2;
}

.proof-item strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 0.38rem;
  color: #5b484c;
  font-weight: 800;
  line-height: 1.45;
}

.proof-item--hero strong,
.proof-item--hero span,
.proof-item--hero .proof-item__label {
  color: #ffffff;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), var(--accent));
}

.compare-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.compare-point {
  position: relative;
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.45;
  border-left: 4px solid transparent;
}

.compare-point--before {
  background: rgba(255, 255, 255, 0.72);
  border-left-color: rgba(107, 87, 89, 0.45);
  color: #5f4a4f;
}

.compare-point--after {
  background: linear-gradient(180deg, rgba(255, 251, 252, 0.98), rgba(248, 236, 240, 0.94));
  border-left-color: var(--brand);
  color: var(--brand-dark);
}

.highlight-card,
.compare-card--accent,
.card-accent {
  background: linear-gradient(180deg, rgba(249, 238, 241, 0.94), rgba(243, 224, 230, 0.9));
}

.reviews-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.review-shot {
  overflow: hidden;
  min-height: 250px;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(127, 32, 54, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.review-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.review-shot--contain {
  padding: 0.6rem;
  background: linear-gradient(180deg, rgba(247, 240, 239, 0.92), rgba(255, 255, 255, 0.96));
}

.review-shot--contain img {
  object-fit: contain;
  border-radius: 14px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.price-card__value {
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.98;
  font-weight: 700;
  color: var(--brand-dark);
}

.price-card--featured {
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 222, 228, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(84, 20, 35, 0.98), rgba(127, 32, 54, 0.97));
  color: #fff7f8;
}

.price-card--featured .price-card__value {
  color: #fff7f8;
}

.price-card .price {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  font-family: "Lora", serif;
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  line-height: 0.95;
  font-weight: 700;
  white-space: nowrap;
}

.price-card .price span {
  font-size: 0.8em;
  line-height: 1;
}

.price-note {
  margin: 0;
  color: #f2d8de;
}

.price-card .btn {
  margin-top: auto;
}

.kaspi-box {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.4rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.kaspi-mark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.kaspi-mark strong {
  display: block;
}

.kaspi-mark p {
  margin: 0.18rem 0 0;
  color: #f2d8de;
  font-size: 0.92rem;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

details {
  border-top: 1px solid rgba(84, 20, 35, 0.12);
  padding: 0.95rem 0;
}

details:last-child {
  border-bottom: 1px solid rgba(84, 20, 35, 0.12);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #30231c;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--brand);
}

details[open] summary::after {
  content: "−";
}

.cta {
  padding-top: 2rem;
}

.cta-box {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(193, 101, 127, 0.16), transparent 40%),
    var(--surface-strong);
}

.footer {
  padding: 1.6rem 0 2.3rem;
  border-top: 1px solid rgba(84, 20, 35, 0.08);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6b5860;
  font-size: 0.93rem;
}

.footer-meta p {
  margin: 0;
}

.footer-requisites {
  margin-top: 0.28rem;
  font-size: 0.82rem;
  color: #8c767d;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row a {
  text-decoration: none;
  color: var(--brand-dark);
}

.legal-block {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(84, 20, 35, 0.08);
}

.legal-title {
  margin: 0 0 0.8rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.legal-links a {
  color: #6b5860;
  text-decoration: none;
  font-size: 0.92rem;
}

.legal-links a:hover {
  color: var(--brand);
}

.legal-note {
  margin: 0.9rem 0 0;
  max-width: 72ch;
  color: #7a6870;
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(127, 32, 54, 0.08);
  border: 1px solid rgba(84, 20, 35, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(127, 32, 54, 0.14);
  border-color: rgba(84, 20, 35, 0.2);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--brand-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-main {
  padding-top: 2rem;
}

.legal-main {
  padding-top: 2rem;
}

.legal-page {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.7rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.legal-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 0.7rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul,
.legal-card ol {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.legal-card li {
  margin-bottom: 0.5rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.legal-meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(127, 32, 54, 0.08);
  border: 1px solid rgba(84, 20, 35, 0.1);
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.legal-warning {
  color: var(--brand-dark);
  font-weight: 700;
}

.about-hero {
  background:
    radial-gradient(circle at top right, rgba(193, 101, 127, 0.12), transparent 34%),
    rgba(255, 252, 248, 0.9);
}

.timeline-grid,
.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .split-grid,
  .split-grid--wide,
  .hero-layout,
  .audience-grid,
  .before-after-grid,
  .benefits-grid,
  .pricing-shell,
  .pricing-grid,
  .program-grid,
  .proof-grid,
  .reviews-shot-grid,
  .timeline-grid,
  .principles-grid,
  .module-card {
    grid-template-columns: 1fr;
  }

  .proof-item--hero,
  .proof-item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .nav-meta {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .module-number {
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 720px) {
  .header {
    top: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(1100px, calc(100% - 1.15rem));
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-frame {
    padding: 1.2rem 1rem 1.35rem;
  }

  .hero-layout {
    gap: 0.9rem;
  }

  .hero-title {
    margin-bottom: 0.6rem;
    padding-inline: 0.08em;
    line-height: 0.92;
  }

  .hero-title::before {
    inset: 0.34em -0.04em 0.06em;
  }

  .hero-title-line--bottom {
    margin-left: 0.42em;
  }

  .hero-title--kz .hero-title-line--bottom {
    margin-left: 0.62em;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .kicker {
    margin-bottom: 0.65rem;
  }

  .hero-start-badge {
    margin-bottom: 0.75rem;
  }

  .hero-mobile-portrait {
    display: block;
    margin: 0.95rem 0 1rem;
  }

  .hero-portrait {
    display: none;
  }

  .hero-lead {
    display: none;
  }

  .subtitle {
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1rem;
  }

  .hero-actions .btn,
  .price-card .btn {
    width: 100%;
  }

  .hero-actions .btn-ghost {
    display: none;
  }

  .hero-meta {
    display: none;
  }

  .nav {
    min-height: 64px;
    gap: 0.6rem;
  }

  .nav-links,
  .nav-meta .lang-switch {
    display: none;
  }

  .nav-meta {
    width: auto;
  }

  .nav-cta {
    min-height: 2.8rem;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand-dark), var(--brand));
    color: #fff;
  }

  .ticker {
    margin-top: 1.2rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
