/* ============ TOKENS ============ */
:root {
  --bg: #0a0a0c;
  --bg-alt: #111114;
  --card: #17161a;
  --card-border: #2a262a;
  --red: #e0202f;
  --red-bright: #ff3b3b;
  --red-deep: #7a0f18;
  --text: #f4f2f1;
  --text-muted: #a9a6ac;
  --text-faint: #6f6c72;
  --radius: 14px;
  --container: 1180px;
  --font-display: "Archivo Black", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(132deg, rgba(255, 59, 59, 0.32) 0%, rgba(255, 59, 59, 0.14) 6%, transparent 18%),
    radial-gradient(ellipse 55% 40% at 58% 40%, rgba(224, 32, 47, 0.10), transparent 65%),
    radial-gradient(ellipse 42% 30% at 66% 22%, rgba(255, 255, 255, 0.04), transparent 65%),
    radial-gradient(ellipse 75% 24% at 50% 100%, rgba(224, 32, 47, 0.18), transparent 75%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.hero-subtitle,
.offer-subtitle,
.teacher-bio,
.viewer-desc,
.learn-card p,
.platform-card p,
.review-card p,
.faq-answer p,
.cta-inner p,
.hero-social-proof p,
.footer-bottom p {
  text-align: justify;
  text-justify: inter-word;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--red-bright); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: #fff;
  box-shadow: 0 8px 24px rgba(224, 32, 47, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 32, 47, 0.5);
}

.btn-small {
  padding: 11px 18px;
  font-size: 0.75rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--red);
  background: rgba(224, 32, 47, 0.08);
}

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  font-size: 0.6rem;
  color: #fff;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-bright);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--red-bright), var(--red-deep));
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.logo-text span {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}

.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 700px;
  background:
    radial-gradient(circle at 75% 20%, rgba(224, 32, 47, 0.35), transparent 55%),
    radial-gradient(circle at 20% 60%, rgba(224, 32, 47, 0.12), transparent 50%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 620px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-social-proof p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-social-proof strong { color: var(--text); }

.avatar-stack {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(160deg, var(--red-bright), var(--red-deep));
  border: 2px solid var(--bg);
  margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

/* ---- Hero background figure ---- */
.hero-figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, transparent 8%, black 62%, black 100%);
          mask-image: linear-gradient(100deg, transparent 0%, transparent 8%, black 62%, black 100%);
}

.hero-figure-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.4;
  filter: saturate(1.1) contrast(1.1) brightness(0.75);
}

/* ============ STATS BAR ============ */
.stats-bar {
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-alt);
  padding: 36px 0;
}

.stats-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  font-weight: 700;
  margin-bottom: 26px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
}

.stat-desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 6px;
  max-width: 220px;
  margin-inline: auto;
}

/* ============ VIDEO ============ */
.video-section {
  padding: 110px 0;
  border-bottom: 1px solid var(--card-border);
}

.video-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 30px 70px rgba(224, 32, 47, 0.18);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ LEARN GRID ============ */
.learn { padding: 110px 0; }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.learn-card, .platform-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.learn-card:hover, .platform-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.learn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(224, 32, 47, 0.12);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.learn-card h3, .platform-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.learn-card p, .platform-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* ============ MODULES ============ */
.modules {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.modules-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.modules-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.18;
  margin-bottom: 28px;
}

.modules-includes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.modules-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.modules-includes li span {
  color: var(--red-bright);
  font-size: 0.85rem;
}

.modules-viewer {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
}

.viewer-top { margin-bottom: 22px; }

.viewer-top h3 {
  font-size: 1.15rem;
  margin: 6px 0 10px;
  line-height: 1.3;
}

.viewer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 6px;
}

.module-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.module-list li:hover { background: rgba(255,255,255,0.04); }

.module-list li.active {
  background: rgba(224, 32, 47, 0.1);
  border-color: rgba(224, 32, 47, 0.4);
  color: var(--text);
}

.mod-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--red-bright);
  width: 22px;
  flex-shrink: 0;
}

.module-list::-webkit-scrollbar { width: 6px; }
.module-list::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 6px; }

/* ============ PLATFORM ============ */
.platform { padding: 110px 0; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ============ TEACHER ============ */
.teacher {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.teacher-inner {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 56px;
  align-items: center;
}

.teacher-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(165deg, var(--red-bright), var(--red-deep) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
}

.teacher-photo img {
  width: 62%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.teacher-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.teacher-bio {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 22px;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 90px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, #200608, var(--bg) 65%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-inner p {
  color: var(--text-muted);
  max-width: 460px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ============ REVIEWS ============ */
.reviews { padding: 110px 0; }

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

.review-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px;
  overflow: hidden;
}

.review-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--red));
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author strong { display: block; font-size: 0.9rem; }
.review-author small { color: var(--text-faint); font-size: 0.76rem; }
.review-author .avatar { margin-left: 0; }

/* ============ FAQ ============ */
.faq {
  padding: 110px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.faq-image {
  display: flex;
  justify-content: center;
  align-self: center;
}

.faq-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  color: var(--red-bright);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(224,32,47,0.15);
}

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

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============ OFFER / PRICING ============ */
.offer {
  padding: 90px 0 110px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  background: linear-gradient(160deg, #1b0608, var(--bg) 65%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 52px;
  box-shadow: 0 30px 70px rgba(224, 32, 47, 0.12);
}

.offer-glow {
  position: absolute;
  inset: -30% 40% auto auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(224, 32, 47, 0.35), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.offer-left,
.offer-right {
  position: relative;
  z-index: 1;
}

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

.offer-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 480px;
}

.offer-subtitle {
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 28px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  box-shadow: 0 10px 26px rgba(224, 32, 47, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(224, 32, 47, 0.55);
}

.btn-buy-icon { font-size: 1.3rem; }

.btn-buy strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.btn-buy small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 2px;
}

.offer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.offer-badges-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-seal {
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.payment-seal img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 20px;
}

.trust-icon { color: #22c55e; }

.price-box {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(224, 32, 47, 0.35);
}

.price-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 56px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--card-border);
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-nav a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-social a:hover { color: var(--red-bright); }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-faint);
  font-size: 0.78rem;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(224,32,47,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ============ SALE TOAST ============ */
.sale-toast {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  background: transparent;
  border: 2px solid #22c55e;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sale-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.sale-toast-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sale-toast-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sale-toast-badge {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.sale-toast-desc {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--card-border);
    gap: 18px;
  }

  .modules-inner, .teacher-inner, .cta-inner, .offer-card, .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-image { order: -1; max-width: 220px; margin: 0 auto 20px; }

  .hero-content { max-width: 100%; }
  .hero-figure {
    opacity: 0.3;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 60%, black 100%);
            mask-image: linear-gradient(180deg, transparent 0%, black 60%, black 100%);
  }

  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  .cta-inner { padding: 36px 24px; }
  .cta-actions { align-items: flex-start; }

  .offer-card { padding: 32px; gap: 32px; }
  .offer-left { align-items: flex-start; }

  .sale-toast { right: 14px; left: 14px; max-width: none; bottom: 76px; }
}

@media (max-width: 560px) {
  .learn-grid, .platform-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
}
