:root {
    --primary: #177ec9;
    --primary-dark: #1265a1;
    --navy: #0c1f4a;
    --navy-2: #1a3373;
    --blue-bright: #2358aa;
    --yellow: #f9c42e;
    --yellow-2: #ffd24c;
    --orange: #e85d2f;
    --green: #20c77a;
    --red: #e54545;
    --bg-soft: linear-gradient(135deg, #f6f7fa 0%, #eef1f6 100%);
    --text: #1f2937;
    --muted: #667085;
    --line: #eef0f3;
    --white: #ffffff;
    --shadow-soft: 0 6px 20px rgba(12, 31, 74, 0.05);
    --shadow-card: 0 14px 48px rgba(12, 31, 74, 0.08);
    --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
h4 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

strong {
    color: var(--navy);
    font-weight: 800;
}

.promo-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}


.promo-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.promo-bar__item img {
    width: 20px;
    height: 20px;
}


.program-page {
    overflow: hidden;
}

.program-container,
.program-hero__inner {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
}

.program-container > *,
.program-hero__inner > *,
.mgvp-grid > *,
.paths-grid > *,
.benefits-grid > *,
.steps-grid > *,
.why-grid > *,
.expert-grid > * {
    min-width: 0;
}

.program-hero {
    position: relative;
    isolation: isolate;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 196, 46, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, #0c1f4a 0%, #1a3373 60%, #2358aa 100%);
}

.program-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../program/hero-bg.svg");
    background-size: cover;
    background-position: center right;
    content: "";
    opacity: 0.22;
}

.program-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding-top: 98px;
    padding-bottom: 74px;
}

.program-hero__content {
    max-width: 980px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow--light {
    padding: 8px 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.program-hero h1 {
    max-width: 1040px;
    color: var(--white);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.program-hero h1 span,
.section-heading h2 span,
.section-copy strong,
.section-heading--dark h2 span {
    color: var(--yellow);
}

.program-hero__lead {
    max-width: 920px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.7;
}

.program-hero__push {
    max-width: 920px;
    margin-top: 18px;
    padding-left: 18px;
    border-left: 3px solid var(--yellow);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.program-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.program-hero__forumlink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 160ms ease;
}

.program-hero__forumlink:hover {
    color: #fff;
}

.btn {
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 18px 32px;
    border-radius: 999px;
    border: 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--yellow {
    color: var(--navy);
    background: var(--yellow);
    box-shadow: 0 8px 22px rgba(249, 196, 46, 0.4);
}

.btn--yellow:hover {
    background: #ffcf42;
}

.btn--outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn--navy {
    min-height: 66px;
    padding: 22px 44px;
    color: var(--white);
    background: var(--navy);
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(12, 31, 74, 0.3);
}

.btn--navy:hover {
    background: var(--navy-2);
    box-shadow: 0 12px 36px rgba(12, 31, 74, 0.4);
}

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

.stat-card {
    min-height: 124px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.stat-card strong {
    display: block;
    color: var(--yellow);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

.program-section {
    padding: 96px 0;
    background: var(--white);
}

.program-section--soft {
    background: var(--bg-soft);
}

.mgvp-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 54px;
}

.mgvp-card {
    padding: 38px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.mgvp-card__letters {
    display: grid;
    grid-template-columns: repeat(4, 64px);
    gap: 12px;
    margin-bottom: 28px;
}

.mgvp-card__letters span {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--navy));
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(23, 126, 201, 0.2);
    font-size: 32px;
    font-weight: 900;
}

.mgvp-card > strong {
    display: block;
    color: var(--navy);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.mgvp-card > p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
}

.section-copy h2,
.section-heading h2,
.expert-copy h2 {
    color: var(--navy);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-copy p {
    margin-top: 20px;
    color: #344054;
}

.section-copy strong {
    color: var(--navy);
}

.check-list,
.minus-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    list-style: none;
}

.check-list li,
.minus-list li {
    position: relative;
    padding-left: 32px;
    color: #344054;
}

.check-list li::before,
.minus-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

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

.minus-list li::before {
    color: #8a94a6;
    background: #edf0f4;
    content: "−";
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading h2 span {
    color: inherit;
}

.section-heading p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
}

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

.path-card {
    position: relative;
    padding: 42px 34px 34px;
    background: var(--white);
    border: 1px solid #e5e8ee;
    border-radius: 20px;
}

.path-card--coach {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    box-shadow: 0 14px 40px rgba(23, 126, 201, 0.12);
}

.path-card__badge {
    position: absolute;
    top: -14px;
    left: 32px;
    padding: 8px 14px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.path-card h3 {
    color: var(--navy);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.12;
}

.path-card header p {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 600;
}

.path-card__price {
    margin-top: 24px;
    color: #98a2b3;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
}

.path-card__price strong {
    color: #7c8798;
}

.path-card__price span {
    color: #7c8798;
    font-size: 14px;
    font-weight: 800;
}

.path-card__price--green strong {
    color: var(--green);
}

.path-card__price--green span {
    color: #2e7d57;
}

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

.benefit-card {
    position: relative;
    min-height: 300px;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid rgba(12, 31, 74, 0.06);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(12, 31, 74, 0.12);
}

.benefit-card__bg {
    display: none;
}
.benefit-card__head {
    padding-top: 64px;
    margin-bottom: 14px;
}
.benefit-card__tile {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: inline-flex;
    transform-origin: top right;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
    will-change: transform;
}
.benefit-card:hover .benefit-card__tile {
    transform: scale(1.18);
    filter: drop-shadow(0 10px 18px rgba(23, 126, 201, 0.30));
}
.benefit-card__tile img {
    width: 72px;
    height: 72px;
    margin: 0;
}
.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.18;
}

.benefit-card p {
    margin-top: 12px;
    color: #4b5565;
    font-size: 15px;
    line-height: 1.65;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    padding-top: 16px;
}

.step-card {
    position: relative;
    top: 0;
    min-height: 245px;
    padding: 30px 22px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.step-card > span {
    position: absolute;
    top: -16px;
    left: 22px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
}

.step-card h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
}

.step-card p {
    margin-top: 10px;
    color: #4b5565;
    font-size: 14px;
    line-height: 1.6;
}

.why-section {
    color: var(--white);
    background: linear-gradient(135deg, #0c1f4a 0%, #1a3373 100%);
}

.section-heading--dark h2 {
    color: var(--white);
    font-size: 38px;
}

.section-heading--dark h2 span {
    color: var(--yellow);
}

.section-heading--dark p {
    color: rgba(255, 255, 255, 0.82);
}

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

.why-grid article {
    min-height: 220px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.why-num {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
}

.why-grid h4 {
    color: var(--yellow);
    font-size: 17px;
    font-weight: 900;
}

.why-grid p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.65;
}

.expert-grid {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    align-items: stretch;
    gap: 56px;
}

.expert-photo {
    overflow: hidden;
    border-radius: 16px;
}

.expert-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.expert-copy h2 {
    margin-top: 2px;
    font-size: 32px;
}

.expert-copy p {
    margin-top: 18px;
    color: #344054;
}

.expert-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.expert-metrics div {
    min-height: 92px;
    padding: 16px 14px;
    background: #f8fafc;
    border: 1px solid #edf0f4;
    border-radius: 14px;
}

.expert-metrics strong {
    display: block;
    color: var(--navy);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.expert-metrics span {
    display: block;
    margin-top: 8px;
    color: #667085;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 12px;
    width: min(100%, 800px);
    margin: 0 auto;
}

.faq-list details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: box-shadow 160ms ease, border-color 160ms ease;
}

.faq-list details[open] {
    border-color: rgba(23, 126, 201, 0.18);
    box-shadow: 0 6px 20px rgba(12, 31, 74, 0.06);
}

.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 18px 58px 18px 24px;
    color: var(--navy);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 24px;
    color: var(--primary);
    content: "+";
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
    padding: 0 24px 22px;
    color: #444;
    font-size: 15px;
    line-height: 1.65;
}

.final-cta {
    padding: 100px 0;
    color: var(--navy);
    text-align: center;
    background: linear-gradient(135deg, #f9c42e 0%, #ffd24c 100%);
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.final-cta p {
    max-width: 760px;
    margin: 18px auto 32px;
    color: #4a3700;
    font-size: 18px;
}

.final-cta__assur {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin: 26px auto 0;
    max-width: 760px;
    list-style: none;
}

.final-cta__assur li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.final-cta__assur li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--yellow);
    background: var(--navy);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}


@media (max-width: 1100px) {
    

    

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

@media (max-width: 900px) {
    

    .program-hero__inner {
        padding-top: 76px;
        padding-bottom: 60px;
    }

    .program-hero h1 {
        font-size: 46px;
    }

    .program-hero__stats,
    .paths-grid,
    .why-grid,
    .expert-grid {
        grid-template-columns: 1fr;
    }

    .mgvp-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .expert-grid {
        justify-items: center;
        text-align: center;
    }

    .expert-photo {
        width: min(100%, 320px);
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .program-section {
        padding: 72px 0;
    }

    .program-hero__inner,
    .program-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .program-hero h1 {
        font-size: 40px;
    }

    .program-hero__lead {
        font-size: 17px;
    }

    .section-copy h2,
    .section-heading h2 {
        font-size: 34px;
    }

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

    .step-card {
        min-height: auto;
    }

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

@media (max-width: 480px) {
    .promo-bar {
        font-size: 12px;
    }

    .promo-bar__item {
        width: 100%;
        white-space: normal;
    }

    

    

    .program-hero__inner {
        padding-top: 58px;
        padding-bottom: 48px;
    }

    .program-hero h1 {
        font-size: 32px;
    }

    .program-hero__actions,
    .program-hero__actions .btn,
    .final-cta .btn {
        width: 100%;
    }

    .btn {
        min-height: 54px;
        padding: 16px 24px;
        font-size: 13px;
    }

    .program-hero__stats {
        gap: 12px;
    }

    .stat-card {
        min-height: 104px;
        padding: 22px;
    }

    .stat-card strong {
        font-size: 28px;
    }

    .mgvp-card {
        padding: 28px 22px;
    }

    .mgvp-card__letters {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .mgvp-card__letters span {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        font-size: 26px;
    }

    .mgvp-card > strong {
        font-size: 24px;
    }

    .section-copy h2,
    .section-heading h2 {
        font-size: 28px;
    }

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

    .path-card {
        padding: 38px 24px 28px;
    }

    .path-card h3 {
        font-size: 23px;
    }

    .path-card__price {
        font-size: 26px;
    }

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

    .benefit-card {
        min-height: auto;
    }

    .section-heading--dark h2 {
        font-size: 28px;
    }

    .expert-metrics {
        grid-template-columns: 1fr;
    }

    .faq-list summary {
        padding: 16px 50px 16px 18px;
        font-size: 15px;
    }

    .faq-list summary::after {
        right: 18px;
    }

    .faq-list details p {
        padding: 0 18px 20px;
    }

    .final-cta {
        padding: 78px 0;
    }

    .final-cta h2 {
        font-size: 34px;
    }
}

/* ============================================================
   storefront: блоки coaching — проблемы + оборудование/навигатор
   ============================================================ */

/* --- Блок: проблемы — карусель-coverflow --- */
.problems-section {
    overflow: hidden;
}

.problems-section .section-heading {
    max-width: 900px;
    margin-bottom: 4px;
}

.pcar {
    position: relative;
    overflow: hidden;
    --pcar-cw: clamp(208px, 23vw, 336px);
    --pcar-ch: calc(var(--pcar-cw) * 8 / 5);
}

.pcar__stage {
    position: relative;
    height: calc(var(--pcar-ch) + 128px);
}

.pcar__card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--pcar-cw);
    height: var(--pcar-ch);
    margin-top: calc(var(--pcar-ch) / -2);
    margin-left: calc(var(--pcar-cw) / -2);
    overflow: hidden;
    background: #d9dee7;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(12, 31, 74, 0.28);
    cursor: pointer;
    transform: scale(0.45);
    transition: transform 640ms cubic-bezier(0.33, 0.1, 0.2, 1), opacity 460ms ease;
    will-change: transform, opacity;
}

.pcar__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcar__tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #141f3f;
    opacity: 0.66;
    transition: opacity 520ms ease;
    pointer-events: none;
}

.pcar__tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 7px 14px;
    color: var(--white);
    background: rgba(12, 31, 74, 0.74);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.pcar__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 64px 28px 30px;
    background: linear-gradient(to top, rgba(7, 13, 32, 0.95) 0%, rgba(7, 13, 32, 0.85) 24%, rgba(7, 13, 32, 0.35) 58%, rgba(7, 13, 32, 0) 100%);
    opacity: 0;
    transition: opacity 520ms ease;
    pointer-events: none;
}

.pcar__title {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.18;
}

.pcar__desc {
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.55;
}

/* --- Блок: оборудование — машина, сопровождение — навигатор --- */
.coach-gps__panel {
    width: min(100%, 940px);
    margin: 0 auto;
}

.coach-gps__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.coach-gps__chip {
    padding: 11px 19px;
    color: #475467;
    background: var(--white);
    border: 1.5px solid #dde1e9;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.coach-gps__chip:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.coach-gps__chip.is-active {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.coach-gps__statements {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-gps__statement {
    display: none;
    color: var(--navy);
    font-size: 27px;
    font-weight: 900;
    line-height: 1.42;
    text-align: center;
    text-transform: uppercase;
}

.coach-gps__statement.is-active {
    display: block;
}

.coach-gps__callouts {
    margin-top: 24px;
}

.coach-gps__callout-body p + p {
    margin-top: 10px;
}

.coach-gps__callout {
    display: none;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 26px;
    background: #ecf8f1;
    border: 1px solid #c6e9d4;
    border-radius: 16px;
}

.coach-gps__callout.is-active {
    display: flex;
}

.coach-gps__check {
    display: grid;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
}

.coach-gps__callout p {
    color: #2f4a3c;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.62;
}

@media (max-width: 760px) {
    .coach-gps__statement {
        font-size: 22px;
        line-height: 1.4;
    }

    .coach-gps__callout p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .pcar__title {
        font-size: 20px;
    }

    .pcar__desc {
        font-size: 14px;
    }

    .pcar__overlay {
        padding: 54px 20px 24px;
    }
}

@media (max-width: 480px) {
    .coach-gps__statement {
        font-size: 19px;
    }

    .coach-gps__chip {
        padding: 10px 15px;
        font-size: 13px;
    }

    .coach-gps__callout {
        padding: 20px;
    }
}


/* steps premium animation (CSS-only, без JS) */
.steps-grid { position: relative; }
.steps-grid::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 3.5%;
    right: 5%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(23,126,201,0), #177ec9 9%, #4aa3e0 91%, rgba(74,163,224,0));
    z-index: 1;
    animation: stepsLine 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}
@keyframes stepsLine {
    from { transform: scaleX(0); transform-origin: left center; }
    to   { transform: scaleX(1); transform-origin: left center; }
}

.step-card {
    animation: stepIn 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
    transition: top 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@keyframes stepIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.step-card:nth-child(1) { animation-delay: 0.08s; }
.step-card:nth-child(2) { animation-delay: 0.20s; }
.step-card:nth-child(3) { animation-delay: 0.32s; }
.step-card:nth-child(4) { animation-delay: 0.44s; }
.step-card:nth-child(5) { animation-delay: 0.56s; }

.step-card:hover {
    top: -6px;
    z-index: 3;
    box-shadow: 0 22px 46px rgba(12, 31, 74, 0.10);
    border-color: rgba(23, 126, 201, 0.28);
}

.step-card > span {
    background: linear-gradient(135deg, #2f93dd, #0e5f9c);
    box-shadow: 0 6px 16px rgba(23, 126, 201, 0.35);
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.step-card:hover > span {
    transform: scale(1.18);
    box-shadow: 0 12px 26px rgba(23, 126, 201, 0.55);
}

@media (prefers-reduced-motion: reduce) {
    .step-card, .steps-grid::before { animation: none; }
}


/* ===== Package 1: footnote · focus-visible · reduced-motion ===== */
.check-list__note { margin-top: 12px; font-size: 12px; line-height: 1.5; color: #8a93a5; }
a:focus-visible, button:focus-visible, summary:focus-visible,
[tabindex]:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid #177ec9;
    outline-offset: 2px;
}
.program-hero a:focus-visible, .program-hero button:focus-visible { outline-color: #fff; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* ===== Package 2: hero offer · inline CTA · sticky bar ===== */
.program-hero__offer {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 4px 0 18px; padding: 9px 18px 9px 11px;
    background: rgba(249, 196, 46, 0.14);
    border: 1px solid rgba(249, 196, 46, 0.45);
    border-radius: 999px;
    color: #ffe7a6; font-size: 15px; font-weight: 600; line-height: 1.3;
}
.program-hero__offer b { color: #fff; font-weight: 800; }
.program-hero__offer-ic {
    display: inline-flex; width: 20px; height: 20px; flex-shrink: 0;
    align-items: center; justify-content: center;
    background: #F9C42E; color: #0c1f4a; border-radius: 50%;
    font-size: 12px; font-weight: 900;
}
.program-inline-cta-wrap { padding: 22px 0; }
.program-inline-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
    padding: 24px 30px; border-radius: 18px;
    background: linear-gradient(135deg, #0c1f4a, #1a3373); color: #fff;
}
.program-inline-cta__text strong { display: block; color: #fff; font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.program-inline-cta__text span { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.program-inline-cta .btn { white-space: nowrap; }
.program-sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    transform: translateY(120%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    background: #0c1f4a; color: #fff; box-shadow: 0 -8px 30px rgba(12,31,74,0.28);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
}
.program-sticky.is-visible { transform: translateY(0); }
.program-sticky__inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.program-sticky__text { font-size: 14px; font-weight: 600; }
.program-sticky__text b { color: #ffd861; }
.program-sticky__btn {
    flex-shrink: 0; border: 0; cursor: pointer;
    background: #F9C42E; color: #0c1f4a; font-family: inherit;
    font-size: 14px; font-weight: 800; padding: 11px 22px; border-radius: 999px;
    transition: background .16s ease, transform .16s ease;
}
.program-sticky__btn:hover { background: #ffcf42; transform: translateY(-1px); }
@media (max-width: 600px) {
    .program-sticky__text { font-size: 13px; }
    .program-sticky__btn { padding: 10px 16px; font-size: 13px; }
    .program-inline-cta { padding: 20px; }
    .program-inline-cta__text strong { font-size: 17px; }
}
