/* ========================================
   BUSINESS GROWTH ACCELERATOR
   Professional / Premium / Mobile First
======================================== */

:root {
    --navy-950: #08182b;
    --navy-900: #0c213d;
    --navy-800: #12325a;
    --navy-700: #184575;

    --orange-500: #f28c28;
    --orange-600: #e77d17;
    --orange-100: #fff3e6;

    --text-main: #132238;
    --text-muted: #607086;
    --border: #e3e8ef;

    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-warm: #fffaf5;

    --success-bg: #f4faf6;
    --success-border: #d9ebdf;

    --danger-bg: #fff8f6;
    --danger-border: #f0ddd6;

    --container: 1160px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm:
        0 8px 30px rgba(12, 33, 61, 0.06);

    --shadow-md:
        0 20px 50px rgba(12, 33, 61, 0.10);
}


/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: var(--bg);
    color: var(--text-main);

    font-size: 16px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ========================================
   GLOBAL
======================================== */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 92px 0;
}

.section-light {
    background: var(--bg-soft);
}

.section-soft {
    background: var(--bg-warm);
}

.section-dark {
    background:
        radial-gradient(
            circle at top right,
            rgba(242, 140, 40, 0.10),
            transparent 35%
        ),
        var(--navy-950);
}

.eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 0.10em;

    color: var(--orange-600);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;

    letter-spacing: -0.035em;

    color: var(--navy-950);
}

.section-heading h2 span {
    color: var(--orange-600);
}

.section-heading p {
    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: var(--text-muted);
}

.section-heading.light h2 {
    color: #ffffff;
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(12, 33, 61, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.brand {
    font-size: 19px;
    line-height: 1;
    font-weight: 850;

    letter-spacing: -0.03em;

    color: var(--navy-950);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 20px;

    border-radius: 999px;

    background: var(--navy-950);
    color: #ffffff;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.header-cta:hover {
    background: var(--navy-800);
    transform: translateY(-1px);
}


/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 999px;

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn span {
    font-size: 20px;
    line-height: 1;
}

.btn-primary {
    background: var(--orange-500);
    color: #151515;

    box-shadow:
        0 14px 30px rgba(242, 140, 40, 0.22);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);

    box-shadow:
        0 18px 38px rgba(242, 140, 40, 0.28);
}

.btn-secondary {
    background: #ffffff;
    color: var(--navy-950);

    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    min-height: 62px;
    padding: 0 34px;

    font-size: 17px;
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    overflow: hidden;

    padding: 92px 0 86px;

    background:
        radial-gradient(
            circle at 82% 14%,
            rgba(242, 140, 40, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 100%,
            rgba(24, 69, 117, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 100%
        );
}

.hero-container {
    max-width: 980px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 24px;

    padding: 8px 15px;

    border: 1px solid #f2dcc4;
    border-radius: 999px;

    background: #fff9f2;

    color: #a9560d;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 0.035em;
}

.hero h1 {
    max-width: 920px;

    margin: 0 auto 22px;

    font-size: clamp(40px, 6.3vw, 72px);
    line-height: 1.02;

    letter-spacing: -0.055em;

    color: var(--navy-950);
}

.hero h1 span {
    display: block;
    color: var(--orange-600);
}

.hero-lead {
    max-width: 740px;

    margin: 0 auto 26px;

    font-size: 19px;
    line-height: 1.75;

    color: var(--text-muted);
}


.program-details {
    max-width: 860px;

    margin: 0 auto 28px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: rgba(255, 255, 255, 0.84);

    box-shadow: var(--shadow-sm);

    overflow: hidden;
}

.detail-item {
    min-height: 104px;

    padding: 22px 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 6px;

    border-right: 1px solid var(--border);
}

.detail-item:last-child {
    border-right: 0;
}

.detail-label {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 0.075em;
    text-transform: uppercase;

    color: #8390a1;
}

.detail-item strong {
    font-size: 17px;
    line-height: 1.4;

    color: var(--navy-950);
}

.hero-price {
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
}

.hero-price span {
    color: var(--text-muted);
}

.hero-price strong {
    font-size: 24px;
    color: var(--navy-950);
}

.hero-note {
    margin: 15px 0 0;

    font-size: 13px;
    font-weight: 650;

    color: #7a8798;
}


/* ========================================
   PROBLEMS
======================================== */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.problem-card {
    position: relative;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: #ffffff;

    box-shadow: var(--shadow-sm);
}

.problem-number {
    margin-bottom: 22px;

    font-size: 13px;
    font-weight: 850;

    color: var(--orange-600);
}

.problem-card h3 {
    margin-bottom: 10px;

    font-size: 20px;
    line-height: 1.3;

    letter-spacing: -0.02em;

    color: var(--navy-950);
}

.problem-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: var(--text-muted);
}

.insight-box {
    max-width: 860px;

    margin: 42px auto 0;

    padding: 24px 30px;

    border-left: 4px solid var(--orange-500);
    border-radius: var(--radius-sm);

    background: var(--orange-100);
}

.insight-box strong {
    display: block;

    margin-bottom: 4px;

    font-size: 18px;

    color: var(--navy-950);
}

.insight-box span {
    color: #755433;
}


/* ========================================
   METHOD
======================================== */

.method-flow {
    max-width: 900px;

    margin: 0 auto 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.method-step {
    min-width: 110px;

    text-align: center;
}

.method-step span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin: 0 auto 10px;

    border-radius: 50%;

    background: var(--orange-100);

    color: var(--orange-600);

    font-size: 12px;
    font-weight: 900;
}

.method-step strong {
    font-size: 15px;
    color: var(--navy-950);
}

.method-arrow {
    margin-top: -23px;

    color: #bbc4cf;

    font-size: 21px;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.curriculum-card {
    padding: 34px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: #ffffff;

    box-shadow: var(--shadow-sm);
}

.percentage {
    margin-bottom: 22px;

    font-size: 36px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.045em;

    color: var(--orange-600);
}

.curriculum-card h3 {
    margin-bottom: 12px;

    font-size: 21px;
    line-height: 1.35;

    letter-spacing: -0.025em;

    color: var(--navy-950);
}

.curriculum-card p {
    margin: 0;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.75;
}


/* ========================================
   AREAS
======================================== */

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.area-card {
    min-height: 160px;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.055);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.area-card span {
    font-size: 13px;
    font-weight: 800;

    color: var(--orange-500);
}

.area-card h3 {
    margin: 24px 0 0;

    font-size: 20px;
    line-height: 1.4;

    letter-spacing: -0.02em;

    color: #ffffff;
}

.section-note {
    max-width: 820px;

    margin: 36px auto 0;

    text-align: center;

    font-size: 15px;
    line-height: 1.8;
}

.light-note {
    color: rgba(255, 255, 255, 0.66);
}


/* ========================================
   WEEKLY
======================================== */

.weekly-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 54px;

    align-items: center;
}

.weekly-main {
    padding: 38px;

    border-radius: var(--radius-lg);

    background: var(--navy-950);

    color: #ffffff;
}

.weekly-time {
    margin-bottom: 24px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.weekly-time span {
    color: var(--orange-500);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.weekly-time strong {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.weekly-main p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;
}

.weekly-points {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.weekly-point {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px 19px;

    border: 1px solid var(--border);
    border-radius: var(--radius-sm);

    background: #ffffff;
}

.weekly-point span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: var(--orange-100);

    color: var(--orange-600);

    font-size: 13px;
    font-weight: 900;
}

.weekly-point p {
    margin: 0;

    color: var(--navy-950);

    font-weight: 650;
}


/* ========================================
   AUDIENCE
======================================== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.audience-card {
    padding: 34px;

    border-radius: var(--radius-lg);
}

.audience-card h3 {
    margin-bottom: 22px;

    font-size: 22px;

    color: var(--navy-950);
}

.audience-card ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.audience-card li {
    position: relative;

    padding-left: 28px;

    color: #4f5f73;

    line-height: 1.65;
}

.audience-card li::before {
    position: absolute;
    left: 0;
    top: 1px;

    font-weight: 900;
}

.good-fit {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
}

.good-fit li::before {
    content: "✓";
    color: #318659;
}

.not-fit {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
}

.not-fit li::before {
    content: "×";
    color: #b25b45;
}


/* ========================================
   SUPPORT
======================================== */

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.support-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: #ffffff;
}

.support-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--navy-950);

    color: #ffffff;

    font-size: 12px;
    font-weight: 900;
}

.support-card h3 {
    margin-bottom: 10px;

    font-size: 19px;
    line-height: 1.35;

    color: var(--navy-950);
}

.support-card p {
    margin: 0;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   LIMITED SEATS
======================================== */

.limited-section {
    padding: 70px 0;

    background: var(--orange-100);
}

.limited-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.limited-container > div {
    max-width: 700px;
}

.limited-container h2 {
    margin-bottom: 12px;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;

    letter-spacing: -0.035em;

    color: var(--navy-950);
}

.limited-container h2 span {
    color: var(--orange-600);
}

.limited-container p {
    margin: 0;

    color: #735a42;
}


/* ========================================
   FINAL CTA
======================================== */

.final-cta {
    padding: 94px 0;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(242, 140, 40, 0.16),
            transparent 32%
        ),
        var(--navy-950);

    color: #ffffff;
}

.final-cta-container {
    max-width: 900px;

    text-align: center;
}

.final-eyebrow {
    color: var(--orange-500);
}

.final-cta h2 {
    max-width: 820px;

    margin: 0 auto 18px;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;

    letter-spacing: -0.045em;
}

.final-cta h2 span {
    display: block;
    color: var(--orange-500);
}

.final-cta > .container > p,
.final-cta-container > p {
    max-width: 690px;

    margin-left: auto;
    margin-right: auto;

    color: rgba(255, 255, 255, 0.72);

    font-size: 18px;
    line-height: 1.75;
}

.final-program-details {
    margin: 34px 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.10);
}

.final-program-details > div {
    padding: 22px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    background: rgba(255, 255, 255, 0.04);
}

.final-program-details span {
    font-size: 12px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.07em;

    color: rgba(255, 255, 255, 0.50);
}

.final-program-details strong {
    font-size: 17px;
    color: #ffffff;
}

.final-note {
    margin-top: 16px !important;

    font-size: 13px !important;

    color: rgba(255, 255, 255, 0.50) !important;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 28px 0;

    border-top: 1px solid #edf0f4;

    background: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer p {
    margin: 0;

    font-size: 13px;

    color: #8792a1;
}


/* ========================================
   MOBILE STICKY CTA
======================================== */

.mobile-sticky-cta {
    display: none;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 980px) {

    .section {
        padding: 76px 0;
    }

    .program-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-item:nth-child(2) {
        border-right: 0;
    }

    .detail-item:nth-child(1),
    .detail-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 64px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 58px 0 62px;
    }

    .hero-badge {
        margin-bottom: 18px;

        font-size: 11px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .program-details {
        grid-template-columns: 1fr 1fr;
    }

    .detail-item {
        min-height: 90px;

        padding: 17px 12px;
    }

    .detail-item strong {
        font-size: 14px;
    }

    .hero-price {
        flex-direction: column;
        gap: 2px;
    }

    .hero .btn {
        width: 100%;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .problem-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .problem-card {
        padding: 24px;
    }

    .method-flow {
        overflow-x: auto;

        justify-content: flex-start;

        padding: 4px 5px 12px;

        scrollbar-width: none;
    }

    .method-flow::-webkit-scrollbar {
        display: none;
    }

    .method-step {
        min-width: 90px;
    }

    .method-arrow {
        flex: 0 0 auto;
    }

    .curriculum-card {
        padding: 28px;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        min-height: 125px;
    }

    .weekly-layout {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .weekly-main {
        padding: 28px;
    }

    .weekly-time strong {
        font-size: 34px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 28px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .limited-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .limited-container .btn {
        width: 100%;
    }

    .final-cta {
        padding: 70px 0;
    }

    .final-program-details {
        grid-template-columns: 1fr;
    }

    .final-cta .btn {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }


    /* MOBILE STICKY CTA */

    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 999;

        min-height: 70px;

        padding: 10px 15px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;

        border-top: 1px solid var(--border);

        background: rgba(255, 255, 255, 0.97);

        box-shadow:
            0 -10px 35px rgba(12, 33, 61, 0.10);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-sticky-cta > div {
        display: flex;
        flex-direction: column;

        gap: 1px;
    }

    .mobile-sticky-cta span {
        font-size: 10px;
        font-weight: 700;

        color: #8792a1;
    }

    .mobile-sticky-cta strong {
        font-size: 15px;

        color: var(--navy-950);
    }

    .mobile-sticky-cta a {
        min-height: 44px;

        padding: 0 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 999px;

        background: var(--orange-500);
        color: #171717;

        font-size: 13px;
        font-weight: 850;
    }

}


@media (max-width: 430px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .program-details {
        grid-template-columns: 1fr 1fr;
    }

    .detail-item {
        min-height: 84px;
    }

    .detail-label {
        font-size: 10px;
    }

    .detail-item strong {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .problem-card h3,
    .curriculum-card h3,
    .audience-card h3 {
        font-size: 19px;
    }

}
/* ========================================
   12-MONTH JOURNEY
======================================== */

.journey-grid {
    max-width: 960px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.journey-card {
    padding: 38px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: #ffffff;

    box-shadow: var(--shadow-sm);
}

.journey-primary {
    border-color: #f0d5b7;
    background:
        linear-gradient(
            180deg,
            #fffaf4 0%,
            #ffffff 100%
        );
}

.journey-duration {
    display: inline-block;

    margin-bottom: 22px;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--orange-100);
    color: var(--orange-600);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.journey-card h3 {
    margin-bottom: 12px;

    font-size: 25px;
    line-height: 1.3;

    letter-spacing: -0.025em;

    color: var(--navy-950);
}

.journey-card > p {
    margin-bottom: 24px;

    color: var(--text-muted);

    line-height: 1.75;
}

.journey-card ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 11px;
}

.journey-card li {
    position: relative;

    padding-left: 25px;

    color: #4f5f73;
}

.journey-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--orange-600);

    font-weight: 900;
}

@media (max-width: 760px) {

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-card {
        padding: 28px;
    }

}
.support-grid-six {
    grid-template-columns: repeat(3, 1fr);
}

.included-tag {
    display: inline-block;

    margin-top: 16px;

    padding: 6px 10px;

    border-radius: 999px;

    background: var(--orange-100);
    color: var(--orange-600);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
}

@media (max-width: 980px) {

    .support-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    .support-grid-six {
        grid-template-columns: 1fr;
    }

}
/* ========================================
   INCLUDED LEARNING RESOURCES
======================================== */

.included-learning {
    background: var(--bg-soft);
}

.mastery-grid {
    max-width: 920px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


/* COURSE CARD */

.mastery-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: #ffffff;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mastery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}


/* IMAGE */

.mastery-image-wrap {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 34px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f3f6fa 100%
        );
}

.mastery-image {
    width: auto;
    max-width: 100%;
    height: 230px;

    object-fit: contain;
}


/* CONTENT */

.mastery-content {
    padding: 30px;
}

.mastery-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--orange-600);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 850;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mastery-content h3 {
    margin-bottom: 12px;

    color: var(--navy-950);

    font-size: 27px;
    line-height: 1.2;

    letter-spacing: -0.03em;
}

.mastery-content p {
    margin-bottom: 20px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.75;
}


/* INCLUDED BADGE */

.mastery-included {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border-radius: 999px;

    background: #f1faf5;

    color: #247348;

    font-size: 12px;
    line-height: 1.4;
}

.mastery-included span {
    font-weight: 900;
}

.mastery-included strong {
    font-weight: 800;
}


/* ========================================
   LEARN → APPLY → IMPROVE
======================================== */

.learning-bridge {
    max-width: 1000px;

    margin: 48px auto 0;

    padding: 28px;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: #ffffff;
}

.learning-bridge__item {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.learning-bridge__number {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange-100);

    color: var(--orange-600);

    font-size: 11px;
    font-weight: 900;
}

.learning-bridge__item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--navy-950);

    font-size: 15px;
}

.learning-bridge__item p {
    margin: 0;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.6;
}

.learning-bridge__arrow {
    color: var(--orange-500);

    font-size: 22px;
    font-weight: 800;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {

    .mastery-grid {
        grid-template-columns: 1fr;
    }

    .mastery-image-wrap {
        min-height: 250px;
        padding: 28px;
    }

    .mastery-image {
        height: 200px;
    }

    .mastery-content {
        padding: 25px;
    }

    .mastery-content h3 {
        font-size: 24px;
    }


    .learning-bridge {
        padding: 24px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .learning-bridge__arrow {
        padding-left: 5px;

        transform: rotate(90deg);

        justify-self: start;
    }

}
/* ========================================
   BGA STICKY JOIN BAR
======================================== */

body {
    padding-bottom: 94px;
}

.bga-sticky-bar {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9999;

    padding: 12px 20px;

    border-top: 1px solid rgba(12, 33, 61, 0.10);

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 -10px 35px rgba(12, 33, 61, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.bga-sticky-inner {
    width: min(100%, 1120px);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ========================================
   SEAT STATUS
======================================== */

.bga-sticky-info {
    width: 310px;
}

.bga-sticky-seats {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 7px;
}

.bga-live-dot {
    flex: 0 0 auto;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--orange-500);
}

.bga-sticky-seats > div {
    display: flex;
    flex-direction: column;

    gap: 1px;
}

.bga-sticky-seats strong {
    color: var(--navy-950);

    font-size: 14px;
    line-height: 1.3;
}

.bga-sticky-seats span:not(.bga-live-dot) {
    color: var(--text-muted);

    font-size: 11px;
}


/* PROGRESS */

.bga-sticky-progress {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

    background: #e9edf2;
}

.bga-sticky-progress span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: var(--orange-500);
}


/* ========================================
   PRICE + CTA
======================================== */

.bga-sticky-action {
    display: flex;
    align-items: center;

    gap: 24px;
}

.bga-sticky-price {
    display: flex;
    flex-direction: column;

    text-align: right;
}

.bga-sticky-price span {
    color: var(--text-muted);

    font-size: 10px;
    line-height: 1.4;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bga-sticky-price strong {
    color: var(--navy-950);

    font-size: 18px;
    line-height: 1.35;
}


.bga-sticky-btn {
    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 999px;

    background: var(--orange-500);
    color: #171717;

    font-size: 14px;
    font-weight: 850;

    white-space: nowrap;

    box-shadow:
        0 10px 24px rgba(242, 140, 40, 0.22);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.bga-sticky-btn:hover {
    transform: translateY(-1px);
    background: var(--orange-600);
}

.bga-sticky-btn > span {
    font-size: 18px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {

    body {
        padding-bottom: 88px;
    }

    .bga-sticky-bar {
        padding: 9px 12px;
    }

    .bga-sticky-inner {
        gap: 12px;
    }

    .bga-sticky-info {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .bga-sticky-seats {
        margin-bottom: 5px;
        gap: 7px;
    }

    .bga-live-dot {
        width: 7px;
        height: 7px;
    }

    .bga-sticky-seats strong {
        font-size: 12px;
    }

    .bga-sticky-seats span:not(.bga-live-dot) {
        font-size: 9px;

        white-space: nowrap;
    }

    .bga-sticky-price {
        display: none;
    }

    .bga-sticky-action {
        gap: 0;
    }

    .bga-sticky-btn {
        min-height: 46px;

        padding: 0 17px;

        font-size: 12px;
    }

    .bga-sticky-btn > span {
        display: none;
    }

}
/* ========================================
   BATCH-SPECIFIC NOTE
======================================== */

.batch-note {
    max-width: 820px;

    margin: 34px auto 0;

    padding: 18px 22px;

    display: flex;
    align-items: center;

    gap: 14px;

    border: 1px solid #f0d5b7;
    border-radius: var(--radius-md);

    background: var(--orange-100);
}

.batch-note__icon {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: var(--orange-600);

    font-size: 18px;
    font-weight: 900;
}

.batch-note p {
    margin: 0;

    color: #6d5237;

    font-size: 14px;
    line-height: 1.65;
}

.batch-note strong {
    color: var(--navy-950);
}


/* MOBILE */

@media (max-width: 760px) {

    .batch-note {
        margin-top: 26px;

        padding: 17px 18px;

        align-items: flex-start;
    }

    .batch-note__icon {
        width: 34px;
        height: 34px;

        font-size: 16px;
    }

    .batch-note p {
        font-size: 13px;
    }

}
.support-clarity-note {
    max-width: 700px;
    margin: 30px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--text-muted);

    font-size: 13px;
    text-align: center;
}

.support-clarity-note > span {
    color: var(--orange-600);
    font-weight: 900;
}

.support-clarity-note p {
    margin: 0;
}

.support-clarity-note strong {
    color: var(--navy-950);
}

.support-divider {
    margin: 0 6px;
    color: #b6bec8;
}

@media (max-width: 600px) {

    .support-clarity-note {
        align-items: flex-start;
        text-align: left;
    }

    .support-divider {
        display: block;
        height: 4px;
        font-size: 0;
    }

}
.area-card p {
    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    line-height: 1.65;
}

.areas-priority-note {
    max-width: 820px;

    margin: 36px auto 0;
    padding: 18px 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.06);

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.7;

    text-align: center;
}

.areas-priority-note strong {
    color: var(--orange-500);
}
.weekly-point {
    align-items: flex-start;
}

.weekly-point > span {
    margin-top: 2px;
}

.weekly-point > div {
    flex: 1;
}

.weekly-point strong {
    display: block;

    margin-bottom: 3px;

    color: var(--navy-950);

    font-size: 15px;
    line-height: 1.4;
}

.weekly-point > div p {
    margin: 0;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* WEEKLY SESSION OUTCOME */

.weekly-outcome {
    max-width: 820px;

    margin: 32px auto 0;
    padding: 18px 22px;

    display: flex;
    align-items: center;

    gap: 12px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--bg-soft);
}

.weekly-outcome > span {
    flex: 0 0 auto;

    color: var(--orange-600);

    font-size: 22px;
    font-weight: 900;
}

.weekly-outcome p {
    margin: 0;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.7;
}

.weekly-outcome strong {
    color: var(--navy-950);
}

@media (max-width: 760px) {

    .weekly-outcome {
        padding: 17px 18px;
        align-items: flex-start;
    }

}
/* ========================================
   MASTERY PROGRAMS - COMBINED VALUE
======================================== */

.mastery-combined-value {
    max-width: 720px;

    margin: 28px auto 0;
    padding: 17px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 1px solid #f0d5b7;
    border-radius: var(--radius-md);

    background: var(--orange-100);
}

.mastery-combined-value__left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mastery-combined-value__left span {
    color: var(--text-muted);

    font-size: 12px;
    font-weight: 600;
}

.mastery-combined-value__left strong {
    color: var(--navy-950);

    font-size: 17px;
    line-height: 1.4;
}

.mastery-combined-value__included {
    flex: 0 0 auto;

    padding: 8px 12px;

    border-radius: 999px;

    background: #ffffff;

    color: #287447;

    font-size: 12px;
    font-weight: 800;
}

.mastery-combined-value__included span {
    margin-right: 4px;
}


/* MOBILE */

@media (max-width: 600px) {

    .mastery-combined-value {
        padding: 16px;

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }

    .mastery-combined-value__left strong {
        font-size: 16px;
    }

}
.audience-card li strong {
    display: block;

    margin-bottom: 4px;

    color: var(--navy-950);

    font-size: 14px;
    line-height: 1.45;
}

.audience-card li > span {
    display: block;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* IMPLEMENTATION NOTE */

.audience-note {
    max-width: 820px;

    margin: 30px auto 0;
    padding: 18px 22px;

    display: flex;
    align-items: center;

    gap: 12px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: #ffffff;
}

.audience-note > span {
    flex: 0 0 auto;

    color: var(--orange-600);

    font-size: 22px;
    font-weight: 900;
}

.audience-note p {
    margin: 0;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.7;
}

.audience-note strong {
    color: var(--navy-950);
}

@media (max-width: 760px) {

    .audience-note {
        padding: 17px 18px;
        align-items: flex-start;
    }

}
/* ========================================
   ABOUT MOHAN
======================================== */

.about-mohan {
    background: #ffffff;
}

.about-mohan__grid {
    max-width: 980px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.82fr 1.18fr;

    gap: 64px;
    align-items: center;
}


/* PHOTO */

.about-mohan__visual {
    position: relative;
}

.about-mohan__image-wrap {
    position: relative;

    max-width: 380px;
    margin: 0 auto;

    overflow: hidden;

    border-radius: 24px;

    background: var(--orange-100);

    box-shadow:
        0 20px 50px rgba(8, 24, 43, 0.10);
}

.about-mohan__image-wrap::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    border: 1px solid rgba(8, 24, 43, 0.08);
    border-radius: inherit;

    pointer-events: none;
}

.about-mohan__image {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* CONTENT */

.about-mohan__content h2 {
    margin: 10px 0 20px;

    color: var(--navy-950);

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.about-mohan__content h2 span {
    display: block;

    color: var(--orange-500);
}

.about-mohan__intro,
.about-mohan__role {
    margin: 0 0 17px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.75;
}

.about-mohan__role strong {
    color: var(--navy-950);
    font-weight: 700;
}


/* CREDIBILITY POINTS */

.about-mohan__points {
    margin-top: 28px;

    display: grid;
    gap: 12px;
}

.about-mohan__point {
    padding: 15px 17px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: #ffffff;
}

.about-mohan__point > span {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--orange-100);

    color: var(--orange-600);

    font-size: 11px;
    font-weight: 900;
}

.about-mohan__point strong {
    display: block;

    margin-bottom: 3px;

    color: var(--navy-950);

    font-size: 14px;
    line-height: 1.4;
}

.about-mohan__point p {
    margin: 0;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* PHILOSOPHY */

.about-mohan__philosophy {
    position: relative;

    max-width: 880px;

    margin: 44px auto 0;
    padding: 23px 30px 23px 60px;

    overflow: hidden;

    border: 1px solid #f0d5b7;
    border-radius: var(--radius-md);

    background: var(--orange-100);
}

.about-mohan__quote {
    position: absolute;

    top: 5px;
    left: 20px;

    color: var(--orange-500);

    font-family: Georgia, serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

.about-mohan__philosophy p {
    margin: 0;

    color: #6d5237;

    font-size: 14px;
    line-height: 1.75;
}

.about-mohan__philosophy strong {
    color: var(--navy-950);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {

    .about-mohan__grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .about-mohan__image-wrap {
        max-width: 290px;
    }

    .about-mohan__content {
        text-align: left;
    }

    .about-mohan__content h2 {
        font-size: 34px;
    }

    .about-mohan__intro,
    .about-mohan__role {
        font-size: 14px;
    }

    .about-mohan__philosophy {
        margin-top: 30px;

        padding: 22px 18px 22px 48px;
    }

    .about-mohan__quote {
        left: 14px;

        font-size: 46px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .about-mohan__image-wrap {
        max-width: 250px;

        border-radius: 18px;
    }

    .about-mohan__content h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

}
.about-mohan__identity {
    margin-top: 16px;
    text-align: center;
}

.about-mohan__identity strong {
    display: block;
    color: var(--navy-950);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.about-mohan__identity span {
    display: block;
    margin-top: 4px;
    color: var(--orange-600);
    font-size: 13px;
    font-weight: 700;
}

.about-mohan__identity small {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 12px;
}
/* ========================================
   WORKSHOP REVIEWS
======================================== */


.workshop-reviews .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reviews-grid {
    max-width: 1000px;

    margin: 42px auto 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.review-card {
    padding: 24px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(8, 24, 43, 0.05);
}

.review-stars {
    margin-bottom: 14px;

    color: var(--orange-500);

    font-size: 15px;
    letter-spacing: 2px;
}

.review-text {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.75;
}

.review-author {
    margin-top: 16px;

    color: var(--navy-950);

    font-size: 13px;
    font-weight: 800;
}


/* FEATURE FIRST REVIEW */

.review-card:first-child {
    background: var(--orange-100);
    border-color: #f0d5b7;
}


/* MOBILE */

@media (max-width: 760px) {

    .reviews-grid {
        margin-top: 30px;

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.7;
    }

}
.growth-process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 14px;
    margin: 42px 0 48px;
}

.growth-process__step {
    background: #ffffff;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.growth-process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff3e8;
    color: #f47c20;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.growth-process__step strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
    color: #102033;
    margin-bottom: 8px;
}

.growth-process__step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #5d6875;
}

.growth-process__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f47c20;
    font-weight: 700;
}

@media (max-width: 900px) {
    .growth-process {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .growth-process__arrow {
        transform: rotate(90deg);
        height: 24px;
    }
}
.bga-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 10px;
}

.bga-model-card {
    background: #ffffff;
    border: 1px solid #e7ebf0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.bga-model-card--highlight {
    border-color: #f4b27d;
    background: #fffaf6;
}

.bga-model-card__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #f47c20;
    margin-bottom: 12px;
}

.bga-model-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.3;
    color: #102033;
}

.bga-model-card p {
    margin: 0;
    color: #5d6875;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 800px) {
    .bga-model-grid {
        grid-template-columns: 1fr;
    }
}
.bga-outcome-section {
    background: #fff8f1;
}

.outcome-path {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 14px;
    margin-top: 40px;
}

.outcome-path__item {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px;
    border: 1px solid #f0e3d8;
    text-align: left;
}

.outcome-path__item > span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f47c20;
    margin-bottom: 14px;
}

.outcome-path__item strong {
    display: block;
    font-size: 19px;
    color: #102033;
    margin-bottom: 9px;
}

.outcome-path__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #5d6875;
}

.outcome-path__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #f47c20;
}

.outcome-statement {
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: 14px;
    background: #102033;
    color: #ffffff;
}

.outcome-statement > span {
    color: #f47c20;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.outcome-statement p {
    margin: 0;
    line-height: 1.65;
}

.outcome-statement strong {
    color: #ffffff;
}

@media (max-width: 800px) {
    .outcome-path {
        grid-template-columns: 1fr;
    }

    .outcome-path__connector {
        transform: rotate(90deg);
        height: 22px;
    }
}
.program-name {
    margin: 26px 0 28px;
    text-align: center;
}

.program-name span {
    display: block;
    margin-bottom: 5px;

    color: #8a94a3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.program-name strong {
    display: block;

    color: #0b1d33;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}
/* ========================================
   BGA WHATSAPP CONTACT
======================================== */

.bga-contact-section {
    padding: 70px 20px;
    background: #ffffff;
}

.bga-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;

    padding: 42px 48px;
    border-radius: 20px;

    background: #f8fffb;
    border: 1px solid #d8eee1;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.bga-contact-content {
    max-width: 720px;
}

.bga-contact-content h2 {
    margin: 10px 0 14px;
}

.bga-contact-content h2 span {
    display: block;
}

.bga-contact-content p {
    margin-bottom: 10px;
}

.bga-contact-personal {
    margin-top: 14px;
}


/* WHATSAPP BUTTON */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    flex-shrink: 0;
    white-space: nowrap;

    padding: 15px 24px;
    border-radius: 10px;

    background: #25D366;
    color: #ffffff;

    font-weight: 700;
    text-decoration: none;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.25);
    color: #ffffff;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}


/* MOBILE */

@media (max-width: 768px) {

    .bga-contact-section {
        padding: 45px 16px;
    }

    .bga-contact-box {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;

        padding: 28px 22px;
        border-radius: 16px;
    }

    .bga-contact-content {
        max-width: 100%;
    }

    .btn-whatsapp {
        width: 100%;
        padding: 16px 20px;
    }
}