:root {
    --coach-dark: #031E47;
    --coach-dark-strong: #021534;
    --coach-green: #00DF7A;
    --coach-green-deep: #00b865;
    --coach-light: #f5f7fa;
    --coach-white: #ffffff;
    --coach-ink: #0c1b3a;
    --coach-muted: rgba(3, 30, 71, 0.72);
    --coach-shadow: 0 18px 45px rgba(3, 30, 71, 0.18);
    --coach-shadow-soft: 0 10px 30px rgba(3, 30, 71, 0.1);
}

.coach-page {
    color: var(--coach-ink);
    background: var(--coach-white);
}

.coach-page h1,
.coach-page h2,
.coach-page h3,
.coach-page h4 {
    letter-spacing: -0.02em;
}

.coach-hero {
    position: relative;
    padding: 96px 0 70px;
    background: radial-gradient(circle at 20% 20%, rgba(0, 223, 122, 0.18), transparent 40%),
        linear-gradient(135deg, #031E47 0%, #031334 55%, #021024 100%);
    color: #f7fbff;
    overflow: hidden;
}

.coach-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(0, 223, 122, 0.12), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
}

.coach-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.coach-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 223, 122, 0.18);
    border: 1px solid rgba(0, 223, 122, 0.45);
    color: #d6ffe9;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.coach-hero__title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 16px;
    color: #ffffff;
}

.coach-hero__title span {
    color: var(--coach-green);
}

.coach-hero__subtitle {
    font-size: 1.15rem;
    max-width: 560px;
    line-height: 1.7;
    color: rgba(240, 248, 255, 0.88);
    margin-bottom: 22px;
}

.coach-hero__support {
    font-size: 1rem;
    color: rgba(229, 243, 255, 0.82);
    max-width: 520px;
    margin-bottom: 28px;
}

.coach-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.coach-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.coach-btn--primary {
    background: var(--coach-green);
    color: #042c1c;
    box-shadow: 0 16px 30px rgba(0, 223, 122, 0.3);
}

.coach-btn--primary:hover {
    transform: translateY(-2px);
    background: var(--coach-green-deep);
}

.coach-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.coach-btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.coach-hero__trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(230, 245, 255, 0.78);
}

.coach-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.coach-hero__visual {
    position: relative;
    display: grid;
    gap: 16px;
    justify-items: center;
}

.coach-hero__image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--coach-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coach-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.coach-hero__stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
}

.coach-hero__stat {
    background: rgba(255, 255, 255, 0.1);
    color: #f8fbff;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
    min-width: 0;
}

.coach-hero__stat small {
    display: block;
    font-weight: 600;
    color: rgba(234, 245, 255, 0.65);
    margin-top: 4px;
    font-size: 0.78rem;
}

.coach-hero__dna {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    transform: translateX(12%);
}

.coach-hero__dna svg {
    width: 100%;
    height: 100%;
}

.coach-section {
    padding: 80px 0;
}

.coach-section--alt {
    background: var(--coach-light);
}

.coach-section--dark {
    background: var(--coach-dark);
    color: #f6fbff;
}

.coach-section--dark .coach-section__intro h2 {
    color: #ffffff;
}

.coach-section__intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}

.coach-section__intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.coach-section__intro p {
    font-size: 1.05rem;
    color: var(--coach-muted);
    line-height: 1.7;
}

.coach-text-muted {
    color: rgba(3, 30, 71, 0.72);
}

.coach-section--dark .coach-section__intro p {
    color: rgba(239, 246, 255, 0.75);
}

.coach-section--cases {
    position: relative;
    background: radial-gradient(circle at 15% 15%, rgba(0, 223, 122, 0.15), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(74, 144, 226, 0.18), transparent 40%),
        linear-gradient(135deg, #031334 0%, #021c3c 50%, #031e47 100%);
    overflow: hidden;
}

.coach-section--cases::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 120px);
    opacity: 0.4;
    pointer-events: none;
}

.coach-section--cases .container {
    position: relative;
    z-index: 1;
}

.coach-section--solution .container {
    min-height: 560px;
}

.coach-section--cases .coach-section__intro h2 {
    color: #ffffff;
}

.coach-section--cases .coach-section__intro p {
    color: rgba(235, 245, 255, 0.78);
}

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

.coach-pain-card {
    background: var(--coach-white);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--coach-shadow-soft);
    border: 1px solid rgba(3, 30, 71, 0.08);
    display: grid;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coach-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(3, 30, 71, 0.15);
}

.coach-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 76, 76, 0.12);
    color: #d33;
}

.coach-pain-card h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--coach-dark);
}

.coach-pain-card p {
    margin: 0;
    color: rgba(3, 30, 71, 0.72);
    line-height: 1.6;
}

.coach-solution-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: center;
}

.coach-solution-copy {
    padding-left: 18px;
}

.coach-highlight {
    color: var(--coach-green-deep);
    font-weight: 800;
}

.coach-wheel {
    position: relative;
    width: min(380px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    --node-radius: 145px;
    justify-self: center;
}

.coach-wheel__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #00DF7A 0deg 100deg,
        #4A90E2 100deg 190deg,
        #FF8C42 190deg 245deg,
        #9B59B6 245deg 330deg,
        #3498DB 330deg 360deg
    );
    box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.9);
}

.coach-wheel__ring::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset 0 0 24px rgba(3, 30, 71, 0.08);
    border: 1px solid rgba(3, 30, 71, 0.06);
}

.coach-wheel__core {
    position: absolute;
    inset: 36% 36%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e6f7ff);
    border: 2px solid rgba(0, 223, 122, 0.5);
    display: grid;
    place-items: center;
    z-index: 2;
    font-weight: 800;
    color: var(--coach-dark);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
}

.coach-wheel__nodes {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.coach-wheel__node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: var(--node-colour, #00DF7A);
    transform: rotate(var(--angle)) translateY(calc(var(--node-radius) * -1)) rotate(calc(var(--angle) * -1));
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.coach-wheel__node span {
    font-size: 0.65rem;
    font-weight: 700;
}

.coach-wheel__node.is-active {
    transform: rotate(var(--angle)) translateY(calc(var(--node-radius) * -1 - 6px)) rotate(calc(var(--angle) * -1)) scale(1.1);
    box-shadow: 0 10px 20px rgba(3, 30, 71, 0.25);
    z-index: 5;
}

.coach-wheel__nodes.is-dim .coach-wheel__node {
    opacity: 0.5;
}

.coach-wheel__nodes.is-dim .coach-wheel__node.is-active {
    opacity: 1;
}

.coach-wheel__tooltip {
    position: static;
}

.coach-wheel__panel {
    --panel-accent: 0, 223, 122;
    background: linear-gradient(135deg, rgba(var(--panel-accent), 0.18), rgba(255, 255, 255, 0.98) 55%);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--coach-shadow-soft);
    border: 1px solid rgba(3, 30, 71, 0.08);
    border-left: 5px solid rgb(var(--panel-accent));
    min-height: 160px;
}

.coach-wheel__panel h4 {
    margin: 0 0 8px;
    color: var(--coach-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.coach-wheel__panel p {
    margin: 0 0 8px;
    color: rgba(3, 30, 71, 0.72);
    font-size: 0.95rem;
    line-height: 1.4;
}

.coach-wheel__panel small {
    color: rgba(3, 30, 71, 0.6);
    font-weight: 600;
}

.coach-wheel-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 50px;
    align-items: center;
    min-height: 420px;
}

.coach-wheel-layout > .coach-wheel {
    margin-right: 0;
    margin-left: 26px;
}

.coach-solution-grid {
    min-height: 560px;
}

.coach-wheel-aside {
    display: grid;
    gap: 18px;
    justify-items: stretch;
    align-items: center;
    align-content: center;
    align-self: center;
    padding-left: 0;
    min-height: 280px;
    width: 240px;
    transform: none;
}

.coach-wheel__panel {
    max-width: 100%;
    justify-self: stretch;
    margin-left: 0;
    height: 200px;
    display: grid;
    align-content: start;
    gap: 8px;
    transition: box-shadow 0.2s ease;
}

.coach-wheel__legend {
    margin-top: 18px;
    display: grid;
    gap: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(3, 30, 71, 0.7);
    grid-template-columns: 1fr;
}

.coach-wheel__legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coach-wheel__legend i {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.coach-compare {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.coach-compare__card {
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(3, 30, 71, 0.12);
    box-shadow: var(--coach-shadow-soft);
}

.coach-compare__card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.coach-compare__card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.coach-compare__card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
}

.coach-compare__icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coach-compare__icon svg {
    width: 14px;
    height: 14px;
}

.coach-compare__icon--bad {
    background: rgba(217, 83, 79, 0.16);
    color: #d9534f;
}

.coach-compare__icon--good {
    background: rgba(0, 223, 122, 0.18);
    color: var(--coach-green);
}

.coach-compare__card--before {
    filter: grayscale(20%);
    transform: rotate(-1deg);
}

.coach-compare__card--after {
    background: linear-gradient(135deg, #f4fff9 0%, #e8fff0 100%);
    border: 2px solid rgba(0, 223, 122, 0.5);
    transform: rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 223, 122, 0.2);
}

.coach-compare__arrow {
    font-size: 2.5rem;
    color: var(--coach-green);
    animation: coach-pulse 2s infinite;
}

.coach-compare__arrow svg {
    width: 40px;
    height: 40px;
}

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

.coach-case {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    background: #001634;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    border: 1px solid rgba(6, 46, 108, 0.8);
    box-shadow: 0 18px 40px rgba(2, 16, 36, 0.45);
}

.coach-case img,
.coach-case .image-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.coach-case img {
    object-fit: cover;
}

.coach-case__overlay {
    position: relative;
    z-index: 2;
    padding: 24px;
    background: linear-gradient(0deg, rgba(3, 30, 71, 0.95) 0%, rgba(3, 30, 71, 0.55) 60%, rgba(3, 30, 71, 0.2) 100%);
    color: #ffffff;
    width: 100%;
}

.coach-case__overlay h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.coach-case__overlay p {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.88);
}

.coach-case.is-open .coach-case__overlay p,
.coach-case:hover .coach-case__overlay p {
    max-height: 140px;
}

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

.coach-stat {
    padding: 24px 20px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--coach-shadow-soft);
    border: 1px solid rgba(3, 30, 71, 0.08);
    text-align: center;
}

.coach-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 223, 122, 0.15);
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: var(--coach-dark);
    font-weight: 700;
}

.coach-stat__icon svg {
    width: 22px;
    height: 22px;
}

.coach-stat__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--coach-dark);
}

.coach-stat__label {
    color: rgba(3, 30, 71, 0.7);
    font-size: 0.95rem;
    margin-top: 6px;
}

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

.coach-timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(to right, var(--coach-green) 0%, var(--coach-green) 75%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 999px;
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s ease;
}

.coach-timeline.is-visible::before {
    transform: scaleX(1);
}

.coach-timeline__step {
    text-align: center;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.coach-timeline__step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--coach-green);
    color: #052516;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 223, 122, 0.3);
}

.coach-timeline__step h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
}

.coach-timeline__step p {
    margin: 0;
    color: rgba(236, 245, 255, 0.75);
    font-size: 0.92rem;
}

.coach-timeline__step--coming span {
    background: transparent;
    border: 2px dashed rgba(0, 223, 122, 0.7);
    color: rgba(0, 223, 122, 0.9);
    box-shadow: none;
}

.coach-timeline__badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 223, 122, 0.2);
    color: #b9ffe0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.coach-benefits {
    display: grid;
    gap: 40px;
}

.coach-benefit {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.coach-benefit:nth-child(even) {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.coach-benefit__media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--coach-shadow-soft);
    border: 1px solid rgba(3, 30, 71, 0.1);
}

.coach-benefit__media img,
.coach-benefit__media .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.coach-benefit__content h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.coach-benefit__content p {
    margin: 0 0 12px;
    color: rgba(3, 30, 71, 0.72);
    line-height: 1.7;
}

.coach-quote {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.coach-section--quote {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #031e47 0%, #062a5a 55%, #031334 100%);
}

.coach-section--quote h2 {
    color: var(--coach-green);
}

.coach-section--quote::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 223, 122, 0.18), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(74, 144, 226, 0.22), transparent 45%);
    opacity: 0.6;
    animation: coachGlowShift 18s ease-in-out infinite;
    pointer-events: none;
}

.coach-section--quote::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 140px);
    opacity: 0.35;
    pointer-events: none;
}

.coach-section--quote .container {
    position: relative;
    z-index: 1;
}

@keyframes coachGlowShift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-4%, 2%, 0);
    }
}

.coach-quote blockquote {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.coach-quote span {
    color: rgba(246, 251, 255, 0.75);
    font-size: 0.95rem;
}

.coach-faq {
    display: grid;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.coach-faq details {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(3, 30, 71, 0.1);
    padding: 18px 22px;
    box-shadow: var(--coach-shadow-soft);
}

.coach-faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 32px;
}

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

.coach-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    color: var(--coach-green-deep);
}

.coach-faq details[open] summary::after {
    content: '-';
}

.coach-faq p {
    margin: 12px 0 0;
    color: rgba(3, 30, 71, 0.7);
    line-height: 1.6;
}

.coach-guide {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--coach-shadow-soft);
    border: 1px solid rgba(3, 30, 71, 0.08);
}

.coach-guide__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 223, 122, 0.15);
    color: var(--coach-green-deep);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.coach-guide__content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.coach-guide__content p {
    margin: 0;
    color: rgba(3, 30, 71, 0.7);
    line-height: 1.6;
}

.coach-guide__button {
    text-align: right;
}

.coach-guide__button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--coach-dark);
    color: #ffffff;
    font-weight: 700;
}

.coach-cta {
    padding: 90px 0;
    background: linear-gradient(120deg, #031E47 0%, #062a5a 50%, #00b865 100%);
    color: #ffffff;
    text-align: center;
}

.coach-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 14px;
    color: #ffffff;
}

.coach-cta p {
    max-width: 700px;
    margin: 0 auto 24px;
    color: rgba(238, 247, 255, 0.8);
    line-height: 1.7;
}

.coach-cta .coach-btn {
    padding: 16px 34px;
}

.coach-cta small {
    display: block;
    margin-top: 18px;
    color: rgba(238, 247, 255, 0.7);
}

.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 16px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #444;
}

.image-placeholder .placeholder-id {
    font-family: 'Courier New', monospace;
    background: #333;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.image-placeholder .placeholder-brief {
    font-size: 0.9rem;
    color: #666;
}

@keyframes coach-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }
}

@media (max-width: 1100px) {
    .coach-hero__grid,
    .coach-solution-grid {
        grid-template-columns: 1fr;
    }

    .coach-hero__stats {
        margin-top: 8px;
    }

    .coach-hero__visual {
        order: -1;
    }

    .coach-compare {
        grid-template-columns: 1fr;
    }

    .coach-compare__arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .coach-cases {
        grid-template-columns: 1fr;
    }

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

    .coach-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 20px;
    }

    .coach-timeline::before {
        left: 38px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        transform: scaleY(0);
        transform-origin: top;
    }

    .coach-timeline.is-visible::before {
        transform: scaleY(1);
    }

    .coach-timeline__step {
        text-align: left;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 14px;
    }

    .coach-timeline__step span {
        margin: 0;
    }

    .coach-timeline__step h4,
    .coach-timeline__step p,
    .coach-timeline__badge {
        text-align: left;
    }

    .coach-benefit,
    .coach-benefit:nth-child(even),
    .coach-guide {
        grid-template-columns: 1fr;
    }

    .coach-guide__button {
        text-align: left;
    }

    .coach-wheel-layout {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .coach-wheel-aside {
        justify-items: center;
        width: auto;
        transform: translateX(0);
    }

    .coach-wheel__panel,
    .coach-wheel__legend {
        justify-self: center;
        text-align: center;
    }

    .coach-wheel__legend {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .coach-hero {
        padding: 78px 0 60px;
    }

    .coach-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .coach-btn {
        width: 100%;
    }

    .coach-hero__trust {
        flex-direction: column;
    }

    .coach-pain-grid {
        grid-template-columns: 1fr;
    }

    .coach-wheel {
        width: min(320px, 100%);
        --node-radius: 130px;
    }

    .coach-wheel__node {
        transform: rotate(var(--angle)) translateY(calc(var(--node-radius) * -1)) rotate(calc(var(--angle) * -1));
    }

    .coach-cases {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
    }

    .coach-case {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .coach-stats {
        grid-template-columns: 1fr;
    }
}

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