/* index.html */
body.page-home {
    --page: #E9EAEC;
    --card: #FFFFFF;
    --dark: #131514;
    --dark-2: #1C1F1E;
    --ink: #131514;
    --gray: #82898A;
    --gray-dark: #9AA09D;
    --teal: #4DD9AC;
    --teal-deep: #17A87B;
    --soft: #F3F5F4;
    --line: #E7EAE9;
    --line-dark: rgba(255,255,255,0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body.page-home {
    font-family: 'Inter', sans-serif;
    background: var(--page);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    padding: 12px;
  }
  .page-home .wrap { max-width: 1200px; margin: 0 auto 20px; }

  .page-home /* секции без белой подложки — прямо на сером фоне */
  .naked { padding: 44px 12px 36px; }
  .page-home .naked .sec-title { margin-bottom: 44px; }

  .page-home /* ═══ МЕНЮ ═══ */
  .nav {
    position: sticky; top: 12px; z-index: 100;
    max-width: 1200px; margin: 0 auto 12px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 100px;
    padding: 10px 12px 10px 24px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 8px 32px rgba(19,21,20,0.06);
  }
  .page-home .nav .logo { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
  .page-home .nav .logo a { color: var(--ink); text-decoration: none; }
  .page-home .nav .logo span { color: var(--ink); }
  .page-home .nav-links { display: flex; gap: 4px; align-items: center; }
  .page-home .nav-links a {
    font-size: 13.5px; font-weight: 500;
    color: var(--ink); text-decoration: none;
    padding: 9px 14px; border-radius: 100px;
    transition: background .15s;
  }
  .page-home .nav-links a:hover { background: rgba(19,21,20,0.05); }
  .page-home .nav-links a.cta {
    background: var(--dark); color: #fff;
    margin-left: 8px;
  }
  .page-home .nav-links a.cta:hover { background: #2A2E2C; }
  .page-home .menu-toggle {
    display: none;
    width: 48px; height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
    padding: 4px 0;
  }
  .page-home .menu-toggle span {
    width: 32px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .18s, opacity .18s;
  }
  .page-home .nav.is-open .menu-toggle span:first-child { transform: translateY(9px) rotate(45deg); }
  .page-home .nav.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .page-home .nav.is-open .menu-toggle span:last-child { transform: translateY(-9px) rotate(-45deg); }

  .page-home /* ═══ ТИПОГРАФИКА СЕКЦИЙ ═══ */
  .card {
    background: var(--card);
    border-radius: 36px;
    padding: 56px;
    position: relative;
    overflow: hidden;
  }
  .page-home .sec-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 40px;
    max-width: 22ch;
  }
  .page-home .sec-title .accent { color: inherit; }

  .page-home /* ═══ HERO (тёмный) ═══ */
  .hero {
    background: var(--dark);
    border-radius: 36px;
    padding: 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .page-home .hero::after {
    content: '';
    position: absolute;
    bottom: -220px; right: -160px;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(77,217,172,0.16) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-home .hero h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 15ch;
    margin-bottom: 40px;
    position: relative; z-index: 1;
  }
  .page-home .hero h1 .accent { color: var(--teal); }
  .page-home .stage {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: end;
    position: relative; z-index: 1;
  }
  .page-home .photo-zone {
    position: relative;
    background: #c9c0b5;
    border-radius: 24px;
    height: 460px;
    overflow: hidden;
  }
  .page-home .photo-zone img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: 50% 100%;
    display: block;
  }
  .page-home .sticker {
    position: absolute;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 9px 16px;
    font-size: 13px; font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    --sticker-rotate: 0deg;
    animation: stickerFloat 7s ease-in-out infinite;
    transform: translate3d(0, 0, 0) rotate(var(--sticker-rotate));
  }
  .page-home .sticker.s1 { top: 44px; left: 24px; --sticker-rotate: -4deg; }
  .page-home .sticker.s2 { top: 44px; right: 24px; --sticker-rotate: 3deg; animation-delay: -2.2s; }
  .page-home .sticker.s3 { bottom: 40px; left: 36px; --sticker-rotate: -2deg; animation-delay: -4.4s; }
  @keyframes stickerFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--sticker-rotate)); }
    50% { transform: translate3d(0, -5px, 0) rotate(var(--sticker-rotate)); }
  }
  @media (prefers-reduced-motion: reduce) {
    .page-home .sticker { animation: none; }
  }

  .page-home .side { display: flex; flex-direction: column; gap: 26px; padding-bottom: 6px; }
  .page-home .side p { font-size: 15px; line-height: 1.65; color: var(--gray-dark); }
  .page-home .side p b { color: #fff; font-weight: 500; }
  .page-home .btn {
    display: block; text-align: center;
    background: var(--teal);
    color: var(--dark);
    font-size: 16px; font-weight: 600;
    padding: 18px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
  }
  .page-home .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(77,217,172,0.3); }
  .page-home .btn-ghost {
    display: block; text-align: center;
    color: #fff;
    border: 1px solid var(--line-dark);
    font-size: 15px; font-weight: 500;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .15s;
    margin-top: -12px;
  }
  .page-home .btn-ghost:hover { background: rgba(255,255,255,0.06); }
  .page-home .hero .stats {
    display: flex; gap: 24px;
    border-top: 1px solid var(--line-dark);
    padding-top: 22px;
  }
  .page-home .hero .stats div { font-size: 12.5px; color: var(--gray-dark); line-height: 1.5; }
  .page-home .hero .stats strong {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px; font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .page-home /* ═══ ОБО МНЕ ═══ */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
  }
  .page-home .about-text p {
    font-size: 16px; line-height: 1.75;
    color: #4A5350;
    margin-bottom: 18px;
  }
  .page-home .about-text p b { color: var(--ink); font-weight: 600; }
  .page-home .edu { display: flex; flex-direction: column; gap: 8px; }
  .page-home .edu-item {
    background: var(--soft);
    border-radius: 14px;
    padding: 14px 18px;
    transition: transform .15s, box-shadow .15s;
  }
  .page-home .edu-item:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(19,21,20,0.08); }
  .page-home .edu-item b { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
  .page-home .edu-item span { display: block; font-size: 13px; color: var(--gray); line-height: 1.35; }
  .page-home .edu-note {
    margin: 4px 2px 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--gray);
  }

  .page-home /* ═══ С ЧЕМ ПОМОГАЮ ═══ */
  .help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .page-home .help-card {
    background: var(--card);
    border-radius: 22px;
    padding: 28px;
    transition: transform .15s, box-shadow .15s;
  }
  .page-home .help-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(19,21,20,0.08); }
  .page-home .help-card .ico {
    width: 52px; height: 52px;
    background: transparent;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .page-home .help-card b {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .page-home .help-card p { font-size: 14px; line-height: 1.6; color: var(--gray); }

  .page-home /* ═══ КАК ПРОХОДИТ ═══ */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .page-home .step {
    background: var(--soft);
    border-radius: 22px;
    padding: 28px;
    position: relative;
  }
  .page-home .step .num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 22px;
  }
  .page-home .step b { display: block; font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
  .page-home .step p { font-size: 13.5px; line-height: 1.6; color: var(--gray); }

  .page-home /* ═══ СТОИМОСТЬ (тёмный контейнер) ═══ */
  .price-dark {
    background: var(--dark);
    border-radius: 36px;
    padding: 48px 44px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .page-home .price-dark .sec-title { color: #fff; position: relative; z-index: 1; display: inline-block; }
  .page-home .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .page-home .price-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 26px 26px;
    color: var(--ink);
    display: flex; flex-direction: column;
  }
  .page-home .price-card-soon {
    position: relative;
    padding-bottom: 96px;
  }
  .page-home .price-card h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .page-home .price-card .desc {
    font-size: 12.5px; line-height: 1.55;
    color: var(--gray);
    margin-bottom: 22px;
  }
  .page-home .price-card ul { list-style: none; margin-bottom: 24px; }
  .page-home .price-card li {
    font-size: 13.5px; line-height: 1.5;
    color: var(--ink);
    padding: 6px 0 6px 30px;
    position: relative;
  }
  .page-home .price-card li::before {
    content: '✓';
    position: absolute; left: 0; top: 7px;
    width: 19px; height: 19px;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
  }
  .page-home .price-strip {
    background: var(--soft);
    border-radius: 14px;
    padding: 13px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    font-size: 12.5px; color: var(--ink);
    margin-top: auto;
    margin-bottom: 18px;
  }
  .page-home .price-strip .note { color: var(--gray); }
  .page-home .price-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .page-home .price-row-soon {
    position: absolute;
    right: 26px;
    bottom: 26px;
    justify-content: flex-end;
  }
  .page-home .big-price {
    font-family: 'Inter Tight', sans-serif;
    font-size: 29px; font-weight: 600;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .page-home .big-price .old {
    font-size: 14px; font-weight: 500;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 6px;
    letter-spacing: 0;
  }
  .page-home .price-btn {
    display: inline-block; text-align: center;
    background: var(--dark);
    color: #fff;
    font-size: 13.5px; font-weight: 500;
    padding: 14px 22px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s;
  }
  .page-home .price-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
  .page-home .price-btn.is-disabled {
    background: #E6E8E7;
    color: var(--gray);
    cursor: default;
    pointer-events: none;
  }
  .page-home .price-btn.is-disabled:hover {
    transform: none;
    box-shadow: none;
  }

  .page-home /* ═══ FAQ-АККОРДЕОН ═══ */
  .faq details {
    border-bottom: 1px solid rgba(19,21,20,0.34);
  }
  .page-home .faq details:first-of-type {
    border-top: 1px solid rgba(19,21,20,0.34);
  }
  .page-home .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
    padding: 34px 0;
    font-size: 20px; font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.005em;
  }
  .page-home .faq summary::-webkit-details-marker { display: none; }
  .page-home .faq summary .plus {
    position: relative;
    flex-shrink: 0;
    width: 32px; height: 32px;
    font-size: 0;
    line-height: 0;
    transition: transform .25s;
  }
  .page-home .faq summary .plus::before,
  .page-home .faq summary .plus::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 24px; height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transform: translate(-50%, -50%);
  }
  .page-home .faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .page-home .faq details[open] summary .plus { transform: rotate(45deg); }
  .page-home .faq .answer {
    padding: 0 64px 34px 0;
    max-width: 68ch;
  }
  .page-home .faq .answer p {
    font-size: 16px; line-height: 1.72;
    color: #4A5350;
    margin-bottom: 12px;
  }
  .page-home .faq .answer p:last-child { margin-bottom: 0; }
  .page-home .faq .answer ul {
    margin: 0 0 14px 18px;
    color: #4A5350;
  }
  .page-home .faq .answer li {
    font-size: 16px;
    line-height: 1.65;
    padding-left: 4px;
  }

  .page-home /* ═══ ПУБЛИКАЦИИ ═══ */
  .pubs { display: flex; flex-direction: column; }
  .page-home .pub {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    padding: 24px 8px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: padding .15s;
  }
  .page-home .pub:last-child { border-bottom: none; }
  .page-home .pub:hover { padding-left: 16px; }
  .page-home .pub b {
    font-family: 'Inter Tight', sans-serif;
    font-size: 19px; font-weight: 600;
    letter-spacing: -0.01em;
  }
  .page-home .pub span {
    display: block;
    font-size: 13.5px;
    color: var(--gray);
    margin-top: 4px;
  }
  .page-home .pub .pub-source {
    color: var(--teal-deep);
    margin-top: 10px;
  }
  .page-home .pub .arrow {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    color: var(--ink);
    transition: background .15s, border-color .15s;
  }
  .page-home .pub:hover .arrow { background: var(--teal); border-color: var(--teal); color: var(--dark); }

  .page-home /* ═══ КОНТАКТЫ (тёмный) ═══ */
  .contacts {
    background: var(--dark);
    border-radius: 36px;
    padding: 64px 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .page-home .contacts::after {
    content: '';
    position: absolute;
    top: -260px; left: 50%; transform: translateX(-50%);
    width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(77,217,172,0.14) 0%, transparent 62%);
    pointer-events: none;
  }
  .page-home .contacts h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 18ch;
    margin: 0 auto 20px;
    position: relative; z-index: 1;
  }
  .page-home .contacts h2 .accent { color: var(--teal); }
  .page-home .contacts > p {
    font-size: 16px; line-height: 1.6;
    color: var(--gray-dark);
    max-width: 52ch;
    margin: 0 auto 12px;
    position: relative; z-index: 1;
  }
  .page-home .contacts > p:last-of-type { margin-bottom: 36px; }
  .page-home .contact-row {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 1;
    margin-bottom: 44px;
  }
  .page-home .contact-row .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 18px 36px;
  }
  .page-home .contact-chip {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff;
    border: 1px solid var(--line-dark);
    font-size: 15px; font-weight: 500;
    padding: 17px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .15s;
  }
  .page-home .messenger-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
    object-fit: contain;
  }
  .page-home .contact-chip:hover { background: rgba(255,255,255,0.07); }

  .page-home /* ═══ ФУТЕР ═══ */
  footer {
    max-width: 1200px; margin: 0 auto;
    padding: 28px 24px 16px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--gray);
    line-height: 1.6;
  }
  .page-home footer a { color: var(--gray); }
  .page-home footer a:hover { color: var(--ink); }
  .page-home .footer-left,
  .page-course .footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .page-home .footer-legal,
  .page-course .footer-legal {
    max-width: 420px;
    margin-left: auto;
    text-align: right;
  }
  .page-home .footer-socials,
  .page-course .footer-socials {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .page-home .footer-socials a,
  .page-course .footer-socials a {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: transparent;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .15s, opacity .15s;
  }
  .page-home .footer-socials a:hover,
  .page-course .footer-socials a:hover {
    transform: translateY(-1px);
    opacity: .78;
  }
  .page-home .footer-socials svg,
  .page-course .footer-socials svg,
  .page-home .footer-socials img,
  .page-course .footer-socials img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
    fill: currentColor;
    opacity: .78;
  }
  .page-home .footer-socials img,
  .page-course .footer-socials img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(6%) saturate(309%) hue-rotate(131deg) brightness(92%) contrast(87%);
    transition: filter .15s, opacity .15s;
  }
  .page-home .footer-socials a:hover img,
  .page-course .footer-socials a:hover img {
    filter: brightness(0) saturate(100%);
    opacity: .9;
  }
  .page-home .legal-note,
  .page-course .legal-note {
    display: block;
    margin-top: 10px;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.45;
  }

  .legal-page .nav {
    margin-bottom: 20px;
  }
  .legal-doc {
    background: var(--card);
    border-radius: 36px;
    padding: clamp(28px, 5vw, 56px);
    max-width: 980px;
  }
  .legal-doc h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 11ch;
    margin-bottom: 16px;
  }
  .legal-doc h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .legal-doc h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 18px 0 8px;
  }
  .legal-doc p {
    color: #4A5350;
    font-size: 15px;
    line-height: 1.72;
    max-width: 78ch;
    margin-bottom: 10px;
  }
  .legal-doc a {
    color: var(--ink);
  }
  .legal-doc ul {
    color: #4A5350;
    font-size: 15px;
    line-height: 1.72;
    padding-left: 22px;
    margin: 8px 0 14px;
  }
  .legal-doc li {
    margin-bottom: 6px;
  }
  .legal-doc section {
    padding: 24px 0;
    border-top: 1px solid var(--line);
  }
  .legal-doc section:first-of-type {
    margin-top: 28px;
  }
  .legal-kicker {
    color: var(--teal-deep) !important;
    font-weight: 600;
    margin-bottom: 12px !important;
  }
  .legal-updated {
    color: var(--gray) !important;
    margin-bottom: 10px !important;
  }
  .legal-requisites {
    background: var(--soft);
    border-radius: 20px;
    padding: 18px 20px;
    margin: 22px 0 8px;
  }
  .legal-requisites p {
    margin-bottom: 4px;
  }

  .success-page {
    min-height: 100vh;
  }
  .success-page .nav {
    margin-bottom: 20px;
  }
  .success-hero {
    min-height: min(560px, calc(100vh - 190px));
    background: var(--dark);
    color: #fff;
    border-radius: 36px;
    padding: clamp(30px, 5vw, 58px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .success-hero::after {
    content: '';
    position: absolute;
    right: -220px;
    top: -240px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(77,217,172,0.2) 0%, transparent 68%);
    pointer-events: none;
  }
  .success-copy {
    position: relative;
    z-index: 1;
  }
  .success-emoji {
    position: absolute;
    top: clamp(26px, 4vw, 54px);
    right: clamp(30px, 8vw, 120px);
    z-index: 1;
    width: clamp(72px, 10vw, 140px);
    height: clamp(72px, 10vw, 140px);
    object-fit: contain;
    display: block;
    transform: rotate(10deg);
    animation: successEmojiFloat 7s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes successEmojiFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(10deg); }
    50% { transform: translate3d(0, -7px, 0) rotate(8deg); }
  }
  .success-copy .success-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    color: #4DD9AC;
    font-size: 13px;
    font-weight: 500;
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
  @media (prefers-reduced-motion: reduce) {
    .success-emoji { animation: none; }
  }
  .success-copy h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(42px, 7vw, 88px);
    line-height: .96;
    letter-spacing: -0.05em;
    font-weight: 600;
    max-width: 9ch;
    margin-bottom: 24px;
  }
  .success-copy p {
    color: var(--gray-dark);
    font-size: 17px;
    line-height: 1.7;
    max-width: 54ch;
    margin-bottom: 34px;
  }
  .success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .success-page .success-actions .btn,
  .success-page .success-actions .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    min-height: 58px;
    margin-top: 0;
    padding: 0 28px;
    line-height: 1.2;
    text-align: center;
  }
  .success-page .messenger-icon {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
    flex: 0 0 auto;
  }
  .legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
  }
  .legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: #fff;
  }
  .legal-table th,
  .legal-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    color: #4A5350;
    font-size: 13.5px;
    line-height: 1.5;
  }
  .legal-table th {
    color: var(--ink);
    font-weight: 600;
    background: var(--soft);
  }
  .legal-table tr:last-child td {
    border-bottom: 0;
  }

  .cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1200;
    width: min(720px, calc(100vw - 28px));
    display: none;
    align-items: center;
    gap: 16px;
    padding: 14px 14px 14px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 18px 54px rgba(19,21,20,0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(-50%);
  }
  .cookie-banner.is-visible {
    display: flex;
  }
  .cookie-banner p {
    flex: 1;
    color: #4A5350;
    font-size: 13px;
    line-height: 1.5;
  }
  .cookie-banner a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cookie-banner button {
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    padding: 11px 18px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s, background .15s;
  }
  .cookie-banner button:hover {
    transform: translateY(-1px);
    background: #2A2E2C;
  }

  @media (max-width: 640px) {
    .cookie-banner {
      left: 12px;
      right: 12px;
      bottom: 12px;
      width: auto;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 16px;
      border-radius: 20px;
      transform: none;
    }
    .cookie-banner p {
      font-size: 12.5px;
      line-height: 1.45;
    }
    .cookie-banner button {
      width: 100%;
      padding: 12px 18px;
    }
  }

  .page-404 .not-found {
    background: var(--card);
    border-radius: 36px;
    padding: clamp(34px, 6vw, 72px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-404 .not-found h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 9ch;
    margin-bottom: 20px;
  }
  .page-404 .not-found p:not(.legal-kicker) {
    color: #4A5350;
    font-size: 17px;
    line-height: 1.65;
    max-width: 58ch;
  }
  .page-404 .not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  /* ═══ МОБИЛЬНАЯ ВЕРСИЯ ═══ */
  @media (max-width: 960px) {
    .page-home .nav {
      border-radius: 24px;
      padding: 10px 10px 10px 18px;
      flex-wrap: wrap;
    }
    .page-home .menu-toggle { display: inline-flex; }
    .page-home .nav-links {
      display: none;
      flex-basis: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 2px;
      padding-top: 10px;
      margin-top: 10px;
      border-top: 1px solid rgba(19,21,20,0.08);
    }
    .page-home .nav.is-open .nav-links { display: flex; }
    .page-home .nav-links a,
    .page-home .nav-links a:not(.cta) {
      display: block;
      padding: 12px 14px;
      text-align: left;
    }
    .page-home .nav-links a.cta {
      margin-left: 0;
      text-align: center;
      margin-top: 4px;
    }
    .page-home .card, .page-home .hero { padding: 28px 22px; border-radius: 28px; }
    .page-home .naked { padding: 24px 8px 16px; }
    .page-home .wrap { margin-bottom: 16px; }
    .page-home .contacts { padding: 44px 24px; }
    .page-home .stage, .page-home .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-home .help-grid, .page-home .steps, .page-home .price-grid { grid-template-columns: 1fr; }
    .page-home .price-dark { padding: 32px 22px 26px; border-radius: 28px; }
    .page-home .price-dark .sec-title { display: block; margin-bottom: 18px; }
    .page-home .photo-zone { height: 420px; }
    .page-home .photo-zone img { object-fit: contain; object-position: 50% 100%; }
    .page-home .sticker { font-size: 12px; padding: 8px 13px; }
    .page-home .sticker.s1 { left: 12px; top: 28px; }
    .page-home .sticker.s2 { top: auto; bottom: 96px; right: 12px; }
    .page-home .sticker.s3 { left: 14px; bottom: 24px; }
    .page-home .pub b { font-size: 16px; }
    .page-home .faq summary {
      gap: 18px;
      padding: 26px 0;
      font-size: 18px;
    }
    .page-home .faq summary .plus { width: 28px; height: 28px; }
    .page-home .faq summary .plus::before,
    .page-home .faq summary .plus::after { width: 20px; height: 1.5px; }
    .page-home .faq .answer { padding: 0 42px 28px 0; }
    .page-home .faq .answer p { font-size: 15px; }
    .page-home footer {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      text-align: left;
    }
    .page-home footer > div {
      max-width: 100% !important;
      margin-left: 0 !important;
      text-align: left !important;
    }
    .success-hero {
      min-height: 0;
      padding: 30px 22px;
      border-radius: 28px;
    }
    .success-copy h1 {
      font-size: clamp(40px, 13vw, 58px);
      max-width: 10ch;
    }
    .success-copy p {
      font-size: 15px;
      margin-bottom: 24px;
    }
    .success-actions {
      flex-direction: column;
    }
    .success-actions .btn,
    .success-actions .btn-ghost {
      text-align: center;
      width: 100%;
    }
  }

/* kurs-terskaya.html */
body.page-course {
    --page: #E9EAEC;
    --card: #FFFFFF;
    --dark: #131514;
    --dark-2: #1F2321;
    --ink: #131514;
    --gray: #82898A;
    --gray-dark: #9AA09D;
    --teal: #4DD9AC;
    --teal-deep: #17A87B;
    --soft: #F3F5F4;
    --line: #E7EAE9;
    --line-dark: rgba(255,255,255,0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body.page-course {
    font-family: 'Inter', sans-serif;
    background: var(--page);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    padding: 12px;
  }
  .page-course .wrap { max-width: 1200px; margin: 0 auto 20px; }
  .page-course .naked { padding: 44px 12px 36px; }
  .page-course .naked .sec-title { margin-bottom: 44px; }

  .page-course /* ═══ МЕНЮ ═══ */
  .nav {
    position: sticky; top: 12px; z-index: 100;
    max-width: 1200px; margin: 0 auto 12px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 100px;
    padding: 10px 12px 10px 24px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 8px 32px rgba(19,21,20,0.06);
  }
  .page-course .nav .logo { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
  .page-course .nav .logo a { color: var(--ink); text-decoration: none; }
  .page-course .nav .logo span { color: var(--ink); }
  .page-course .nav-links { display: flex; gap: 4px; align-items: center; }
  .page-course .nav-links a {
    font-size: 13.5px; font-weight: 500;
    color: var(--ink); text-decoration: none;
    padding: 9px 14px; border-radius: 100px;
    transition: background .15s;
  }
  .page-course .nav-links a:hover { background: rgba(19,21,20,0.05); }
  .page-course .nav-links a.cta { background: var(--dark); color: #fff; margin-left: 8px; }
  .page-course .nav-links a.cta:hover { background: #2A2E2C; }
  .page-course .menu-toggle {
    display: none;
    width: 48px; height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
    padding: 4px 0;
  }
  .page-course .menu-toggle span {
    width: 32px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .18s, opacity .18s;
  }
  .page-course .nav.is-open .menu-toggle span:first-child { transform: translateY(9px) rotate(45deg); }
  .page-course .nav.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .page-course .nav.is-open .menu-toggle span:last-child { transform: translateY(-9px) rotate(-45deg); }

  .page-course .card {
    background: var(--card);
    border-radius: 36px;
    padding: 56px;
    position: relative;
    overflow: hidden;
  }
  .page-course .sec-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 40px;
    max-width: 24ch;
  }
  .page-course .sec-title .accent { color: inherit; }

  .page-course /* ═══ ОБЛОЖКА КУРСА (тёмная) ═══ */
  .hero {
    background: var(--dark);
    border-radius: 36px;
    padding: 52px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .page-course .hero::after {
    content: '';
    position: absolute;
    bottom: -240px; left: -140px;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(77,217,172,0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-course .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    position: relative; z-index: 1;
  }
  .page-course .hero .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    color: var(--teal);
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    padding: 8px 16px; border-radius: 100px;
    margin-bottom: 26px;
  }
  .page-course .hero h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
  }
  .page-course .hero h1 .accent { color: var(--teal); }
  .page-course .hero .lead {
    font-size: 16px; line-height: 1.7;
    color: var(--gray-dark);
    max-width: 52ch;
    margin-bottom: 34px;
  }
  .page-course .hero .lead b { color: #fff; font-weight: 500; }
  .page-course .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .page-course .btn {
    display: inline-block; text-align: center;
    background: var(--teal);
    color: var(--dark);
    font-size: 16px; font-weight: 600;
    padding: 18px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
  }
  .page-course .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(77,217,172,0.3); }
  .page-course .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff;
    border: 1px solid var(--line-dark);
    font-size: 15px; font-weight: 500;
    padding: 17px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .15s;
  }
  .page-course .btn-video::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid currentColor;
    flex: 0 0 auto;
  }
  .page-course .btn-ghost:hover { background: rgba(255,255,255,0.06); }

  .page-course .hero-side {
    display: grid;
    gap: 14px;
  }
  .page-course .course-cover {
    margin: 0;
    overflow: hidden;
    background: var(--dark-2);
    position: relative;
  }
  .page-course .course-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .page-course .hero-cover {
    aspect-ratio: 1.16 / 1;
    border-radius: 24px;
    border: 1px solid var(--line-dark);
    box-shadow: 0 24px 70px rgba(0,0,0,0.26);
  }
  .page-course .cover-bullets {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .page-course .cover-bullet {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 34px);
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
    white-space: nowrap;
    --sticker-rotate: 0deg;
    animation: stickerFloat 7s ease-in-out infinite;
    transform: translate3d(0, 0, 0) rotate(var(--sticker-rotate));
  }
  .page-course .cover-bullet.cb1 { top: 28px; left: 24px; --sticker-rotate: -3deg; }
  .page-course .cover-bullet.cb2 { top: 28%; right: 18px; --sticker-rotate: 3deg; animation-delay: -1.8s; }
  .page-course .cover-bullet.cb3 { bottom: 28px; left: 28px; --sticker-rotate: 2deg; animation-delay: -3.5s; }
  .page-course .cover-bullet.cb4 { bottom: 22%; right: 34px; --sticker-rotate: -2deg; animation-delay: -5.1s; }
  @media (prefers-reduced-motion: reduce) {
    .page-course .cover-bullet { animation: none; }
  }

  .page-course /* ═══ ЭТОТ КУРС ДЛЯ ВАС ═══ */
  .for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .page-course .for-card {
    background: var(--card);
    border-radius: 34px;
    padding: 42px 38px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .page-course .for-card h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    max-width: 13ch;
  }
  .page-course .for-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray);
    max-width: 30ch;
    margin-top: 28px;
  }

  .page-course /* ═══ КАК УСТРОЕН КУРС ═══ */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .page-course .how-card {
    background: var(--soft);
    border-radius: 22px;
    padding: 28px;
  }
  .page-course .how-card .ico {
    width: 52px; height: 52px;
    background: transparent;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .page-course .how-card b { display: block; font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
  .page-course .how-card p { font-size: 13.5px; line-height: 1.6; color: var(--gray); }

  .page-course /* ═══ ЦИТАТА АВТОРА ═══ */
  .author-quote {
    background: var(--card);
    border-radius: 32px;
    padding: 34px;
    position: relative;
  }
  .page-course .author-quote::after {
    content: none;
  }
  .page-course .author-quote-grid {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
  }
  .page-course .author-message {
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 22px;
    align-items: start;
    background: var(--soft);
    border-radius: 26px;
    padding: 34px;
  }
  .page-course .quote-mark {
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 0.8;
    font-weight: 700;
    color: var(--ink);
    margin-top: -8px;
  }
  .page-course .author-message blockquote {
    position: relative;
    z-index: 1;
    grid-column: 2;
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: -0.02em;
    color: #9CA3A1;
    margin: 0;
  }
  .page-course .author-message blockquote strong {
    color: var(--ink);
    font-weight: 700;
  }
  .page-course .author-message blockquote p + p {
    margin-top: 18px;
  }
  .page-course .author-photo-card {
    align-self: stretch;
    background: var(--soft);
    border-radius: 26px;
    padding: 22px;
    display: grid;
    grid-template-rows: auto auto;
    gap: 18px;
    width: 100%;
    max-width: none;
  }
  .page-course .author-photo-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    object-fit: cover;
    object-position: 50% 28%;
    background: var(--card);
  }
  .page-course .author-photo-card b {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  .page-course .author-photo-card span {
    display: block;
    margin-top: 5px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.25;
  }

  .page-course /* ═══ СПИКЕРЫ ═══ */
  .speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .page-course .speaker-card {
    background: var(--card);
    border-radius: 30px;
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    min-width: 0;
  }
  .page-course .speaker-photo {
    width: 100%;
    aspect-ratio: 0.92 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--soft);
  }
  .page-course .speaker-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
  }
  .page-course .speaker-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--teal);
    font-family: 'Inter Tight', sans-serif;
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  .page-course .speaker-info { padding: 6px 10px 8px 0; align-self: center; }
  .page-course .speaker-info h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 12px;
  }
  .page-course .speaker-info p {
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--gray);
    max-width: 36ch;
  }
  .page-course .speaker-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s, background .15s;
  }
  .page-course .speaker-link:hover {
    transform: translateY(-2px);
    background: var(--teal);
    color: var(--dark);
  }

  .page-course /* ═══ ВИДЕО ═══ */
  .video-dark {
    background: var(--dark);
    border-radius: 36px;
    padding: 48px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .page-course .video-dark .sec-title { color: #fff; }
  .page-course .video-dark .sub {
    font-size: 15px; color: var(--gray-dark);
    margin: -28px 0 32px;
    max-width: 56ch;
    line-height: 1.6;
  }
  .page-course .player {
    position: relative;
    aspect-ratio: 16 / 9;
    background:
      radial-gradient(circle at 30% 20%, rgba(77,217,172,0.18), transparent 55%),
      var(--dark-2);
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .page-course .player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .page-course .play-btn {
    width: 88px; height: 88px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    position: relative; z-index: 1;
  }
  .page-course .play-btn:hover { transform: scale(1.06); box-shadow: 0 16px 44px rgba(77,217,172,0.4); }
  .page-course .play-btn::after {
    content: '';
    width: 0; height: 0;
    border-left: 24px solid var(--dark);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 6px;
  }
  .page-course .player .hint {
    position: absolute; bottom: 24px; left: 0; right: 0;
    text-align: center;
    font-size: 13px; color: var(--gray-dark);
  }

  .page-course /* ═══ ПУТЬ КУРСА ═══ */
  .course-roadmap {
    overflow: hidden;
  }
  .page-course .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    min-height: 520px;
    margin-top: 12px;
  }
  .page-course .timeline-step {
    position: relative;
    min-height: 520px;
    padding: 0 10px;
  }
  .page-course .timeline-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #B8BEC4;
    margin: 0 0 12px 8px;
  }
  .page-course .timeline-line {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 18px;
    width: 1px;
    background: #E5E8EB;
  }
  .page-course .timeline-card {
    position: relative;
    z-index: 1;
    margin-top: 56px;
    background: #F5F4F7;
    border-radius: 18px;
    padding: 20px 22px;
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(19,21,20,0.04);
  }
  .page-course .timeline-step:nth-child(2) .timeline-card { margin-top: 138px; }
  .page-course .timeline-step:nth-child(3) .timeline-card { margin-top: 232px; }
  .page-course .timeline-step:nth-child(4) .timeline-card { margin-top: 310px; }
  .page-course .timeline-step:nth-child(5) .timeline-card { margin-top: 190px; }
  .page-course .timeline-float-note {
    position: absolute;
    top: 176px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    color: var(--teal-deep);
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    border-radius: 100px;
    padding: 8px 15px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.15;
    white-space: nowrap;
    --sticker-rotate: -4deg;
    transform: translate3d(0, 0, 0) rotate(var(--sticker-rotate));
    animation: stickerFloat 7s ease-in-out infinite;
  }
  .page-course .timeline-float-note-chat {
    position: relative;
    top: auto;
    left: auto;
    width: fit-content;
    margin: 12px 0 0 22px;
    --sticker-rotate: 3deg;
    animation-delay: -2.4s;
  }
  .page-course .timeline-card h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .page-course .timeline-card ul {
    list-style: none;
  }
  .page-course .timeline-card li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #4A5350;
  }
  .page-course .timeline-card li + li { margin-top: 8px; }
  .page-course .timeline-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-deep);
  }
  @media (prefers-reduced-motion: reduce) {
    .page-course .timeline-float-note { animation: none; }
  }

  .page-course /* ═══ ПРОГРАММА ═══ */
  .program details {
    background: var(--soft);
    border-radius: 20px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .page-course .program summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; gap: 20px;
    padding: 24px 28px;
  }
  .page-course .program summary::-webkit-details-marker { display: none; }
  .page-course .program .m-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
    width: 58px;
    flex-shrink: 0;
  }
  .page-course .program .m-title { flex: 1; }
  .page-course .program .m-title b {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.01em;
  }
  .page-course .program .m-title span { font-size: 13px; color: var(--gray); }
  .page-course .program .plus {
    flex-shrink: 0;
    font-size: 24px; font-weight: 300;
    color: var(--ink);
    transition: transform .25s;
  }
  .page-course .program details[open] .plus { transform: rotate(45deg); }
  .page-course .program .m-body {
    padding: 4px 28px 26px 106px;
  }
  .page-course .program .m-body p {
    font-size: 14.5px; line-height: 1.7;
    color: #4A5350;
    margin-bottom: 14px;
    max-width: 64ch;
  }
  .page-course .program .lessons { list-style: none; }
  .page-course .program .lessons li {
    font-size: 14px; line-height: 1.5;
    color: var(--ink);
    padding: 8px 0 8px 26px;
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .page-course .program .lessons li:last-child { border-bottom: none; }
  .page-course .program .lessons li::before {
    content: '';
    position: absolute; left: 4px; top: 15px;
    width: 7px; height: 7px;
    background: var(--teal);
    border-radius: 50%;
  }

  .page-course /* ═══ УРОК С ПСИХИАТРОМ ═══ */
  .psychiatrist-lesson {
    background: var(--card);
  }
  .page-course .psychiatrist-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;
    align-items: stretch;
  }
  .page-course .psychiatrist-profile {
    background: var(--soft);
    border-radius: 26px;
    padding: 30px;
  }
  .page-course .psychiatrist-profile .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    color: var(--teal-deep);
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    padding: 8px 16px; border-radius: 100px;
    margin-bottom: 16px;
  }
  .page-course .psychiatrist-profile h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .page-course .psychiatrist-profile p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.65;
  }
  .page-course .psychiatrist-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 42%;
    display: block;
    margin: 0 0 22px;
    background: #8D8D8D;
  }
  .page-course .psychiatrist-content {
    background: var(--soft);
    border-radius: 26px;
    padding: 30px;
  }
  .page-course .psychiatrist-content h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .page-course .psychiatrist-content p {
    color: #4A5350;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 62ch;
  }
  .page-course .psychiatrist-content ul {
    list-style: none;
  }
  .page-course .psychiatrist-content li {
    position: relative;
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink);
  }
  .page-course .psychiatrist-content li:last-child { border-bottom: none; }
  .page-course .psychiatrist-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 13px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }

  .page-course /* ═══ БОНУС ДЛЯ РОДИТЕЛЕЙ ═══ */
  .parent-bonus {
    background: var(--dark);
    border-radius: 36px;
    padding: 48px 44px;
    color: #fff;
    overflow: hidden;
    position: relative;
  }
  .page-course .parent-bonus::after {
    content: '';
    position: absolute;
    right: -240px;
    top: -260px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(77,217,172,0.16) 0%, transparent 62%);
    pointer-events: none;
  }
  .page-course .parent-bonus-head,
  .page-course .parent-bonus-grid {
    position: relative;
    z-index: 1;
  }
  .page-course .parent-bonus-emoji {
    position: absolute;
    top: 54px;
    right: 17%;
    z-index: 1;
    width: clamp(88px, 10vw, 150px);
    height: clamp(88px, 10vw, 150px);
    line-height: 1;
    transform: rotate(10deg);
    animation: parentEmojiFloat 7s ease-in-out infinite;
    pointer-events: none;
  }
  .page-course .parent-bonus-emoji img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  @keyframes parentEmojiFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(10deg); }
    50% { transform: translate3d(0, -6px, 0) rotate(8deg); }
  }
  @media (prefers-reduced-motion: reduce) {
    .page-course .parent-bonus-emoji { animation: none; }
  }
  .page-course .parent-bonus .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 500;
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
  .page-course .parent-bonus h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 13ch;
    margin-bottom: 18px;
  }
  .page-course .parent-bonus-head p {
    max-width: 64ch;
    color: var(--gray-dark);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  .page-course .parent-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .page-course .parent-bonus-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line-dark);
    border-radius: 22px;
    padding: 24px;
  }
  .page-course .parent-bonus-card b {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .page-course .parent-bonus-card p {
    color: var(--gray-dark);
    font-size: 14.5px;
    line-height: 1.65;
  }

  .page-course /* ═══ ЗАКРЫТЫЙ ЧАТ ═══ */
  .course-chat {
    background: var(--card);
    border-radius: 36px;
    padding: 48px 44px;
  }
  .page-course .course-chat-head {
    max-width: 760px;
    margin-bottom: 28px;
  }
  .page-course .course-chat .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--teal-deep);
    font-size: 13px;
    font-weight: 500;
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
  .page-course .course-chat h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }
  .page-course .course-chat-head p {
    color: var(--gray);
    font-size: 15.5px;
    line-height: 1.7;
  }
  .page-course .course-chat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .page-course .course-chat-card {
    background: var(--soft);
    border-radius: 24px;
    padding: 26px;
    min-height: 190px;
  }
  .page-course .course-chat-card b {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .page-course .course-chat-card p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.65;
  }
  .page-course .course-chat-card.accent-card {
    background: rgba(77,217,172,0.12);
    border: 1px solid rgba(77,217,172,0.34);
  }

  .page-course /* ═══ ПОСЛЕ КУРСА ═══ */
  .after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .page-course .after-card {
    background: var(--card);
    border-radius: 22px;
    padding: 26px;
  }
  .page-course .after-card .ico {
    width: 52px; height: 52px;
    background: transparent;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .page-course .after-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink); }

  .page-course .after-note {
    margin: 24px 0 0;
    max-width: 860px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray);
  }

  .page-course /* ═══ СТОИМОСТЬ (тёмный контейнер) ═══ */
  .price-dark {
    background: var(--dark);
    border-radius: 36px;
    padding: 48px 44px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .page-course .price-dark .sec-title { color: #fff; display: inline-block; }
  .page-course .price-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
  }
  .page-course .price-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 26px 26px;
    color: var(--ink);
    display: flex; flex-direction: column;
  }
  .page-course .price-card-single {
    display: flex;
    flex-direction: column;
    padding: 34px;
  }
  .page-course .price-cover {
    aspect-ratio: 1.32 / 1;
    border-radius: 20px;
    margin-bottom: 22px;
  }
  .page-course .price-card h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 25px; font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .page-course .price-card .desc {
    font-size: 14.5px; line-height: 1.65;
    color: var(--gray);
    margin-bottom: 0;
  }
  .page-course .price-card ul { list-style: none; margin-bottom: 24px; }
  .page-course .price-card li {
    font-size: 14.5px; line-height: 1.5;
    padding: 7px 0 7px 30px;
    position: relative;
  }
  .page-course .price-card li::before {
    content: '✓';
    position: absolute; left: 0; top: 7px;
    width: 19px; height: 19px;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
  }
  .page-course .price-strip {
    background: var(--soft);
    border-radius: 14px;
    padding: 13px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    font-size: 12.5px;
    margin-top: auto;
    margin-bottom: 18px;
  }
  .page-course .price-strip .note { color: var(--gray); }
  .page-course .price-row {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .page-course .big-price {
    font-family: 'Inter Tight', sans-serif;
    font-size: 42px; font-weight: 600;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .page-course .price-btn {
    display: inline-block; text-align: center;
    background: var(--dark);
    color: #fff;
    font-size: 15px; font-weight: 500;
    padding: 17px 28px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
  }
  .page-course .price-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
  .page-course.gc-modal-open { overflow: hidden; }
  .page-course .gc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
  }
  .page-course .gc-modal.is-open { display: flex; }
  .page-course .gc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,18,17,0.64);
    backdrop-filter: blur(8px);
  }
  .page-course .gc-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 36px));
    height: min(700px, calc(100vh - 36px));
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.32);
  }
  .page-course .gc-modal-close {
    position: sticky;
    top: 12px;
    float: right;
    z-index: 2;
    width: 38px;
    height: 38px;
    margin: 12px 12px 0 0;
    border: 0;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }
  .page-course .gc-widget-host {
    height: 100%;
    min-height: 0;
    padding: 0;
  }
  .page-course .gc-widget-host iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .page-course .free-lesson-card {
    padding: 34px;
  }
  .page-course .free-video-player {
    aspect-ratio: 1.32 / 1;
    border-radius: 20px;
    margin-bottom: 22px;
    background:
      radial-gradient(circle at 50% 45%, rgba(255,255,255,0.12), transparent 34%),
      linear-gradient(135deg, #171A19 0%, #0F1211 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .page-course .free-video-player .play-mark {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    padding-left: 4px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.22);
  }
  .page-course .free-video-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .page-course .free-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    color: var(--teal-deep);
    background: rgba(77,217,172,0.1);
    border: 1px solid rgba(77,217,172,0.3);
    padding: 8px 16px; border-radius: 100px;
    margin-bottom: 16px;
  }
  .page-course .free-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .page-course .media-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .page-course .media-icon,
  .page-course .media-btn img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
    fill: currentColor;
  }

  .page-course /* ═══ FAQ ═══ */
  .faq details { border-bottom: 1px solid rgba(19,21,20,0.34); }
  .page-course .faq details:first-of-type { border-top: 1px solid rgba(19,21,20,0.34); }
  .page-course .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
    padding: 34px 0;
    font-size: 20px; font-weight: 500;
    line-height: 1.28;
  }
  .page-course .faq summary::-webkit-details-marker { display: none; }
  .page-course .faq summary .plus {
    position: relative;
    flex-shrink: 0;
    width: 32px; height: 32px;
    font-size: 0;
    line-height: 0;
    transition: transform .25s;
  }
  .page-course .faq summary .plus::before,
  .page-course .faq summary .plus::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 24px; height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transform: translate(-50%, -50%);
  }
  .page-course .faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .page-course .faq details[open] summary .plus { transform: rotate(45deg); }
  .page-course .faq .answer { padding: 0 64px 34px 0; max-width: 68ch; }
  .page-course .faq .answer p {
    font-size: 16px; line-height: 1.72;
    color: #4A5350;
    margin-bottom: 12px;
  }
  .page-course .faq .answer p:last-child { margin-bottom: 0; }

  .page-course /* ═══ ФУТЕР ═══ */
  footer {
    max-width: 1200px; margin: 0 auto;
    padding: 28px 24px 16px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--gray);
    line-height: 1.6;
  }
  .page-course footer a { color: var(--gray); }
  .page-course footer a:hover { color: var(--ink); }

  @media (max-width: 960px) {
    .page-course .nav {
      border-radius: 24px;
      padding: 10px 10px 10px 18px;
      flex-wrap: wrap;
    }
    .page-course .menu-toggle { display: inline-flex; }
    .page-course .nav-links {
      display: none;
      flex-basis: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 2px;
      padding-top: 10px;
      margin-top: 10px;
      border-top: 1px solid rgba(19,21,20,0.08);
    }
    .page-course .nav.is-open .nav-links { display: flex; }
    .page-course .nav-links a,
    .page-course .nav-links a:not(.cta) {
      display: block;
      padding: 12px 14px;
      text-align: left;
    }
    .page-course .nav-links a.cta {
      margin-left: 0;
      text-align: center;
      margin-top: 4px;
    }
    .page-course .card, .page-course .hero, .page-course .video-dark, .page-course .parent-bonus, .page-course .course-chat, .page-course .author-quote { padding: 28px 22px; border-radius: 28px; }
    .page-course .naked { padding: 24px 8px 16px; }
    .page-course .wrap { margin-bottom: 16px; }
    .page-course .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .page-course .hero-grid > div:first-child { order: 2; }
    .page-course .hero-side { order: 1; }
    .page-course .hero-cover { aspect-ratio: 1.08 / 1; }
    .page-course .hero-cta {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      width: 100%;
    }
    .page-course .hero-cta .btn,
    .page-course .hero-cta .btn-ghost {
      width: 100%;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .page-course .cover-bullet {
      padding: 8px 12px;
      font-size: 11.5px;
      gap: 5px;
    }
    .page-course .cover-bullet.cb1 { top: 14px; left: 14px; }
    .page-course .cover-bullet.cb2 { top: 24%; right: 10px; }
    .page-course .cover-bullet.cb3 { bottom: 14px; left: 14px; }
    .page-course .cover-bullet.cb4 { bottom: 19%; right: 12px; }
    .page-course .for-grid, .page-course .how-grid, .page-course .after-grid, .page-course .speakers-grid, .page-course .price-grid, .page-course .course-chat-grid { grid-template-columns: 1fr; }
    .page-course .for-card {
      min-height: 260px;
      padding: 30px 26px;
      border-radius: 28px;
      justify-content: flex-start;
    }
    .page-course .for-card h3 {
      font-size: 23px;
      max-width: 13ch;
    }
    .page-course .for-card p {
      font-size: 13.5px;
      line-height: 1.6;
      margin-top: 24px;
      max-width: none;
    }
    .page-course .author-quote-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    .page-course .author-message {
      grid-template-columns: 38px minmax(0, 1fr);
      column-gap: 12px;
      border-radius: 22px;
      padding: 22px;
    }
    .page-course .quote-mark {
      font-size: 64px;
      margin-top: -6px;
    }
    .page-course .author-message blockquote {
      font-size: 15.5px;
      line-height: 1.48;
    }
    .page-course .author-photo-card {
      border-radius: 22px;
      padding: 22px;
      gap: 14px;
      max-width: none;
    }
    .page-course .author-photo-card img {
      border-radius: 20px;
    }
    .page-course .author-photo-card b {
      font-size: 26px;
    }
    .page-course .author-photo-card span {
      font-size: 15px;
    }
    .page-course .speaker-card {
      grid-template-columns: 1fr;
      gap: 18px;
      min-height: 0;
      padding: 18px 18px 24px;
    }
    .page-course .speaker-photo {
      aspect-ratio: 4 / 3;
      border-radius: 22px;
    }
    .page-course .speaker-initials { font-size: 54px; }
    .page-course .speaker-info { padding: 0 4px; }
    .page-course .speaker-info h3 { font-size: 23px; }
    .page-course .speaker-info p {
      font-size: 14px;
      max-width: none;
    }
    .page-course .speaker-link {
      width: 100%;
      margin-top: 16px;
    }
    .page-course .price-dark { padding: 32px 22px 26px; border-radius: 28px; }
    .page-course .price-card-single {
      padding: 26px 22px 22px;
    }
    .page-course .free-lesson-card {
      padding: 26px 22px 22px;
    }
    .page-course .price-card h3 { font-size: 22px; }
    .page-course .price-card .desc { font-size: 14px; }
    .page-course .price-strip {
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
    }
    .page-course .price-row {
      align-items: stretch;
      flex-direction: column;
    }
    .page-course .big-price { font-size: 34px; }
    .page-course .price-btn,
    .page-course .media-btn {
      width: 100%;
      align-self: stretch;
      justify-content: center;
    }
    .page-course .free-actions { align-items: stretch; }
    .page-course .timeline {
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 0;
      margin-top: 0;
    }
    .page-course .timeline-step {
      min-height: 0;
      padding: 0 0 0 42px;
    }
    .page-course .timeline-num {
      position: absolute;
      left: 0;
      top: 16px;
      width: 28px;
      margin: 0;
      text-align: center;
    }
    .page-course .timeline-line {
      top: 40px;
      bottom: -14px;
      left: 14px;
    }
    .page-course .timeline-step:last-child .timeline-line { display: none; }
    .page-course .timeline-float-note {
      position: relative;
      top: auto;
      left: auto;
      margin: 0 0 10px;
      white-space: normal;
      max-width: 100%;
    }
    .page-course .timeline-float-note-chat {
      margin: 10px 0 0;
    }
    .page-course .timeline-card,
    .page-course .timeline-step:nth-child(2) .timeline-card,
    .page-course .timeline-step:nth-child(3) .timeline-card,
    .page-course .timeline-step:nth-child(4) .timeline-card,
    .page-course .timeline-step:nth-child(5) .timeline-card {
      margin-top: 0;
      padding: 18px;
    }
    .page-course .timeline-card h3 { font-size: 20px; }
    .page-course .program .m-body { padding-left: 28px; }
    .page-course .psychiatrist-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .page-course .psychiatrist-profile,
    .page-course .psychiatrist-content {
      border-radius: 22px;
      padding: 22px;
    }
    .page-course .psychiatrist-profile h2 { font-size: 30px; }
    .page-course .psychiatrist-content h3 { font-size: 24px; }
    .page-course .parent-bonus-emoji {
      top: 28px;
      right: 28px;
      width: 76px;
      height: 76px;
      opacity: 0.9;
    }
    .page-course .parent-bonus h2 {
      font-size: 36px;
      max-width: 14ch;
    }
    .page-course .parent-bonus-head p {
      font-size: 14.5px;
      margin-bottom: 20px;
    }
    .page-course .parent-bonus-grid {
      grid-template-columns: 1fr;
    }
    .page-course .parent-bonus-card {
      padding: 20px;
      border-radius: 20px;
    }
    .page-course .course-chat h2 {
      font-size: 30px;
    }
    .page-course .course-chat-head {
      margin-bottom: 20px;
    }
    .page-course .course-chat-head p {
      font-size: 14.5px;
    }
    .page-course .course-chat-card {
      min-height: 0;
      padding: 22px;
      border-radius: 20px;
    }
    .page-course .play-btn { width: 68px; height: 68px; }
    .page-course .faq summary {
      gap: 18px;
      padding: 26px 0;
      font-size: 18px;
    }
    .page-course .faq summary .plus { width: 28px; height: 28px; }
    .page-course .faq summary .plus::before,
    .page-course .faq summary .plus::after { width: 20px; height: 1.5px; }
    .page-course .faq .answer { padding: 0 42px 28px 0; }
    .page-course .faq .answer p { font-size: 15px; }
    .page-course footer {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      text-align: left;
    }
    .page-course footer > div {
      max-width: 100% !important;
      margin-left: 0 !important;
      text-align: left !important;
    }
  }
