/* =========================================================
   ADMITH LEGACY
   SERVICES PAGE
   SERVICES.CSS
========================================================= */


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

.services-page {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8faf9 35%,
            #ffffff 100%
        );

}


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

.services-hero {

    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        130px
        0
        96px;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(91, 183, 128, 0.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 80%,
            rgba(150, 20, 20, 0.05),
            transparent 28%
        ),

        #ffffff;

}


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

.services-hero-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.55;

    background-image:

        linear-gradient(
            rgba(56, 56, 56, 0.055)
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(56, 56, 56, 0.055)
            1px,
            transparent 1px
        );

    background-size:
        70px
        70px;

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

}


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

.services-hero-content {

    position: relative;

    z-index: 2;

    max-width: 920px;

}


.services-hero .section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #961414;

}


.services-hero .section-label::before {

    content: "";

    width: 32px;

    height: 1px;

    background: #961414;

}


.services-hero h1 {

    max-width: 900px;

    margin: 0;

    font-size: clamp(
        54px,
        7vw,
        96px
    );

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 800;

    color: #161616;

}


.services-hero h1 span {

    display: block;

    color: #5bb780;

}


.services-hero p {

    max-width: 660px;

    margin-top: 34px;

    font-size: 19px;

    line-height: 1.75;

    color: #5b625e;

}


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

.services-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 42px;

}


 /* =========================================================
    SERVICES HERO — SECONDARY BUTTON VISIBILITY
 ========================================================= */

.services-hero .btn-secondary {

    color: #111513;

    background: #ffffff;

    border: 1px solid
        rgba(17, 21, 19, 0.18);

}


/* =========================================================
   HOVER STATE
========================================================= */

.services-hero .btn-secondary:hover {

    color: #ffffff;

    background: #111513;

    border-color: #111513;

}



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

.services-introduction {

    position: relative;

    padding:
        120px
        0;

    background: #111513;

    color: #ffffff;

}


.services-intro-grid {

    display: grid;

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

    gap: 100px;

    align-items: start;

}


.services-intro-heading {

    position: sticky;

    top: 120px;

}


.services-introduction .section-label {

    display: inline-block;

    margin-bottom: 25px;

    color: #5bb780;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

}


.services-intro-heading h2 {

    max-width: 600px;

    margin: 0;

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

    line-height: 1.04;

    letter-spacing: -0.045em;

}


.services-intro-content {

    padding-top: 12px;

}


.services-intro-content p {

    max-width: 620px;

    margin: 0 0 28px;

    font-size: 18px;

    line-height: 1.8;

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

}


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

    margin-bottom: 0;

}


/* =========================================================
   04. SERVICE DETAIL SECTIONS
========================================================= */

.service-detail {

    position: relative;

    padding:
        130px
        0;

    overflow: hidden;

}


.service-detail:nth-of-type(
    odd
) {

    background: #ffffff;

}


.service-detail:nth-of-type(
    even
) {

    background: #f5f8f6;

}


/* =========================================================
   SERVICE DETAIL GRID
========================================================= */

.service-detail-grid {

    display: grid;

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

    gap: 90px;

    align-items: center;

}


.service-detail-grid.reverse {

    direction: rtl;

}


.service-detail-grid.reverse
.service-content,

.service-detail-grid.reverse
.service-visual {

    direction: ltr;

}


/* =========================================================
   05. SERVICE VISUAL PANEL
========================================================= */

.service-visual {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 28px;

    background:

        radial-gradient(
            circle at 70% 25%,
            rgba(
                91,
                183,
                128,
                0.22
            ),
            transparent 28%
        ),

        radial-gradient(
            circle at 20% 80%,
            rgba(
                150,
                20,
                20,
                0.14
            ),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #18221d,
            #0d1110
        );

    box-shadow:

        0 35px 80px
        rgba(
            0,
            0,
            0,
            0.12
        );

    isolation: isolate;

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

}


.service-visual:hover {

    transform:
        translateY(-8px);

    box-shadow:

        0 45px 100px
        rgba(
            0,
            0,
            0,
            0.18
        );

}


/* =========================================================
   VISUAL GRID
========================================================= */

.service-visual::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.055
            )
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.055
            )
            1px,
            transparent 1px
        );

    background-size:
        55px
        55px;

    opacity: 0.65;

    z-index: -1;

}


/* =========================================================
   VISUAL GLOW
========================================================= */

.service-visual::after {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

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

    filter:
        blur(80px);

    z-index: -1;

}


/* =========================================================
   VISUAL OVERLAY
========================================================= */

.service-visual-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 34px;

}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );

    border-radius: 50%;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.08em;

    color: #ffffff;

    background:
        rgba(
            255,
            255,
            255,
            0.045
        );

    backdrop-filter:
        blur(10px);

}


/* =========================================================
   VISUAL TITLE
========================================================= */

.service-visual-title {

    position: absolute;

    left: 50%;

    top: 50%;

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

    font-size: clamp(
        52px,
        6vw,
        92px
    );

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.06em;

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

    white-space: nowrap;

}


/* =========================================================
   ORBIT TEXT
========================================================= */

.service-visual-orbit {

    position: absolute;

    right: 32px;

    bottom: 32px;

    width: 120px;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    color: #5bb780;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}


.service-visual-orbit::before {

    content: "";

    position: absolute;

    inset: 10px;

    border:
        1px dashed
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius: 50%;

}


.service-visual-orbit::after {

    content: "";

    position: absolute;

    top: -5px;

    left: 50%;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #5bb780;

    box-shadow:
        0 0 20px
        rgba(
            91,
            183,
            128,
            0.8
        );

}


/* =========================================================
   06. SERVICE CONTENT
========================================================= */

.service-content {

    max-width: 650px;

}


.service-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: #961414;

}


.service-label::before {

    content: "";

    width: 30px;

    height: 1px;

    background: #961414;

}


.service-content h2 {

    margin: 0;

    font-size: clamp(
        40px,
        4.5vw,
        64px
    );

    line-height: 1.08;

    letter-spacing: -0.045em;

    color: #171917;

}


.service-content > p {

    margin-top: 28px;

    font-size: 17px;

    line-height: 1.8;

    color: #626a65;

}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-list {

    display: grid;

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

    gap: 0;

    margin:
        38px
        0
        0;

    padding: 0;

    list-style: none;

}


.service-list li {

    position: relative;

    padding:
        15px
        0
        15px
        25px;

    border-bottom:
        1px solid
        rgba(
            56,
            56,
            56,
            0.12
        );

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;

    color: #343a36;

}


.service-list li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 23px;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #5bb780;

}


/* =========================================================
   SERVICE LINK
========================================================= */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 38px;

    color: #171917;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.service-link span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border:
        1px solid
        rgba(
            56,
            56,
            56,
            0.2
        );

    border-radius: 50%;

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.service-link:hover {

    gap: 20px;

    color: #961414;

}


.service-link:hover span {

    background: #961414;

    color: #ffffff;

    border-color: #961414;

}


/* =========================================================
   07. SERVICE-SPECIFIC VISUAL IDENTITIES
========================================================= */


/* DESIGN */

.service-design
.service-visual {

    background:

        radial-gradient(
            circle at 70% 25%,
            rgba(
                91,
                183,
                128,
                0.28
            ),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #13251c,
            #101412
        );

}


/* STRATEGY */

.service-strategy
.service-visual {

    background:

        radial-gradient(
            circle at 30% 25%,
            rgba(
                150,
                20,
                20,
                0.22
            ),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #201616,
            #111111
        );

}


/* PRODUCT */

.service-product
.service-visual {

    background:

        radial-gradient(
            circle at 70% 70%,
            rgba(
                91,
                183,
                128,
                0.25
            ),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #17231e,
            #0d1210
        );

}


/* GROWTH */

.service-growth
.service-visual {

    background:

        radial-gradient(
            circle at 30% 70%,
            rgba(
                150,
                20,
                20,
                0.18
            ),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #211818,
            #111111
        );

}


/* DOCUMENTATION */

.service-documentation
.service-visual {

    background:

        radial-gradient(
            circle at 70% 25%,
            rgba(
                91,
                183,
                128,
                0.2
            ),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #15201b,
            #0e1110
        );

}


/* BRAND */

.service-brand
.service-visual {

    background:

        radial-gradient(
            circle at 30% 30%,
            rgba(
                150,
                20,
                20,
                0.2
            ),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #211717,
            #111111
        );

}


/* =========================================================
   08. OUR PROCESS
========================================================= */

.services-process {

    position: relative;

    padding:
        140px
        0;

    background: #ffffff;

}


.services-process-intro {

    max-width: 720px;

    margin-bottom: 70px;

}


.services-process-intro
.section-label {

    display: inline-block;

    margin-bottom: 22px;

    color: #961414;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

}


.services-process-intro h2 {

    margin: 0;

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

    line-height: 1.05;

    letter-spacing: -0.05em;

    color: #171917;

}


.services-process-intro p {

    max-width: 620px;

    margin-top: 28px;

    font-size: 18px;

    line-height: 1.75;

    color: #626a65;

}


/* =========================================================
   PROCESS GRID
========================================================= */

.process-grid {

    display: grid;

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

    gap: 20px;

}


.process-card {

    position: relative;

    min-height: 330px;

    padding: 34px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    border:
        1px solid
        rgba(
            56,
            56,
            56,
            0.12
        );

    border-radius: 22px;

    background:
        #f7f9f8;

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

}


.process-card:hover {

    transform:
        translateY(-8px);

    background: #111513;

    box-shadow:

        0 30px 60px
        rgba(
            0,
            0,
            0,
            0.12
        );

}


.process-number {

    position: absolute;

    top: 30px;

    left: 32px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.12em;

    color: #961414;

}


.process-card h3 {

    margin: 0;

    font-size: 32px;

    letter-spacing: -0.035em;

    color: #171917;

    transition:
        color 0.3s ease;

}


.process-card p {

    margin:
        16px
        0
        0;

    font-size: 15px;

    line-height: 1.7;

    color: #68706b;

    transition:
        color 0.3s ease;

}


.process-card:hover h3 {

    color: #ffffff;

}


.process-card:hover p {

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

}


/* =========================================================
   09. FINAL CTA
========================================================= */

.services-cta {

    position: relative;

    padding:
        120px
        0;

    background: #111513;

    overflow: hidden;

}


.services-cta::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    top: -300px;

    right: -100px;

    border-radius: 50%;

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

    filter:
        blur(100px);

}


.services-cta-inner {

    position: relative;

    z-index: 2;

    max-width: 800px;

}


.services-cta .section-label {

    display: inline-block;

    margin-bottom: 24px;

    color: #5bb780;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

}


.services-cta h2 {

    margin: 0;

    font-size: clamp(
        48px,
        6vw,
        86px
    );

    line-height: 1;

    letter-spacing: -0.055em;

    color: #ffffff;

}


.services-cta p {

    max-width: 620px;

    margin:
        28px
        0
        38px;

    font-size: 18px;

    line-height: 1.75;

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

}


/* =========================================================
   10. BUTTON REFINEMENT
========================================================= */

.services-page
.btn {

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

}


.services-page
.btn:hover {

    transform:
        translateY(-2px);

}


/* =========================================================
   11. TABLET RESPONSIVE
========================================================= */

@media
(max-width: 1100px) {


    .services-hero {

        min-height: 680px;

        padding:
            130px
            0
            110px;

    }


    .service-detail {

        padding:
            100px
            0;

    }


    .service-detail-grid {

        gap: 60px;

    }


    .service-visual {

        min-height: 520px;

    }


    .service-visual-title {

        font-size:
            clamp(
                44px,
                5vw,
                70px
            );

    }


    .process-grid {

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

    }

}


/* =========================================================
   12. MOBILE RESPONSIVE
========================================================= */

@media
(max-width: 768px) {


    /* HERO */

    .services-hero {

        min-height: auto;

        padding:
            120px
            0
            90px;

    }


    .services-hero h1 {

        font-size:
            clamp(
                46px,
                12vw,
                68px
            );

    }


    .services-hero p {

        font-size: 16px;

        line-height: 1.7;

    }


    .services-hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .services-hero-actions
    .btn {

        width: 100%;

        justify-content: center;

    }


    /* INTRODUCTION */

    .services-introduction {

        padding:
            90px
            0;

    }


    .services-intro-grid {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .services-intro-heading {

        position: static;

    }


    .services-intro-heading h2 {

        font-size:
            clamp(
                42px,
                10vw,
                60px
            );

    }


    .services-intro-content p {

        font-size: 16px;

    }


    /* SERVICE SECTIONS */

    .service-detail {

        padding:
            80px
            0;

    }


    .service-detail-grid,

    .service-detail-grid.reverse {

        grid-template-columns:
            1fr;

        gap: 55px;

        direction: ltr;

    }


    .service-visual {

        min-height: 430px;

        border-radius: 22px;

    }


    .service-visual-title {

        font-size:
            clamp(
                46px,
                11vw,
                70px
            );

    }


    .service-visual-overlay {

        padding: 25px;

    }


    .service-visual-orbit {

        right: 25px;

        bottom: 25px;

        width: 100px;

        height: 100px;

    }


    .service-content h2 {

        font-size:
            clamp(
                38px,
                9vw,
                56px
            );

    }


    .service-content > p {

        font-size: 16px;

    }


    .service-list {

        grid-template-columns:
            1fr;

    }


    /* PROCESS */

    .services-process {

        padding:
            90px
            0;

    }


    .services-process-intro {

        margin-bottom: 50px;

    }


    .services-process-intro h2 {

        font-size:
            clamp(
                42px,
                10vw,
                60px
            );

    }


    .process-grid {

        grid-template-columns:
            1fr;

    }


    .process-card {

        min-height: 280px;

    }


    /* CTA */

    .services-cta {

        padding:
            90px
            0;

    }


    .services-cta h2 {

        font-size:
            clamp(
                48px,
                12vw,
                70px
            );

    }


    .services-cta p {

        font-size: 16px;

    }


}


/* =========================================================
   13. SMALL MOBILE
========================================================= */

@media
(max-width: 480px) {


    .services-hero {

        padding:
            105px
            0
            75px;

    }


    .services-hero h1 {

        font-size: 45px;

    }


    .services-introduction {

        padding:
            75px
            0;

    }


    .service-detail {

        padding:
            70px
            0;

    }


    .service-visual {

        min-height: 360px;

    }


    .service-number {

        width: 52px;

        height: 52px;

        font-size: 12px;

    }


    .service-visual-title {

        font-size: 43px;

    }


    .service-visual-orbit {

        width: 85px;

        height: 85px;

        font-size: 9px;

    }


    .service-content h2 {

        font-size: 38px;

    }


    .service-list li {

        font-size: 13px;

    }


    .services-process {

        padding:
            75px
            0;

    }


    .process-card {

        min-height: 250px;

        padding: 28px;

    }


    .services-cta {

        padding:
            75px
            0;

    }


}

/* =========================================================
   SERVICES INTRODUCTION — TEXT COLOR SYSTEM
========================================================= */

.services-introduction {
    background: #111513;
    color: #ffffff;
}

.services-introduction .section-label {
    color: #5bb780;
}

.services-introduction .services-intro-heading h2 {
    color: #ffffff;
}

.services-introduction .services-intro-content p {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   SERVICE VISUAL PANELS — PREMIUM REFINEMENT
========================================================= */


/* =========================================================
   BASE VISUAL PANEL
========================================================= */

.service-visual {

    position: relative;

    min-height: 560px;

    overflow: hidden;

    isolation: isolate;

    background:
        linear-gradient(
            145deg,
            #17221d 0%,
            #101512 48%,
            #0b0f0d 100%
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.22);

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

}


/* =========================================================
   HOVER LIFT
========================================================= */

.service-visual:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.32);

}


/* =========================================================
   PREMIUM DIGITAL GRID
========================================================= */

.service-visual::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -2;

    background-image:

        linear-gradient(
            rgba(255, 255, 255, 0.045)
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.045)
            1px,
            transparent 1px
        );

    background-size:
        42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 30%,
            black 100%
        );

    opacity:
        0.55;

    transition:
        transform 0.8s ease,
        opacity 0.5s ease;

}


.service-visual:hover::before {

    transform:
        scale(1.08);

    opacity:
        0.8;

}


/* =========================================================
   AMBIENT DIGITAL GLOW
========================================================= */

.service-visual::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    top: -160px;

    right: -120px;

    z-index: -1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91, 183, 128, 0.18)
            0%,
            rgba(91, 183, 128, 0.06)
            38%,
            transparent 72%
        );

    filter:
        blur(20px);

    transition:
        transform 0.8s ease;

}


.service-visual:hover::after {

    transform:
        scale(1.25)
        translate(
            -20px,
            20px
        );

}


/* =========================================================
   VISUAL OVERLAY
========================================================= */

.service-visual-overlay {

    position: absolute;

    inset: 0;

    z-index: 10;

    pointer-events: none;

}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {

    position: absolute;

    top: 40px;

    left: 40px;

    z-index: 20;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

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

    color:
        #5bb780;

    font-size:
        13px;

    font-weight:
        700;

    letter-spacing:
        0.08em;

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

    backdrop-filter:
        blur(12px);

}


/* =========================================================
   VISUAL TITLE
========================================================= */

.service-visual-title {

    position: absolute;

    left: 40px;

    bottom: 40px;

    z-index: 20;

    font-family:
        "Manrope",
        sans-serif;

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

    line-height:
        0.95;

    font-weight:
        700;

    letter-spacing:
        -0.05em;

    color:
        #ffffff;

}


/* =========================================================
   ORBIT LABEL
========================================================= */

.service-visual-orbit {

    position: absolute;

    top: 50%;

    right: 40px;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 110px;

    height: 110px;

    transform:
        translateY(-50%);

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

    border-radius:
        50%;

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

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;

    background:
        rgba(255, 255, 255, 0.025);

    backdrop-filter:
        blur(10px);

    transition:
        transform 0.6s ease,
        border-color 0.6s ease;

}


/* =========================================================
   ORBIT ANIMATED RING
========================================================= */

.service-visual-orbit::before {

    content: "";

    position: absolute;

    inset:
        8px;

    border:
        1px dashed
        rgba(91, 183, 128, 0.3);

    border-radius:
        50%;

    animation:
        serviceOrbitSpin
        18s
        linear
        infinite;

}


/* =========================================================
   ORBIT HOVER
========================================================= */

.service-visual:hover
.service-visual-orbit {

    transform:
        translateY(-50%)
        rotate(-8deg)
        scale(1.08);

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

}


/* =========================================================
   ORBIT ANIMATION
========================================================= */

@keyframes serviceOrbitSpin {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   SERVICE-SPECIFIC VISUAL ATMOSPHERES
========================================================= */

.service-design
.service-visual {

    background:

        radial-gradient(
            circle at 75% 25%,
            rgba(91, 183, 128, 0.16),
            transparent 32%
        ),

        linear-gradient(
            145deg,
            #18271f,
            #0c120f
        );

}


.service-strategy
.service-visual {

    background:

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

        linear-gradient(
            215deg,
            #16211c,
            #0c110f
        );

}


.service-product
.service-visual {

    background:

        radial-gradient(
            circle at 70% 70%,
            rgba(91, 183, 128, 0.15),
            transparent 35%
        ),

        linear-gradient(
            125deg,
            #14231c,
            #090e0c
        );

}


.service-growth
.service-visual {

    background:

        radial-gradient(
            circle at 30% 20%,
            rgba(91, 183, 128, 0.15),
            transparent 34%
        ),

        linear-gradient(
            200deg,
            #18251f,
            #0b100e
        );

}


.service-documentation
.service-visual {

    background:

        radial-gradient(
            circle at 70% 25%,
            rgba(91, 183, 128, 0.12),
            transparent 34%
        ),

        linear-gradient(
            150deg,
            #17211d,
            #0b100e
        );

}


.service-brand
.service-visual {

    background:

        radial-gradient(
            circle at 25% 70%,
            rgba(91, 183, 128, 0.16),
            transparent 34%
        ),

        linear-gradient(
            220deg,
            #18251f,
            #0a0f0d
        );

}


/* =========================================================
   SERVICE DETAIL GRID REFINEMENT
========================================================= */

.service-detail-grid {

    align-items:
        stretch;

    gap:
        clamp(
            48px,
            7vw,
            100px
        );

}


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

@media (max-width: 768px) {

    .service-visual {

        min-height:
            420px;

    }


    .service-number {

        top:
            30px;

        left:
            30px;

    }


    .service-visual-title {

        left:
            30px;

        bottom:
            30px;

        font-size:
            clamp(
                36px,
                11vw,
                54px
            );

    }


    .service-visual-orbit {

        right:
            25px;

        width:
            90px;

        height:
            90px;

    }

}


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

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

    .service-visual,
    .service-visual::before,
    .service-visual::after,
    .service-visual-orbit,
    .service-visual-orbit::before {

        transition:
            none;

        animation:
            none;

    }

}

/* =========================================================
   SERVICE VISUAL — FINAL ELEMENT POSITIONING
   ---------------------------------------------------------
   Number       → Top Left
   Visual Title → Center
   Orbit        → Bottom Right
========================================================= */


/* =========================================================
   SERVICE VISUAL CONTAINER
========================================================= */

.service-visual {

    position: relative;

    overflow: hidden;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   SERVICE NUMBER
   TOP LEFT
========================================================= */

.service-visual .service-number {

    position: absolute;

    top: 32px;

    left: 32px;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    line-height: 1;

}


/* =========================================================
   SERVICE VISUAL TITLE
   CENTER
========================================================= */

.service-visual .service-visual-title {

    position: absolute;

    top: 50%;

    left: 50%;

    z-index: 4;

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

    width: max-content;

    text-align: center;

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

    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.04em;

}

/* =========================================================
   SERVICE ORBIT — REFINED BOTTOM-RIGHT POSITION
========================================================= */

.service-visual .service-visual-orbit {

    position: absolute;

    right: 24px;

    bottom: 20px;

    z-index: 2;

    width: 125px;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    pointer-events: none;

    transform: translate(
        10px,
        10px
    );

}


/* =========================================================
   ORBIT OUTER RING
========================================================= */

.service-visual .service-visual-orbit::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid
        rgba(255, 255, 255, 0.30);

    border-radius: 50%;

    animation:
        serviceOrbitRotate
        12s
        linear
        infinite;

}


/* =========================================================
   ORBIT INNER RING
========================================================= */

.service-visual .service-visual-orbit::after {

    content: "";

    position: absolute;

    inset: 12px;

    border: 1px dashed
        rgba(255, 255, 255, 0.16);

    border-radius: 50%;

}


/* =========================================================
   RESPONSIVE ORBIT POSITION
========================================================= */

@media (max-width: 768px) {

    .service-visual .service-visual-orbit {

        right: 18px;

        bottom: 18px;

        width: 105px;

        height: 105px;

        transform: translate(
            6px,
            6px
        );

    }

}

/* =========================================================
   ADMITH LEGACY
   HOMEPAGE CAPABILITIES SECTION
   ---------------------------------------------------------
   Targets:
   .capabilities
   .capability-card
   .capability-icon

   This section is intentionally isolated from the
   dedicated Services Page styles above.
========================================================= */


/* =========================================================
   14. CAPABILITIES SECTION
========================================================= */

.capabilities {

    position: relative;

    overflow: hidden;

    padding:
        110px
        0
        120px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8faf9 50%,
            #ffffff 100%
        );

}


/* =========================================================
   CAPABILITIES SECTION HEADING
========================================================= */

.capabilities .section-heading {

    max-width: 820px;

    margin:
        0
        auto
        64px;

    text-align: center;

}


.capabilities .section-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    color:
        #961414;

    font-size:
        12px;

    font-weight:
        700;

    line-height:
        1.2;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;

}


.capabilities .section-title {

    max-width:
        760px;

    margin:
        0
        auto;

    color:
        #111513;

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

    line-height:
        1.04;

    letter-spacing:
        -0.045em;

    font-weight:
        800;

}


.capabilities .section-description {

    max-width:
        700px;

    margin:
        24px
        auto
        0;

    color:
        #626a65;

    font-size:
        17px;

    line-height:
        1.8;

}


/* =========================================================
   CAPABILITIES GRID
========================================================= */

.capabilities .grid-3 {

    display:
        grid;

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

    gap:
        24px;

    width:
        100%;

}


/* =========================================================
   CAPABILITY CARD
========================================================= */

.capabilities .capability-card {

    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        390px;

    padding:
        34px;

    overflow:
        hidden;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            56,
            56,
            56,
            0.10
        );

    border-radius:
        24px;

    box-shadow:
        0
        14px
        40px
        rgba(
            0,
            0,
            0,
            0.045
        );

    transition:
        transform
        0.45s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        box-shadow
        0.45s
        ease,

        border-color
        0.45s
        ease;

}


/* =========================================================
   SUBTLE CARD ACCENT
========================================================= */

.capabilities .capability-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        0;

    width:
        100%;

    height:
        3px;

    background:
        linear-gradient(
            90deg,
            #5bb780,
            #961414
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform
        0.45s
        ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.capabilities .capability-card:hover {

    transform:
        translateY(
            -8px
        );

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

    box-shadow:
        0
        28px
        65px
        rgba(
            0,
            0,
            0,
            0.10
        );

}


.capabilities .capability-card:hover::before {

    transform:
        scaleX(
            1
        );

}


/* =========================================================
   CAPABILITY ICON
========================================================= */

.capabilities .capability-icon {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        68px;

    height:
        68px;

    margin-bottom:
        30px;

    flex-shrink:
        0;

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

    border-radius:
        20px;

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

    transition:
        transform
        0.4s
        ease,

        background
        0.4s
        ease,

        border-color
        0.4s
        ease;

}


.capabilities .capability-card:hover
.capability-icon {

    transform:
        translateY(
            -3px
        );

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

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

}


/* =========================================================
   CAPABILITY SVG
========================================================= */

.capabilities .capability-icon svg {

    display:
        block;

    width:
        34px;

    height:
        34px;

    stroke:
        #5bb780;

    stroke-width:
        2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

    transition:
        transform
        0.4s
        ease;

}


.capabilities .capability-card:hover
.capability-icon svg {

    transform:
        scale(
            1.08
        );

}


/* =========================================================
   CAPABILITY TITLE
========================================================= */

.capabilities .card-title {

    margin:
        0
        0
        14px;

    color:
        #111513;

    font-size:
        1.35rem;

    line-height:
        1.25;

    font-weight:
        700;

    letter-spacing:
        -0.025em;

}


/* =========================================================
   CAPABILITY DESCRIPTION
========================================================= */

.capabilities .card-description {

    margin:
        0;

    color:
        #626a65;

    font-size:
        15px;

    line-height:
        1.75;

}


/* =========================================================
   CAPABILITY LINK
========================================================= */

.capabilities .card-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    width:
        fit-content;

    margin-top:
        auto;

    padding-top:
        28px;

    color:
        #111513;

    font-size:
        14px;

    font-weight:
        700;

    line-height:
        1.4;

    text-decoration:
        none;

    transition:
        color
        0.3s
        ease,

        gap
        0.3s
        ease;

}


.capabilities .card-link:hover {

    gap:
        13px;

    color:
        #961414;

}


/* =========================================================
   CAPABILITIES — TABLET
========================================================= */

@media (max-width: 1000px) {

    .capabilities {

        padding:
            90px
            0
            100px;

    }


    .capabilities .section-heading {

        margin-bottom:
            50px;

    }


    .capabilities .grid-3 {

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

    }


    .capabilities .capability-card {

        min-height:
            370px;

    }

}


/* =========================================================
   CAPABILITIES — MOBILE
========================================================= */

@media (max-width: 700px) {

    .capabilities {

        padding:
            75px
            0
            80px;

    }


    .capabilities .section-heading {

        margin-bottom:
            40px;

        text-align:
            left;

    }


    .capabilities .section-label {

        justify-content:
            flex-start;

    }


    .capabilities .section-title {

        font-size:
            clamp(
                2.25rem,
                10vw,
                3.5rem
            );

    }


    .capabilities .section-description {

        margin-top:
            20px;

        font-size:
            16px;

        line-height:
            1.7;

    }


    .capabilities .grid-3 {

        grid-template-columns:
            1fr;

        gap:
            18px;

    }


    .capabilities .capability-card {

        min-height:
            auto;

        padding:
            28px;

        border-radius:
            20px;

    }


    .capabilities .capability-icon {

        width:
            60px;

        height:
            60px;

        margin-bottom:
            24px;

        border-radius:
            17px;

    }


    .capabilities .capability-icon svg {

        width:
            30px;

        height:
            30px;

    }


    .capabilities .card-title {

        font-size:
            1.25rem;

    }


    .capabilities .card-description {

        font-size:
            14px;

        line-height:
            1.7;

    }

}


/* =========================================================
   CAPABILITIES — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .capabilities {

        padding:
            65px
            0
            70px;

    }


    .capabilities .capability-card {

        padding:
            24px;

    }


    .capabilities .section-title {

        font-size:
            2.25rem;

    }

}
