/* =========================================================
   COACHING PAGES
   CSS GLOBAL
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --coach-bg: #f7f5f0;
    --coach-bg-cream: #fbfaf7;
    --coach-bg-beige: #eeeae1;

    --coach-dark: #17251f;
    --coach-dark-2: #21352d;

    --coach-green: #526f5d;
    --coach-green-dark: #3f5c4b;

    --coach-accent: #b88b5a;

    --coach-text: #27312c;
    --coach-text-light: #68716b;

    --coach-white: #ffffff;

    --coach-border: rgba(23, 37, 31, 0.10);

    --coach-shadow:
        0 20px 60px rgba(23, 37, 31, 0.08);

    --coach-shadow-small:
        0 10px 30px rgba(23, 37, 31, 0.07);

    --coach-radius: 18px;

    --coach-container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

.coach-page *,
.coach-page *::before,
.coach-page *::after {
    box-sizing: border-box;
}

.coach-page {
    margin: 0;
    padding: 0;

    background: var(--coach-bg);

    color: var(--coach-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
}


.coach-page a {
    color: inherit;
    text-decoration: none;
}


.coach-page img {
    max-width: 100%;
    height: auto;
}


.coach-page h1,
.coach-page h2,
.coach-page h3,
.coach-page p {
    margin-top: 0;
}


.coach-page h1,
.coach-page h2,
.coach-page h3 {
    line-height: 1.15;
}


/* =========================================================
   CONTAINER
========================================================= */

.coach-page .container {
    width: min(
        calc(100% - 48px),
        var(--coach-container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO
========================================================= */

.coach-hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 25%,
            rgba(184, 139, 90, 0.16),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(82, 111, 93, 0.18),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #17251f 0%,
            #20362d 100%
        );

    color: white;
}


.coach-hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    bottom: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.10);

}


.coach-hero::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.07);

}


.coach-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 100px 0;
}


.coach-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--coach-accent);

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.coach-hero h1 {

    max-width: 900px;

    margin-bottom: 28px;

    font-size: clamp(
        2.8rem,
        6vw,
        5.3rem
    );

    font-weight: 600;

    letter-spacing: -0.045em;
}


.coach-hero h1 span {

    display: block;

    color: #dfe8e1;

}


.coach-hero-intro {

    max-width: 760px;

    margin-bottom: 40px;

    color: rgba(255,255,255,0.78);

    font-size: 1.16rem;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.coach-hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


.coach-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 14px 27px;

    border-radius: 100px;

    border: 1px solid var(--coach-green);

    background: var(--coach-green);

    color: white !important;

    font-size: 0.95rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.coach-btn:hover {

    transform: translateY(-2px);

    background: var(--coach-green-dark);

    box-shadow:
        0 12px 30px rgba(23,37,31,0.16);
}


.coach-btn-outline {

    background: transparent;

    border-color: rgba(255,255,255,0.35);
}


.coach-btn-outline:hover {

    background: rgba(255,255,255,0.08);

    border-color: rgba(255,255,255,0.65);
}


.coach-btn-light {

    background: white;

    border-color: white;

    color: var(--coach-dark) !important;
}


.coach-btn-light:hover {

    background: #f0eee8;

}


/* =========================================================
   SECTIONS
========================================================= */

.coach-section {

    padding: 110px 0;
}


.coach-section-cream {

    background: var(--coach-bg-cream);
}


.coach-section-beige {

    background: var(--coach-bg-beige);
}


.coach-section-dark {

    background: var(--coach-dark);

    color: white;
}


.coach-section-dark .coach-eyebrow {

    color: #c8a47a;
}


.coach-section-dark p {

    color: rgba(255,255,255,0.68);
}


.coach-section-heading {

    max-width: 820px;

    margin-bottom: 55px;
}


.coach-section-heading.center {

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.coach-section-heading h2 {

    margin-bottom: 22px;

    font-size: clamp(
        2.1rem,
        4vw,
        3.6rem
    );

    font-weight: 600;

    letter-spacing: -0.035em;

    color: var(--coach-dark);
}


.coach-section-dark .coach-section-heading h2 {

    color: white;
}


.coach-section-heading p {

    max-width: 760px;

    color: var(--coach-text-light);

    font-size: 1.08rem;

    line-height: 1.8;
}


.coach-section-heading.center p {

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   GRIDS
========================================================= */

.coach-grid-2 {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


.coach-grid-3 {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   CARDS
========================================================= */

.coach-card {

    position: relative;

    padding: 34px;

    border: 1px solid var(--coach-border);

    border-radius: var(--coach-radius);

    background: rgba(255,255,255,0.72);

    box-shadow: var(--coach-shadow-small);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.coach-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--coach-shadow);

    border-color:
        rgba(82,111,93,0.25);
}


.coach-section-dark .coach-card {

    background:
        rgba(255,255,255,0.045);

    border-color:
        rgba(255,255,255,0.09);

    box-shadow: none;
}


.coach-card h3 {

    margin-bottom: 12px;

    font-size: 1.3rem;

    font-weight: 650;

    color: var(--coach-dark);
}


.coach-section-dark .coach-card h3 {

    color: white;
}


.coach-card p {

    margin-bottom: 0;

    color: var(--coach-text-light);

    line-height: 1.75;
}


.coach-section-dark .coach-card p {

    color: rgba(255,255,255,0.65);
}


/* =========================================================
   SITUATION CARDS
========================================================= */

.coach-situation {

    display: flex;

    gap: 20px;

    align-items: flex-start;
}


.coach-situation-icon {

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(82,111,93,0.11);

    color: var(--coach-green);

    font-weight: 800;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.coach-card-number {

    display: inline-block;

    margin-bottom: 25px;

    color: var(--coach-accent);

    font-size: 0.8rem;

    font-weight: 800;

    letter-spacing: .1em;
}


/* =========================================================
   LIST
========================================================= */

.coach-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 25px 0 30px;

    padding: 0;

    list-style: none;
}


.coach-list li {

    position: relative;

    padding-left: 28px;

    color: var(--coach-text-light);

}


.coach-list li::before {

    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    color: var(--coach-green);

    font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.coach-process {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;

    position: relative;
}


.coach-step {

    position: relative;

    padding: 30px 5px 10px;
}


.coach-step::after {

    content: "";

    position: absolute;

    top: 31px;

    left: 58px;

    width: calc(100% - 30px);

    height: 1px;

    background: var(--coach-border);

    z-index: 0;
}


.coach-step:last-child::after {

    display: none;
}


.coach-step-number {

    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 50%;

    background: var(--coach-dark);

    color: white;

    font-weight: 700;
}


.coach-step h3 {

    margin-bottom: 10px;

    color: var(--coach-dark);

    font-size: 1.25rem;
}


.coach-step p {

    margin: 0;

    color: var(--coach-text-light);
}


/* =========================================================
   OFFERS
========================================================= */

.coach-offers {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


.coach-offer {

    position: relative;

    display: flex;

    flex-direction: column;

    padding: 42px 34px;

    border: 1px solid var(--coach-border);

    border-radius: 22px;

    background: white;

    box-shadow: var(--coach-shadow-small);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.coach-offer:hover {

    transform: translateY(-6px);

    box-shadow: var(--coach-shadow);
}


.coach-offer h3 {

    margin-bottom: 15px;

    color: var(--coach-dark);

    font-size: 1.6rem;
}


.coach-offer-description {

    min-height: 95px;

    color: var(--coach-text-light);

    line-height: 1.7;
}


.coach-price {

    margin-top: 20px;

    color: var(--coach-dark);

    font-size: 3rem;

    font-weight: 700;

    letter-spacing: -0.04em;
}


.coach-price-detail {

    color: var(--coach-text-light);

    font-size: .9rem;
}


.coach-offer .coach-btn {

    margin-top: auto;
}


.coach-offer-featured {

    border:
        2px solid var(--coach-green);

    transform: translateY(-10px);

    box-shadow:
        0 25px 70px rgba(23,37,31,0.13);
}


.coach-offer-featured:hover {

    transform: translateY(-15px);
}


.coach-offer-badge {

    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 12px;

    border-radius: 100px;

    background: rgba(82,111,93,0.11);

    color: var(--coach-green-dark);

    font-size: .72rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;
}


/* =========================================================
   TRANSFORMATION
========================================================= */

.coach-transformation {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1px;

    overflow: hidden;

    border:
        1px solid var(--coach-border);

    border-radius: 20px;

    background: var(--coach-border);
}


.coach-transformation-item {

    padding: 35px;

    background: var(--coach-bg-cream);
}


.coach-transformation-item span {

    display: block;

    margin-bottom: 15px;

    color: var(--coach-accent);

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.coach-transformation-item h3 {

    margin-bottom: 10px;

    color: var(--coach-dark);

    font-size: 1.25rem;
}


.coach-transformation-item p {

    margin-bottom: 0;

    color: var(--coach-text-light);
}


/* =========================================================
   FAQ
========================================================= */

.coach-faq {

    max-width: 900px;

    margin-left: auto;
    margin-right: auto;
}


.coach-faq details {

    border-bottom:
        1px solid var(--coach-border);
}


.coach-faq summary {

    position: relative;

    padding: 25px 45px 25px 0;

    cursor: pointer;

    list-style: none;

    color: var(--coach-dark);

    font-size: 1.08rem;

    font-weight: 650;
}


.coach-faq summary::-webkit-details-marker {

    display: none;
}


.coach-faq summary::after {

    content: "+";

    position: absolute;

    right: 5px;
    top: 20px;

    font-size: 1.5rem;

    font-weight: 400;

    color: var(--coach-green);

    transition: transform .2s ease;
}


.coach-faq details[open] summary::after {

    transform: rotate(45deg);
}


.coach-faq details p {

    max-width: 800px;

    padding:
        0 50px 25px 0;

    color: var(--coach-text-light);

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.coach-final-cta {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:

        radial-gradient(
            circle at 80% 30%,
            rgba(184,139,90,0.18),
            transparent 30%
        ),

        var(--coach-dark);

    color: white;

    text-align: center;
}


.coach-final-cta .container {

    max-width: 850px;
}


.coach-final-cta h2 {

    margin-bottom: 25px;

    color: white;

    font-size: clamp(
        2.1rem,
        4vw,
        3.8rem
    );

    letter-spacing: -0.04em;
}


.coach-final-cta p {

    max-width: 680px;

    margin:
        0 auto 35px;

    color: rgba(255,255,255,0.68);

    font-size: 1.08rem;
}


.coach-final-cta .coach-eyebrow {

    color: #c8a47a;
}


/* =========================================================
   FOOTER NOTE
========================================================= */

.coach-note {

    padding: 30px 20px;

    background: #111b17;

    text-align: center;
}


.coach-note p {

    max-width: 850px;

    margin: 0 auto;

    color: rgba(255,255,255,0.42);

    font-size: .78rem;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 950px) {

    .coach-hero {

        min-height: 650px;
    }


    .coach-section {

        padding: 85px 0;
    }


    .coach-grid-3 {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .coach-offers {

        grid-template-columns:
            1fr;
    }


    .coach-offer-featured {

        transform: none;
    }


    .coach-offer-featured:hover {

        transform: translateY(-6px);
    }


    .coach-process {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px;
    }


    .coach-step::after {

        display: none;
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 680px) {

    .coach-page {

        font-size: 15px;
    }


    .coach-page .container {

        width: min(
            calc(100% - 32px),
            var(--coach-container)
        );
    }


    .coach-hero {

        min-height: auto;
    }


    .coach-hero-content {

        padding: 80px 0;
    }


    .coach-hero h1 {

        font-size: clamp(
            2.45rem,
            12vw,
            3.7rem
        );

        letter-spacing: -0.05em;
    }


    .coach-hero-intro {

        font-size: 1rem;

        line-height: 1.75;
    }


    .coach-hero-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .coach-hero-actions .coach-btn {

        width: 100%;
    }


    .coach-section {

        padding: 70px 0;
    }


    .coach-section-heading {

        margin-bottom: 38px;
    }


    .coach-section-heading h2 {

        font-size: 2rem;

        letter-spacing: -0.035em;
    }


    .coach-section-heading p {

        font-size: 1rem;
    }


    .coach-grid-2,
    .coach-grid-3 {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .coach-card {

        padding: 27px;
    }


    .coach-situation {

        gap: 15px;
    }


    .coach-situation-icon {

        flex-basis: 36px;

        width: 36px;
        height: 36px;
    }


    .coach-process {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .coach-step {

        padding:
            10px 0 20px 75px;
    }


    .coach-step-number {

        position: absolute;

        left: 0;
        top: 0;

        width: 54px;
        height: 54px;

        margin: 0;
    }


    .coach-transformation {

        grid-template-columns: 1fr;
    }


    .coach-transformation-item {

        padding: 27px;
    }


    .coach-offer {

        padding: 35px 27px;
    }


    .coach-offer-description {

        min-height: auto;
    }


    .coach-price {

        font-size: 2.6rem;
    }


    .coach-final-cta {

        padding: 80px 0;
    }


    .coach-final-cta h2 {

        font-size: 2.15rem;
    }


    .coach-final-cta .coach-btn {

        width: 100%;
    }


    .coach-faq summary {

        padding-right: 35px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.coach-page a:focus-visible,
.coach-page button:focus-visible,
.coach-page summary:focus-visible {

    outline: 3px solid rgba(184,139,90,0.75);

    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .coach-page *,
    .coach-page *::before,
    .coach-page *::after {

        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;
    }

}