    /* =========================================================
           SERVICES PAGE
        ========================================================= */

        .premium-services {
            position: relative;
            overflow: hidden;
        }


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

        .services-hero {
            position: relative;
            padding-top: 90px;
            padding-bottom: 80px;
            overflow: hidden;
        }

        .services-hero::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            top: -220px;
            left: 50%;
            transform: translateX(-50%);
            background: radial-gradient(
                circle,
                rgba(255,255,255,0.075) 0%,
                rgba(255,255,255,0.025) 35%,
                transparent 70%
            );
            pointer-events: none;
        }

        .services-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }

        .services-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            padding: 8px 15px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 999px;
            background: rgba(255,255,255,0.035);
            color: rgba(255,255,255,0.72);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-top: 40px;
        }

        .services-eyebrow-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
                background: #25ff00;
            box-shadow: 0 0 14px rgba(255,255,255,0.65);
        }

        .services-hero-title {
            margin: 0;
            font-size: clamp(42px, 6vw, 78px);
            line-height: 1.02;
            letter-spacing: -0.045em;
            font-weight: 600;
        }

        .services-hero-title strong {
            display: block;
            font-weight: 600;
            background: linear-gradient(
                135deg,
                #ffffff 0%,
                #bdbdbd 50%,
                #ffffff 100%
            );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .services-hero-description {
            max-width: 760px;
            margin: 28px auto 0;
            color: rgba(255,255,255,0.62);
            font-size: 16px;
            line-height: 1.9;
            font-weight: 400;
        }


        /* =========================================================
           HERO METRICS
        ========================================================= */

        .services-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            max-width: 720px;
            margin: 48px auto 0;
            border-top: 1px solid rgba(255,255,255,0.09);
            border-bottom: 1px solid rgba(255,255,255,0.09);
        }

        .services-metric {
            padding: 22px 18px;
            text-align: center;
        }

        .services-metric + .services-metric {
            border-left: 1px solid rgba(255,255,255,0.09);
        }

        .services-metric-number {
            display: block;
            margin-bottom: 6px;
            color: #ffffff;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.03em;
        }

        .services-metric-label {
            display: block;
            color: rgba(255,255,255,0.46);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }


        /* =========================================================
           SECTION INTRO
        ========================================================= */

        .services-section-intro {
            max-width: 760px;
            margin: 0 auto 52px;
            text-align: center;
        }

        .services-section-intro .section-tag {
            margin-bottom: 14px;
        }

        .services-section-intro h2 {
            margin-bottom: 18px;
        }

        .services-section-intro p {
            color: rgba(255,255,255,0.56);
            line-height: 1.8;
        }


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

        .premium-services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            max-width: 1240px;
            margin: 0 auto;
        }


        /* =========================================================
           PREMIUM SERVICE CARD
        ========================================================= */


.premium-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 20px 60px rgba(0,0,0,0.12);

    text-decoration: none;

    /* IMPORTANT */
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(.22,1,.36,1),
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}


/* =========================================================
   MOVING LIGHT
========================================================= */

.premium-service-card::before {
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    top: -130px;
    right: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.16) 0%,
            rgba(255,255,255,0.055) 35%,
            transparent 70%
        );

    opacity: 0.45;

    pointer-events: none;

    transform: scale(1) translate(0,0);

    transition:
        transform 0.9s cubic-bezier(.22,1,.36,1),
        opacity 0.6s ease;
}


/* =========================================================
   BOTTOM LIGHT
========================================================= */

.premium-service-card::after {
    content: "";

    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    opacity: 0.35;

    transform: scaleX(0.5);

    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(.22,1,.36,1);
}


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

.premium-service-card:hover {

    /* CARD LIFTS */
    transform: translateY(-8px);

    border-color: rgba(255,255,255,0.22);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.095),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 30px 80px rgba(0,0,0,0.22),
        0 0 35px rgba(255,255,255,0.035);
}


/* LIGHT EXPANDS */

.premium-service-card:hover::before {
    
    transform: scale(1.5) translate(-20px, 20px);
    opacity: 0.8;
}


/* BOTTOM LINE EXPANDS */

.premium-service-card:hover::after {
    opacity: 0.9;
    transform: scaleX(4);
}


/* =========================================================
   ICON ANIMATION
========================================================= */

.service-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 14px;

    background: rgba(255,255,255,0.035);
    color: rgba(255,255,255,0.82);

    font-size: 17px;

    transition:
        transform 0.45s cubic-bezier(.22,1,.36,1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.premium-service-card:hover .service-icon {

    transform:
        translateY(-4px)
        rotate(-4deg)
        scale(1.06);

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

    border-color: rgba(255,255,255,0.22);

    box-shadow:
        0 8px 25px rgba(255,255,255,0.06);
}


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

.service-card-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: auto;
    padding-top: 28px;

    color: rgb(23 157 255 / 78%);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        gap 0.4s cubic-bezier(.22,1,.36,1),
        color 0.3s ease,
        transform 0.4s cubic-bezier(.22,1,.36,1);
}


.premium-service-card:hover .service-card-link {

    gap: 15px;

    color: rgb(23 157 255 / 100%);

    transform: translateX(3px);
}


.service-card-link i {
    font-size: 10px;

    transition:
        transform 0.4s cubic-bezier(.22,1,.36,1);
}


.premium-service-card:hover .service-card-link i {
    transform: translateX(4px);
}

        /* =========================================================
           SERVICE NUMBER + ICON
        ========================================================= */

        .service-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 42px;
        }

        .service-number {
            color: rgba(255,255,255,0.26);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
        }

        .service-icon {
            width: 46px;
            height: 46px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 14px;

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

            color: rgba(255,255,255,0.82);
            font-size: 17px;

            transition:
                transform 0.35s ease,
                background 0.35s ease;
        }

        .premium-service-card:hover .service-icon {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.08);
        }


        /* =========================================================
           SERVICE CONTENT
        ========================================================= */

        .service-title {
            margin: 0 0 14px;

            color: #ffffff;

            font-size: 19px;
            line-height: 1.35;
            font-weight: 600;
            letter-spacing: -0.015em;
        }

        .service-description {
            margin: 0;

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

            font-size: 13px;
            line-height: 1.8;
            font-weight: 400;
        }


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

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 9px;

            margin-top: auto;
            padding-top: 28px;

            color: rgb(23 157 255 / 78%);

            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;

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

        .premium-service-card:hover {
    transform: none;

    border-color: rgba(255,255,255,0.19);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.055),
        0 20px 60px rgba(0,0,0,0.16);
}

        .service-card-link i {
            font-size: 10px;
        }


        /* =========================================================
           FEATURED CARDS
        ========================================================= */

        .premium-service-card.featured {
            grid-column: span 1;

            border-color: rgba(255,255,255,0.15);

            background:
                linear-gradient(
                    145deg,
                    rgba(255,255,255,0.085),
                    rgba(255,255,255,0.025)
                );
        }

        .premium-service-card.featured .service-icon {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.17);
        }


        /* =========================================================
           MID PAGE CTA
        ========================================================= */

        .services-inline-cta {
            max-width: 1240px;
            margin: 80px auto 0;
            padding: 38px 42px;

            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;

            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 22px;

            background:
                linear-gradient(
                    110deg,
                    rgba(255,255,255,0.055),
                    rgba(255,255,255,0.018)
                );
        }

        .services-inline-cta-content h3 {
            margin: 0 0 8px;
            color: #ffffff;
            font-size: 21px;
            font-weight: 600;
        }

        .services-inline-cta-content p {
            margin: 0;
            color: rgba(255,255,255,0.48);
            font-size: 13px;
            line-height: 1.7;
        }


        /* =========================================================
           BUTTONS
        ========================================================= */

        .services-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;

            min-width: 150px;
            padding: 13px 21px;

            border-radius: 10px;

            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;

            text-decoration: none;

            transition:
                transform 0.3s ease,
                background 0.3s ease,
                border-color 0.3s ease;
        }

        .services-button-primary {
                background: rgb(18 136 207);
                color: rgb(255 255 255);
                border:1px solid rgb(18 136 207);
            }

        .services-button-primary:hover {
            transform: translateY(-2px);
            background: #e8e8e8;
        background: rgb(32, 150, 247);
        }

        .services-button-secondary {
            background: rgba(255,255,255,0.035);
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.14);
        }

        .services-button-secondary:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.075);
            border-color: rgba(255,255,255,0.24);
        }


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

        .premium-footer-cta {
            position: relative;
            max-width: 1100px;
            margin: 110px auto 0;
            padding: 85px 35px;
            text-align: center;
            overflow: hidden;

            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .premium-footer-cta::before {
            content: "";
            position: absolute;

            width: 520px;
            height: 260px;

            left: 50%;
            top: 50%;

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

            background: radial-gradient(
                ellipse,
                rgba(255,255,255,0.07),
                transparent 68%
            );

            pointer-events: none;
        }

        .premium-footer-cta-content {
            position: relative;
            z-index: 2;
        }

        .premium-footer-cta h2 {
            max-width: 780px;
            margin: 15px auto 20px;

            font-size: clamp(34px, 5vw, 58px);
            line-height: 1.08;
            letter-spacing: -0.04em;
            font-weight: 600;
        }

        .premium-footer-cta p {
            max-width: 720px;
            margin: 0 auto;

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

            font-size: 10px;
            line-height: 1.85;
        }

        .premium-footer-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;

            margin-top: 32px;
        }


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

        @media (max-width: 1050px) {

            .premium-services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

        }


        @media (max-width: 720px) {

            .services-hero {
                padding-top: 65px;
                padding-bottom: 60px;
            }

            .services-hero-title {
                font-size: clamp(38px, 11vw, 58px);
            }

            .services-hero-description {
                font-size: 14px;
                line-height: 1.8;
            }

            .services-metrics {
                grid-template-columns: 1fr;
                max-width: 300px;
            }

            .services-metric + .services-metric {
                border-left: 0;
                border-top: 1px solid rgba(255,255,255,0.09);
            }

            .premium-services-grid {
                grid-template-columns: 1fr;
            }

            .premium-service-card {
                min-height: 290px;
                padding: 26px;
            }

            .services-inline-cta {
                flex-direction: column;
                align-items: flex-start;
                padding: 30px;
            }

            .services-inline-cta .services-button {
                width: 100%;
            }

            .premium-footer-buttons {
                flex-direction: column;
            }

            .premium-footer-buttons .services-button {
                width: 100%;
                max-width: 280px;
            }

        }


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

            .premium-service-card,
            .service-icon,
            .service-card-link,
            .services-button {
                transition: none;
            }

        }