.coach-page {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.5;
}

.coach-page * {
    box-sizing: border-box;
}

.coach-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.coach-hero {
    background: #19233e;
    padding: 100px 0 85px;
}

.coach-hero__content--full {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.coach-hero__content h1 {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
}

.coach-hero__content h2 {
    margin: 0 0 24px;
    font-size: 28px;
    line-height: 1.15;
    color: #ffd400;
    text-transform: uppercase;
    font-weight: 800;
}

.coach-hero__text {
    margin: 0 0 28px;
    font-size: 18px;
    color: #fff;
    max-width: 780px;
}

.coach-form-box {
    max-width: 760px;
}

.coach-form-box .wpcf7 form p {
    margin: 0 0 14px;
}

.coach-form-box input,
.coach-form-box select,
.coach-form-box textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    font-size: 16px;
    background: #fff;
    color: #111;
}

.coach-form-box input:focus,
.coach-form-box select:focus,
.coach-form-box textarea:focus {
    outline: none;
    border-color: #ffd400;
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.15);
}

.coach-form-box input[type="submit"],
.coach-form-box .wpcf7-submit {
    display: inline-block;
    width: 100%;
    min-height: 58px;
    background: #ffd400;
    border: none;
    color: #000;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease;
}

.coach-form-box input[type="submit"]:hover,
.coach-form-box .wpcf7-submit:hover {
    background: #e6bf00;
}

.coach-hero__privacy {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    max-width: 760px;
}

/* BENEFITS */
.coach-benefits {
    padding: 90px 0;
    background: #1b252f;
}

.coach-section-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 46px;
}

.coach-section-subtitle {
    margin: 0 0 8px;
    font-size: 20px;
    color: #f8f812;
    font-style: italic;
}

.coach-section-heading h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fbfbfb;
}

.coach-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.coach-benefit-card {
    background: #f8f8f8;
    border: 1px solid #ececec;
    padding: 34px 26px;
    text-align: center;
    border-radius: 14px;
}

.coach-benefit-card__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ffd400;
    color: #000;
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-benefit-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #000;
}

.coach-benefit-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.coach-benefits__cta {
    margin-top: 40px;
    text-align: center;
}

.coach-btn {
    display: inline-block;
    padding: 16px 34px;
    background: #ffd400;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background .2s ease;
}

.coach-btn:hover {
    background: #e6bf00;
}

@media (max-width: 980px) {
    .coach-hero__content h1 {
        font-size: 36px;
    }

    .coach-hero__content h2 {
        font-size: 24px;
    }

    .coach-benefits__grid {
        grid-template-columns: 1fr;
    }

    .coach-section-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .coach-hero {
        padding: 75px 0 60px;
    }

    .coach-hero__content h1 {
        font-size: 30px;
    }

    .coach-hero__content h2 {
        font-size: 21px;
    }

    .coach-hero__text {
        font-size: 16px;
    }

    .coach-section-heading h2 {
        font-size: 28px;
    }

    .coach-section-subtitle {
        font-size: 18px;
    }
}