/* =========================================================
   ADMITH LEGACY
   GROWTH & OPTIMIZATION — DEDICATED SERVICE PAGE

   FILE:
   css/pages/gwth-opt.css

   PURPOSE:
   Premium growth, optimization and digital
   experience improvement page
========================================================= */


/* =========================================================
   01. PAGE FOUNDATION
========================================================= */

.growth-page {

    position: relative;

    overflow: hidden;

    background: #ffffff;

    color: #171a18;

}


/* =========================================================
   02. HERO
========================================================= */

.growth-hero {

    position: relative;

    isolation: isolate;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        130px
        0
        90px;

    background:

        radial-gradient(
            circle at 15% 30%,
            rgba(
                91,
                183,
                128,
                0.13
            ),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 70%,
            rgba(
                150,
                20,
                20,
                0.045
            ),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #f6faf7 0%,
            #ffffff 48%,
            #f5f9f7 100%
        );

}


/* =========================================================
   HERO GRID
========================================================= */

.growth-hero-grid {

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0.42;

    background-image:

        linear-gradient(
            rgba(
                30,
                50,
                39,
                0.035
            )
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                30,
                50,
                39,
                0.035
            )
            1px,
            transparent 1px
        );

    background-size:
        70px
        70px;

    mask-image:

        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    pointer-events: none;

}


/* =========================================================
   HERO ORBITS
========================================================= */

.growth-hero-orbit {

    position: absolute;

    border:
        1px
        solid
        rgba(
            91,
            183,
            128,
            0.14
        );

    border-radius: 50%;

    pointer-events: none;

    animation:
        growthOrbit
        18s
        linear
        infinite;

}


.growth-orbit-one {

    width: 650px;

    height: 650px;

    right: -300px;

    top: 90px;

}


.growth-orbit-two {

    width: 450px;

    height: 450px;

    right: -200px;

    top: 190px;

    animation-direction:
        reverse;

    animation-duration:
        24s;

}


@keyframes growthOrbit {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   HERO CONTENT
========================================================= */

.growth-hero .container {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    align-items: center;

    gap: 80px;

}


.growth-hero-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

}


.growth-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: #3d9865;

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}


.growth-label::before {

    content: "";

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #5bb780;

    box-shadow:

        0
        0
        0
        5px
        rgba(
            91,
            183,
            128,
            0.12
        );

}


.growth-hero h1 {

    max-width: 720px;

    margin: 0;

    color: #111412;

    font-size:
        clamp(
            3.2rem,
            6vw,
            6rem
        );

    font-weight: 700;

    line-height: 0.98;

    letter-spacing: -0.065em;

}


.growth-hero-content > p {

    max-width: 620px;

    margin:
        30px
        0
        0;

    color: #657069;

    font-size: 1.08rem;

    line-height: 1.8;

}


/* =========================================================
   HERO ACTIONS
========================================================= */

.growth-hero-actions {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 14px;

    margin-top: 36px;

}


.growth-hero-actions .btn {

    min-height: 54px;

    padding:
        0
        28px;

}


/* =========================================================
   PERFORMANCE VISUAL
========================================================= */

.growth-performance-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 480px;

}


.performance-window {

    position: relative;

    width: min(
        100%,
        500px
    );

    min-height: 350px;

    overflow: hidden;

    border:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.10
        );

    border-radius: 28px;

    background:

        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.96
            ),
            rgba(
                242,
                248,
                244,
                0.94
            )
        );

    box-shadow:

        0
        30px
        80px
        rgba(
            20,
            35,
            27,
            0.12
        );

    transform:
        perspective(1000px)
        rotateY(-8deg)
        rotateX(3deg);

    transition:
        transform
        0.6s
        ease;

}


.growth-performance-visual:hover
.performance-window {

    transform:
        perspective(1000px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);

}


/* WINDOW TOP */

.performance-window-top {

    display: flex;

    gap: 7px;

    height: 52px;

    align-items: center;

    padding:
        0
        20px;

    border-bottom:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.08
        );

}


.performance-window-top span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background:
        rgba(
            61,
            152,
            101,
            0.45
        );

}


/* PERFORMANCE CONTENT */

.performance-content {

    padding: 36px;

}


.performance-line {

    height: 10px;

    border-radius: 999px;

    background:
        rgba(
            91,
            183,
            128,
            0.15
        );

}


.performance-line-one {

    width: 45%;

}


.performance-line-two {

    width: 72%;

    margin-top: 14px;

}


.performance-line-three {

    width: 56%;

    margin-top: 14px;

}


/* CHART */

.performance-chart {

    display: flex;

    align-items: flex-end;

    gap: 12px;

    height: 170px;

    margin-top: 50px;

    padding:
        0
        10px;

    border-bottom:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.12
        );

}


.performance-chart span {

    flex: 1;

    min-width: 18px;

    border-radius:
        8px
        8px
        0
        0;

    background:

        linear-gradient(
            to top,
            #3d9865,
            #5bb780
        );

    transform-origin:
        bottom;

    animation:
        performanceBars
        3s
        ease-in-out
        infinite
        alternate;

}


.performance-chart span:nth-child(1) {

    height: 30%;

}


.performance-chart span:nth-child(2) {

    height: 44%;

    animation-delay:
        0.15s;

}


.performance-chart span:nth-child(3) {

    height: 38%;

    animation-delay:
        0.3s;

}


.performance-chart span:nth-child(4) {

    height: 60%;

    animation-delay:
        0.45s;

}


.performance-chart span:nth-child(5) {

    height: 52%;

    animation-delay:
        0.6s;

}


.performance-chart span:nth-child(6) {

    height: 75%;

    animation-delay:
        0.75s;

}


.performance-chart span:nth-child(7) {

    height: 92%;

    animation-delay:
        0.9s;

}


@keyframes performanceBars {

    from {

        transform:
            scaleY(
                0.88
            );

    }

    to {

        transform:
            scaleY(
                1
            );

    }

}


/* =========================================================
   03. INTRODUCTION
========================================================= */

.growth-introduction {

    padding:
        clamp(
            6rem,
            9vw,
            9rem
        )
        0;

    background: #ffffff;

}


.growth-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;

}


.growth-intro-heading h2 {

    max-width: 580px;

    margin:
        18px
        0
        0;

    color: #111412;

    font-size:
        clamp(
            2.5rem,
            4.5vw,
            4.5rem
        );

    line-height: 1;

    letter-spacing:
        -0.055em;

}


.growth-intro-content {

    padding-top: 12px;

}


.growth-intro-content p {

    max-width: 680px;

    margin:
        0
        0
        26px;

    color: #657069;

    font-size: 1.05rem;

    line-height: 1.85;

}


.growth-intro-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   SHARED SECTION HEADING
========================================================= */

.growth-section-heading {

    max-width: 760px;

    margin:
        0
        auto
        70px;

    text-align: center;

}


.growth-section-heading h2 {

    margin:
        18px
        0;

    color: #111412;

    font-size:
        clamp(
            2.5rem,
            4.5vw,
            4.5rem
        );

    line-height: 1;

    letter-spacing:
        -0.055em;

}


.growth-section-heading p {

    max-width: 650px;

    margin:
        24px
        auto
        0;

    color: #657069;

    line-height: 1.8;

}


/* =========================================================
   04. CAPABILITIES
========================================================= */

.growth-capabilities {

    padding:
        clamp(
            6rem,
            9vw,
            9rem
        )
        0;

    background:

        linear-gradient(
            135deg,
            #f6faf7,
            #ffffff
        );

}


.growth-capability-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap: 20px;

}


.growth-capability-card {

    position: relative;

    min-height: 310px;

    padding: 34px;

    overflow: hidden;

    border:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.09
        );

    border-radius: 26px;

    background:

        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.96
            ),
            rgba(
                246,
                250,
                247,
                0.90
            )
        );

    box-shadow:

        0
        12px
        35px
        rgba(
            20,
            35,
            27,
            0.05
        );

    transition:
        transform
        0.4s
        ease,
        box-shadow
        0.4s
        ease,
        border-color
        0.4s
        ease;

}


.growth-capability-card:hover {

    transform:
        translateY(
            -8px
        );

    border-color:
        rgba(
            91,
            183,
            128,
            0.35
        );

    box-shadow:

        0
        25px
        55px
        rgba(
            20,
            35,
            27,
            0.10
        );

}


.growth-card-number {

    position: absolute;

    top: 28px;

    right: 30px;

    color:
        rgba(
            61,
            152,
            101,
            0.20
        );

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.12em;

}


.growth-card-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 62px;

    height: 62px;

    margin-bottom: 30px;

    border:
        1px
        solid
        rgba(
            61,
            152,
            101,
            0.20
        );

    border-radius: 17px;

    background:
        rgba(
            91,
            183,
            128,
            0.10
        );

    color:
        #3d9865;

}


.growth-card-icon svg {

    width: 28px;

    height: 28px;

}


.growth-capability-card h3 {

    margin:
        0
        0
        14px;

    color: #171a18;

    font-size: 1.3rem;

    line-height: 1.25;

}


.growth-capability-card p {

    margin: 0;

    color: #657069;

    font-size: 0.96rem;

    line-height: 1.75;

}


/* =========================================================
   05. FRAMEWORK
========================================================= */

.growth-framework {

    padding:
        clamp(
            6rem,
            9vw,
            9rem
        )
        0;

    background: #ffffff;

}


.growth-framework-grid {

    display: grid;

    grid-template-columns:
        minmax(320px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 100px;

    align-items: center;

}


.growth-framework-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 500px;

}


.framework-ring {

    position: absolute;

    border:
        1px
        solid
        rgba(
            91,
            183,
            128,
            0.22
        );

    border-radius: 50%;

    animation:
        frameworkSpin
        20s
        linear
        infinite;

}


.framework-ring-one {

    width: 350px;

    height: 350px;

}


.framework-ring-two {

    width: 470px;

    height: 470px;

    animation-direction:
        reverse;

    animation-duration:
        28s;

}


.framework-core {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background:

        linear-gradient(
            145deg,
            #3d9865,
            #5bb780
        );

    color: #ffffff;

    font-size: 2rem;

    font-weight: 800;

    box-shadow:

        0
        25px
        60px
        rgba(
            61,
            152,
            101,
            0.25
        );

}


@keyframes frameworkSpin {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


.growth-framework-content h2 {

    max-width: 650px;

    margin:
        18px
        0
        24px;

    color: #111412;

    font-size:
        clamp(
            2.5rem,
            4.5vw,
            4.5rem
        );

    line-height: 1;

    letter-spacing:
        -0.055em;

}


.growth-framework-content > p {

    max-width: 650px;

    color: #657069;

    line-height: 1.8;

}


.framework-steps {

    margin-top: 40px;

}


.framework-step {

    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding:
        20px
        0;

    border-bottom:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.08
        );

}


.framework-step > span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    border-radius: 12px;

    background:
        rgba(
            91,
            183,
            128,
            0.10
        );

    color:
        #3d9865;

    font-size: 0.72rem;

    font-weight: 800;

}


.framework-step h3 {

    margin:
        0
        0
        5px;

    font-size: 1.05rem;

}


.framework-step p {

    margin: 0;

    color: #657069;

    font-size: 0.92rem;

    line-height: 1.6;

}


/* =========================================================
   06. PROCESS
========================================================= */

.growth-process {

    padding:
        clamp(
            6rem,
            9vw,
            9rem
        )
        0;

    background:

        linear-gradient(
            135deg,
            #f7faf8,
            #ffffff
        );

}


.growth-process-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 16px;

}


.growth-process-card {

    min-height: 280px;

    padding: 30px;

    border:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.08
        );

    border-radius: 24px;

    background: #ffffff;

    transition:
        transform
        0.4s
        ease,
        box-shadow
        0.4s
        ease;

}


.growth-process-card:hover {

    transform:
        translateY(
            -7px
        );

    box-shadow:

        0
        20px
        45px
        rgba(
            20,
            35,
            27,
            0.08
        );

}


.process-index {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    margin-bottom: 45px;

    border-radius: 12px;

    background:
        #171a18;

    color: #ffffff;

    font-size: 0.72rem;

    font-weight: 800;

}


.growth-process-card h3 {

    margin:
        0
        12px;

    font-size: 1.35rem;

}


.growth-process-card p {

    margin: 0;

    color: #657069;

    font-size: 0.94rem;

    line-height: 1.7;

}


/* =========================================================
   07. OUTCOMES
========================================================= */

.growth-outcomes {

    padding:
        clamp(
            6rem,
            9vw,
            9rem
        )
        0;

    background: #ffffff;

}


.growth-outcomes-inner {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 100px;

    align-items: center;

}


.growth-outcomes-heading h2 {

    max-width: 650px;

    margin:
        18px
        0
        0;

    color: #111412;

    font-size:
        clamp(
            2.5rem,
            4.5vw,
            4.5rem
        );

    line-height: 1;

    letter-spacing:
        -0.055em;

}


.growth-outcomes-content > p {

    max-width: 620px;

    margin:
        0
        0
        35px;

    color: #657069;

    line-height: 1.8;

}


.outcome-points {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 12px;

}


.outcome-points span {

    position: relative;

    padding:
        16px
        18px
        16px
        42px;

    border:
        1px
        solid
        rgba(
            20,
            35,
            27,
            0.08
        );

    border-radius: 14px;

    color: #39423d;

    font-size: 0.9rem;

}


.outcome-points span::before {

    content:
        "✓";

    position: absolute;

    left: 17px;

    color:
        #3d9865;

    font-weight:
        800;

}


/* =========================================================
   08. FINAL CTA
========================================================= */

.growth-cta {

    position: relative;

    isolation: isolate;

    overflow: hidden;

    padding:
        clamp(
            7rem,
            10vw,
            11rem
        )
        0;

    background:

        linear-gradient(
            135deg,
            #111412,
            #1b241e
        );

}


.growth-cta-glow {

    position: absolute;

    width: 600px;

    height: 600px;

    right: -200px;

    top: -250px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(
                91,
                183,
                128,
                0.22
            ),
            transparent
            70%
        );

    pointer-events: none;

}


.growth-cta-inner {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.growth-cta .section-label {

    color:
        #79c895;

}


.growth-cta h2 {

    margin:
        18px
        0
        24px;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            6vw,
            6rem
        );

    line-height: 0.98;

    letter-spacing:
        -0.06em;

}


.growth-cta p {

    max-width: 620px;

    margin:
        0
        auto
        36px;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    line-height: 1.8;

}


/* =========================================================
   CTA BUTTON
========================================================= */

.growth-cta .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 56px;

    padding:
        0
        32px;

    background:
        #5bb780;

    border:
        1px
        solid
        #5bb780;

    color:
        #ffffff;

}


.growth-cta .btn-primary:hover {

    background:
        #3d9865;

    border-color:
        #3d9865;

}


/* =========================================================
   09. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {


    .growth-hero .container {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .growth-hero-content {

        max-width: 850px;

    }


    .growth-performance-visual {

        min-height: 400px;

    }


    .growth-capability-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

    }


    .growth-process-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

    }


    .growth-framework-grid {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .growth-framework-visual {

        min-height: 420px;

    }

}


/* =========================================================
   10. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {


    .growth-hero {

        min-height: auto;

        padding:
            130px
            0
            80px;

    }


    .growth-hero h1 {

        font-size:
            clamp(
                2.8rem,
                13vw,
                4.5rem
            );

    }


    .growth-hero-content > p {

        font-size:
            0.98rem;

    }


    .growth-hero-actions {

        align-items:
            stretch;

        flex-direction:
            column;

    }


    .growth-hero-actions .btn {

        width: 100%;

    }


    .growth-performance-visual {

        min-height: 340px;

    }


    .performance-window {

        min-height: 280px;

        border-radius:
            22px;

    }


    .performance-content {

        padding:
            24px;

    }


    .performance-chart {

        height:
            130px;

        margin-top:
            35px;

    }


    .growth-intro-grid,
    .growth-outcomes-inner {

        grid-template-columns:
            1fr;

        gap:
            45px;

    }


    .growth-intro-heading h2,
    .growth-section-heading h2,
    .growth-framework-content h2,
    .growth-outcomes-heading h2 {

        font-size:
            clamp(
                2.4rem,
                11vw,
                4rem
            );

    }


    .growth-capability-grid,
    .growth-process-grid {

        grid-template-columns:
            1fr;

    }


    .growth-capability-card {

        min-height:
            auto;

        padding:
            28px;

    }


    .growth-framework-visual {

        min-height:
            340px;

    }


    .framework-ring-one {

        width:
            250px;

        height:
            250px;

    }


    .framework-ring-two {

        width:
            330px;

        height:
            330px;

    }


    .framework-core {

        width:
            110px;

        height:
            110px;

        font-size:
            1.5rem;

    }


    .outcome-points {

        grid-template-columns:
            1fr;

    }


    .growth-cta {

        padding:
            6rem
            0;

    }


    .growth-cta h2 {

        font-size:
            clamp(
                2.8rem,
                13vw,
                4.5rem
            );

    }

}


/* =========================================================
   11. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .growth-hero {

        padding:
            115px
            0
            65px;

    }


    .growth-hero h1 {

        font-size:
            2.8rem;

    }


    .growth-performance-visual {

        min-height:
            290px;

    }


    .performance-window {

        width:
            100%;

    }


    .growth-section-heading {

        margin-bottom:
            50px;

    }


    .framework-step {

        grid-template-columns:
            40px
            1fr;

    }


    .growth-process-card {

        min-height:
            auto;

    }


    .process-index {

        margin-bottom:
            30px;

    }

}


/* =========================================================
   12. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


    .growth-hero-orbit,
    .performance-chart span,
    .framework-ring {

        animation:
            none;

    }


    .growth-capability-card,
    .growth-process-card,
    .performance-window {

        transition:
            none;

    }


    .growth-capability-card:hover,
    .growth-process-card:hover {

        transform:
            none;

    }

}


/* =========================================================
   END GROWTH & OPTIMIZATION
========================================================= */
