:root {
  --ivory: #fff6e8;
  --ivory-2: #fffaf2;
  --red: #ff2d55;
  --red-dark: #bf002b;
  --youtube-red: #cc0b20;
  --pink: #ff2f70;
  --gold: #ffca3f;
  --purple: #2f0035;
  --purple-2: #4f00c7;
  --blue: #001c90;
  --ink: #241a28;
  --muted: #6d5a70;
  --line: rgba(47, 0, 53, 0.14);
  --card: rgba(255, 255, 255, 0.74);
  --shadow: 0 24px 70px rgba(47, 0, 53, 0.16);
  --shadow-soft: 0 16px 45px rgba(47, 0, 53, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 202, 63, 0.35), transparent 34rem),
    radial-gradient(circle at 90% 5%, rgba(255, 47, 112, 0.24), transparent 30rem),
    linear-gradient(180deg, var(--ivory) 0%, #fff 46%, var(--ivory) 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: linear-gradient(rgba(47, 0, 53, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 0, 53, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

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

[hidden] {
  display: none !important;
}

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

p,
li {
  line-height: 1.64;
}

p {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.section {
  padding: 88px 0;
}

.section--compact {
  padding: 56px 0;
}

.section--dark {
  color: #fff;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.38), transparent 67%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 7px rgba(255, 45, 85, 0.12);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7.5vw, 88px);
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.44fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head--narrow {
  margin-bottom: 24px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.section--dark .section-head p,
.section--dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--muted);
}

strong {
  font-weight: 850;
}


section[id] {
  scroll-margin-top: 104px;
}

.brand img[src$=".svg"] {
  width: 34px;
  height: 38px;
}

.legal-doc {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.72;
}

.legal-doc h2 {
  margin-top: 34px;
}

.legal-doc h3 {
  margin-top: 22px;
  color: var(--purple);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.legal-doc p {
  margin: 0;
  color: var(--muted);
}

.legal-doc a {
  color: var(--blue);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-doc [dir="rtl"] {
  text-align: right;
  direction: rtl;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 246, 232, 0.82);
  border-bottom: 1px solid rgba(47, 0, 53, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 930;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(36, 26, 40, 0.76);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--purple);
  background: rgba(255, 45, 85, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: var(--purple);
  border-radius: 999px;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(255, 45, 85, 0.26);
  font-weight: 860;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 45, 85, 0.34);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  cursor: default;
  opacity: 0.82;
  transform: none;
  box-shadow: none;
}

.btn--dark {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 14px 34px rgba(47, 0, 53, 0.24);
}

.btn--gold {
  color: var(--purple);
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(255, 202, 63, 0.28);
}

.btn--ghost {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero {
  padding: 68px 0 52px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.73fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 0, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--purple);
  font-size: 14px;
  font-weight: 840;
  box-shadow: var(--shadow-soft);
}

.hero-kicker img {
  width: 27px;
  height: 27px;
}

.hero h1 span {
  color: var(--red);
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.48;
}

.hero-price-line {
  margin-top: 18px;
  color: var(--purple);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 860;
  line-height: 1.25;
}

.hero-price-line b {
  color: var(--red);
}

.sales-note {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 0, 53, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(36, 26, 40, 0.78);
  font-weight: 760;
  font-size: 14px;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}

.stat-card {
  padding: 17px;
  border: 1px solid rgba(47, 0, 53, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 28px rgba(47, 0, 53, 0.07);
}

.stat-card b {
  display: block;
  color: var(--purple);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-photo-wrap {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 202, 63, 0.4));
  box-shadow: var(--shadow);
}

.hero-photo-wrap::before,
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: -1;
}

.hero-photo-wrap::before {
  width: 220px;
  height: 220px;
  right: -54px;
  top: 44px;
  background: rgba(255, 45, 85, 0.18);
}

.hero-photo-wrap::after {
  width: 180px;
  height: 180px;
  left: -58px;
  bottom: 44px;
  background: rgba(79, 0, 199, 0.14);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 46%;
  border-radius: 32px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 238px;
  padding: 15px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(47, 0, 53, 0.11);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.floating-card b {
  display: block;
  color: var(--purple);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.floating-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
}

.floating-card--one {
  left: -6px;
  top: 92px;
}

.floating-card--two {
  right: -18px;
  bottom: 156px;
  max-width: 258px;
}

.floating-card--three {
  left: 38px;
  bottom: 0;
  max-width: 255px;
  background: var(--purple);
  color: #fff;
}

.floating-card--three b,
.floating-card--three span {
  color: #fff;
}

.trust-strip {
  padding: 22px 0 0;
  border-block: 1px solid rgba(47, 0, 53, 0.1);
  background: rgba(255, 255, 255, 0.52);
}

.trust-title {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(24px, 3vw, 34px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
}

.trust-item {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 18px;
  border-left: 1px solid rgba(47, 0, 53, 0.08);
}

.trust-item:last-child {
  border-right: 1px solid rgba(47, 0, 53, 0.08);
}

.trust-item b {
  color: var(--purple);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.trust-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.notice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #4d014f);
  box-shadow: var(--shadow-soft);
}

.notice-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--purple);
  background: var(--gold);
  font-weight: 950;
  font-size: 25px;
}

.notice-card h2,
.notice-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.notice-card p {
  color: rgba(255, 255, 255, 0.82);
}

.notice-intro,
.notice-final {
  margin-top: 16px;
  font-weight: 780;
}

.notice-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(47, 0, 53, 0.12);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(47, 0, 53, 0.075);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card--white {
  background: rgba(255, 255, 255, 0.82);
}

.card--dark {
  color: #fff;
  background: var(--purple);
}

.card--gold {
  background: linear-gradient(135deg, var(--gold), #ffe9a5);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--red);
  font-weight: 930;
}

.card h3 {
  margin-bottom: 12px;
}

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

.card--dark p,
.card--dark li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list,
.cross-list,
.clean-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.cross-list li,
.clean-list li {
  position: relative;
  padding-left: 30px;
  margin-top: 12px;
}

.check-list li::before,
.cross-list li::before,
.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  color: var(--purple);
  background: var(--gold);
}

.cross-list li::before {
  content: "×";
  color: #fff;
  background: var(--red);
}

.clean-list li::before {
  content: "";
  top: 0.52em;
  width: 10px;
  height: 10px;
  background: var(--red);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.46fr);
  gap: 24px;
  align-items: stretch;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 0, 53, 0.09);
}

.problem-item b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #fff;
  background: var(--purple);
  font-size: 20px;
}

.quote-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
  box-shadow: 0 24px 60px rgba(255, 45, 85, 0.22);
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(24px, 3.3vw, 39px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 920;
}

.quote-card span {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.expert-photo {
  position: relative;
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 202, 63, 0.42));
  box-shadow: var(--shadow);
}

.expert-photo img {
  border-radius: 29px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.expert-copy .lead {
  margin: 24px 0;
  color: var(--muted);
  font-size: 20px;
}

.expert-note {
  margin: 0 0 22px;
  padding: 20px 22px;
  border-left: 5px solid var(--red);
  border-radius: 0 20px 20px 0;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.55;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.proof-chip {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(47, 0, 53, 0.1);
}

.proof-chip b {
  display: block;
  color: var(--red-dark);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.proof-chip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 720;
  font-size: 13px;
}

.program-wrap {
  display: grid;
  gap: 14px;
}

.program-note {
  margin-bottom: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--purple);
  background: rgba(255, 202, 63, 0.2);
  border: 1px solid rgba(47, 0, 53, 0.1);
  font-size: 15px;
  font-weight: 700;
}

details.program-week {
  border: 1px solid rgba(47, 0, 53, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(47, 0, 53, 0.06);
  overflow: hidden;
}

.program-week summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 82px 22px 24px;
  cursor: pointer;
  list-style: none;
}

.program-week summary::-webkit-details-marker {
  display: none;
}

.week-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  font-weight: 900;
  font-size: 14px;
}

.week-title b {
  display: block;
  color: var(--purple);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.week-title span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.program-week summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    linear-gradient(var(--purple), var(--purple)) center / 15px 4px no-repeat,
    linear-gradient(var(--purple), var(--purple)) center / 4px 15px no-repeat,
    var(--gold);
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

.program-week[open] summary::after {
  background:
    linear-gradient(var(--purple), var(--purple)) center / 15px 4px no-repeat,
    var(--gold);
  transform: translateY(-50%) rotate(180deg);
}

.week-content {
  padding: 0 24px 24px;
}

.week-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(47, 0, 53, 0.1);
}

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

.lesson-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  line-height: 1.45;
}

.lesson-list li span:first-child {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255, 202, 63, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.week-result {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 246, 232, 0.86);
}

.week-result b {
  display: block;
  margin-bottom: 8px;
  color: var(--red-dark);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.preview-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.preview-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(47, 0, 53, 0.12);
  background: #fff;
  box-shadow: 0 18px 44px rgba(47, 0, 53, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.preview-card:first-child {
  grid-column: span 2;
}

.preview-card img {
  width: 100%;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: center;
}

.demo-actions {
  margin-top: 24px;
}

.demo-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 0, 53, 0.12);
  background: var(--purple);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

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

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bonus-card {
  min-height: 202px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 0, 53, 0.11);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(47, 0, 53, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bonus-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--purple);
  background: var(--gold);
  font-size: 23px;
  font-weight: 920;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.featured-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.featured-proof article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.featured-proof span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.featured-proof b {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.featured-proof p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.result-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.result-card figcaption {
  padding: 14px 15px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.disclaimer {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.testimonial-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.testimonial-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(47, 0, 53, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.testimonial-card img {
  width: 100%;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
  gap: 24px;
  align-items: stretch;
}

.telegram-card {
  min-height: 100%;
  padding: 32px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 202, 63, 0.24), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(255, 45, 85, 0.3), transparent 34%),
    linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 22px 58px rgba(79, 0, 199, 0.2);
}

.telegram-card h3 {
  margin-bottom: 18px;
}

.telegram-card p,
.telegram-card li {
  color: rgba(255, 255, 255, 0.78);
}

.access-term {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.54fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(47, 0, 53, 0.1);
  box-shadow: var(--shadow);
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.price-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.price-value {
  margin-top: 14px;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.06em;
  line-height: 0.95;
  font-weight: 930;
  color: var(--purple);
}

.price-value small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
}

.launch-countdown {
  margin: -6px 0 18px;
  padding: 13px 16px;
  border-radius: 16px;
  color: var(--purple);
  background: rgba(255, 202, 63, 0.2);
  border: 1px solid rgba(47, 0, 53, 0.1);
  font-weight: 820;
}

.payment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.payment-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.process-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--purple);
  box-shadow: var(--shadow-soft);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
}

.process-list li b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--gold);
}

.setup-alert {
  margin-top: 24px;
  padding: 20px;
  border-radius: 20px;
  border: 1px dashed rgba(47, 0, 53, 0.26);
  background: rgba(255, 202, 63, 0.18);
}

.setup-alert h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.consult-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #5a0c62);
  box-shadow: var(--shadow);
}

.consult-card p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 820px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--gold);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid rgba(47, 0, 53, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 64px 22px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 860;
  color: var(--purple);
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background:
    linear-gradient(var(--purple), var(--purple)) center / 13px 3px no-repeat,
    linear-gradient(var(--purple), var(--purple)) center / 3px 13px no-repeat,
    var(--gold);
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

.faq-list details[open] summary::after {
  background:
    linear-gradient(var(--purple), var(--purple)) center / 13px 3px no-repeat,
    var(--gold);
  transform: translateY(-50%) rotate(180deg);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-content {
  overflow: hidden;
}

.site-footer {
  padding: 44px 0 110px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--purple);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  font-weight: 760;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  margin-top: 12px;
  font-weight: 760;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page {
  padding: 76px 0 96px;
}

.legal-shell {
  max-width: 900px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(47, 0, 53, 0.1);
}

.legal-shell h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.legal-shell h2 {
  margin-top: 36px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.legal-shell ul {
  padding-left: 22px;
}

.mobile-sticky-cta {
  display: none;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card:hover,
  .bonus-card:hover,
  .preview-card:hover,
  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(47, 0, 53, 0.12);
  }

  .result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .faq-list details:hover {
    border-color: rgba(47, 0, 53, 0.2);
    box-shadow: 0 12px 30px rgba(47, 0, 53, 0.06);
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .expert-grid,
  .preview-grid,
  .demo-grid,
  .pricing-wrap,
  .access-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo-wrap {
    margin: 0 auto;
  }

  .floating-card--one {
    left: 4px;
    top: 60px;
  }

  .floating-card--two {
    right: 0;
    bottom: 136px;
  }

  .floating-card--three {
    left: 20px;
    bottom: 8px;
  }

  .trust-row,
  .hero-proof,
  .results-grid,
  .featured-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(47, 0, 53, 0.12);
    border-radius: 24px;
    background: rgba(255, 246, 232, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-links[data-open] {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-proof,
  .trust-row,
  .grid-2,
  .grid-3,
  .bonus-grid,
  .results-grid,
  .featured-proof,
  .preview-images,
  .payment-actions,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .preview-card:first-child {
    grid-column: auto;
  }

  .week-inner,
  .program-week summary {
    grid-template-columns: 1fr;
  }

  .program-week summary::after {
    right: 18px;
    top: 20px;
    transform: none;
  }

  .program-week[open] summary::after {
    transform: rotate(180deg);
  }

  .program-week summary {
    padding-right: 70px;
  }

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

  .status-badge {
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

}

@media (max-width: 680px) {
  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 246, 232, 0.9);
    border: 1px solid rgba(47, 0, 53, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .is-mobile-sticky-visible .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta .btn {
    min-height: 46px;
    padding: 12px 10px;
    font-size: 13px;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .section--compact {
    padding: 44px 0;
  }

  .mobile-sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .hero-cta {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .hero-photo-wrap {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 10px;
  }

  .card,
  .price-card,
  .process-card,
  .telegram-card,
  .consult-card,
  .quote-card,
  .legal-shell {
    padding: 22px;
  }

  .trust-item {
    min-height: auto;
    padding: 16px;
  }

  .price-top {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
