:root {
  --bg: #f7f6f2;
  --surface: #fffdf4;
  --surface-2: #f0ead7;
  --text: #292929;
  --muted: #665f57;
  --primary: #4032a6;
  --primary-2: #5647cb;
  --accent: #a9213f;
  --accent-2: #d84b69;
  --line: rgba(41, 41, 41, 0.08);
  --shadow: 0 30px 80px rgba(35, 19, 94, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(86, 71, 203, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(169, 33, 63, 0.07), transparent 24%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 20px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.hero h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--primary);
}

.page-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(169, 33, 63, 0.18);
}

.page-glow-right {
  top: 22rem;
  right: -12rem;
  background: rgba(64, 50, 166, 0.18);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 18px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.brand-logo {
  flex: none;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-mark {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  font-weight: 800;
}

.brand-copy {
  max-width: 140px;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 88%;
  color: #fffdf4;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.nav-links a {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #fffdf4;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  color: inherit;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 30px rgba(169, 33, 63, 0.22);
}

.button-secondary {
  background: transparent;
  border-color: rgba(169, 33, 63, 0.24);
  color: var(--accent);
}

.button-outline {
  border: 1px solid #fffdf4;
  color: #fffdf4;
  background: #4032a6;
}

.button-compact {
  width: 171px;
  height: 40px;
  min-height: 40px;
  padding: 12px 24px;
  border-radius: 40px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.05em;
}

.nav-cta {
  flex: none;
}

.hero {
  padding-top: 22px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 472px);
  gap: 18px;
}

.hero-copy,
.hero-media,
.panel,
.timeline-card,
.process-card,
.author-card,
.price-card,
.installment-card,
.faq-item,
.benefit-card,
.audience-card,
.stat-card {
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: 36px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1f2937;
  opacity: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-lead {
  margin: 0 0 22px;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #292929;
}

.hero-lead strong {
  font-weight: 600;
}

.hero-description {
  max-width: 60ch;
  margin: 0 0 24px;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #292929;
}

.hero-description strong {
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.hero-actions .button {
  border-radius: 10px;
  padding: 25px 0 26px;
  min-height: 80px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions .button-primary {
  width: 305px;
  height: 80px;
  background: #a9213f;
  box-shadow: none;
}

.hero-actions .button-secondary {
  width: 260px;
  height: 80px;
  border: 1px solid #a9213f;
  background: #fcfcff;
  color: #a9213f;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #999999;
  margin-top: 10px;
}

.hero-social-proof p {
  margin: 0;
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 116%;
  color: #999999;
}

.hero-social-image {
  width: 119px;
  height: auto;
  flex: none;
}

.hero-media {
  min-height: 606px;
  overflow: hidden;
  background: var(--surface);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 606px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-note {
  position: absolute;
  inset: auto 24px 136px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-height: 60px;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 253, 244, 0.6);
  border-radius: 16px;
  color: rgba(255, 253, 244, 0.92);
  text-align: center;
  font-size: 0.92rem;
  backdrop-filter: blur(6px);
}

.benefit-grid,
.process-grid,
.pricing-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card {
  min-height: 118px;
  padding: 22px 28px;
  background: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3,
.audience-card h3,
.timeline-card h3,
.process-card h3,
.faq-question,
.price-plan,
.panel h3,
.installment-card h3 {
  margin: 0 0 12px;
}

.benefit-card h3 {
  margin: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 100%;
  text-align: center;
  color: #fffdf4;
}

.benefit-card p,
.audience-card p,
.timeline-card ul,
.process-card p,
.installment-card p {
  margin: 0;
}

.audience-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.audience-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.audience-title {
  max-width: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}

.audience .section-heading {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 28px;
}

.audience {
  padding-top: 30px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.audience-card:not(.audience-card-photo) {
  padding: 24px;
}

.audience-card-top-left {
  width: 362px;
  height: 244px;
}

.audience-card-top-middle {
  width: 253px;
  height: 244px;
}

.audience-card-top-right {
  width: 449px;
  height: 244px;
}

.audience-card-bottom-left {
  width: 718px;
  height: 401px;
}

.audience-card-bottom-right {
  width: 359px;
  height: 401px;
}

.audience-card-photo-fill {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(64, 50, 166, 0.42) 52%, #4032a6 100%),
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/e_txzVFWtEyA3cZQKfj3xg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.audience-card-photo-fill.warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(64, 50, 166, 0.4) 54%, #4032a6 100%),
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/hIydxmaEvkerLhHmJ0hPEg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.audience-card-photo-fill.violet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(64, 50, 166, 0.36) 50%, #4032a6 100%),
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/PcXzfHdAHEiq-cqZVzWOjg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.audience-card-photo-fill.copper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(64, 50, 166, 0.36) 56%, #4032a6 100%),
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/unjb74D8VEeMI3Z5TEqktg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.audience-card-copy {
  position: absolute;
  inset: auto 20px 20px;
}

.audience-card h3 {
  margin: 0 0 12px;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  color: #fffdf4;
}

.audience-title-nowrap {
  white-space: nowrap;
}

.audience-card p {
  margin: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fffdf4;
}

.contrast-board {
  position: relative;
  width: 100%;
  max-width: 1160px;
  min-height: 572px;
  margin: 0 auto;
  padding: 48px 32px 18px;
  display: grid;
  grid-template-columns: 350px 350px 350px;
  grid-template-rows: auto 1fr;
  justify-content: center;
  column-gap: 12px;
  row-gap: 18px;
  overflow: hidden;
}

.contrast-title {
  grid-column: 1 / -1;
  margin: 0 0 14px 6px;
  max-width: 1023px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: #292929;
}

.contrast-problem {
  width: 350px;
  display: grid;
  grid-template-rows: 250px 136px;
  align-items: end;
  justify-items: center;
}

.contrast-visual {
  position: relative;
  overflow: hidden;
  align-self: end;
}

.contrast-visual-left {
  width: 326px;
  height: 250px;
  margin: 0;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/IWjr0clen0uEaJ50gxPf4g.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contrast-visual-middle {
  width: 264px;
  height: 229px;
  margin: 0;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/Tu-WM3iqOEembv0ZAwjjYg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contrast-visual-right {
  width: 343px;
  height: 132px;
  margin: 0;
  border-top-right-radius: 20px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/8ijUBdbffEmvTAhM4rnpPg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contrast-copy-card {
  min-height: 136px;
  padding: 20px 20px 18px;
  background: #fffdf4;
  border-radius: 20px;
  align-self: start;
}

.contrast-copy-card h3 {
  margin: 0 0 10px;
  color: #4032a6;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
}

.contrast-copy-card p {
  margin: 0;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
}

.birma-different {
  padding-top: 0;
}

.different-board {
  width: 100%;
  max-width: 1160px;
  min-height: 511px;
  margin: 0 auto;
  padding: 32px 28px 0;
  display: grid;
  grid-template-columns: 350px 349px 349px;
  column-gap: 12px;
  row-gap: 0;
  justify-content: center;
  overflow: hidden;
}

.different-title {
  grid-column: 1 / -1;
  margin: 0 0 45px 10px;
  width: 1023px;
  max-width: 100%;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.different-card {
  display: grid;
  grid-template-rows: 136px auto;
}

.different-copy {
  background: #fffdf4;
  border-radius: 20px;
  padding: 20px 20px 18px;
}

.different-copy h3 {
  margin: 0 0 12px;
  color: #4032a6;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
}

.different-copy p {
  margin: 0;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
}

.different-image {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -18px;
}

.different-image-left {
  width: 350px;
  height: 205px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/1OI4tzgXT0OkAVQvxyZEYw.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.different-image-middle {
  width: 349px;
  height: 204px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/SVdS5_jYdUizi-HuLIlVdw.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.different-image-right {
  width: 348px;
  height: 205px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/zyE_e7-xQ0CLUBr8jL1heA.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.program-board {
  width: 100%;
  max-width: 1160px;
  min-height: 833px;
  margin: 0 auto;
  padding: 0 38px 30px;
  display: grid;
  grid-template-columns: 535px 535px;
  column-gap: 12px;
  row-gap: 12px;
}

.program-title {
  grid-column: 1 / -1;
  margin: 0;
  color: #000;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.program-subtitle {
  grid-column: 1 / -1;
  margin: 5px 0 24px;
  width: 715px;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 28px;
}

.program-card {
  background: #fffdf4;
  border-radius: 20px;
  padding: 25px 28px 26px 25px;
}

.program-card-foundation,
.program-card-freedom {
  min-height: 284px;
}

.program-card-mastery {
  grid-column: 1 / -1;
  min-height: 253px;
  width: 1082px;
}

.program-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.program-card-head h3 {
  margin: 0;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
}

.program-card-head span {
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
}

.program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.program-list li {
  position: relative;
  padding-left: 29px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 17px;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0C11.2424 6.23823 13.7256 8.74559 20 10C13.7241 11.2544 11.2409 13.7618 10 20C8.75765 13.7618 6.2744 11.2529 0 10C6.27585 8.74559 8.7591 6.23823 10 0Z' fill='%237B5FB5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.program-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 27px;
}

.program-cta .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 305px;
  height: 80px;
  min-height: 80px;
  border-radius: 10px;
  background: linear-gradient(0deg, #a9213f 0%, #ca3867 100%);
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 155%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  box-shadow: none;
}

.process {
  padding-bottom: 0;
}

.process-board {
  width: 100%;
  max-width: 1160px;
  min-height: 858px;
  margin: 0 auto;
  padding: 18px 34px 0;
}

.process-title {
  margin: 0 0 34px 4px;
  width: 783px;
  max-width: 100%;
  color: #000;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.process-shell {
  width: 1091px;
  min-height: 695px;
  margin: 0 auto;
  padding: 25px 31px 28px;
  background: #1d1540;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 311px 348px 348px;
  grid-template-rows: 243px 387px;
  gap: 12px;
}

.process-feature {
  background: #fffdf4;
  border-radius: 20px;
  color: #1d1540;
}

.process-feature-self {
  grid-row: 1 / span 2;
  padding: 22px 22px 18px;
}

.process-feature-feedback {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 14px;
  padding: 17px 14px 17px 22px;
}

.process-feature-flow,
.process-feature-calls {
  padding: 22px 22px 18px;
}

.process-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.process-image-self {
  width: 267px;
  height: 205px;
  margin-bottom: 16px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/RlZ0ZtVxMk6KJ_LgyXd43w.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.process-image-feedback {
  width: 272px;
  height: 206px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/c4U82p1rDkiKNiM6_ZMafg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.process-image-flow {
  width: 304px;
  height: 181px;
  margin-bottom: 20px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/l5jzsnERs0eTdabFq0OKrg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.process-image-calls {
  width: 304px;
  height: 182px;
  margin-bottom: 20px;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/8q22ZVvuFEqZxk4y1lA3ww.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.process-feature h3 {
  margin: 0 0 16px;
  color: #1d1540;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
}

.process-feature p {
  margin: 0;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 15.4px;
}

.process-feature p strong {
  font-weight: 700;
}

.process-feature-copy {
  padding-top: 4px;
}

.author-board {
  width: 100%;
  max-width: 1161px;
  min-height: 858px;
  margin: 0 auto;
  padding: 28px 38px 28px;
}

.author-title {
  margin: 0 0 17px;
  width: 783px;
  max-width: 100%;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.author-shell {
  width: 1094px;
  min-height: 684px;
  padding: 24px 28px 27px;
  background: #fffdf4;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 445px 1fr;
  gap: 46px;
}

.why-success-board {
  width: 100%;
  max-width: 1160px;
  min-height: 847px;
  margin: 0 auto;
  padding: 0 36px 0;
  display: grid;
  grid-template-columns: 540px 540px;
  grid-template-rows: auto auto auto auto;
  gap: 12px;
}

.why-success-title {
  grid-column: 1 / -1;
  margin: 0;
  width: 897px;
  max-width: 100%;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.why-success-subtitle {
  grid-column: 1 / -1;
  margin: 5px 0 2px;
  width: 715px;
  max-width: 100%;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 28px;
}

.why-card {
  background: #4032a6;
  border-radius: 20px;
  color: #fffdf4;
  padding: 29px 29px 26px;
}

.why-card-top-left,
.why-card-top-right,
.why-card-middle-left,
.why-card-middle-right {
  min-height: 212px;
}

.why-card-bottom {
  grid-column: 1 / -1;
  min-height: 162px;
}

.why-card h3 {
  margin: 0 0 14px;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}

.why-title-nowrap {
  white-space: nowrap;
}

.why-card p {
  margin: 0;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.why-card p strong {
  font-weight: 700;
}

.why-card-top-left {
  position: relative;
  overflow: hidden;
  padding-right: 248px;
}

.chord-diagram-image {
  position: absolute;
  right: 22px;
  bottom: 14px;
  width: 150px;
  height: 182px;
  display: block;
}

.author-photo-frame {
  padding-top: 0;
}

.author-photo {
  position: relative;
  width: 445px;
  height: 633px;
  border-radius: 20px;
  overflow: hidden;
  background:
    url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/LL_S8tbw8EueAO_Tkd3T4A.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.author-photo .photo-note {
  inset: auto 24px 24px 24px;
  width: auto;
}

.author-info {
  padding-top: 0;
}

.author-info h3 {
  margin: 0 0 28px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
}

.author-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.author-points li {
  position: relative;
  padding-left: 28px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.25;
}

.author-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0C11.2424 6.23823 13.7256 8.74559 20 10C13.7241 11.2544 11.2409 13.7618 10 20C8.75765 13.7618 6.2744 11.2529 0 10C6.27585 8.74559 8.7591 6.23823 10 0Z' fill='%234032A6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.author-button {
  width: 260px;
  height: 65px;
  min-height: 65px;
  border: 1px solid #a9213f;
  border-radius: 10px;
  background: #fffdf4;
  color: #a9213f;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27.9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: none;
}

.pricing-board {
  width: 100%;
  max-width: 1161px;
  min-height: auto;
  margin: 0 auto;
  padding: 0 33px 0;
}

.pricing-title {
  margin: 0 0 67px 5px;
  width: 783px;
  max-width: 100%;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 357px 358px 357px;
  gap: 9px;
  align-items: start;
}

.pricing-tier {
  position: relative;
  min-height: 618px;
  padding: 45px 35px 24px;
  background: #fffdf4;
  border-radius: 18.95px;
}

.pricing-tier-featured {
  min-height: 640px;
  border: 3px solid #1d1540;
  margin-top: -10px;
}

.pricing-tier h3 {
  margin: 0 0 26px;
  text-align: center;
  color: #232468;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
}

.pricing-tier-featured h3 {
  white-space: nowrap;
}

.pricing-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.pricing-features li {
  padding: 15px 0;
  border-top: 1px solid #cac9d3;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}

.pricing-features li:last-child {
  border-bottom: 1px solid #cac9d3;
}

.pricing-features .is-disabled {
  color: #999999;
  text-decoration: line-through;
}

.pricing-price {
  margin: 34px 0 10px;
  text-align: center;
  color: #1d1540;
  font-family: "Gilroy", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 48px;
}

.pricing-note {
  margin: 0 0 27px;
  text-align: center;
  color: #1d1540;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}

.pricing-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 242px;
  height: 64px;
  min-height: 64px;
  margin: 0 auto;
  border-radius: 10px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 27.9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: none;
}

.pricing-button-outline {
  border: 1px solid #a9213f;
  background: #fffdf4;
  color: #a9213f;
}

.pricing-button-filled {
  background: linear-gradient(0deg, #a9213f 0%, #ca3867 100%);
  color: #fffdf4;
}

.pricing-footnote {
  margin: 14px 0 0;
  text-align: center;
  color: #999999;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}

.pricing-hit {
  position: absolute;
  top: -25px;
  left: 82px;
  width: 187px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px 0 18px;
  border-radius: 15px;
  background: #a9213f;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.pricing-hit::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 23px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='23' viewBox='0 0 24 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0L8.73678 8.18829L0 8.78522L6.72 14.4428L4.58359 23L12 18.3083L19.4164 23L17.28 14.4428L24 8.78522L15.2632 8.18829L12 0Z' fill='%23CA3867'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 23px;
}

.pricing-hit::before {
  content: "";
  width: 24px;
  height: 23px;
  flex: 0 0 24px;
}

.installment-card {
  position: relative;
  width: 100%;
  max-width: 1161px;
  min-height: 473px;
  margin-top: 28px;
  padding: 34px 38px 31px;
  overflow: hidden;
  background: #4032a6;
  border-radius: 20px;
}

.installment-copy {
  position: relative;
  z-index: 2;
  max-width: 625px;
  min-height: 408px;
}

.installment-card .installment-copy h3 {
  margin: 0;
  width: 712px;
  max-width: 100%;
  color: #fffdf4;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.installment-card .installment-lead {
  display: block;
  margin: 12px 0 0 !important;
  width: 416px;
  max-width: 100%;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.18;
}

.installment-lead strong {
  font-weight: 600;
}

.installment-card .installment-text {
  display: block;
  margin: 18px 0 0 !important;
  width: 625px;
  max-width: 100%;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.18;
}

.installment-button {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 242px;
  height: 63.48px;
  min-height: 63.48px;
  border-radius: 7.93px;
  background: linear-gradient(0deg, #a9213f 0%, #ca3867 100%);
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: none;
}

.installment-art {
  position: absolute;
  right: 38px;
  top: 34px;
  width: 485px;
  height: 405px;
}

.installment-art-small,
.installment-art-large {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.installment-art-small {
  left: 26px;
  top: 10px;
  width: 136px;
  height: 191px;
  transform: rotate(-6deg);
  background-image: url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/VZ3tNax5cUi4b9x_XyoMyA.png");
}

.installment-art-large {
  right: -6px;
  top: 8px;
  width: 391px;
  height: 434px;
  transform: rotate(-3deg);
  transform-origin: top left;
  background-image: url("https://con.xl.ru/lLDQDOKQ20C-M-7k4pEIvQ/images/5Vr8GKtv-E6y5VWmS0wPgw.png");
}

.pricing {
  padding-bottom: 0;
  padding-top: 0;
}

.guarantee-board {
  position: relative;
  width: 100%;
  max-width: 1161px;
  min-height: 213px;
  margin: 47px auto 0;
}

.guarantee {
  padding-top: 0;
}

.guarantee-board::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 1094px;
  height: 213px;
  border-radius: 20px;
  background: #4032a6;
}

.guarantee-title,
.guarantee-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 712px;
  max-width: 100%;
  color: #fffdf4;
  text-align: center;
}

.guarantee-title {
  padding-top: 32px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.guarantee-text {
  margin-top: 33px;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.16;
}

.stats {
  padding-top: 48px;
  padding-bottom: 0;
}

.stats-board {
  width: 100%;
  max-width: 1161px;
  min-height: 401px;
  margin: 0 auto;
}

.stats-title {
  margin: 0 0 34px 38px;
  width: 1030px;
  max-width: 100%;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.05;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 252.8px);
  gap: 30.23px;
  margin-left: 38px;
}

.stats-card {
  min-height: 149.76px;
  padding: 28px 24px 24px;
  border-radius: 27.48px;
  background: #4032a6;
  color: #fffdf4;
  text-align: center;
}

.stats-card strong {
  display: block;
  margin-bottom: 28px;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 55px;
}

.stats-card span {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
}

.stats-card:last-child span {
  width: 145px;
  line-height: 18px;
}

.reviews {
  padding-top: 0;
}

.reviews-board {
  width: 100%;
  max-width: 1160px;
  min-height: 631px;
  margin: 0 auto;
}

.reviews-title {
  margin: 0 0 42px 38px;
  width: 1030px;
  max-width: 100%;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.05;
}

.reviews-slider {
  position: relative;
  display: block;
}

.reviews-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 39.6px;
  padding: 0 38px;
}

.review-video-card {
  flex: 0 0 229.6px;
  width: 229.6px;
  height: 452px;
  padding: 12px;
  border: 12px solid #292929;
  border-radius: 24px;
  background: #292929;
}

.review-video-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.review-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reviews-nav {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #4032a6;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(64, 50, 166, 0.16);
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.cta-section {
  padding-top: 26px;
}

.cta-board {
  width: 100%;
  max-width: 1160px;
  min-height: 657px;
  margin: 0 auto;
}

.cta-shell {
  width: 1093px;
  min-height: 571px;
  margin: 35px auto 0;
  padding: 40px 33px 56px;
  background: #4032a6;
  border-radius: 20px;
}

.cta-title {
  width: 1030px;
  max-width: 100%;
  margin: 0 auto;
  color: #fffdf4;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.16;
}

.cta-copy {
  margin: 30px auto 0;
  color: #fff;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
}

.cta-main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 359px;
  height: 56px;
  min-height: 56px;
  margin: 28px auto 0;
  border-radius: 8px;
  padding: 20px 0;
  background: linear-gradient(0deg, #a9213f 0%, #ca3867 100%);
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 158%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #fffdf4;
  box-shadow: none;
}

.cta-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 242px);
  gap: 11px;
  margin-top: 33px;
}

.cta-feature-card {
  min-height: 149px;
  padding: 11px 12px 20px;
  border-radius: 10px;
  background: #fffdf4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-feature-card p {
  margin: 14px 0 0;
  color: #000;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.15;
}

.cta-feature-icon {
  width: 50px;
  height: 50px;
  margin-top: 0;
  object-fit: contain;
}

.faq {
  padding-top: 0;
}

.faq-board {
  width: 100%;
  max-width: 1153px;
  min-height: 781px;
  margin: 0 auto;
}

.faq-title {
  margin: 0 0 41px 38px;
  width: 1030px;
  max-width: 100%;
  color: #000;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.faq-shell {
  width: 1032px;
  margin: 0 0 0 61px;
  background: transparent;
}

.faq-shell .faq-item {
  border-top: 0.86px solid #999999;
  background: transparent;
  overflow: hidden;
  border-radius: 0;
}

.faq-shell .faq-item:first-child {
  border-top: 0;
}

.faq-shell .faq-item.is-open {
  background: #4032a6;
  border-radius: 20px;
}

.faq-shell .faq-question {
  width: 100%;
  padding: 23.22px 54px 23.22px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  color: #333333;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 20.64px;
  cursor: pointer;
  position: relative;
}

.faq-shell .faq-item.is-open .faq-question {
  color: #fffdf4;
}

.faq-shell .faq-question::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 20.64px;
  height: 20.64px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_112_159)'%3E%3Cg clip-path='url(%23clip1_112_159)'%3E%3Cpath d='M0.860107 10.3204H19.7801M10.3201 0.860352V19.7804' stroke='%23333333' stroke-width='0.86' stroke-linecap='square'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_112_159'%3E%3Crect width='20.64' height='20.64' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_112_159'%3E%3Crect width='20.64' height='20.64' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20.64px 20.64px;
}

.faq-shell .faq-item.is-open .faq-question::after {
  width: 20.64px;
  height: 20.64px;
  right: 26px;
  transform: translateY(-50%) rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_112_159)'%3E%3Cg clip-path='url(%23clip1_112_159)'%3E%3Cpath d='M0.860107 10.3204H19.7801M10.3201 0.860352V19.7804' stroke='%23FFFDF4' stroke-width='0.86' stroke-linecap='square'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_112_159'%3E%3Crect width='20.64' height='20.64' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_112_159'%3E%3Crect width='20.64' height='20.64' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.faq-shell .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-shell .faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-shell .faq-answer p {
  margin: 0;
  padding: 0 34.4px 23.22px 26px;
  color: #fffdf4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20.64px;
}

.site-footer-new {
  margin-top: 40px;
  padding: 0;
  background: #1f262d;
}

.footer-shell {
  width: min(100%, 1401px);
  min-height: 295px;
  margin: 0 auto;
  padding: 50px 115px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 140px 120px 110px 100px 274px 36px;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-entity {
  max-width: 220px;
  margin-top: 2px;
}

.footer-entity-name,
.footer-entity-meta {
  margin: 0;
  color: rgba(255, 253, 244, 0.68);
  font-family: "Gilroy", sans-serif;
  font-size: 11px;
  line-height: 1.45;
}

.footer-entity-name {
  font-weight: 500;
}

.footer-entity-meta {
  margin-top: 4px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.footer-socials a {
  display: inline-flex;
  width: 31.79px;
  height: 31.79px;
}

.footer-socials img {
  width: 31.79px;
  height: 31.79px;
  object-fit: contain;
}

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

.footer-column .footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}

.footer-column a {
  margin-bottom: 10px;
  color: #aeaeae;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 12px;
}

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

.footer-cta-text {
  margin: 0 0 22px;
  color: #aeaeae;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 62px;
  border-radius: 10px;
  background: #4032a6;
  box-shadow: 2.57px 2.57px 6.43px rgba(93, 93, 93, 0.15);
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
}

.footer-top-button {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 35.89px;
  height: 35.89px;
  margin-top: 9px;
}

.footer-top-button img {
  width: 35.89px;
  height: 35.89px;
  object-fit: contain;
}

.footer-bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 61px;
}

.footer-docs {
  margin: 0;
  flex: 1 1 auto;
  color: rgba(217, 217, 217, 0.42);
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 24.29px;
  text-align: center;
}

.footer-docs a,
.footer-docs span {
  color: inherit;
}

.footer-docs a {
  transition: color 0.25s ease;
}

.footer-docs a:hover {
  color: #fffdf4;
}

.footer-copy {
  margin: 0;
  color: #aeaeae;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  white-space: nowrap;
}

.legal-page {
  padding-bottom: 32px;
}

.legal-hero-section {
  padding-top: 28px;
}

.legal-hero {
  padding: 40px 44px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(64, 50, 166, 0.96), rgba(86, 71, 203, 0.92)),
    #4032a6;
  box-shadow: var(--shadow);
  color: #fffdf4;
}

.legal-eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 253, 244, 0.72);
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page-title {
  margin: 0;
  color: #fffdf4;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.legal-page-subtitle {
  margin: 18px 0 0;
  max-width: 820px;
  color: #fffdf4;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
}

.legal-content-section {
  padding-top: 24px;
}

.legal-card {
  padding: 38px 42px;
  border-radius: 32px;
  background: #fffdf4;
  box-shadow: var(--shadow);
}

.legal-content {
  color: #292929;
  font-family: "Gilroy", sans-serif;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin: 32px 0 16px;
  color: #292929;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.legal-content h2 {
  font-size: 30px;
}

.legal-content h3 {
  font-size: 24px;
}

.legal-content h4 {
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  margin: 0 0 14px;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
}

.legal-content strong {
  font-weight: 700;
}

.legal-content a {
  color: #4032a6;
  word-break: break-word;
}

.legal-strongline {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 24px;
}

.legal-table-wrap {
  margin: 22px 0 28px;
  overflow-x: auto;
  border: 1px solid rgba(64, 50, 166, 0.12);
  border-radius: 20px;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fffdf4;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(41, 41, 41, 0.08);
  text-align: left;
  vertical-align: top;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.legal-table th {
  background: rgba(64, 50, 166, 0.08);
  font-weight: 700;
}

.legal-table td {
  font-weight: 300;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-loading,
.legal-error {
  margin: 0;
  color: #292929;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li + li {
  margin-top: 10px;
}

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

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

.widget-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
  z-index: 100;
}

.widget-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.widget-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 45, 0.62);
  backdrop-filter: blur(10px);
}

.widget-modal-dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background: #fffdf4;
  box-shadow: 0 32px 90px rgba(20, 15, 45, 0.28);
}

.widget-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(64, 50, 166, 0.08);
  color: #4032a6;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.widget-modal-body {
  min-height: 320px;
  padding-top: 12px;
}

@media (max-width: 1080px) {
  .hero-card,
  .author-card,
  .benefit-grid,
  .audience-grid,
  .process-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .audience-card-wide {
    grid-column: auto;
  }

  .audience-grid {
    width: 100%;
  }

  .audience-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .audience-card-top-left,
  .audience-card-top-middle,
  .audience-card-top-right,
  .audience-card-bottom-left,
  .audience-card-bottom-right {
    width: 100%;
    height: auto;
    min-height: 244px;
  }

  .contrast-board {
    min-height: 0;
    padding: 24px 0 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 16px;
  }

  .contrast-title {
    max-width: none;
    margin: 0 0 8px;
    font-size: 32px;
  }

  .contrast-problem {
    width: 100%;
    grid-template-rows: auto auto;
  }

  .contrast-visual-left,
  .contrast-visual-middle,
  .contrast-visual-right {
    width: 100%;
    height: 180px;
    margin: 0;
    border-radius: 20px 20px 0 0;
  }

  .different-board {
    min-height: 0;
    padding: 24px 0 0;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .different-title {
    width: auto;
    margin: 0 0 8px;
    font-size: 32px;
  }

  .different-card {
    grid-template-rows: auto auto;
  }

  .different-image-left,
  .different-image-middle,
  .different-image-right {
    width: 100%;
    height: 180px;
    margin-top: 0;
  }

  .program-board {
    min-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .program-subtitle {
    width: auto;
    margin: 8px 0 16px;
    font-size: 22px;
    line-height: 1.2;
  }

  .program-card-mastery {
    grid-column: auto;
    width: auto;
  }

  .process-board {
    min-height: 0;
    padding: 24px 0 0;
  }

  .process-title {
    width: auto;
    margin: 0 0 16px;
    font-size: 32px;
  }

  .process-shell {
    width: 100%;
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .process-feature-self,
  .process-feature-feedback,
  .process-feature-flow,
  .process-feature-calls {
    grid-column: auto;
    grid-row: auto;
    padding: 20px;
  }

  .process-feature-feedback {
    grid-template-columns: 1fr;
  }

  .process-image-self,
  .process-image-feedback,
  .process-image-flow,
  .process-image-calls {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
  }

  .why-success-board {
    min-height: 0;
    padding: 24px 0 0;
    grid-template-columns: 1fr;
  }

  .why-success-title {
    width: auto;
    font-size: 32px;
  }

  .why-success-subtitle {
    width: auto;
    font-size: 22px;
    line-height: 1.2;
  }

  .why-card-bottom {
    grid-column: auto;
  }

  .why-card-top-left {
    padding-right: 29px;
  }

  .chord-diagram-image {
    position: relative;
    right: auto;
    top: auto;
    width: 180px;
    height: auto;
    margin: 18px auto 0;
  }

  .author-board {
    min-height: 0;
    padding: 24px 0 0;
  }

  .author-title {
    width: auto;
    font-size: 32px;
  }

  .author-shell {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .author-photo {
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    border-radius: 28px;
    padding: 18px;
    align-items: flex-start;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 8px;
    grid-column: 1 / -1;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .brand-copy {
    max-width: 180px;
  }

  .hero-copy,
  .process-card,
  .author-card,
  .price-card,
  .installment-card,
  .faq-question,
  .benefit-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-media,
  .author-photo {
    min-height: 420px;
  }

  .hero-image {
    min-height: 420px;
  }

  .photo-note {
    inset: auto 20px 20px 20px;
    width: auto;
  }

  .installment-card,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 28px 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .button,
  .button-compact {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-social-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-copy {
    max-width: 140px;
  }
}

@media (max-width: 1080px) {
  .section-heading,
  .audience .section-heading {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-media,
  .hero-image {
    min-height: 460px;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    width: 100%;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    width: 100%;
  }

  .audience-row {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-title,
  .audience-title-nowrap {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .audience-card-top-left,
  .audience-card-top-middle,
  .audience-card-top-right,
  .audience-card-bottom-left,
  .audience-card-bottom-right {
    width: 100%;
    height: auto;
    min-height: 244px;
  }

  .contrast-board,
  .different-board,
  .program-board,
  .why-success-board,
  .author-board,
  .pricing-board,
  .stats-board,
  .reviews-board,
  .cta-board,
  .faq-board {
    min-height: 0;
  }

  .contrast-board {
    padding: 24px 0 0;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .contrast-title,
  .different-title,
  .program-title,
  .process-title,
  .why-success-title,
  .author-title,
  .pricing-title,
  .stats-title,
  .reviews-title,
  .cta-title,
  .faq-title {
    width: auto;
    max-width: 100%;
    font-size: 32px;
  }

  .contrast-problem {
    width: 100%;
  }

  .contrast-visual-left,
  .contrast-visual-middle,
  .contrast-visual-right {
    width: 100%;
    height: 180px;
  }

  .different-board {
    padding: 24px 0 0;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .different-card {
    grid-template-rows: auto auto;
  }

  .different-image-left,
  .different-image-middle,
  .different-image-right {
    width: 100%;
    height: 220px;
    margin-top: 0;
  }

  .program-board {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .program-title,
  .process-title,
  .why-success-title,
  .author-title,
  .pricing-title,
  .stats-title,
  .reviews-title,
  .faq-title {
    margin-left: 0;
  }

  .program-subtitle {
    width: auto;
    font-size: 22px;
    line-height: 1.2;
  }

  .program-card-mastery {
    grid-column: auto;
    width: auto;
  }

  .process-board {
    padding: 18px 0 0;
  }

  .process-shell {
    width: 100%;
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .process-feature-self,
  .process-feature-feedback,
  .process-feature-flow,
  .process-feature-calls {
    grid-column: auto;
    grid-row: auto;
    padding: 20px;
  }

  .process-feature-feedback {
    grid-template-columns: 1fr;
  }

  .process-image-self,
  .process-image-feedback,
  .process-image-flow,
  .process-image-calls {
    width: 100%;
    height: 220px;
    margin-bottom: 16px;
  }

  .why-success-board {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .why-success-subtitle {
    width: auto;
    font-size: 22px;
    line-height: 1.2;
  }

  .why-card-bottom {
    grid-column: auto;
  }

  .why-card-top-left {
    padding-right: 29px;
  }

  .chord-diagram-image {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
  }

  .author-board {
    padding: 20px 0 0;
  }

  .author-shell {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .author-photo {
    width: 100%;
    height: 460px;
  }

  .pricing-board {
    padding: 0;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-tier,
  .pricing-tier-featured {
    min-height: 0;
    margin-top: 0;
  }

  .pricing-hit {
    left: 50%;
    transform: translateX(-50%);
  }

  .installment-card {
    padding: 24px 20px;
  }

  .installment-copy {
    max-width: 100%;
    min-height: 0;
  }

  .installment-copy h3,
  .installment-card .installment-lead,
  .installment-card .installment-text {
    width: auto;
    max-width: 100%;
  }

  .installment-button {
    position: static;
    margin-top: 24px;
  }

  .installment-art {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 280px;
    margin-top: 24px;
  }

  .installment-art-small {
    left: 0;
    top: 0;
  }

  .installment-art-large {
    right: 0;
    top: 12px;
  }

  .guarantee-board {
    min-height: 0;
    padding: 24px 0 0;
  }

  .guarantee-board::before {
    inset: 0;
    width: auto;
    height: auto;
  }

  .guarantee-title,
  .guarantee-text {
    width: auto;
    max-width: calc(100% - 48px);
  }

  .guarantee-title {
    padding-top: 0;
  }

  .guarantee-text {
    margin-top: 20px;
    padding-bottom: 24px;
  }

  .stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
    gap: 16px;
  }

  .stats-card {
    min-height: 0;
  }

  .reviews-title {
    margin: 0 0 24px;
  }

  .reviews-track {
    gap: 20px;
    padding: 0;
  }

  .review-video-card {
    flex-basis: 240px;
    width: 240px;
  }

  .cta-shell {
    width: 100%;
    min-height: 0;
    margin-top: 20px;
    padding: 28px 20px;
  }

  .cta-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-title {
    margin-left: 0;
  }

  .faq-shell {
    width: 100%;
    margin-left: 0;
  }

  .site-footer-new {
    margin-top: 24px;
  }

  .footer-shell {
    padding: 32px 24px 24px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-top-button {
    grid-column: 2;
    justify-self: end;
    margin-top: 0;
  }

  .footer-bottom-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-docs {
    text-align: left;
  }

  .legal-hero,
  .legal-card {
    padding: 30px 28px;
  }

  .legal-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 28px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 8px;
    grid-column: 1 / -1;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-copy {
    max-width: 160px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero h1 {
    font-size: 52px;
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 22px;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-media,
  .hero-image {
    min-height: 340px;
  }

  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-actions .button {
    min-height: 68px;
    padding: 18px 0;
    font-size: 16px;
  }

  .benefit-card {
    min-height: 0;
    padding: 18px 20px;
  }

  .benefit-card h3,
  .audience-title,
  .contrast-title,
  .different-title,
  .program-title,
  .process-title,
  .why-success-title,
  .author-title,
  .pricing-title,
  .stats-title,
  .reviews-title,
  .cta-title,
  .faq-title,
  .guarantee-title {
    font-size: 28px;
  }

  .audience-title,
  .contrast-title,
  .different-title,
  .program-title,
  .process-title,
  .why-success-title,
  .author-title,
  .pricing-title,
  .stats-title,
  .reviews-title,
  .cta-title,
  .faq-title,
  .guarantee-title {
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .audience-card-copy {
    inset: auto 16px 16px;
  }

  .different-copy,
  .why-card,
  .process-feature-self,
  .process-feature-feedback,
  .process-feature-flow,
  .process-feature-calls,
  .program-card,
  .pricing-tier {
    padding-left: 18px;
    padding-right: 18px;
  }

  .program-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .program-cta .button-primary,
  .installment-button,
  .cta-main-button {
    width: 100%;
  }

  .author-photo {
    height: 340px;
  }

  .author-info h3 {
    font-size: 34px;
    line-height: 1;
  }

  .pricing-title {
    margin-bottom: 28px;
  }

  .pricing-tier h3 {
    font-size: 28px;
    line-height: 1;
  }

  .pricing-price {
    font-size: 40px;
    line-height: 1;
  }

  .pricing-button {
    width: 100%;
  }

  .pricing-hit {
    width: auto;
    padding-inline: 20px;
    font-size: 18px;
  }

  .installment-lead {
    font-size: 20px;
    line-height: 1.2;
  }

  .installment-text {
    font-size: 18px;
    line-height: 1.3;
  }

  .installment-art {
    height: 220px;
  }

  .installment-art-small {
    width: 92px;
    height: 128px;
  }

  .installment-art-large {
    width: 250px;
    height: 278px;
  }

  .guarantee-text {
    font-size: 18px;
    line-height: 1.3;
    max-width: calc(100% - 32px);
  }

  .stats-cards {
    grid-template-columns: 1fr;
  }

  .stats-card strong {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
  }

  .stats-card span {
    font-size: 18px;
    line-height: 1.2;
  }

  .review-video-card {
    flex-basis: 220px;
    width: 220px;
    height: 430px;
  }

  .cta-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .cta-feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-feature-card p {
    font-size: 18px;
  }

  .faq-shell .faq-question {
    padding: 18px 44px 18px 18px;
    font-size: 18px;
    line-height: 1.2;
  }

  .faq-shell .faq-question::after,
  .faq-shell .faq-item.is-open .faq-question::after {
    right: 18px;
  }

  .faq-shell .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-shell {
    padding: 28px 20px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top-button {
    grid-column: auto;
    justify-self: start;
  }

  .footer-cta-button {
    width: 100%;
  }

  .legal-hero-section {
    padding-top: 12px;
  }

  .legal-hero,
  .legal-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .legal-page-subtitle {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.35;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4 {
    margin-top: 28px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content h3 {
    font-size: 19px;
  }

  .legal-content p,
  .legal-content li,
  .legal-table th,
  .legal-table td {
    font-size: 14px;
  }

  .legal-strongline {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 20px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .audience-title {
    font-size: 24px;
  }

  .guarantee-title {
    font-size: 24px;
  }

  .guarantee-text {
    font-size: 16px;
    max-width: calc(100% - 24px);
  }

  .brand-copy {
    display: none;
  }

  .legal-page-title {
    font-size: 30px;
  }

  .legal-page-subtitle {
    font-size: 15px;
  }

  .legal-content p,
  .legal-content li {
    line-height: 1.5;
  }

  .hero-media,
  .hero-image {
    min-height: 280px;
  }

  .contrast-visual-left,
  .contrast-visual-middle,
  .contrast-visual-right,
  .different-image-left,
  .different-image-middle,
  .different-image-right,
  .process-image-self,
  .process-image-feedback,
  .process-image-flow,
  .process-image-calls {
    height: 180px;
  }

  .author-photo {
    height: 280px;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
  }

  .widget-modal {
    padding: 14px;
  }

  .widget-modal-dialog {
    padding: 22px 16px 20px;
    border-radius: 22px;
  }
}
