/* =========================================================
   CLICK GROW DIGITAL
   ABOUT PAGE
   PREMIUM FULL CSS
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {

    position: relative;

    min-height: 88vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        145px 0 90px;

    background:

        radial-gradient(
            circle at 85% 25%,
            rgba(34,197,94,.13),
            transparent 32%
        ),

        radial-gradient(
            circle at 10% 85%,
            rgba(34,197,94,.07),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #f8faf9,
            #ffffff
        );

}


.about-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(34,197,94,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(34,197,94,.025) 1px,
            transparent 1px
        );

    background-size:
        65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;

}


.about-hero-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 70px;

    align-items: center;

}


.about-hero-content {

    position: relative;

    z-index: 3;

}


.about-hero-content h1 {

    max-width:
        760px;

    margin:
        24px 0;

    font-size:
        clamp(44px, 5.3vw, 72px);

    line-height:
        1.04;

    letter-spacing:
        -2.5px;

}


.about-hero-content p {

    max-width:
        690px;

    margin:
        0 0 18px;

    color:
        #64748b;

    font-size:
        17px;

    line-height:
        1.8;

}


.about-hero-content p strong {

    color:
        #334155;

}


.about-hero-buttons {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    flex-wrap:
        wrap;

    margin-top:
        32px;

}


.about-hero-buttons .btn,
.about-hero-buttons .btn-outline {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

}


/* =========================================================
   ABOUT HERO VISUAL
========================================================= */

.about-hero-visual {

    position:
        relative;

    min-height:
        560px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.about-hero-glow {

    position:
        absolute;

    width:
        450px;

    height:
        450px;

    border-radius:
        50%;

    background:

        radial-gradient(
            circle,
            rgba(34,197,94,.19),
            rgba(34,197,94,.06) 45%,
            transparent 72%
        );

    filter:
        blur(18px);

    animation:
        aboutHeroGlow 7s ease-in-out infinite;

}


.about-hero-ring {

    position:
        absolute;

    border:
        1px solid
        rgba(34,197,94,.17);

    border-radius:
        50%;

    pointer-events:
        none;

}


.ring-one {

    width:
        470px;

    height:
        470px;

    transform:
        rotate(-25deg)
        scaleY(.72);

    animation:
        aboutRingOne 18s linear infinite;

}


.ring-two {

    width:
        570px;

    height:
        570px;

    border-style:
        dashed;

    border-color:
        rgba(34,197,94,.11);

    transform:
        rotate(30deg)
        scaleY(.50);

    animation:
        aboutRingTwo 25s linear infinite reverse;

}


/* =========================================================
   GROWTH DASHBOARD
========================================================= */

.about-growth-card {

    position:
        relative;

    z-index:
        5;

    width:
        365px;

    min-height:
        350px;

    padding:
        30px;

    border:
        1px solid
        rgba(255,255,255,.82);

    border-radius:
        28px;

    background:
        rgba(255,255,255,.70);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

    box-shadow:
        0 30px 70px
        rgba(15,23,42,.10);

    animation:
        aboutDashboardFloat 6s ease-in-out infinite;

}


.growth-card-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        30px;

}


.growth-card-top span {

    color:
        #64748b;

    font-size:
        11px;

    font-weight:
        750;

    letter-spacing:
        1.5px;

}


.growth-card-top i {

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    background:
        #ecfdf3;

    color:
        #16a34a;

}


.growth-chart {

    position:
        relative;

    height:
        150px;

    overflow:
        hidden;

    border-bottom:
        1px solid
        rgba(34,197,94,.13);

    background:

        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 36px,
            rgba(34,197,94,.06) 37px
        );

}


.chart-line {

    position:
        absolute;

    left:
        -5%;

    bottom:
        28px;

    width:
        115%;

    height:
        110px;

    border-top:
        3px solid
        #22c55e;

    border-radius:
        50% 55% 40% 0;

    transform:
        rotate(-7deg)
        skewX(-18deg);

    filter:
        drop-shadow(
            0 5px 10px
            rgba(34,197,94,.18)
        );

}


.chart-point {

    position:
        absolute;

    z-index:
        2;

    width:
        11px;

    height:
        11px;

    border-radius:
        50%;

    background:
        #22c55e;

    border:
        3px solid
        #ffffff;

    box-shadow:
        0 0 0 5px
        rgba(34,197,94,.09);

}


.point-one {

    left:
        8%;

    bottom:
        45px;

}


.point-two {

    left:
        29%;

    bottom:
        65px;

}


.point-three {

    left:
        49%;

    bottom:
        58px;

}


.point-four {

    left:
        69%;

    bottom:
        90px;

}


.point-five {

    right:
        5%;

    bottom:
        112px;

}


.growth-card-bottom {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        20px;

    margin-top:
        25px;

}


.growth-card-bottom strong {

    display:
        block;

    color:
        #111827;

    font-size:
        15px;

}


.growth-card-bottom small {

    display:
        block;

    margin-top:
        4px;

    color:
        #64748b;

    font-size:
        11px;

}


/* =========================================================
   FLOATING GROWTH LABELS
========================================================= */

.floating-growth {

    position:
        absolute;

    z-index:
        8;

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        11px 15px;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius:
        14px;

    background:
        rgba(255,255,255,.72);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.08);

    color:
        #334155;

    font-size:
        11px;

    font-weight:
        650;

}


.floating-growth i {

    color:
        #16a34a;

}


.growth-one {

    top:
        100px;

    left:
        5%;

    animation:
        floatingOne 4.5s ease-in-out infinite;

}


.growth-two {

    right:
        2%;

    bottom:
        115px;

    animation:
        floatingTwo 5s ease-in-out infinite;

}


.growth-three {

    left:
        15%;

    bottom:
        55px;

    animation:
        floatingThree 5.5s ease-in-out infinite;

}


/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats {

    position:
        relative;

    z-index:
        3;

    margin-top:
        -10px;

    padding:
        35px 0;

    background:
        #ffffff;

}


.about-stats-grid {

    display:
        grid;

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

    border:
        1px solid
        rgba(34,197,94,.08);

    border-radius:
        22px;

    overflow:
        hidden;

    background:
        rgba(255,255,255,.75);

    box-shadow:
        0 18px 50px
        rgba(15,23,42,.06);

}


.about-stat {

    padding:
        28px 20px;

    text-align:
        center;

    border-right:
        1px solid
        rgba(34,197,94,.08);

}


.about-stat:last-child {

    border-right:
        none;

}


.stat-number {

    display:
        block;

    color:
        #16a34a;

    font-size:
        38px;

    line-height:
        1;

    font-weight:
        800;

    letter-spacing:
        -1px;

}


.stat-label {

    display:
        block;

    max-width:
        170px;

    margin:
        9px auto 0;

    color:
        #64748b;

    font-size:
        11px;

    line-height:
        1.5;

}


/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {

    position:
        relative;

    overflow:
        hidden;

}


.about-story-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        90px;

    align-items:
        center;

}


/* =========================================================
   STORY VISUAL
========================================================= */

.about-story-visual {

    position:
        relative;

    height:
        500px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.story-glow {

    position:
        absolute;

    width:
        400px;

    height:
        400px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.13),
            transparent 70%
        );

    filter:
        blur(20px);

}


.story-card {

    position:
        relative;

    border:
        1px solid
        rgba(255,255,255,.78);

    background:
        rgba(255,255,255,.70);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.08);

}


.story-card-main {

    z-index:
        3;

    width:
        390px;

    min-height:
        300px;

    padding:
        40px;

    border-radius:
        30px;

    transform:
        rotate(-3deg);

    animation:
        storyCardFloat 6s ease-in-out infinite;

}


.story-card-label {

    color:
        #16a34a;

    font-size:
        11px;

    font-weight:
        750;

    letter-spacing:
        1.8px;

}


.story-card-main h3 {

    margin:
        30px 0 18px;

    color:
        #111827;

    font-size:
        39px;

    line-height:
        1.08;

    letter-spacing:
        -1.3px;

}


.story-card-main h3 span {

    color:
        #16a34a;

}


.story-card-main p {

    max-width:
        280px;

    color:
        #64748b;

    font-size:
        14px;

    line-height:
        1.7;

}


.story-mini-line {

    width:
        75px;

    height:
        3px;

    margin-top:
        25px;

    border-radius:
        10px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #86efac
        );

}


.story-card-small {

    position:
        absolute;

    z-index:
        5;

    right:
        4%;

    bottom:
        55px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        14px 17px;

    border-radius:
        16px;

    animation:
        storySmallFloat 5s ease-in-out infinite;

}


.story-card-small > i {

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    background:
        #ecfdf3;

    color:
        #16a34a;

}


.story-card-small strong {

    display:
        block;

    color:
        #111827;

    font-size:
        12px;

}


.story-card-small small {

    display:
        block;

    margin-top:
        3px;

    color:
        #64748b;

    font-size:
        10px;

}


.story-dot {

    position:
        absolute;

    width:
        9px;

    height:
        9px;

    border-radius:
        50%;

    background:
        #22c55e;

    box-shadow:
        0 0 0 7px
        rgba(34,197,94,.08);

}


.story-dot-one {

    top:
        70px;

    left:
        15%;

}


.story-dot-two {

    right:
        12%;

    top:
        80px;

}


.story-dot-three {

    left:
        8%;

    bottom:
        90px;

    width:
        6px;

    height:
        6px;

}


/* =========================================================
   STORY CONTENT
========================================================= */

.about-story-content h2 {

    max-width:
        680px;

    margin:
        20px 0 25px;

    font-size:
        clamp(36px,4vw,55px);

    line-height:
        1.08;

    letter-spacing:
        -1.8px;

}


.about-story-content > p {

    max-width:
        700px;

    margin:
        0 0 18px;

    color:
        #64748b;

    font-size:
        16px;

    line-height:
        1.8;

}


.about-story-content strong {

    color:
        #334155;

}


.story-highlight {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        15px;

    margin-top:
        28px;

    padding:
        19px;

    border-left:
        3px solid
        #22c55e;

    border-radius:
        0 16px 16px 0;

    background:
        #f4fcf7;

}


.story-highlight i {

    margin-top:
        3px;

    color:
        #16a34a;

}


.story-highlight p {

    margin:
        0;

    color:
        #334155;

    font-size:
        15px;

    line-height:
        1.6;

    font-weight:
        650;

    font-style:
        italic;

}


/* =========================================================
   DIGITAL SERVICES SHOWCASE
========================================================= */

.digital-services-showcase {

    position:
        relative;

    overflow:
        hidden;

    padding:
        110px 0 120px;

    background:
        #f8faf9;

}


.digital-services-showcase .section-header {

    position:
        relative;

    z-index:
        5;

    max-width:
        760px;

    margin:
        0 auto 55px;

    text-align:
        center;

}


.digital-services-showcase .section-header h2 {

    margin:
        18px 0;

}


.digital-services-showcase .section-header p {

    max-width:
        680px;

    margin:
        0 auto;

    color:
        #64748b;

}


/* =========================================================
   SERVICE MARQUEE
========================================================= */

.service-marquee {

    position:
        relative;

    width:
        100%;

    overflow:
        visible;

    margin:
        25px 0;

}


.service-marquee::before,
.service-marquee::after {

    content:
        "";

    position:
        absolute;

    top:
        -30px;

    bottom:
        -30px;

    z-index:
        10;

    width:
        150px;

    pointer-events:
        none;

}


.service-marquee::before {

    left:
        0;

    background:
        linear-gradient(
            90deg,
            #f8faf9,
            transparent
        );

}


.service-marquee::after {

    right:
        0;

    background:
        linear-gradient(
            270deg,
            #f8faf9,
            transparent
        );

}


.service-track {

    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    width:
        max-content;

    padding:
        30px 0;

    animation:
        serviceScroll 34s linear infinite;

}


.service-marquee-reverse
.service-track {

    animation:
        serviceScrollReverse 38s linear infinite;

}


.service-marquee:hover
.service-track {

    animation-play-state:
        paused;

}


/* =========================================================
   SERVICE ITEM
========================================================= */

.service-item {

    position:
        relative;

    flex:
        0 0 auto;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    min-height:
        58px;

    padding:
        15px 21px;

    border:
        1px solid
        rgba(34,197,94,.10);

    border-radius:
        18px;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.05);

    color:
        #334155;

    font-size:
        13px;

    font-weight:
        650;

    cursor:
        pointer;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}


.service-item > i {

    color:
        #16a34a;

    font-size:
        15px;

    transition:
        transform .35s ease;

}


.service-item:hover {

    z-index:
        30;

    transform:
        translateY(-9px)
        scale(1.07);

    border-color:
        rgba(34,197,94,.32);

    background:
        #ffffff;

    box-shadow:
        0 20px 50px
        rgba(22,101,52,.13);

}


.service-item:hover > i {

    transform:
        scale(1.15);

}


/* =========================================================
   SERVICE HOVER POPUP
========================================================= */

.service-hover-card {

    position:
        absolute;

    left:
        50%;

    bottom:
        calc(100% + 17px);

    width:
        245px;

    padding:
        18px;

    border:
        1px solid
        rgba(34,197,94,.16);

    border-radius:
        18px;

    background:
        rgba(255,255,255,.96);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        0 20px 55px
        rgba(15,23,42,.14);

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transform:
        translateX(-50%)
        translateY(8px)
        scale(.94);

    transform-origin:
        bottom center;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

}


.service-hover-card::after {

    content:
        "";

    position:
        absolute;

    left:
        50%;

    bottom:
        -7px;

    width:
        14px;

    height:
        14px;

    background:
        #ffffff;

    border-right:
        1px solid
        rgba(34,197,94,.16);

    border-bottom:
        1px solid
        rgba(34,197,94,.16);

    transform:
        translateX(-50%)
        rotate(45deg);

}


.service-item:hover
.service-hover-card {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateX(-50%)
        translateY(0)
        scale(1);

}


.service-hover-card strong {

    display:
        block;

    margin-bottom:
        6px;

    color:
        #111827;

    font-size:
        13px;

}


.service-hover-card p {

    margin:
        0;

    color:
        #64748b;

    font-size:
        11px;

    line-height:
        1.6;

}


/* =========================================================
   SERVICE SCROLL ANIMATION
========================================================= */

@keyframes serviceScroll {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(-50%);

    }

}


@keyframes serviceScrollReverse {

    from {

        transform:
            translateX(-50%);

    }

    to {

        transform:
            translateX(0);

    }

}


/* =========================================================
   BELIEFS
========================================================= */

.about-beliefs {

    position:
        relative;

    overflow:
        hidden;

}


.about-beliefs .section-header {

    max-width:
        720px;

    margin:
        0 auto 65px;

    text-align:
        center;

}


.about-beliefs .section-header h2 {

    margin:
        18px 0;

}


.about-beliefs .section-header p {

    color:
        #64748b;

}


.beliefs-grid {

    display:
        grid;

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

    gap:
        30px;

}


.belief-card {

    position:
        relative;

    padding:
        35px 30px 32px;

    min-height:
        330px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(34,197,94,.08);

    border-radius:
        26px;

    background:
        rgba(255,255,255,.62);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    box-shadow:
        0 15px 45px
        rgba(15,23,42,.05);

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

}


.belief-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(34,197,94,.22);

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.09);

}


.belief-number {

    position:
        absolute;

    top:
        20px;

    right:
        25px;

    color:
        rgba(34,197,94,.12);

    font-size:
        55px;

    font-weight:
        850;

    line-height:
        1;

}


.belief-icon {

    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        28px;

    border-radius:
        15px;

    background:
        #ecfdf3;

    color:
        #16a34a;

}


.belief-card h3 {

    margin:
        0 0 15px;

    color:
        #111827;

    font-size:
        21px;

}


.belief-card p {

    margin:
        0;

    color:
        #64748b;

    font-size:
        14px;

    line-height:
        1.75;

}


/* =========================================================
   FOUNDER
========================================================= */

.about-founder {

    position:
        relative;

    overflow:
        hidden;

    background:
        linear-gradient(
            180deg,
            #f8faf9,
            #ffffff
        );

}


.about-founder::before {

    content:
        "";

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    left:
        -250px;

    bottom:
        -250px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.09),
            transparent 70%
        );

}


.founder-about-grid {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        370px 1fr;

    gap:
        90px;

    align-items:
        center;

}


.founder-about-profile {

    text-align:
        center;

}


.founder-about-image {

    position:
        relative;

    width:
        290px;

    height:
        350px;

    margin:
        0 auto 25px;

}


.founder-about-glow {

    position:
        absolute;

    width:
        290px;

    height:
        290px;

    left:
        50%;

    top:
        50%;

    transform:
        translate(-50%,-50%);

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.20),
            transparent 70%
        );

    filter:
        blur(20px);

    animation:
        founderAboutGlow 6s ease-in-out infinite;

}


.founder-about-image img {

    position:
        relative;

    z-index:
        2;

    width:
        270px;

    height:
        335px;

    object-fit:
        cover;

    object-position:
        center top;

    border:
        5px solid
        rgba(255,255,255,.90);

    border-radius:
        28px;

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.13);

    transition:
        transform .5s ease;

}


.founder-about-image:hover img {

    transform:
        scale(1.025);

}


.founder-about-profile h3 {

    margin:
        0 0 7px;

    color:
        #111827;

    font-size:
        28px;

    font-weight:
        800;

}


.founder-about-profile > p {

    margin:
        0;

    color:
        #16a34a;

    font-size:
        14px;

    font-weight:
        650;

}


.founder-experience-pill {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        18px;

    padding:
        9px 14px;

    border:
        1px solid
        rgba(34,197,94,.12);

    border-radius:
        30px;

    background:
        #f1fdf5;

    color:
        #15803d;

    font-size:
        11px;

    font-weight:
        650;

}


.founder-experience-pill i {

    color:
        #16a34a;

}


.founder-about-content h2 {

    max-width:
        700px;

    margin:
        20px 0 25px;

    font-size:
        clamp(38px,4.2vw,58px);

    line-height:
        1.07;

    letter-spacing:
        -2px;

}


.founder-about-content > p {

    max-width:
        720px;

    margin:
        0 0 18px;

    color:
        #64748b;

    font-size:
        16px;

    line-height:
        1.8;

}


.founder-about-content strong {

    color:
        #334155;

}


.founder-about-content blockquote {

    margin:
        30px 0 0;

    padding:
        7px 0 7px 20px;

    border-left:
        3px solid
        #22c55e;

    color:
        #17251d;

    font-size:
        18px;

    line-height:
        1.6;

    font-weight:
        650;

    font-style:
        italic;

}


.founder-about-content cite {

    display:
        block;

    margin-top:
        8px;

    color:
        #64748b;

    font-size:
        12px;

    font-style:
        normal;

}


/* =========================================================
   APPROACH
========================================================= */

.about-approach {

    position:
        relative;

    overflow:
        hidden;

}


.about-approach .section-header {

    max-width:
        760px;

    margin:
        0 auto 70px;

    text-align:
        center;

}


.about-approach .section-header h2 {

    margin:
        18px 0;

}


.about-approach .section-header p {

    color:
        #64748b;

}


.approach-timeline {

    position:
        relative;

    display:
        grid;

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

    gap:
        20px;

}


.approach-line {

    position:
        absolute;

    left:
        7%;

    right:
        7%;

    top:
        31px;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            rgba(34,197,94,.10),
            #22c55e,
            rgba(34,197,94,.10)
        );

}


.approach-step {

    position:
        relative;

    z-index:
        2;

    text-align:
        center;

}


.approach-number {

    width:
        62px;

    height:
        62px;

    margin:
        0 auto 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        5px solid
        #ffffff;

    border-radius:
        50%;

    background:
        #ecfdf3;

    color:
        #16a34a;

    box-shadow:
        0 8px 25px
        rgba(34,197,94,.12);

    font-size:
        12px;

    font-weight:
        800;

}


.approach-step h3 {

    margin:
        0 0 8px;

    color:
        #111827;

    font-size:
        17px;

}


.approach-step p {

    margin:
        0 auto;

    max-width:
        145px;

    color:
        #64748b;

    font-size:
        11px;

    line-height:
        1.6;

}


/* =========================================================
   WHY CGD
========================================================= */

.why-cgd {

    position:
        relative;

    background:
        #f8faf9;

}


.why-cgd .section-header {

    max-width:
        760px;

    margin:
        0 auto 65px;

    text-align:
        center;

}


.why-cgd .section-header h2 {

    margin:
        18px 0;

}


.why-cgd-grid {

    display:
        grid;

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

    gap:
        22px;

}


.why-card {

    padding:
        30px 24px;

    border:
        1px solid
        rgba(34,197,94,.08);

    border-radius:
        22px;

    background:
        #ffffff;

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.045);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.why-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 22px 50px
        rgba(15,23,42,.08);

}


.why-card > i {

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        22px;

    border-radius:
        13px;

    background:
        #ecfdf3;

    color:
        #16a34a;

}


.why-card h3 {

    margin:
        0 0 10px;

    color:
        #111827;

    font-size:
        18px;

}


.why-card p {

    margin:
        0;

    color:
        #64748b;

    font-size:
        13px;

    line-height:
        1.7;

}


/* =========================================================
   DIGITAL VISION
========================================================= */

.digital-vision {

    position:
        relative;

    overflow:
        hidden;

}


.digital-vision-box {

    position:
        relative;

    min-height:
        510px;

    display:
        grid;

    grid-template-columns:
        1.1fr .9fr;

    gap:
        50px;

    align-items:
        center;

    padding:
        70px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(34,197,94,.10);

    border-radius:
        34px;

    background:
        linear-gradient(
            135deg,
            #f1fdf5,
            #ffffff
        );

    box-shadow:
        0 25px 65px
        rgba(15,23,42,.07);

}


.digital-vision-content {

    position:
        relative;

    z-index:
        3;

}


.digital-vision-content h2 {

    max-width:
        700px;

    margin:
        20px 0 25px;

    font-size:
        clamp(36px,4.3vw,58px);

    line-height:
        1.08;

    letter-spacing:
        -1.8px;

}


.digital-vision-content p {

    max-width:
        680px;

    margin:
        0 0 16px;

    color:
        #64748b;

    font-size:
        15px;

    line-height:
        1.8;

}


.digital-vision-content strong {

    color:
        #334155;

}


.digital-vision-content .btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    margin-top:
        18px;

}


/* =========================================================
   VISION VISUAL
========================================================= */

.digital-vision-visual {

    position:
        relative;

    min-height:
        350px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.vision-circle {

    position:
        relative;

    z-index:
        4;

    width:
        270px;

    height:
        270px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;

    border:
        1px solid
        rgba(34,197,94,.18);

    border-radius:
        50%;

    background:
        rgba(255,255,255,.72);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.08);

}


.vision-circle span {

    color:
        #111827;

    font-size:
        13px;

    font-weight:
        800;

    letter-spacing:
        1.5px;

}


.vision-circle i {

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #ecfdf3;

    color:
        #16a34a;

}


.vision-orbit {

    position:
        absolute;

    width:
        390px;

    height:
        190px;

    border:
        1px dashed
        rgba(34,197,94,.20);

    border-radius:
        50%;

    transform:
        rotate(-18deg);

    animation:
        visionOrbit 12s linear infinite;

}


.vision-dot {

    position:
        absolute;

    width:
        9px;

    height:
        9px;

    border-radius:
        50%;

    background:
        #22c55e;

    box-shadow:
        0 0 0 7px
        rgba(34,197,94,.08);

}


.vision-dot-one {

    top:
        70px;

    right:
        25%;

}


.vision-dot-two {

    bottom:
        65px;

    left:
        20%;

}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {

    position:
        relative;

    overflow:
        hidden;

    text-align:
        center;

}


.about-final-cta::before {

    content:
        "";

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    top:
        -300px;

    left:
        50%;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.12),
            transparent 70%
        );

}


.about-final-cta-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        900px;

    margin:
        0 auto;

    padding:
        75px 45px;

    border:
        1px solid
        rgba(34,197,94,.08);

    border-radius:
        32px;

    background:
        rgba(255,255,255,.55);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

    box-shadow:
        0 25px 65px
        rgba(15,23,42,.06);

}


.about-final-cta-content h2 {

    margin:
        20px auto;

    max-width:
        800px;

    font-size:
        clamp(38px,5vw,62px);

    line-height:
        1.08;

    letter-spacing:
        -2px;

}


.about-final-cta-content p {

    max-width:
        700px;

    margin:
        0 auto 32px;

    color:
        #64748b;

    font-size:
        16px;

    line-height:
        1.8;

}


.about-final-buttons {

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    gap:
        14px;

    flex-wrap:
        wrap;

}


.about-final-buttons .btn,
.about-final-buttons .btn-outline {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes aboutHeroGlow {

    0%,
    100% {

        transform:
            scale(1);

        opacity:
            .70;

    }

    50% {

        transform:
            scale(1.10);

        opacity:
            1;

    }

}


@keyframes aboutRingOne {

    from {

        transform:
            rotate(-25deg)
            scaleY(.72);

    }

    to {

        transform:
            rotate(335deg)
            scaleY(.72);

    }

}


@keyframes aboutRingTwo {

    from {

        transform:
            rotate(30deg)
            scaleY(.50);

    }

    to {

        transform:
            rotate(-330deg)
            scaleY(.50);

    }

}


@keyframes aboutDashboardFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


@keyframes floatingOne {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


@keyframes floatingTwo {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(10px);

    }

}


@keyframes floatingThree {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


@keyframes storyCardFloat {

    0%,
    100% {

        transform:
            rotate(-3deg)
            translateY(0);

    }

    50% {

        transform:
            rotate(-3deg)
            translateY(-8px);

    }

}


@keyframes storySmallFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(9px);

    }

}


@keyframes founderAboutGlow {

    0%,
    100% {

        transform:
            translate(-50%,-50%)
            scale(1);

        opacity:
            .70;

    }

    50% {

        transform:
            translate(-50%,-50%)
            scale(1.10);

        opacity:
            1;

    }

}


@keyframes visionOrbit {

    from {

        transform:
            rotate(-18deg);

    }

    to {

        transform:
            rotate(342deg);

    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .about-hero-wrapper {

        gap:
            40px;

    }


    .about-hero-content h1 {

        font-size:
            58px;

    }


    .about-hero-visual {

        min-height:
            500px;

    }


    .about-growth-card {

        width:
            335px;

    }


    .about-stats-grid {

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

    }


    .about-stat:nth-child(2) {

        border-right:
            none;

    }


    .about-stat:nth-child(-n+2) {

        border-bottom:
            1px solid
            rgba(34,197,94,.08);

    }


    .founder-about-grid {

        grid-template-columns:
            320px 1fr;

        gap:
            55px;

    }


    .why-cgd-grid {

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

    }


    .approach-timeline {

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

        gap:
            35px 20px;

    }


    .approach-line {

        display:
            none;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .about-hero {

        min-height:
            auto;

        padding:
            125px 0 80px;

    }


    .about-hero-wrapper {

        grid-template-columns:
            1fr;

        text-align:
            center;

    }


    .about-hero-content {

        max-width:
            750px;

        margin:
            0 auto;

    }


    .about-hero-content p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .about-hero-buttons {

        justify-content:
            center;

    }


    .about-hero-visual {

        min-height:
            500px;

    }


    .about-story-grid {

        grid-template-columns:
            1fr;

        gap:
            55px;

    }


    .about-story-content {

        text-align:
            center;

    }


    .about-story-content > p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .story-highlight {

        text-align:
            left;

    }


    .founder-about-grid {

        grid-template-columns:
            1fr;

        gap:
            50px;

        text-align:
            center;

    }


    .founder-about-content h2 {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .founder-about-content > p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .founder-about-content blockquote {

        text-align:
            left;

    }


    .digital-vision-box {

        grid-template-columns:
            1fr;

        text-align:
            center;

        padding:
            55px 40px;

    }


    .digital-vision-content {

        max-width:
            750px;

        margin:
            0 auto;

    }


    .digital-vision-content p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .digital-vision-content .btn {

        margin-top:
            20px;

    }


    .digital-vision-visual {

        min-height:
            300px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .about-hero {

        padding:
            105px 0 65px;

    }


    .about-hero-content h1 {

        font-size:
            43px;

        letter-spacing:
            -1.5px;

    }


    .about-hero-content p {

        font-size:
            15px;

    }


    .about-hero-buttons {

        flex-direction:
            column;

        width:
            100%;

    }


    .about-hero-buttons .btn,
    .about-hero-buttons .btn-outline {

        width:
            100%;

    }


    .about-hero-visual {

        min-height:
            420px;

        margin-top:
            -10px;

    }


    .about-hero-glow {

        width:
            350px;

        height:
            350px;

    }


    .ring-one {

        width:
            350px;

        height:
            350px;

    }


    .ring-two {

        width:
            420px;

        height:
            420px;

    }


    .about-growth-card {

        width:
            300px;

        min-height:
            310px;

        padding:
            24px;

    }


    .growth-chart {

        height:
            125px;

    }


    .floating-growth {

        font-size:
            10px;

        padding:
            9px 12px;

    }


    .growth-one {

        left:
            -5px;

        top:
            70px;

    }


    .growth-two {

        right:
            -5px;

        bottom:
            75px;

    }


    .growth-three {

        left:
            5%;

        bottom:
            35px;

    }


    .about-stats-grid {

        grid-template-columns:
            1fr;

    }


    .about-stat {

        border-right:
            none;

        border-bottom:
            1px solid
            rgba(34,197,94,.08);

    }


    .about-stat:last-child {

        border-bottom:
            none;

    }


    .stat-number {

        font-size:
            34px;

    }


    .about-story-visual {

        height:
            400px;

    }


    .story-card-main {

        width:
            310px;

        min-height:
            260px;

        padding:
            30px;

    }


    .story-card-main h3 {

        font-size:
            31px;

    }


    .story-card-small {

        right:
            0;

        bottom:
            35px;

    }


    .about-story-content {

        text-align:
            center;

    }


    .about-story-content h2 {

        font-size:
            36px;

    }


    .about-story-content > p {

        font-size:
            14px;

    }


    .digital-services-showcase {

        padding:
            80px 0 90px;

    }


    .digital-services-showcase .section-header {

        padding:
            0 20px;

    }


    .service-track {

        gap:
            10px;

        padding:
            22px 0;

    }


    .service-item {

        min-height:
            50px;

        padding:
            12px 16px;

        border-radius:
            15px;

        font-size:
            11px;

    }


    .service-hover-card {

        width:
            210px;

        padding:
            15px;

    }


    .service-hover-card p {

        font-size:
            10px;

    }


    .beliefs-grid {

        grid-template-columns:
            1fr;

    }


    .belief-card {

        min-height:
            auto;

    }


    .founder-about-image {

        width:
            260px;

        height:
            315px;

    }


    .founder-about-image img {

        width:
            242px;

        height:
            300px;

    }


    .founder-about-glow {

        width:
            260px;

        height:
            260px;

    }


    .founder-about-content h2 {

        font-size:
            37px;

    }


    .founder-about-content > p {

        font-size:
            14px;

    }


    .approach-timeline {

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

        gap:
            35px 15px;

    }


    .why-cgd-grid {

        grid-template-columns:
            1fr;

    }


    .digital-vision-box {

        padding:
            45px 25px;

        border-radius:
            26px;

    }


    .digital-vision-content h2 {

        font-size:
            36px;

    }


    .vision-circle {

        width:
            220px;

        height:
            220px;

    }


    .vision-orbit {

        width:
            300px;

        height:
            145px;

    }


    .about-final-cta-content {

        padding:
            50px 25px;

        border-radius:
            25px;

    }


    .about-final-cta-content h2 {

        font-size:
            37px;

    }


    .about-final-cta-content p {

        font-size:
            14px;

    }


    .about-final-buttons {

        flex-direction:
            column;

        width:
            100%;

    }


    .about-final-buttons .btn,
    .about-final-buttons .btn-outline {

        width:
            100%;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero-content h1 {

        font-size:
            36px;

    }


    .about-hero-content p {

        font-size:
            14px;

    }


    .about-hero-visual {

        min-height:
            360px;

    }


    .about-growth-card {

        width:
            265px;

        min-height:
            285px;

        padding:
            20px;

        border-radius:
            23px;

    }


    .growth-card-top {

        margin-bottom:
            22px;

    }


    .growth-card-bottom {

        margin-top:
            18px;

    }


    .floating-growth {

        transform:
            scale(.88);

    }


    .growth-one {

        left:
            -25px;

    }


    .growth-two {

        right:
            -25px;

    }


    .growth-three {

        display:
            none;

    }


    .about-story-visual {

        height:
            350px;

    }


    .story-card-main {

        width:
            270px;

        min-height:
            230px;

        padding:
            25px;

    }


    .story-card-main h3 {

        margin-top:
            22px;

        font-size:
            27px;

    }


    .story-card-main p {

        font-size:
            12px;

    }


    .story-card-small {

        right:
            -5px;

        padding:
            10px 12px;

    }


    .story-card-small > i {

        width:
            32px;

        height:
            32px;

    }


    .about-story-content h2 {

        font-size:
            31px;

    }


    .service-hover-card {

        width:
            190px;

    }


    .service-hover-card strong {

        font-size:
            12px;

    }


    .service-hover-card p {

        font-size:
            9px;

    }


    .belief-card {

        padding:
            28px 22px;

    }


    .founder-about-image {

        width:
            230px;

        height:
            285px;

    }


    .founder-about-image img {

        width:
            215px;

        height:
            270px;

        border-radius:
            22px;

    }


    .founder-about-glow {

        width:
            230px;

        height:
            230px;

    }


    .founder-about-profile h3 {

        font-size:
            24px;

    }


    .founder-experience-pill {

        font-size:
            10px;

    }


    .founder-about-content h2 {

        font-size:
            31px;

    }


    .founder-about-content blockquote {

        font-size:
            15px;

    }


    .approach-timeline {

        grid-template-columns:
            1fr;

    }


    .approach-step p {

        max-width:
            210px;

    }


    .digital-vision-content h2 {

        font-size:
            31px;

    }


    .vision-circle {

        width:
            190px;

        height:
            190px;

    }


    .vision-circle span {

        font-size:
            10px;

    }


    .vision-orbit {

        width:
            255px;

        height:
            125px;

    }


    .about-final-cta-content {

        padding:
            40px 20px;

    }


    .about-final-cta-content h2 {

        font-size:
            31px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .about-hero-glow,
    .about-hero-ring,
    .about-growth-card,
    .floating-growth,
    .story-card-main,
    .story-card-small,
    .founder-about-glow,
    .vision-orbit,
    .service-track {

        animation:
            none !important;

    }

}


/* =========================================================
   END ABOUT CSS
========================================================= */