/* ============================================
   BEACOACH - HERO SECTION
   ============================================ */

/* Countdown Banner */
.beacoach-countdown-banner {
    background-color: #ffc107;
    padding: 16px 0;
    position: relative;
}

.beacoach-countdown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.beacoach-countdown-text {
    font-size: 18px;
    font-weight: 600;
    color: #012635;
}

.beacoach-countdown-timer {
    display: flex;
    gap: 32px;
    align-items: center;
}

.beacoach-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.beacoach-timer-value {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: #012635;
}

.beacoach-timer-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #012635;
}

/* Hero Main Section */
.beacoach-hero-main {
    background-color: #f7f8fc;
    padding: 80px 0 120px;
    position: relative;
}

.beacoach-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.beacoach-hero-left {
    max-width: 100%;
}

.beacoach-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 40px;
}

/* Features Grid */
.beacoach-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.beacoach-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.beacoach-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #ea0a8e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.beacoach-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #012635;
    line-height: 1.3;
}

/* Hero Image */
.beacoach-hero-right {
    position: relative;
}

.beacoach-hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(1, 38, 53, 0.15);
}

.beacoach-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile: Stack countdown */
@media screen and (max-width: 768px) {
    .beacoach-countdown-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .beacoach-countdown-text {
        font-size: 14px;
    }

    .beacoach-countdown-timer {
        gap: 16px;
        width: 100%;
        justify-content: space-between;
    }

    .beacoach-timer-value {
        font-size: 32px;
    }

    .beacoach-timer-label {
        font-size: 10px;
    }

    .beacoach-hero-main {
        padding: 48px 0 64px;
    }

    .beacoach-hero-title {
        font-size: 32px;
    }

    .beacoach-hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .beacoach-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .beacoach-hero-grid {
        gap: 32px;
    }
}

/* Tablet and Desktop */
@media screen and (min-width: 769px) {
    .beacoach-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .beacoach-hero-title {
        font-size: 56px;
    }
}

@media screen and (min-width: 1024px) {
    .beacoach-hero-title {
        font-size: 60px;
    }

    .beacoach-countdown-timer {
        gap: 48px;
    }

    .beacoach-timer-value {
        font-size: 50px;
    }
}

/* ============================================
   BEACOACH - WHY SECTION
   ============================================ */

.beacoach-why-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.beacoach-why-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.beacoach-why-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-why-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #012635;
    margin-bottom: 40px;
}

.beacoach-why-content {
    text-align: left;
    margin-bottom: 48px;
}

.beacoach-why-intro {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-why-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 20px;
}

.beacoach-highlight {
    font-weight: 600;
    color: #012635;
}

.beacoach-why-emphasis {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #012635;
    margin: 32px 0;
}

.beacoach-why-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn--large {
    padding: 18px 48px;
    font-size: 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 768px) {
    .beacoach-why-section {
        padding: 48px 0;
    }

    .beacoach-why-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .beacoach-why-subtitle {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .beacoach-why-intro {
        font-size: 18px;
    }

    .beacoach-why-text {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .beacoach-why-emphasis {
        font-size: 20px;
        margin: 24px 0;
    }

    .btn--large {
        padding: 16px 32px;
        font-size: 18px;
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-why-title {
        font-size: 40px;
    }

    .beacoach-why-subtitle {
        font-size: 28px;
    }
}

/* ============================================
   BEACOACH - STRATEGIC GUIDES SECTION
   ============================================ */

.beacoach-strategic-section {
    background-color: #f7f8fc;
    padding: 80px 0;
    position: relative;
}

.beacoach-strategic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Image */
.beacoach-strategic-left {
    position: relative;
}

.beacoach-strategic-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(1, 38, 53, 0.15);
}

.beacoach-strategic-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Content */
.beacoach-strategic-right {
    max-width: 100%;
}

.beacoach-strategic-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-strategic-intro {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-strategic-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 20px;
}

.beacoach-strategic-text:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 768px) {
    .beacoach-strategic-section {
        padding: 48px 0;
    }

    .beacoach-strategic-grid {
        gap: 32px;
    }

    .beacoach-strategic-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .beacoach-strategic-intro {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .beacoach-strategic-text {
        font-size: 16px;
        margin-bottom: 16px;
    }
}

@media screen and (min-width: 769px) {
    .beacoach-strategic-grid {
        grid-template-columns: 45% 55%;
        gap: 64px;
    }

    .beacoach-strategic-title {
        font-size: 48px;
    }
}

@media screen and (min-width: 1024px) {
    .beacoach-strategic-grid {
        grid-template-columns: 40% 60%;
        gap: 80px;
    }

    .beacoach-strategic-title {
        font-size: 44px;
    }

    .beacoach-strategic-intro {
        font-size: 22px;
    }
}

/* ============================================
   BEACOACH - GUIDE SECTION
   ============================================ */

.beacoach-guide-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.beacoach-guide-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    margin-bottom: 80px;
}

.beacoach-guide-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    margin-top: 150px;
}


/* Guide Cards */
.beacoach-guide-cards {
    display: flex;
    flex-direction: column;
    gap: 55px;
    position: relative;
    z-index: 11;
}

.beacoach-guide-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(1, 38, 53, 0.08);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beacoach-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(1, 38, 53, 0.12);
}

.beacoach-guide-card-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 7px;
    background: linear-gradient(135deg, #ea0b8e 0%, #ed82c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.beacoach-guide-number {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.beacoach-guide-card-content {
    flex: 1;
}

.beacoach-guide-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #012635;
    margin-bottom: 8px;
}

.beacoach-guide-card-text {
    font-size: 16px;
    line-height: 1.1;
    color: rgba(1, 38, 53, 0.7);
    margin: 0;
}

/* Center Image */
.beacoach-guide-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(1, 38, 53, 0.15);
    width: 140px;
}

.beacoach-guide-image img {
    display: block;
    object-fit: cover;
    position: absolute;
    width: 470px;
    height: auto;
    border-radius: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.beacoach-guide-cards.beacoach-guide-cards-left .beacoach-guide-card:nth-child(2) {
    margin-right: auto;
}

.beacoach-guide-cards.beacoach-guide-cards-right .beacoach-guide-card:nth-child(2) {
    margin-left: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media screen and (max-width: 768px) {
    .beacoach-guide-section {
        padding: 60px 0;
    }

    .beacoach-guide-main-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .beacoach-guide-container {
        gap: 32px;
    }

    .beacoach-guide-cards {
        gap: 16px;
    }

    .beacoach-guide-card {
        padding: 20px;
        gap: 16px;
    }

    .beacoach-guide-card-icon {
        width: 48px;
        height: 48px;
    }

    .beacoach-guide-number {
        font-size: 20px;
    }

    .beacoach-guide-card-title {
        font-size: 18px;
    }

    .beacoach-guide-card-text {
        font-size: 14px;
    }

    .beacoach-guide-image {
        width: 100%;
    }

    .beacoach-guide-image img {
        display: block;
        position: static;
        width: 100%;
        border-radius: 30px;
        transform: none;
    }


}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-guide-main-title {
        font-size: 40px;
    }

    .beacoach-guide-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .beacoach-guide-image {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1025px) {
    .beacoach-guide-container {
        grid-template-columns: 1fr auto 1fr;
        gap: 60px;
        align-items: center;
    }

    .beacoach-guide-main-title {
        font-size: 56px;
    }

    .beacoach-guide-image {
        max-width: 180px;
        margin: 0;
    }

    .beacoach-guide-cards-left {
        padding-right: 20px;
    }

    .beacoach-guide-cards-right {
        padding-left: 20px;
    }

    .beacoach-guide-card {
        max-width: 346px;
    }

    .beacoach-guide-cards-left .beacoach-guide-card {
        margin-left: auto;
    }

    .beacoach-guide-cards-right .beacoach-guide-card {
        margin-right: auto;
    }
}


/* ============================================
   BEACOACH - CERTIFICATION SECTION
   ============================================ */

.beacoach-certification {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.beacoach-certification-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.beacoach-certification-header {
    text-align: center;
    margin-bottom: 64px;
}

.beacoach-certification-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.beacoach-certification-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(1, 38, 53, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Certificate Image */
.beacoach-certificate-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.beacoach-icf-logo img {
    max-width: 200px;
    margin: 0 auto;
}

.beacoach-certificate-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(1, 38, 53, 0.1);
    background-color: #f7f8fc;
    max-width: 900px;
    margin: 0 auto;
}

.beacoach-certificate-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-certification {
        padding: 48px 0;
    }

    .beacoach-certification-header {
        margin-bottom: 40px;
    }

    .beacoach-certification-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .beacoach-certification-subtitle {
        font-size: 16px;
    }

    .beacoach-certificate-image {
        border-radius: 16px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-certification-title {
        font-size: 40px;
    }

    .beacoach-certification-subtitle {
        font-size: 18px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-certification {
        padding: 100px 0;
    }

    .beacoach-certification-title {
        font-size: 56px;
    }

    .beacoach-certification-subtitle {
        font-size: 22px;
    }
}


/* ============================================
   BEACOACH - ICF ACCREDITATION SECTION
   ============================================ */

.beacoach-icf {
    background: linear-gradient(135deg, #ffe6fe 0%, #ffd9e3 100%);
    padding: 80px 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 40px;
}

.beacoach-icf-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.beacoach-icf-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 48px;
}

/* CCE Logo Container */
.beacoach-icf-logo {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.beacoach-cce-text {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: #2c3e87;
    letter-spacing: -0.02em;
    font-family: "Fellix", sans-serif;
}

.beacoach-cce-subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e87;
    text-align: center;
    letter-spacing: 0.5px;
}

.beacoach-icf-brand {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: #2c3e87;
    letter-spacing: 0.05em;
    font-family: "Fellix", sans-serif;
    margin-top: 8px;
}

/* Description */
.beacoach-icf-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-icf {
        padding: 48px 0;
    }

    .beacoach-icf-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .beacoach-cce-text {
        font-size: 72px;
    }

    .beacoach-cce-subtitle {
        font-size: 12px;
    }

    .beacoach-icf-brand {
        font-size: 56px;
    }

    .beacoach-icf-description {
        font-size: 16px;
    }

    .beacoach-icf-logo {
        margin-bottom: 32px;
        gap: 12px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-icf-title {
        font-size: 40px;
    }

    .beacoach-cce-text {
        font-size: 100px;
    }

    .beacoach-cce-subtitle {
        font-size: 14px;
    }

    .beacoach-icf-brand {
        font-size: 70px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-icf {
        padding: 100px 0;
    }

    .beacoach-icf-title {
        font-size: 56px;
        margin-bottom: 56px;
    }

    .beacoach-icf-description {
        font-size: 20px;
    }
}

/* ============================================
   BEACOACH - HOW IT WORKS SECTION
   ============================================ */

.beacoach-how-it-works {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Section Title */
.beacoach-how-title,
.beacoach-section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    margin-bottom: 64px;
}

/* Step Container */
.beacoach-step {
    margin-bottom: 80px;
}

.beacoach-step:last-child {
    margin-bottom: 0;
}

.beacoach-step-content {
    background-color: #f7f8fc;
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ebedf4;
}

.beacoach-step-reverse {
    direction: ltr;
}

/* Step Left Content */
.beacoach-step-left {
    max-width: 500px;
    padding: 50px;
}

.beacoach-step-number {
    font-size: 33px;
    font-weight: 700;
    line-height: 1;
    color: #ea0b8e;
    margin-bottom: 10px;
    font-family: "Fellix", sans-serif;
}

.beacoach-step-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #012635;
    margin-bottom: 20px;
}

.beacoach-step-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
}

/* Image Grid */
.beacoach-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.beacoach-grid-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e0e0;
    aspect-ratio: 1;
}

.beacoach-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beacoach-grid-span-2 {
    grid-column: span 2;
}

/* Single Image */
/* .beacoach-image-single {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.1);
} */

.beacoach-image-single img {
    width: 100%;
    height: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-how-it-works {
        padding: 48px 0;
    }

    .beacoach-how-title,
    .beacoach-section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .beacoach-step {
        margin-bottom: 40px;
    }

    .beacoach-step-content {
        padding: 0;
        gap: 0px;
    }

    .beacoach-step-number {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .beacoach-step-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .beacoach-step-description {
        font-size: 15px;
    }

    .beacoach-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .beacoach-grid-item {
        border-radius: 8px;
    }

    .beacoach-grid-span-2 {
        grid-column: span 1;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    .beacoach-how-title,
    .beacoach-section-title {
        font-size: 48px;
    }

    .beacoach-step-content {
        grid-template-columns: 1fr 1fr;
        gap: 0px;
    }

    .beacoach-step-number {
        font-size: 42px;
    }

    .beacoach-step-title {
        font-size: 30px;
    }

    .beacoach-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-how-it-works {
        padding: 100px 0;
        padding-bottom: 50px;
    }

    .beacoach-how-title,
    .beacoach-section-title {
        font-size: 64px;
        margin-bottom: 80px;
    }

    .beacoach-step {
        margin-bottom: 50px;
    }

    .beacoach-step-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 0px;
        padding: 0px;
    }

    .beacoach-step-reverse {
        grid-template-columns: 1.2fr 1fr;
    }

    .beacoach-step-reverse .beacoach-step-left {
        order: 2;
        margin-left: auto;
    }

    .beacoach-step-reverse .beacoach-step-right {
        order: 1;
    }

    .beacoach-step-title {
        font-size: 36px;
    }

    .beacoach-step-description {
        font-size: 18px;
    }
}

/* ============================================
   BEACOACH - TIME REQUIRED SECTION
   ============================================ */

.beacoach-time-required {
    background: linear-gradient(135deg, #f0e6ff 0%, #e8d9ff 100%);
    padding: 60px;
    position: relative;
    border-radius: 16px;
}

.beacoach-time-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Label */
.beacoach-time-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ea0b8e;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Main Title */
.beacoach-time-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #012635;
    margin-bottom: 32px;
}

.beacoach-time-highlight {
    color: #ea0b8e;
}

/* Subtitle */
.beacoach-time-subtitle {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #012635;
    margin-bottom: 24px;
    max-width: 1000px;
}

/* Description */
.beacoach-time-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.85);
    max-width: 1100px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-time-required {
        padding: 48px 0;
    }

    .beacoach-time-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .beacoach-time-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .beacoach-time-subtitle {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .beacoach-time-description {
        font-size: 15px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-time-title {
        font-size: 56px;
    }

    .beacoach-time-subtitle {
        font-size: 32px;
    }

    .beacoach-time-description {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {


    .beacoach-time-title {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .beacoach-time-subtitle {
        font-size: 38px;
        margin-bottom: 26px;
    }

    .beacoach-time-description {
        font-size: 20px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-time-title {
        font-size: 60px;
    }
}

/* ============================================
   BEACOACH - CURRICULUM SECTION
   ============================================ */

.beacoach-curriculum {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.beacoach-curriculum-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.beacoach-curriculum-content:before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
    background: #e0e0e0;
}

/* Curriculum Item */
.beacoach-curriculum-item {
    position: relative;
    margin-bottom: 40px;
}

/* Header */
.beacoach-curriculum-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.beacoach-curriculum-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ea0b8e;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    z-index: 2;
}

.beacoach-curriculum-header-content {
    flex: 1;
}

.beacoach-curriculum-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ea0b8e;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.beacoach-curriculum-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 16px;
}

/* Toggle Button */
.beacoach-curriculum-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #012635;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.beacoach-curriculum-toggle:hover {
    opacity: 0.7;
}

.beacoach-toggle-icon {
    transition: transform 0.3s ease;
}

.beacoach-toggle-icon.rotate-180 {
    transform: rotate(180deg);
}

/* Body Content */
.beacoach-curriculum-body {
    margin-top: 24px;
    padding-left: 44px;
}

.beacoach-curriculum-intro {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 24px;
}

/* Points List */
.beacoach-curriculum-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.beacoach-curriculum-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.beacoach-point-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #ea0b8e;
    margin-top: 2px;
}

.beacoach-point-content {
    flex: 1;
}

.beacoach-point-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #012635;
    margin-bottom: 4px;
}

.beacoach-point-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(1, 38, 53, 0.8);
}

/* Summary */
.beacoach-curriculum-summary {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
}

.beacoach-curriculum-summary strong {
    font-weight: 700;
    color: #012635;
}

/* Connecting Line */
.beacoach-curriculum-line {
    width: 2px;
    height: 40px;
    background-color: #e0e0e0;
    margin-left: 9px;
    position: relative;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-curriculum {
        padding: 48px 0;
    }

    .beacoach-curriculum-item {
        margin-bottom: 32px;
    }

    .beacoach-curriculum-header {
        gap: 16px;
    }

    .beacoach-curriculum-dot {
        width: 16px;
        height: 16px;
        margin-top: 2px;
    }

    .beacoach-curriculum-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .beacoach-curriculum-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .beacoach-curriculum-toggle {
        font-size: 14px;
    }

    .beacoach-curriculum-body {
        padding-left: 32px;
        margin-top: 16px;
    }

    .beacoach-curriculum-intro,
    .beacoach-curriculum-summary,
    .beacoach-point-title,
    .beacoach-point-text {
        font-size: 15px;
    }

    .beacoach-curriculum-line {
        height: 32px;
        margin-left: 7px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-curriculum {
        padding: 100px 0;
    }

    .beacoach-curriculum-title {
        font-size: 36px;
    }

    .beacoach-curriculum-intro,
    .beacoach-curriculum-summary {
        font-size: 18px;
    }

    .beacoach-point-title,
    .beacoach-point-text {
        font-size: 17px;
    }
}

/* ============================================
   BEACOACH - PRODUCT OVERVIEW SECTION
   ============================================ */

.beacoach-product-overview {
    background-color: #ffffff;
    padding: 80px 0 0;
    position: relative;
}

/* Header */
.beacoach-overview-header {
    padding-bottom: 64px;
}

.beacoach-overview-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #012635;
    text-align: center;
    margin-bottom: 24px;
}

.beacoach-overview-subtitle {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

/* Images Container */
.beacoach-overview-images {
    width: 100%;
}

.beacoach-overview-image-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.beacoach-overview-image-item img {
    width: 100%;
    height: auto;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-product-overview {
        padding: 48px 0 0;
    }

    .beacoach-overview-header {
        padding-bottom: 40px;
    }

    .beacoach-overview-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .beacoach-overview-subtitle {
        font-size: 24px;
        padding: 0 16px;
    }

    .beacoach-overview-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .beacoach-overview-image-item {
        aspect-ratio: 4 / 3;
    }
}

/* Small Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-overview-title {
        font-size: 48px;
    }

    .beacoach-overview-subtitle {
        font-size: 32px;
    }

}



/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-product-overview {
        padding: 100px 0 0;
    }

    .beacoach-overview-header {
        padding-bottom: 60px;
    }

    .beacoach-overview-title {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .beacoach-overview-subtitle {
        font-size: 40px;
    }
}

.beacoach-curriculam-header .beacoach-section-title {
    margin-bottom: 40px;
}

.beacoach-curriculam-header-img {
    max-width: 1000px;
    margin: 0 auto;
}

.beacoach-curriculam-header {
    margin-bottom: 70px;
}

/* ============================================
   BEACOACH - BUSINESS TRAINING SECTION
   ============================================ */

.beacoach-business-training {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.beacoach-training-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.beacoach-training-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.beacoach-training-intro {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    max-width: 1000px;
    margin: 0 auto;
}

/* Training Feature */
.beacoach-training-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.beacoach-training-feature:last-child {
    margin-bottom: 0;
}

/* Feature Image */
.beacoach-feature-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(1, 38, 53, 0.1);
}

.beacoach-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Feature Content */
.beacoach-feature-content {
    max-width: 600px;
}

.beacoach-feature-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 20px;
}

.beacoach-feature-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-business-training {
        padding: 48px 0;
    }

    .beacoach-training-header {
        margin-bottom: 48px;
    }

    .beacoach-training-main-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .beacoach-training-intro {
        font-size: 16px;
    }

    .beacoach-training-feature {
        gap: 32px;
        margin-bottom: 48px;
    }

    .beacoach-feature-image {
        border-radius: 16px;
    }

    .beacoach-feature-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .beacoach-feature-description {
        font-size: 16px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-training-main-title {
        font-size: 40px;
    }

    .beacoach-training-feature {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .beacoach-feature-title {
        font-size: 30px;
    }

    .beacoach-feature-description {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-business-training {
        padding: 100px 0;
    }

    .beacoach-training-header {
        margin-bottom: 100px;
    }

    .beacoach-training-main-title {
        font-size: 56px;
        margin-bottom: 32px;
    }

    .beacoach-training-intro {
        font-size: 20px;
    }

    .beacoach-training-feature {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Reverse layout for alternate features */
    .beacoach-feature-reverse {
        direction: ltr;
    }

    .beacoach-feature-reverse .beacoach-feature-image {
        order: 2;
    }

    .beacoach-feature-reverse .beacoach-feature-content {
        order: 1;
        margin-left: auto;
    }

    .beacoach-feature-title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .beacoach-feature-description {
        font-size: 18px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-training-main-title {
        font-size: 46px;
    }

    .beacoach-feature-title {
        font-size: 30px;
    }

    .beacoach-feature-description {
        font-size: 19px;
    }
}

/* ============================================
   BEACOACH - COMMUNITY SECTION
   ============================================ */

.beacoach-community {
    background-color: #faf5f0;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.beacoach-community-header {
    text-align: center;
    margin-bottom: 80px;
}

.beacoach-community-main-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    max-width: 700px;
    margin: 0 auto;
}

/* Community Feature */
.beacoach-community-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.beacoach-community-feature:last-child {
    margin-bottom: 0;
}

/* Community Image */
.beacoach-community-image {
    border-radius: 10px;
    overflow: hidden;
}

.beacoach-community-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Community Content */
.beacoach-community-content {
    max-width: 650px;
}

.beacoach-community-feature-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 16px;
}

.beacoach-community-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-community {
        padding: 48px 0;
    }

    .beacoach-community-header {
        margin-bottom: 48px;
    }

    .beacoach-community-main-title {
        font-size: 28px;
    }

    .beacoach-community-feature {
        gap: 32px;
        margin-bottom: 48px;
    }

    .beacoach-community-image {
        border-radius: 16px;
    }

    .beacoach-community-feature-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .beacoach-community-description {
        font-size: 16px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-community-main-title {
        font-size: 20px;
    }

    .beacoach-community-feature {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .beacoach-community-feature-title {
        font-size: 28px;
    }

    .beacoach-community-description {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-community {
        padding: 100px 0;
    }

    .beacoach-community-header {
        margin-bottom: 100px;
    }

    .beacoach-community-main-title {
        font-size: 56px;
    }

    .beacoach-community-feature {
        grid-template-columns: 1fr 1.5fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Reverse layout for alternate features */
    .beacoach-community-feature-reverse {
        direction: ltr;
    }

    .beacoach-community-feature-reverse .beacoach-community-image {
        order: 2;
    }

    .beacoach-community-feature-reverse .beacoach-community-content {
        order: 1;
        margin-left: auto;
    }

    .beacoach-community-feature-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .beacoach-community-description {
        font-size: 18px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-community-main-title {
        font-size: 40px;
    }

    .beacoach-community-feature-title {
        font-size: 20px;
    }

    .beacoach-community-description {
        font-size: 17px;
    }
}

/* ============================================
   BEACOACH - INSTRUCTOR SECTION
   ============================================ */

.beacoach-instructor {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Section Title */
.beacoach-instructor-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    margin-bottom: 64px;
}

/* Instructor Content Grid */
.beacoach-instructor-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* Instructor Image */
.beacoach-instructor-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: #2a2a2a;
    box-shadow: 0 16px 32px rgba(1, 38, 53, 0.15);
}

.beacoach-instructor-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.beacoach-instructor-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #ffffff;
}

.beacoach-instructor-name {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: "Fellix", sans-serif;
}

.beacoach-instructor-role {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Bio Content */
.beacoach-instructor-bio {
    max-width: 100%;
}

.beacoach-bio-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 20px;
}

/* Credentials */
.beacoach-credentials-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-top: 40px;
    margin-bottom: 24px;
}

.beacoach-credentials-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.beacoach-credential-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.beacoach-credential-item:last-child {
    margin-bottom: 0;
}

.beacoach-credential-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ea0b8e;
    margin-top: 3px;
}

.beacoach-credential-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin: 0;
}

/* As Seen On */
.beacoach-as-seen-on {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}

.beacoach-seen-title {
    font-size: 18px;
    font-weight: 700;
    color: #012635;
    margin-bottom: 9px;
}

.beacoach-media-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.beacoach-media-logos img {
    height: auto;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s;
}

.beacoach-media-logos img:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-instructor {
        padding: 48px 0;
    }

    .beacoach-instructor-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .beacoach-instructor-content {
        gap: 32px;
    }

    .beacoach-instructor-image {
        border-radius: 16px;
    }

    .beacoach-instructor-name-overlay {
        padding: 20px;
    }

    .beacoach-instructor-name {
        font-size: 36px;
    }

    .beacoach-instructor-role {
        font-size: 14px;
    }

    .beacoach-bio-text {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .beacoach-credentials-title {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 20px;
    }

    .beacoach-credential-item {
        gap: 12px;
        margin-bottom: 16px;
    }

    .beacoach-credential-icon {
        width: 20px;
        height: 20px;
    }

    .beacoach-credential-text {
        font-size: 15px;
    }

    .beacoach-as-seen-on {
        margin-top: 32px;
        padding-top: 24px;
    }

    .beacoach-seen-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .beacoach-media-logos {
        gap: 20px;
    }

    .beacoach-media-logos img {
        height: 24px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-instructor-title {
        font-size: 48px;
    }

    .beacoach-instructor-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .beacoach-instructor-name {
        font-size: 42px;
    }

    .beacoach-credentials-title {
        font-size: 26px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-instructor {
        padding: 100px 0;
    }

    .beacoach-instructor-title {
        font-size: 50px;
        margin-bottom: 80px;
    }

    .beacoach-instructor-content {
        grid-template-columns: 450px 1fr;
        gap: 64px;
    }

    .beacoach-bio-text {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .beacoach-credentials-title {
        font-size: 32px;
    }

    .beacoach-credential-text {
        font-size: 17px;
    }

    .beacoach-media-logos img {
        height: 36px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-instructor-content {
        grid-template-columns: 400px 1fr;
        gap: 50px;
    }
}

/* ============================================
   BEACOACH - APPLY NOW SECTION
   ============================================ */

.beacoach-apply-now {
    background-color: #f7f8fc;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.beacoach-apply-header {
    text-align: center;
    margin-bottom: 64px;
}

.beacoach-apply-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #012635;
    margin-bottom: 16px;
}

.beacoach-apply-subtitle {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
}

/* Benefits List */
.beacoach-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Benefit Card */
.beacoach-benefit-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

/* Benefit Image */
.beacoach-benefit-image {
    border-radius: 10px;
    overflow: hidden;
}

.beacoach-benefit-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Benefit Content */
.beacoach-benefit-content {
    display: flex;
    flex-direction: column;
}

.beacoach-benefit-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #ea0b8e;
    margin-bottom: 12px;
    font-family: "Fellix", sans-serif;
}

.beacoach-benefit-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 16px;
}

.beacoach-benefit-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-apply-now {
        padding: 48px 0;
    }

    .beacoach-apply-header {
        margin-bottom: 40px;
    }

    .beacoach-apply-title {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .beacoach-apply-subtitle {
        font-size: 24px;
    }

    .beacoach-benefits-list {
        gap: 24px;
    }

    .beacoach-benefit-card {
        padding: 24px;
        gap: 24px;
        border-radius: 16px;
    }

    .beacoach-benefit-image {
        border-radius: 12px;
    }

    .beacoach-benefit-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .beacoach-benefit-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .beacoach-benefit-description {
        font-size: 16px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-apply-title {
        font-size: 56px;
    }

    .beacoach-apply-subtitle {
        font-size: 32px;
    }

    .beacoach-benefit-card {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }

    .beacoach-benefit-number {
        font-size: 42px;
    }

    .beacoach-benefit-title {
        font-size: 28px;
    }

    .beacoach-benefit-description {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-apply-now {
        padding: 100px 0;
    }

    .beacoach-apply-header {
        margin-bottom: 80px;
    }

    .beacoach-apply-title {
        font-size: 80px;
        margin-bottom: 20px;
    }

    .beacoach-apply-subtitle {
        font-size: 48px;
    }

    .beacoach-benefits-list {
        gap: 48px;
    }

    .beacoach-benefit-card {
        grid-template-columns: 450px 1fr;
        gap: 48px;
        padding: 40px;
    }

    .beacoach-benefit-number {
        font-size: 29px;
        margin-bottom: 10px;
    }

    .beacoach-benefit-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .beacoach-benefit-description {
        font-size: 19px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-apply-title {
        font-size: 60px;
    }

    .beacoach-apply-subtitle {
        font-size: 40px;
    }

    .beacoach-benefit-card {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }

    .beacoach-benefit-title {
        font-size: 30px;
    }
}

/* ============================================
   BEACOACH - PRICING SECTION
   ============================================ */

.beacoach-pricing {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Pricing Header */
.beacoach-pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.beacoach-pricing-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #012635;
    margin-bottom: 32px;
}

.beacoach-pricing-values {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.beacoach-original-price {
    font-size: 24px;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.beacoach-final-price {
    font-size: 40px;
    font-weight: 800;
    color: #ea0b8e;
    margin: 0;
}

/* Payment Content */
.beacoach-payment-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Payment Left Content */
.beacoach-payment-left {
    max-width: 100%;
}

.beacoach-payment-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-payment-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 20px;
}

.beacoach-payment-text:last-child {
    margin-bottom: 0;
}

/* Payment Right Image */
.beacoach-payment-right {
    position: relative;
}

.beacoach-payment-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(1, 38, 53, 0.1);
}

.beacoach-payment-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-pricing {
        padding: 48px 0;
    }

    .beacoach-pricing-header {
        margin-bottom: 40px;
    }

    .beacoach-pricing-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .beacoach-original-price {
        font-size: 18px;
    }

    .beacoach-final-price {
        font-size: 28px;
    }

    .beacoach-payment-content {
        gap: 32px;
    }

    .beacoach-payment-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .beacoach-payment-text {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .beacoach-payment-image {
        border-radius: 16px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-pricing-title {
        font-size: 56px;
    }

    .beacoach-original-price {
        font-size: 20px;
    }

    .beacoach-final-price {
        font-size: 32px;
    }

    .beacoach-payment-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .beacoach-payment-title {
        font-size: 36px;
    }

    .beacoach-payment-text {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-pricing {
        padding: 100px 0;
    }

    .beacoach-pricing-header {
        margin-bottom: 80px;
    }

    .beacoach-pricing-title {
        font-size: 80px;
        margin-bottom: 40px;
    }

    .beacoach-original-price {
        font-size: 24px;
    }

    .beacoach-final-price {
        font-size: 48px;
    }

    .beacoach-payment-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .beacoach-payment-title {
        font-size: 56px;
        margin-bottom: 32px;
    }

    .beacoach-payment-text {
        font-size: 19px;
        margin-bottom: 24px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-pricing-title {
        font-size: 88px;
    }

    .beacoach-final-price {
        font-size: 52px;
    }

    .beacoach-payment-title {
        font-size: 64px;
    }
}

/* ============================================
   BEACOACH - GUARANTEE SECTION
   ============================================ */

.beacoach-guarantee {
    background: linear-gradient(135deg, #f0e6ff 0%, #e8d9ff 100%);
    padding: 20px 30px;
    position: relative;
    border-radius: 20px;
    max-width: 950px;
    margin: 0 auto;
}

/* Guarantee Content */
.beacoach-guarantee-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Badge */
.beacoach-guarantee-badge {
    display: flex;
    justify-content: center;
}

.beacoach-badge-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.15);
}

.beacoach-badge-text {
    text-align: center;
}

.beacoach-badge-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #012635;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    margin-bottom: 4px;
}

.beacoach-badge-days {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #012635;
    margin-bottom: 8px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

.beacoach-badge-risk {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012635;
    background-color: #012635;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* Guarantee Text */
.beacoach-guarantee-text {
    max-width: 100%;
}

.beacoach-guarantee-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-guarantee-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.85);
    margin-bottom: 20px;
}

.beacoach-guarantee-description:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-guarantee {
        padding: 20px 30px;
    }

    .beacoach-guarantee-content {
        gap: 20px;
    }

    .beacoach-badge-circle {
        width: 160px;
        height: 160px;
    }

    .beacoach-badge-number {
        font-size: 36px;
    }

    .beacoach-badge-days {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .beacoach-badge-risk {
        font-size: 12px;
        padding: 3px 10px;
    }

    .beacoach-guarantee-title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .beacoach-guarantee-description {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-guarantee-content {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .beacoach-guarantee-badge {
        justify-content: flex-start;
    }

    .beacoach-badge-circle {
        width: 180px;
        height: 180px;
    }

    .beacoach-badge-number {
        font-size: 50px;
    }

    .beacoach-badge-days {
        font-size: 22px;
    }

    .beacoach-guarantee-title {
        font-size: 26px;
    }

    .beacoach-guarantee-description {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-guarantee {
        padding: 20px 30px;
    }

    .beacoach-guarantee-content {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }

    .beacoach-guarantee-badge {
        justify-content: flex-start;
    }

    .beacoach-badge-circle {
        width: 220px;
        height: 220px;
    }

    .beacoach-badge-number {
        font-size: 60px;
    }

    .beacoach-badge-days {
        font-size: 26px;
    }

    .beacoach-badge-risk {
        font-size: 15px;
        padding: 5px 14px;
    }

    .beacoach-guarantee-title {
        font-size: 48px;
        margin-bottom: 28px;
    }

    .beacoach-guarantee-description {
        font-size: 19px;
        margin-bottom: 24px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-guarantee-title {
        font-size: 52px;
    }

    .beacoach-guarantee-description {
        font-size: 20px;
    }
}

section.beacoach-guarantee-wrapper {
    margin-bottom: 100px;
}

/* ============================================
   BEACOACH - HOW TO APPLY SECTION
   ============================================ */

.beacoach-how-to-apply {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
}

/* Section Title */
.beacoach-apply-steps-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    margin-bottom: 64px;
}

/* Steps Grid */
.beacoach-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

/* Step Card */
.beacoach-step-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.1);
}

.beacoach-step-header {
    height: 16px;
    background-color: #ea0b8e;
    border-radius: 24px 24px 0 0;
}

.beacoach-step-body {
    padding: 48px 32px;
    text-align: center;
}

/* Step Icon */
.beacoach-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beacoach-step-icon svg {
    width: 80px;
    height: 80px;
}

/* Step Content */
.beacoach-step-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 16px;
}

.beacoach-step-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
}

/* Apply Footer (Money Back Guarantee) */
.beacoach-apply-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    background-color: #f7f8fc;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.beacoach-guarantee-badge-small {
    flex-shrink: 0;
}

.beacoach-guarantee-text-small {
    flex: 1;
    text-align: left;
}

.beacoach-guarantee-footer-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.beacoach-guarantee-footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-how-to-apply {
        padding: 48px 0 64px;
    }

    .beacoach-apply-steps-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .beacoach-steps-grid {
        gap: 24px;
        margin-bottom: 48px;
    }

    .beacoach-step-card {
        border-radius: 16px;
    }

    .beacoach-step-header {
        height: 12px;
    }

    .beacoach-step-body {
        padding: 32px 24px;
    }

    .beacoach-step-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .beacoach-step-icon svg {
        width: 64px;
        height: 64px;
    }

    .beacoach-step-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .beacoach-step-description {
        font-size: 16px;
    }

    .beacoach-apply-footer {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .beacoach-guarantee-badge-small svg {
        width: 40px;
        height: 40px;
    }

    .beacoach-guarantee-text-small {
        text-align: center;
    }

    .beacoach-guarantee-footer-title {
        font-size: 20px;
        justify-content: center;
    }

    .beacoach-guarantee-footer-description {
        font-size: 15px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-apply-steps-title {
        font-size: 48px;
    }

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

    .beacoach-step-title {
        font-size: 24px;
    }

    .beacoach-step-description {
        font-size: 16px;
    }

    .beacoach-guarantee-footer-title {
        font-size: 22px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-how-to-apply {
        padding: 100px 0 120px;
    }

    .beacoach-apply-steps-title {
        font-size: 64px;
        margin-bottom: 80px;
    }

    .beacoach-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 80px;
    }

    .beacoach-step-body {
        padding: 56px 40px;
    }

    .beacoach-step-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .beacoach-step-description {
        font-size: 18px;
    }

    .beacoach-apply-footer {
        padding: 40px 48px;
    }

    .beacoach-guarantee-footer-title {
        font-size: 28px;
    }

    .beacoach-guarantee-footer-description {
        font-size: 18px;
    }
}

.beacoach-how-to-apply span.beacoach-step-number {
    color: #fff;
    position: absolute;
    margin-top: 8px;
}

/* ============================================
   BEACOACH - FINAL CTA SECTION
   ============================================ */

.beacoach-final-cta {
    background: linear-gradient(135deg, #1a1d4d 0%, #0f172a 50%, #1e3a5f 100%);
    padding: 80px 0 100px;
    position: relative;
    color: #ffffff;
}

/* Final Content Grid */
.beacoach-final-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* Left Content */
.beacoach-final-left {
    max-width: 100%;
}

.beacoach-final-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 40px;
}

.beacoach-final-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.beacoach-final-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    margin-top: 32px;
}

/* List Items */
.beacoach-final-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.beacoach-final-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.beacoach-final-list-item svg {
    flex-shrink: 0;
    color: #ea0b8e;
    margin-top: 2px;
}

/* Right Pricing Card */
.beacoach-final-right {
    display: flex;
    justify-content: center;
}

.beacoach-pricing-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 440px;
    width: 100%;
}

.beacoach-pricing-card-header {
    margin-bottom: 32px;
}

.beacoach-deposit-label {
    font-size: 16px;
    font-weight: 600;
    color: #012635;
    margin-bottom: 16px;
}

.beacoach-deposit-price {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #012635;
    margin-bottom: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

.beacoach-deposit-description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(1, 38, 53, 0.8);
    margin: 0;
}

/* Apply Button */
.beacoach-apply-button {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background-color: #ff8c42;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 16px;
}

.beacoach-apply-button:hover {
    background-color: #ff7a2e;
    transform: translateY(-2px);
}

.beacoach-guarantee-note {
    font-size: 14px;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 24px;
}

/* Payment Icons */
.beacoach-payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.beacoach-payment-icons img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.beacoach-vat-note {
    font-size: 12px;
    color: rgba(1, 38, 53, 0.6);
    margin-bottom: 20px;
}

/* Security Note */
.beacoach-security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(1, 38, 53, 0.7);
    text-align: left;
}

.beacoach-security-note svg {
    flex-shrink: 0;
    color: #ea0b8e;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-final-cta {
        padding: 48px 0 64px;
    }

    .beacoach-final-content {
        gap: 40px;
    }

    .beacoach-final-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .beacoach-final-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .beacoach-final-label {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .beacoach-final-list-item {
        font-size: 15px;
        margin-bottom: 12px;
        gap: 10px;
    }

    .beacoach-pricing-card {
        padding: 32px 24px;
    }

    .beacoach-deposit-price {
        font-size: 56px;
    }

    .beacoach-apply-button {
        font-size: 18px;
        padding: 16px 28px;
    }

    .beacoach-payment-icons {
        gap: 8px;
    }

    .beacoach-payment-icons img {
        height: 24px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-final-content {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }

    .beacoach-final-title {
        font-size: 40px;
    }

    .beacoach-final-subtitle {
        font-size: 22px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-final-cta {
        padding: 100px 0 120px;
    }

    .beacoach-final-content {
        grid-template-columns: 1fr 440px;
        gap: 64px;
    }

    .beacoach-final-title {
        font-size: 56px;
        margin-bottom: 48px;
    }

    .beacoach-final-subtitle {
        font-size: 26px;
    }

    .beacoach-final-label {
        font-size: 19px;
    }

    .beacoach-final-list-item {
        font-size: 17px;
    }

    .beacoach-deposit-price {
        font-size: 80px;
    }
}

/* ============================================
   BEACOACH - NEED HELP SECTION
   ============================================ */

.beacoach-need-help {
    background-color: #f7f8fc;
    padding: 80px 0;
    position: relative;
}

/* Help Card */
.beacoach-help-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.beacoach-help-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-help-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Help Button */
.beacoach-help-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #ea0b8e;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #ea0b8e;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.beacoach-help-button:hover {
    background-color: #ea0b8e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-need-help {
        padding: 48px 0;
    }

    .beacoach-help-card {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .beacoach-help-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .beacoach-help-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .beacoach-help-button {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-help-card {
        padding: 56px 40px;
    }

    .beacoach-help-title {
        font-size: 36px;
    }

    .beacoach-help-description {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-need-help {
        padding: 100px 0;
    }

    .beacoach-help-card {
        padding: 72px 64px;
    }

    .beacoach-help-title {
        font-size: 48px;
        margin-bottom: 28px;
    }

    .beacoach-help-description {
        font-size: 19px;
        margin-bottom: 40px;
    }

    .beacoach-help-button {
        font-size: 19px;
        padding: 18px 48px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-help-title {
        font-size: 52px;
    }

    .beacoach-help-description {
        font-size: 20px;
    }
}

/* ============================================
   BEACOACH - SUCCESS STORIES SECTION
   ============================================ */

.beacoach-success-stories {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Section Title */
.beacoach-stories-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    margin-bottom: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Grid */
.beacoach-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Testimonial Card */
.beacoach-testimonial-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.beacoach-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(1, 38, 53, 0.15);
}

.beacoach-testimonial-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.beacoach-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beacoach-testimonial-content {
    padding: 32px;
}

.beacoach-testimonial-quote {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #012635;
    margin: 0 0 16px;
}

.beacoach-testimonial-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin-bottom: 16px;
}

/* Read More Button */
.beacoach-read-more {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #ea0b8e;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 24px;
    transition: opacity 0.2s;
}

.beacoach-read-more:hover {
    opacity: 0.7;
}

/* Author Info */
.beacoach-testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.beacoach-author-name {
    font-size: 18px;
    font-weight: 800;
    color: #012635;
    margin-bottom: 4px;
}

.beacoach-author-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(1, 38, 53, 0.7);
    margin-bottom: 4px;
}

.beacoach-author-location {
    font-size: 14px;
    color: rgba(1, 38, 53, 0.6);
}

/* ============================================
   MODAL STYLES
   ============================================ */

.beacoach-testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.beacoach-testimonial-modal.beacoach-modal-active {
    display: flex;
}

.beacoach-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.beacoach-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
}

.beacoach-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.beacoach-modal-close:hover {
    background-color: #f0f0f0;
}

.beacoach-modal-close svg {
    color: #012635;
}

.beacoach-modal-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.beacoach-modal-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.beacoach-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beacoach-modal-text {
    padding: 48px 40px;
}

.beacoach-modal-quote {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin: 0 0 24px;
}

.beacoach-modal-body {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(1, 38, 53, 0.85);
    margin-bottom: 32px;
}

.beacoach-modal-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 24px;
}

.beacoach-modal-author-name {
    font-size: 20px;
    font-weight: 800;
    color: #012635;
    margin-bottom: 6px;
}

.beacoach-modal-author-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(1, 38, 53, 0.7);
    margin-bottom: 6px;
}

.beacoach-modal-author-location {
    font-size: 16px;
    color: rgba(1, 38, 53, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-success-stories {
        padding: 48px 0;
    }

    .beacoach-stories-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .beacoach-testimonials-grid {
        gap: 24px;
    }

    .beacoach-testimonial-image {
        height: 280px;
    }

    .beacoach-testimonial-content {
        padding: 24px;
    }

    .beacoach-testimonial-quote {
        font-size: 20px;
    }

    .beacoach-testimonial-excerpt {
        font-size: 15px;
    }

    .beacoach-read-more {
        font-size: 15px;
    }

    .beacoach-author-name {
        font-size: 16px;
    }

    .beacoach-author-title,
    .beacoach-author-location {
        font-size: 13px;
    }

    /* Modal Mobile */
    .beacoach-modal-image {
        height: 300px;
    }

    .beacoach-modal-text {
        padding: 32px 24px;
    }

    .beacoach-modal-quote {
        font-size: 22px;
    }

    .beacoach-modal-body {
        font-size: 16px;
    }

    .beacoach-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-stories-title {
        font-size: 40px;
    }

    .beacoach-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .beacoach-testimonial-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .beacoach-modal-inner {
        grid-template-columns: 400px 1fr;
    }

    .beacoach-modal-image {
        height: 100%;
        border-radius: 24px 0 0 24px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-success-stories {
        padding: 100px 0;
    }

    .beacoach-stories-title {
        font-size: 56px;
        margin-bottom: 80px;
    }

    .beacoach-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .beacoach-testimonial-quote {
        font-size: 24px;
    }

    .beacoach-testimonial-excerpt {
        font-size: 17px;
    }

    .beacoach-modal-inner {
        grid-template-columns: 450px 1fr;
    }

    .beacoach-modal-image {
        height: 100%;
        border-radius: 24px 0 0 24px;
    }

    .beacoach-modal-text {
        padding: 56px 48px;
    }

    .beacoach-modal-quote {
        font-size: 32px;
    }

    .beacoach-modal-body {
        font-size: 19px;
    }
}

/* ============================================
   BEACOACH - APPLY STEPS SECTION
   ============================================ */

.beacoach-apply-steps {
    background-color: #f7f8fc;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.beacoach-apply-steps-header {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    text-align: center;
    margin-bottom: 64px;
}

/* Steps Container */
.beacoach-steps-container {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: 0 8px 24px rgba(1, 38, 53, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Step */
.beacoach-application-step {
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
}

.beacoach-application-step:first-child {
    padding-top: 0;
}

.beacoach-application-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.beacoach-step-heading {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #012635;
    margin-bottom: 12px;
}

.beacoach-step-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin: 0;
}

.beacoach-step-text strong {
    font-weight: 800;
    color: #012635;
}

.beacoach-step-note {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.7);
    margin: 12px 0 0;
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-apply-steps {
        padding: 48px 0;
    }

    .beacoach-apply-steps-header {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .beacoach-steps-container {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .beacoach-application-step {
        padding: 24px 0;
    }

    .beacoach-step-heading {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .beacoach-step-text {
        font-size: 16px;
    }

    .beacoach-step-note {
        font-size: 15px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-apply-steps-header {
        font-size: 40px;
    }

    .beacoach-steps-container {
        padding: 48px 40px;
    }

    .beacoach-step-text {
        font-size: 17px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-apply-steps {
        padding: 100px 0;
    }

    .beacoach-apply-steps-header {
        font-size: 56px;
        margin-bottom: 80px;
    }

    .beacoach-steps-container {
        padding: 64px 56px;
    }

    .beacoach-application-step {
        padding: 40px 0;
    }

    .beacoach-step-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .beacoach-step-text {
        font-size: 19px;
    }

    .beacoach-step-note {
        font-size: 17px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-apply-steps-header {
        font-size: 64px;
    }

    .beacoach-step-text {
        font-size: 20px;
    }
}

/* ============================================
   BEACOACH - FAQ SECTION
   ============================================ */

.beacoach-faq {
    background-color: #f0f0f0;
    padding: 80px 0;
    position: relative;
}

/* FAQ Grid */
.beacoach-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

/* Left Column */
.beacoach-faq-left {
    max-width: 100%;
}

.beacoach-faq-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #012635;
    margin-bottom: 24px;
}

.beacoach-faq-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin: 0;
}

.beacoach-faq-email {
    color: #ea0b8e;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.beacoach-faq-email:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Right Column - FAQ Items */
.beacoach-faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.beacoach-faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.beacoach-faq-item:hover {
    box-shadow: 0 4px 12px rgba(1, 38, 53, 0.1);
}

/* FAQ Question Button */
.beacoach-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.beacoach-faq-question:hover {
    background-color: #f9f9f9;
}

.beacoach-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #012635;
    transition: transform 0.3s;
}

.beacoach-faq-icon-open {
    transform: rotate(45deg);
}

.beacoach-faq-icon svg {
    width: 24px;
    height: 24px;
}

.beacoach-faq-question-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #012635;
    flex: 1;
}

/* FAQ Answer */
.beacoach-faq-answer {
    padding: 0 24px 24px 64px;
}

.beacoach-faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 38, 53, 0.8);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile */
@media screen and (max-width: 768px) {
    .beacoach-faq {
        padding: 48px 0;
    }

    .beacoach-faq-grid {
        gap: 32px;
    }

    .beacoach-faq-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .beacoach-faq-description {
        font-size: 16px;
    }

    .beacoach-faq-right {
        gap: 12px;
    }

    .beacoach-faq-question {
        padding: 20px 16px;
        gap: 12px;
    }

    .beacoach-faq-icon {
        width: 20px;
        height: 20px;
    }

    .beacoach-faq-icon svg {
        width: 20px;
        height: 20px;
    }

    .beacoach-faq-question-text {
        font-size: 16px;
    }

    .beacoach-faq-answer {
        padding: 0 16px 20px 48px;
    }

    .beacoach-faq-answer p {
        font-size: 15px;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .beacoach-faq-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }

    .beacoach-faq-title {
        font-size: 40px;
    }

    .beacoach-faq-description {
        font-size: 17px;
    }

    .beacoach-faq-question-text {
        font-size: 18px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-faq {
        padding: 100px 0;
    }

    .beacoach-faq-grid {
        grid-template-columns: 400px 1fr;
        gap: 64px;
    }

    .beacoach-faq-title {
        font-size: 56px;
        margin-bottom: 28px;
    }

    .beacoach-faq-description {
        font-size: 19px;
    }

    .beacoach-faq-question {
        padding: 28px 32px;
    }

    .beacoach-faq-question-text {
        font-size: 22px;
    }

    .beacoach-faq-answer {
        padding: 0 32px 28px 72px;
    }

    .beacoach-faq-answer p {
        font-size: 18px;
    }
}

/* Extra Large Desktop */
@media screen and (min-width: 1280px) {
    .beacoach-faq-grid {
        grid-template-columns: 480px 1fr;
        gap: 80px;
    }

    .beacoach-faq-title {
        font-size: 64px;
    }
}

/* ============================================
   BEACOACH - STICKY NAVIGATION
   ============================================ */

.beacoach-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.beacoach-nav-sticky {
    box-shadow: 0 4px 12px rgba(1, 38, 53, 0.08);
}

.beacoach-sticky-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 16px 0;
}

/* Navigation Links */
.beacoach-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.beacoach-nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #012635;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.beacoach-nav-link:hover {
    background-color: #f0f0f0;
    color: #9333ea;
}

.beacoach-nav-link-active {
    background-color: #f3e8ff;
    color: #9333ea;
}

/* CTA Section */
.beacoach-nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.beacoach-nav-intake {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.beacoach-intake-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(1, 38, 53, 0.6);
    text-transform: uppercase;
}

.beacoach-intake-date {
    font-size: 14px;
    font-weight: 700;
    color: #012635;
}

.beacoach-nav-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ff8c42;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.beacoach-nav-button:hover {
    background-color: #ff7a2e;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle (Hidden by default, shown on mobile) */
.beacoach-nav-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.beacoach-nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
    color: #012635;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile & Small Tablet */
@media screen and (max-width: 1024px) {
    .beacoach-sticky-nav-container {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0;
        gap: 16px;
    }

    .beacoach-nav-links {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 6px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .beacoach-nav-links::-webkit-scrollbar {
        height: 4px;
    }

    .beacoach-nav-links::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 2px;
    }

    .beacoach-nav-links::-webkit-scrollbar-thumb {
        background: #9333ea;
        border-radius: 2px;
    }

    .beacoach-nav-link {
        padding: 8px 14px;
        font-size: 14px;
    }

    .beacoach-nav-cta {
        justify-content: space-between;
        width: 100%;
    }

    .beacoach-nav-intake {
        text-align: left;
    }

    .beacoach-intake-label {
        font-size: 10px;
    }

    .beacoach-intake-date {
        font-size: 13px;
    }

    .beacoach-nav-button {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* Mobile Only */
@media screen and (max-width: 768px) {
    .beacoach-sticky-nav-container {
        padding: 10px 0;
    }

    .beacoach-nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    .beacoach-nav-button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .beacoach-sticky-nav-container {
        padding: 20px 0;
    }

    .beacoach-nav-links {
        gap: 0px;
    }

    .beacoach-nav-link {
        padding: 10px 10px;
        font-size: 16px;
    }

    .beacoach-nav-cta {
        gap: 20px;
    }

    .beacoach-intake-label {
        font-size: 12px;
    }

    .beacoach-intake-date {
        font-size: 15px;
    }

    .beacoach-nav-button {
        padding: 14px 32px;
        font-size: 17px;
    }
}