.coaching-page {
                padding-top: 96px;
                padding-bottom: 72px;
                background:
                    radial-gradient(circle at 8% 8%, rgba(99, 102, 241, 0.15), transparent 42%),
                    radial-gradient(circle at 92% 18%, rgba(16, 185, 129, 0.14), transparent 35%),
                    linear-gradient(180deg, #f8faff 0%, #ffffff 45%, #f8fafc 100%);
            }

            .coaching-grid {
                display: grid;
                grid-template-columns: 1.15fr 0.85fr;
                gap: 24px;
            }

            .coaching-hero {
                background: linear-gradient(135deg, #0f172a 0%, #312e81 52%, #4338ca 100%);
                color: #ffffff;
                border-radius: 24px;
                padding: 36px;
                box-shadow: 0 24px 48px rgba(15, 23, 42, 0.24);
                position: relative;
                overflow: hidden;
            }

            .coaching-hero::after {
                content: "";
                position: absolute;
                width: 220px;
                height: 220px;
                right: -60px;
                top: -60px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
            }

            .coaching-kicker {
                display: inline-block;
                padding: 6px 12px;
                border: 1px solid rgba(255, 255, 255, 0.28);
                border-radius: 999px;
                font-size: 12px;
                font-weight: 600;
                margin-bottom: 16px;
                letter-spacing: 0.02em;
            }

            .coaching-title {
                font-size: clamp(30px, 5vw, 46px);
                line-height: 1.15;
                margin-bottom: 16px;
            }

            .coaching-lead {
                color: rgba(255, 255, 255, 0.9);
                max-width: 56ch;
                margin-bottom: 22px;
            }

            .coaching-cta-row {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                margin-bottom: 18px;
            }

            .coaching-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                border-radius: 12px;
                padding: 12px 18px;
                font-size: 15px;
                font-weight: 700;
                transition: transform 180ms ease, box-shadow 180ms ease;
            }

            .coaching-btn-primary {
                background: #ffffff;
                color: #312e81;
            }

            .coaching-btn-secondary {
                border: 1px solid rgba(255, 255, 255, 0.36);
                color: #ffffff;
                background: rgba(255, 255, 255, 0.08);
            }

            .coaching-btn:hover {
                transform: translateY(-1px);
                box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
            }

            .coaching-proof {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 10px;
            }

            .coaching-proof-item {
                background: rgba(255, 255, 255, 0.12);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 12px;
                padding: 10px;
            }

            .coaching-proof-item strong {
                display: block;
                font-size: 18px;
                margin-bottom: 2px;
            }

            .coaching-proof-item span {
                color: rgba(255, 255, 255, 0.88);
                font-size: 12px;
            }

            .coaching-panel {
                background: #ffffff;
                border-radius: 20px;
                border: 1px solid #e2e8f0;
                padding: 26px;
                box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
            }

            .coaching-panel h2 {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .coaching-panel p {
                color: #64748b;
                margin-bottom: 16px;
            }

            .coaching-checklist {
                list-style: none;
                display: grid;
                gap: 10px;
                margin-bottom: 18px;
            }

            .coaching-checklist li {
                position: relative;
                padding-left: 24px;
                color: #334155;
            }

            .coaching-checklist li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                color: #10b981;
                font-weight: 700;
            }

            .coaching-note {
                margin-top: 12px;
                color: #64748b;
                font-size: 13px;
            }

            .coaching-section {
                margin-top: 24px;
            }

            .coaching-cards {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 14px;
            }

            .coaching-card {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 14px;
                padding: 16px;
            }

            .coaching-card h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .coaching-card p {
                color: #64748b;
                font-size: 14px;
            }

            .coaching-steps {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 12px;
            }

            .coaching-step {
                background: #ffffff;
                border: 1px solid #dbeafe;
                border-radius: 14px;
                padding: 16px;
            }

            .coaching-step strong {
                display: inline-flex;
                width: 28px;
                height: 28px;
                align-items: center;
                justify-content: center;
                border-radius: 8px;
                background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
                color: #ffffff;
                margin-bottom: 8px;
                font-size: 14px;
            }

            .coaching-step h4 {
                margin-bottom: 6px;
                font-size: 16px;
            }

            .coaching-step p {
                color: #64748b;
                font-size: 14px;
            }

            .coaching-testimonials {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .coaching-quote {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 14px;
                padding: 16px;
            }

            .coaching-quote p {
                color: #1e293b;
                margin-bottom: 10px;
            }

            .coaching-quote span {
                font-size: 13px;
                color: #64748b;
            }

            .coaching-final {
                margin-top: 24px;
                background: linear-gradient(90deg, #111827 0%, #312e81 60%, #0f766e 100%);
                border-radius: 18px;
                padding: 26px;
                color: #ffffff;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
            }

            .coaching-final h3 {
                font-size: 24px;
                margin-bottom: 6px;
            }

            .coaching-final p {
                color: rgba(255, 255, 255, 0.85);
                max-width: 60ch;
            }

            @media (max-width: 1024px) {
                .coaching-grid,
                .coaching-cards,
                .coaching-steps {
                    grid-template-columns: 1fr;
                }

                .coaching-proof {
                    grid-template-columns: 1fr;
                }
            }

            @media (max-width: 768px) {
                .coaching-hero,
                .coaching-panel,
                .coaching-final {
                    padding: 22px;
                }

                .coaching-testimonials {
                    grid-template-columns: 1fr;
                }
            }

.pc-auto-199b6f0e { width: 100%; }
