:root {
  --red: #dc0032;
  --red-dark: #b9002b;
  --ink: #171820;
  --muted: #636976;
  --line: #e8e9ee;
  --soft: #f6f7f9;
  --pink: #fff0f3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 28, 38, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.siteHeader {
  position: relative;
  z-index: 50;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(232,233,238,.8);
  backdrop-filter: blur(18px);
}

.themeToggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 20px;
  cursor: pointer;
}
.themeToggle:hover { border-color: var(--red); color: var(--red); }

.sectionNext {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 55;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(220,0,50,.32);
  font: inherit;
  font-size: 25px;
  font-weight: 850;
  cursor: pointer;
  animation: section-next-pulse 1.8s ease-in-out infinite;
}
.sectionNext[hidden] { display: none !important; }
@keyframes section-next-pulse { 50% { transform: translateY(4px); } }

.headerInner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brandWord { font-size: 29px; font-weight: 800; letter-spacing: -2px; }
.brandCube {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  position: relative;
}
.brandCube::before,
.brandCube::after,
.brandCube span {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.94);
  transform-origin: center;
}
.brandCube::before { width: 2px; height: 17px; bottom: 4px; left: 16px; }
.brandCube::after { width: 17px; height: 2px; top: 12px; left: 2px; transform: rotate(30deg); }
.brandCube span { width: 17px; height: 2px; top: 12px; right: 2px; transform: rotate(-30deg); }

.desktopNav { display: flex; gap: 28px; margin-left: auto; }
.desktopNav a { color: var(--muted); font-size: 14px; font-weight: 650; }
.desktopNav a:hover { color: var(--red); }
.headerCta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  transition: .2s ease;
}
.headerCta:hover { border-color: var(--red); color: var(--red); }

.hero {
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    radial-gradient(circle at 10% 5%, rgba(220,0,50,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.heroGrid {
  min-height: 625px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #f0c3ce;
  border-radius: 999px;
  color: #8d1530;
  background: #fff7f9;
  font-size: 13px;
  font-weight: 750;
}
.eyebrow span, .statusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22b55b;
  box-shadow: 0 0 0 4px rgba(34,181,91,.12);
}

h1 {
  max-width: 680px;
  margin: 26px 0 22px;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}
h1 em { display: block; color: var(--red); font-style: normal; }
.heroLead {
  max-width: 635px;
  margin: 0;
  color: #505663;
  font-size: 19px;
  line-height: 1.62;
}

.heroPills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.heroPills span {
  padding: 10px 13px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: #3d424c;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(22,25,34,.04);
}

.heroActions { display: flex; align-items: center; gap: 17px; margin-top: 34px; }
.heroActions small { max-width: 200px; color: #7a808b; line-height: 1.45; }
.telegramButton {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  color: #fff;
  background: var(--red);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(220,0,50,.24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.telegramButton:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 20px 42px rgba(220,0,50,.32); }
.telegramGlyph { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); }

.heroVisual { min-height: 600px; position: relative; }
.redOrb { position: absolute; border-radius: 50%; background: linear-gradient(145deg, #ef3158, var(--red)); filter: drop-shadow(0 24px 35px rgba(220,0,50,.2)); }
.orbOne { width: 470px; height: 470px; right: -8px; top: 50px; opacity: .94; }
.orbTwo { width: 120px; height: 120px; left: 15px; bottom: 28px; opacity: .13; }
.phone {
  position: absolute;
  overflow: hidden;
  width: 276px;
  padding: 9px;
  border: 7px solid #1a1b20;
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}
.phone img { width: 100%; border-radius: 30px; }
.phoneSpeaker { position: absolute; top: 14px; left: 50%; z-index: 2; width: 76px; height: 21px; transform: translateX(-50%); border-radius: 999px; background: #17181c; }
.phoneFront { right: 74px; top: 15px; z-index: 3; transform: rotate(1.5deg); }
.phoneBack { width: 238px; left: 12px; top: 115px; z-index: 1; transform: rotate(-7deg); opacity: .94; }
.floatingNote {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 17px 50px rgba(31,34,44,.16);
  backdrop-filter: blur(12px);
}
.floatingNote strong { font-size: 14px; }
.floatingNote span { color: var(--muted); font-size: 12px; }
.noteTop { right: -8px; top: 115px; }
.noteTop strong { color: var(--red); font-size: 28px; }
.noteTop span { max-width: 85px; line-height: 1.25; }
.noteBottom { left: 35px; bottom: 58px; }

.factsSection { padding: 0 0 78px; background: #fafbfc; }
.factsGrid { display: grid; grid-template-columns: 1.28fr repeat(3, 1fr); gap: 14px; }
.factCard {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(24,27,37,.045);
}
.factCard strong { display: block; margin: 20px 0 8px; font-size: 25px; letter-spacing: -.03em; }
.factCard p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.factPrimary { color: #fff; border: 0; background: linear-gradient(145deg, #e20b3c, #c3002d); }
.factPrimary strong { margin: 17px 0 5px; font-size: 39px; }
.factPrimary p { color: rgba(255,255,255,.8); }
.factLabel { font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; opacity: .82; }
.factIcon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--red); background: var(--pink); font-weight: 900; }
.rateNote { margin-top: 14px; color: #8a8f99; font-size: 12px; text-align: right; }

.section { padding: 100px 0; }
.introSection { padding-bottom: 45px; }
.twoColumnHeading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.sectionKicker { display: block; margin-bottom: 13px; color: var(--red); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.sectionHeading h2 { margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.06; letter-spacing: -.045em; }
.sectionHeading p { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.workflowGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.workflowCard {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--soft);
}
.workflowNumber { color: #a4a8b0; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.workflowIcon { width: 54px; height: 54px; display: grid; place-items: center; margin-top: 32px; border-radius: 17px; color: var(--red); background: var(--pink); font-size: 19px; font-weight: 900; }
.workflowCard h3 { margin: auto 0 9px; font-size: 22px; letter-spacing: -.03em; }
.workflowCard p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.workflowAccent { color: #fff; border-color: transparent; background: linear-gradient(145deg, #e51545, #bf002c); box-shadow: 0 24px 50px rgba(220,0,50,.18); }
.workflowAccent .workflowNumber, .workflowAccent p { color: rgba(255,255,255,.74); }
.workflowAccent .workflowIcon { color: #fff; background: rgba(255,255,255,.15); }

.appSection { overflow: hidden; background: #f3f4f7; }
.appIntro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.appIntro > p { margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.screenRail {
  width: min(1400px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(4, minmax(285px, 1fr));
  gap: 18px;
  margin: 56px auto 0;
}
.screenCard { margin: 0; padding: 24px 19px 20px; border-radius: 30px; background: #fff; box-shadow: 0 20px 50px rgba(28,31,41,.08); }
.screenCard:nth-child(even) { transform: translateY(22px); }
.screenPhone { position: relative; overflow: hidden; height: 525px; border: 6px solid #17181d; border-radius: 33px; background: #fff; }
.screenPhone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 25px; }
.screenNotch { position: absolute; top: 8px; left: 50%; z-index: 2; width: 68px; height: 18px; transform: translateX(-50%); border-radius: 999px; background: #17181d; }
.screenCard figcaption { display: flex; gap: 13px; padding: 18px 4px 2px; }
.screenCard figcaption > span { color: var(--red); font-size: 11px; font-weight: 900; }
.screenCard figcaption strong { display: block; margin-bottom: 5px; font-size: 16px; }
.screenCard figcaption p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.trainingSection { overflow: hidden; color: #fff; background: linear-gradient(135deg, #c0002c 0%, #e4083b 58%, #ef3158 100%); }
.trainingGrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.trainingVisual { min-height: 620px; position: relative; }
.trainingVisual::before { content: ""; position: absolute; width: 480px; height: 480px; left: 0; top: 70px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.trainingPhone { position: absolute; z-index: 2; width: 300px; left: 90px; top: 0; overflow: hidden; padding: 8px; border: 7px solid #191a20; border-radius: 42px; background: #fff; box-shadow: 0 35px 70px rgba(65,0,17,.32); transform: rotate(-3deg); }
.trainingPhone img { border-radius: 29px; }
.progressBadge { position: absolute; z-index: 4; right: 6px; bottom: 90px; width: 190px; padding: 22px; border: 1px solid rgba(255,255,255,.4); border-radius: 22px; background: rgba(255,255,255,.93); color: var(--ink); box-shadow: 0 22px 50px rgba(68,0,17,.23); }
.progressBadge strong { display: block; color: var(--red); font-size: 38px; letter-spacing: -.05em; }
.progressBadge span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.lightKicker { color: rgba(255,255,255,.72); }
.trainingCopy h2 { max-width: 580px; margin: 0; font-size: clamp(40px, 4.7vw, 66px); line-height: 1.03; letter-spacing: -.05em; }
.trainingCopy > p { max-width: 590px; margin: 24px 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7; }
.checkList { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.checkList li { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.checkList li span { width: 29px; height: 29px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--red); background: #fff; }
.trainingCopy .telegramButton, .finalCta .telegramButton, .startPanel .telegramButton { color: var(--red); background: #fff; box-shadow: 0 16px 35px rgba(73,0,17,.22); }
.trainingCopy .telegramButton:hover, .finalCta .telegramButton:hover, .startPanel .telegramButton:hover { background: #fff5f7; }

.scheduleSection { background: #fff; }
.scheduleGrid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.scheduleGrid .sectionHeading p { margin-top: 24px; }
.weekCard { padding: 34px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 26px 70px rgba(25,28,38,.09); }
.weekTop { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.weekTop div span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; }
.weekTop strong { font-size: 32px; letter-spacing: -.04em; }
.onlineTag { padding: 8px 11px; border-radius: 10px; color: #10843e; background: #e8f8ed; font-size: 11px; font-weight: 800; }
.weekBars { height: 230px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 13px; align-items: stretch; padding: 28px 0 18px; }
.dayBar { display: grid; grid-template-rows: 1fr auto; gap: 9px; text-align: center; }
.barTrack { position: relative; overflow: hidden; border-radius: 10px; background: #f0f1f4; }
.barTrack span { position: absolute; left: 0; right: 0; bottom: 0; min-height: 4px; border-radius: 10px; background: linear-gradient(180deg, #e81746, var(--red)); }
.dayBar small { color: var(--muted); font-size: 11px; }
.weekCard > p { margin: 0; color: #8b909a; font-size: 12px; line-height: 1.45; }

.paySection { background: #f6f7f9; }
.payGrid { display: grid; grid-template-columns: .9fr 1.1fr 1fr; gap: 16px; align-items: stretch; }
.payPanel { min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.payPanel strong { display: block; margin: 18px 0 9px; font-size: 48px; letter-spacing: -.05em; }
.payPanel strong small { font-size: 19px; letter-spacing: -.02em; }
.payPanel p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.payEyebrow { color: var(--red); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.mainPayPanel { color: #fff; border: 0; background: linear-gradient(145deg, #e61142, #bd002b); box-shadow: 0 26px 55px rgba(220,0,50,.2); }
.mainPayPanel .payEyebrow, .mainPayPanel p { color: rgba(255,255,255,.76); }
.payText { display: flex; flex-direction: column; justify-content: center; padding: 22px 18px 22px 34px; }
.payText h2 { font-size: 43px; }
.payText p { margin-top: 20px; }

.fitSection { background: #fff; }
.centeredHeading { max-width: 720px; margin: 0 auto; text-align: center; }
.centeredHeading p { max-width: 620px; margin: 22px auto 0; }
.fitGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.fitGrid article { min-height: 260px; padding: 25px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 12px 35px rgba(24,27,37,.045); }
.fitGrid article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: var(--red); background: var(--pink); font-size: 15px; font-weight: 900; }
.fitGrid h3 { margin: 68px 0 8px; font-size: 20px; letter-spacing: -.03em; }
.fitGrid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.startSection { padding-top: 20px; }
.startPanel { padding: 66px; border-radius: 38px; color: #fff; background: #181920; box-shadow: 0 30px 70px rgba(20,22,30,.18); }
.startPanel .sectionHeading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: end; }
.startPanel h2 { color: #fff; }
.startSteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 48px 0 36px; padding: 0; list-style: none; }
.startSteps li { padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 21px; background: rgba(255,255,255,.045); }
.startSteps li > span { width: 31px; height: 31px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 50%; color: #fff; background: var(--red); font-size: 12px; font-weight: 850; }
.startSteps strong { display: block; margin-bottom: 8px; font-size: 17px; }
.startSteps p { margin: 0; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.55; }

.faqSection { background: #f6f7f9; }
.faqGrid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faqHeading { position: sticky; top: 110px; }
.faqHeading p { margin: 20px 0 28px; }
.faqHeading .telegramButton { font-size: 14px; }
.faqList { display: grid; gap: 10px; }
.faqList details { border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.faqList summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; cursor: pointer; list-style: none; font-size: 16px; font-weight: 750; }
.faqList summary::-webkit-details-marker { display: none; }
.faqList summary b { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--red); background: var(--pink); font-size: 18px; transition: transform .2s ease; }
.faqList details[open] summary b { transform: rotate(45deg); }
.faqList details > p { margin: -4px 24px 22px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.65; }

.finalCta { padding: 86px 0; color: #fff; background: linear-gradient(135deg, #c3002d, var(--red)); }
.finalCtaInner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.finalCta h2 { max-width: 720px; margin: 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -.05em; }
.finalCta p { max-width: 650px; margin: 18px 0 0; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.6; }
.finalCta .telegramButton { flex: 0 0 auto; }

.siteFooter { padding: 38px 0 26px; background: #15161c; color: #fff; }
.footerTop { display: flex; align-items: center; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footerTop p { margin: 0; color: rgba(255,255,255,.55); }
.footerTop > a:last-child { margin-left: auto; color: #fff; font-weight: 750; }
.footerBottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.4); font-size: 12px; }
.footerBottom p { margin: 0; }
.footerBottom div { display: flex; gap: 22px; }
.footerBottom a:hover { color: #fff; }

.mobileSticky { display: none; }
.mobileSectionToggle { display: none; }
.mobileSectionBody { display: contents; }

@media (max-width: 980px) {
  .desktopNav { display: none; }
  .headerCta { margin-left: auto; }
  .hero { padding-top: 62px; }
  .heroGrid { grid-template-columns: 1fr; min-height: auto; }
  .heroCopy { text-align: center; }
  .heroCopy h1, .heroLead { margin-inline: auto; }
  .heroPills, .heroActions { justify-content: center; }
  .heroVisual { width: min(600px, 100%); margin-inline: auto; }
  .factsGrid { grid-template-columns: 1fr 1fr; }
  .workflowGrid, .fitGrid { grid-template-columns: 1fr 1fr; }
  .appIntro, .trainingGrid, .scheduleGrid, .faqGrid { grid-template-columns: 1fr; gap: 48px; }
  .screenRail { overflow-x: auto; grid-template-columns: repeat(4, 295px); justify-content: start; padding: 0 10px 35px; scroll-snap-type: x mandatory; }
  .screenCard { scroll-snap-align: center; }
  .trainingVisual { width: min(600px, 100%); margin-inline: auto; }
  .payGrid { grid-template-columns: 1fr 1fr; }
  .payText { grid-column: 1 / -1; text-align: center; }
  .startPanel .sectionHeading { grid-template-columns: 1fr; gap: 20px; }
  .startSteps { grid-template-columns: 1fr 1fr; }
  .faqHeading { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .headerInner { height: 66px; }
  .brandWord { font-size: 25px; }
  .brandCube { width: 30px; height: 30px; }
  .headerCta { display: none; }
  .themeToggle { margin-left: auto; }
  .hero { padding: 40px 0 34px; }
  .heroGrid { gap: 18px; }
  .eyebrow { font-size: 11px; }
  h1 { margin: 20px 0 17px; font-size: 44px; }
  .heroLead { font-size: 16px; line-height: 1.55; }
  .heroPills { margin-top: 20px; }
  .heroPills span { padding: 8px 10px; font-size: 11px; }
  .heroActions { margin-top: 24px; flex-direction: column; }
  .heroActions .telegramButton { width: 100%; }
  .heroActions small { max-width: none; }
  .heroVisual { min-height: 500px; transform: scale(.9); transform-origin: top center; margin-bottom: -50px; }
  .orbOne { width: 370px; height: 370px; right: 50%; transform: translateX(50%); }
  .phoneFront { right: 50%; transform: translateX(58%) rotate(2deg); width: 240px; }
  .phoneBack { left: 50%; transform: translateX(-96%) rotate(-7deg); width: 205px; }
  .noteTop { right: 2px; }
  .noteBottom { left: 0; bottom: 75px; }
  .factsSection { padding-bottom: 55px; }
  .factsGrid { grid-template-columns: 1fr; gap: 10px; }
  .factCard { min-height: 0; padding: 20px; }
  .factCard strong { margin-top: 12px; }
  .rateNote { text-align: left; line-height: 1.45; }
  .section { padding: 72px 0; }
  .twoColumnHeading { grid-template-columns: 1fr; gap: 22px; }
  .sectionHeading h2 { font-size: 39px; }
  .sectionHeading p { font-size: 16px; }
  .workflowGrid, .fitGrid { grid-template-columns: 1fr; margin-top: 34px; }
  .workflowCard { min-height: 250px; }
  .workflowIcon { margin-top: 22px; }
  .appIntro { gap: 20px; }
  .screenRail { width: 100%; grid-template-columns: repeat(4, 274px); margin-top: 38px; padding-left: 14px; padding-right: 14px; }
  .screenPhone { height: 490px; }
  .screenCard:nth-child(even) { transform: none; }
  .trainingSection { padding-top: 60px; }
  .trainingGrid { gap: 22px; }
  .trainingVisual { min-height: 515px; }
  .trainingVisual::before { width: 350px; height: 350px; left: 50%; transform: translateX(-50%); }
  .trainingPhone { width: 238px; left: 50%; transform: translateX(-58%) rotate(-3deg); }
  .progressBadge { right: 0; bottom: 54px; width: 155px; padding: 17px; }
  .trainingCopy h2 { font-size: 42px; }
  .trainingCopy > p { font-size: 15px; }
  .trainingCopy .telegramButton { width: 100%; }
  .scheduleGrid { gap: 32px; }
  .weekCard { padding: 22px 16px; }
  .weekBars { gap: 6px; height: 190px; }
  .weekTop strong { font-size: 27px; }
  .payGrid { grid-template-columns: 1fr; }
  .payPanel { min-height: 260px; }
  .payText { grid-column: auto; order: -1; padding: 0 0 18px; text-align: left; }
  .payText h2 { font-size: 39px; }
  .fitGrid h3 { margin-top: 46px; }
  .startSection { padding-top: 0; }
  .startPanel { width: 100%; padding: 42px 20px; border-radius: 0; }
  .startSteps { grid-template-columns: 1fr; gap: 9px; }
  .startSteps li > span { margin-bottom: 22px; }
  .startPanel > .telegramButton { width: 100%; }
  .faqGrid { gap: 34px; }
  .faqHeading .telegramButton { width: 100%; }
  .faqList summary { padding: 19px 18px; font-size: 15px; }
  .faqList details > p { margin-left: 18px; margin-right: 18px; }
  .finalCta { padding: 66px 0; }
  .finalCtaInner { align-items: stretch; flex-direction: column; }
  .finalCta .telegramButton { width: 100%; }
  .footerTop, .footerBottom { align-items: flex-start; flex-direction: column; }
  .footerTop > a:last-child { margin-left: 0; }
  .footerBottom div { flex-direction: column; gap: 10px; }
  .mobileSticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  .mobileSticky .telegramButton { width: 100%; min-height: 52px; padding: 12px 18px; }
  body { padding-bottom: 74px; }
  .sectionNext { display: grid; bottom: max(88px, calc(env(safe-area-inset-bottom) + 78px)); }

  .mobileAccordionReady {
    scroll-margin-top: 76px;
    padding: 0;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .mobileAccordionReady:last-of-type { border-bottom: 1px solid var(--line); }
  .mobileSectionToggle {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobileSectionTitle { display: flex; align-items: center; gap: 13px; min-width: 0; }
  .mobileSectionTitle small {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--red);
    background: var(--pink);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .04em;
  }
  .mobileSectionTitle b { font-size: 17px; line-height: 1.25; }
  .mobileSectionArrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform .2s ease, background .2s ease;
  }
  .mobileAccordionReady[data-mobile-expanded="true"] > .mobileSectionToggle {
    background: #fff8fa;
  }
  .mobileAccordionReady[data-mobile-expanded="true"] .mobileSectionArrow {
    transform: rotate(180deg);
    background: #b9002b;
  }
  .mobileSectionBody { display: block; overflow: hidden; }
  .mobileSectionBody[hidden] { display: none !important; }
  .mobileAccordionReady > .mobileSectionBody { padding-top: 18px; }
  .factsSection > .mobileSectionBody { padding: 24px 0 46px; }
  .introSection > .mobileSectionBody,
  .appSection > .mobileSectionBody,
  .scheduleSection > .mobileSectionBody,
  .paySection > .mobileSectionBody,
  .fitSection > .mobileSectionBody,
  .faqSection > .mobileSectionBody { padding-bottom: 58px; }
  .trainingSection > .mobileSectionBody { padding: 28px 0 58px; background: #17181e; }
  .trainingSection > .mobileSectionToggle {
    color: #fff;
    background: #17181e;
  }
  .trainingSection[data-mobile-expanded="true"] > .mobileSectionToggle { background: #202127; }
  .trainingSection .mobileSectionTitle small { color: #fff; background: rgba(255,255,255,.12); }
  .startSection > .mobileSectionBody { padding-top: 0; }
}

html[data-theme="dark"] {
  --ink: #f5f6fa;
  --muted: #aab0bd;
  --line: #30333b;
  --soft: #17191f;
  --pink: #32151e;
  --white: #111318;
  --shadow: 0 24px 70px rgba(0,0,0,.4);
  color-scheme: dark;
}
html[data-theme="dark"] body,
html[data-theme="dark"] .siteHeader,
html[data-theme="dark"] .themeToggle,
html[data-theme="dark"] .headerCta,
html[data-theme="dark"] .workflowCard,
html[data-theme="dark"] .screenCard figcaption,
html[data-theme="dark"] .weekCard,
html[data-theme="dark"] .faqList details,
html[data-theme="dark"] .fitGrid article { background: #111318; }
html[data-theme="dark"] .siteHeader { border-color: #2c2f36; }
html[data-theme="dark"] .hero {
  background: radial-gradient(circle at 10% 5%, rgba(220,0,50,.17), transparent 30%), linear-gradient(180deg,#111318 0%,#15171c 100%);
}
html[data-theme="dark"] .factsSection,
html[data-theme="dark"] .introSection,
html[data-theme="dark"] .appSection,
html[data-theme="dark"] .scheduleSection,
html[data-theme="dark"] .paySection,
html[data-theme="dark"] .fitSection,
html[data-theme="dark"] .faqSection { background-color: #111318; }
html[data-theme="dark"] .factCard,
html[data-theme="dark"] .workflowCard,
html[data-theme="dark"] .weekCard,
html[data-theme="dark"] .fitGrid article,
html[data-theme="dark"] .faqList details { border-color: #30333b; }
html[data-theme="dark"] .factCard:not(.factPrimary),
html[data-theme="dark"] .workflowCard:not(.workflowAccent),
html[data-theme="dark"] .weekCard,
html[data-theme="dark"] .fitGrid article,
html[data-theme="dark"] .faqList details { background: #191b21; }
html[data-theme="dark"] .workflowAccent { background: #2b1018; }
html[data-theme="dark"] .screenPhone { background: #08090b; border-color: #343741; }
html[data-theme="dark"] .eyebrow { background: #2b141b; border-color: #5f2836; color: #ffb4c3; }
html[data-theme="dark"] .heroPills span,
html[data-theme="dark"] .onlineTag { background: #202229; border-color: #353842; }
html[data-theme="dark"] .mobileSticky { background: rgba(17,19,24,.94); }
html[data-theme="dark"] .footerTop,
html[data-theme="dark"] .footerBottom { border-color: rgba(255,255,255,.12); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
