/* Shared custom styles */
* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Inter', 'Noto Sans SC', sans-serif;
            color: var(--brand-mid);
            background: #f3f6ff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            width: var(--container-width);
            margin: 0 auto;
        }

:root {
    --nav-bg: rgba(244, 247, 255, 0.96);
    --nav-border: rgba(23, 52, 122, 0.08);
    --nav-link: #1b2c54;
    --nav-link-active: #2e5ccb;
}
:root {
            --brand-blue: #2e5ccb;
            --brand-cyan: #00c6ff;
            --brand-green: #00f9a1;
            --brand-dark: #0b173a;
            --brand-mid: #142451;
            --brand-light: #eff5ff;
            --soft-shadow: 0 18px 45px rgba(16, 36, 94, 0.12);
            --card-radius: 22px;
            --container-width: min(1180px, 92vw);
            --gradient-1: linear-gradient(135deg, #0b1d57 0%, #1a3a89 40%, #00b3ff 100%);
            --gradient-2: linear-gradient(135deg, #0a1f3f 0%, #1c3d7d 50%, #18d1ba 100%);
            --gradient-3: linear-gradient(135deg, #0c1438 0%, #262164 50%, #6c2cff 100%);
        }

        .spinner {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.24);
            border-top-color: rgba(0, 198, 255, 0.9);
            border-right-color: rgba(0, 249, 161, 0.9);
            animation: spin 1.1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

.site-header {
    position: sticky;
    top: 0;
    z-index: 980;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--nav-border);
}

.nav-bar {
    width: min(1180px, 94vw);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-weight: 700;
    color: var(--nav-link);
}

.brand-logo {
    width: 136px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 600;
    font-size: 15px;
}

.nav-links a {
    position: relative;
    padding-bottom: 6px;
    color: var(--nav-link);
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00c6ff, #00f9a1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--nav-link-active);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 6px;
    background: none;
    border: none;
    font: inherit;
    color: var(--nav-link);
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown.is-open .dropdown-toggle,
.nav-dropdown:hover .dropdown-toggle {
    color: var(--nav-link-active);
}

.nav-dropdown.is-open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 6px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 60, 140, 0.18);
    padding: 16px 18px;
    display: grid;
    gap: 12px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 20;
}

.dropdown-menu a {
    color: #223b6d;
    font-size: 14px;
    font-weight: 500;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-outline {
    color: var(--nav-link-active);
    border: 1px solid rgba(25, 48, 100, 0.35);
    border-radius: 16px;
    padding: 10px 18px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
    background: rgba(62, 76, 110, 0.473);
}

.btn-primary {
    background: linear-gradient(120deg, #00c6ff, #00f9a1);
    color: #04112f;
    padding: 10px 20px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 16px 28px rgba(0, 198, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(0, 198, 255, 0.4);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(46, 92, 203, 0.25);
    background: #ffffff;
    color: var(--nav-link-active);
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 920px) {
    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(244, 247, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        gap: 18px;
        border-bottom: 1px solid rgba(23, 52, 122, 0.1);
        transform: translateY(-30px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 8px 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: -6px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: none;
        border-radius: 12px;
        display: none;
        padding: 12px 16px;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: grid;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}


/* Footer */
.brand-logo--footer {
    width: 138px;
}

footer {
    background: #040b1d;
    color: rgba(226, 236, 255, 0.8);
    padding: 90px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    margin: 12px 0 16px;
    color: #ffffff;
}

.footer-brand p {
    margin: 0;
    color: rgba(226, 236, 255, 0.68);
    font-size: 15px;
}

.footer-links h4 {
    margin: 0 0 16px;
    color: #ffffff;
}

.footer-links ul {
    display: grid;
    gap: 10px;
    font-size: 15px;
}

.footer-links a {
    color: rgba(226, 236, 255, 0.68);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(226, 236, 255, 0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(226, 236, 255, 0.68);
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(226, 236, 255, 0.3);
    display: grid;
    place-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.socials a:hover {
    background: rgba(226, 236, 255, 0.18);
    color: #ffffff;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-row i {
    color: rgba(226, 236, 255, 0.7);
}

.wechat-qr {
    width: 110px;
    margin-top: 8px;
    border-radius: 10px;
    background: #ffffff;
    padding: 6px;
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

        .card-list {
            list-style: none;

            padding: 0;
            display: grid;
            gap: 12px;
            padding-left: 2.50rem; /* 约等于一个 tab */
        }

        .card-list li {
            position: relative;
            padding-left: 32px;
            font-weight: 600;
            color: #0b173a;
            line-height: 1.6;
        }

        .card-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00c6ff, #2e5ccb);
            box-shadow: 0 8px 16px rgba(14, 74, 180, 0.25);
            
        }

        .highlights {
            display: grid;
            gap: 12px;
        }

        .highlights li {
            list-style: none;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(247, 249, 255, 0.82);
        }

        .highlights li::before {
            content: "▹";
            color: #5ad7ff;
            font-size: 16px;
            line-height: 1;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 90vh;
            color: #f1f5ff;
            overflow: hidden;
            background: #030a1f;
            background-image: url('../media/hero-bg.png');
            background-size: cover;
            background-position: center;
            padding-top: 15vh;
        }

        /* 蓝黑渐变叠层 (可选，增加对比度) */
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(6, 19, 46, 0.7) 30%, rgba(9, 38, 82, 0.6) 60%);
            z-index: 1;
        }

        /* 内容区 */
        .hero .container {
            position: relative;
            z-index: 2;
            padding: 90px 0 110px;
            width: min(1260px, 94vw);
            margin: 0 auto;
            text-align: center;
        }

        .hero .container h1 {
            font-size: clamp(1.8rem, 3.6vw, 2.8rem);
            color: #ffffff;
        }
        .hero .container h3 {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 520px;
                padding: 80px 0 70px;
            }

            .hero .container {
                padding: 70px 0 60px;
            }

            .hero .container h1 {
                font-size: clamp(2rem, 8vw, 2.6rem);
            }
        }


        .hero-slider {
            position: relative;
            isolation: isolate;
        }

        .slider-track {
            position: relative;
        }

        .about-hero {
            position: relative;
            height: 90vh;
            padding: 140px 24px 120px;
            color: #f1f5ff;
            overflow: hidden;
            background: #030a1f;
            background-image: url('../media/hero-bg.png');
            background-size: cover;
            background-position: center;
        }

        .about-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(6, 19, 46, 0.78) 0%, rgba(9, 38, 82, 0.6) 60%);
            z-index: 1;
        }

        .about-hero .ahero {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            gap: 18px;
            position: relative;
            z-index: 2;
        }

        .about-hero h1 { margin: 0; font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
        .about-hero p { margin: 0; max-width: 720px; font-size: 18px; color: rgba(255, 255, 255, 0.78); }

        @media (max-width: 768px) {
            .about-hero {
                height: auto;
                min-height: 520px;
                padding: 110px 16px 80px;
                text-align: center;
            }

            .about-hero .hero {
                text-align: center;
            }
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.22);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: none;
            font-size: 13px;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            align-self: flex-start;
            max-width: 100%;
        }

        .page {
            max-width: 1180px;
            margin: 0 auto;
            padding: 72px 24px 120px;
            display: grid;
            gap: 60px;
        }

         .about-brief {
            background: #101827;
            color: rgba(226, 236, 255, 0.88);
            padding: 120px 0;
        }

        .about-brief-content {
            max-width: 760px;
            margin: 0 auto;
        }

        .about-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            letter-spacing: 0.02em;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 22px;
        }

        .about-label i {
            color: var(--brand-green);
        }

        .about-brief-content h2 {
            font-size: clamp(2.2rem, 3.4vw, 3rem);
            line-height: 1.28;
            margin: 0 0 22px;
            color: #ffffff;
        }

        .about-brief-content p {
            font-size: 17px;
            line-height: 1.9;
            margin: 0 0 16px;
        }

        .about-brief-content .about-emphasis {
            font-weight: 600;
            color: var(--brand-green);
            margin-top: 24px;
        }

        .experience-showcase {
            padding: 120px 0;
            background: #f6f8ff;
        }

        .experience-showcase .container {
            width: min(1240px, 94vw);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            justify-content: space-between;
            gap: 60px;
        }

        .experience-media {
            flex: 1 1 420px;
            display: flex;
            align-items: stretch;
            justify-content: center;
        }

        .experience-media__main {
            width: 100%;
            max-width: 520px;
            min-height: 420px;
            height: 100%;
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 24px 48px rgba(13, 31, 107, 0.16);
        }

        .experience-content {
            flex: 1 1 420px;
            display: grid;
            gap: 18px;
        }

        .experience-eyebrow {
            font-size: 14px;
            font-weight: 600;
            color: #4f5dbb;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .experience-content h2 {
            margin: 0;
            font-size: clamp(32px, 4vw, 48px);
            color: #0d1f6b;
        }

        .experience-content p {
            margin: 0;
            color: rgba(13, 31, 107, 0.72);
            line-height: 1.7;
        }

        .experience-checks {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px 28px;
            margin-top: 10px;
        }

        .experience-check {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: #0c1c51;
        }

        .experience-check i {
            color: #2155ff;
            font-size: 18px;
        }

        .experience-cta {
            margin-top: 24px;
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .experience-primary {
            background: #2155ff;
            color: #ffffff;
            padding: 14px 32px;
            border-radius: 999px;
            font-weight: 600;
            box-shadow: 0 16px 32px rgba(33, 85, 255, 0.25);
            transition: transform 0.2s ease;
        }

        .experience-primary:hover {
            transform: translateY(-2px);
        }

        .experience-call {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            font-weight: 600;
            color: #0c1c51;
        }

        .experience-call-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(33, 85, 255, 0.12);
            color: #2155ff;
            display: grid;
            place-items: center;
            font-size: 22px;
        }

        @media (max-width: 960px) {
            .experience-showcase {
                padding: 80px 0;
            }

            .experience-checks {
                grid-template-columns: 1fr;
            }
        }

       


        .services {
            background: #f3f7ff;
            color: var(--brand-dark);
            padding: 120px 0;
        }

        .services-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 60px;
            display: grid;
            gap: 18px;
        }

        .services-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            border-radius: 999px;
            background: rgba(0, 198, 255, 0.15);
            color: var(--brand-blue);
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 14px;
            margin: 0 auto;
        }

        .services-header h2 {
            margin: 0;
            font-size: clamp(2.4rem, 4vw, 3.1rem);
        }

        .services-header p {
            margin: 0;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(11, 23, 58, 0.7);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 26px;
        }

        .service-card {
            position: relative;
            height: 430px;
            border-radius: 28px;
            overflow: hidden;
            text-decoration: none;
            display: block;
            box-shadow: 0 22px 48px rgba(9, 24, 62, 0.28);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 64px rgba(7, 18, 45, 0.35);
        }

        .service-card__media {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.35s ease;
        }

        .service-card:hover .service-card__media {
            transform: scale(1.05);
        }

        .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
        }

        .service-card__layer {
            position: absolute;
            inset: 0;
            backdrop-filter: blur(0px);
            background: linear-gradient(180deg, rgba(6, 18, 40, 0.05) 0%, rgba(6, 18, 40, 0.4) 100%);
            transition: backdrop-filter 0.35s ease, background 0.35s ease;
        }

        .service-card:hover .service-card__layer {
            backdrop-filter: blur(2px);
            background: linear-gradient(180deg, rgba(6, 18, 40, 0.05) 0%, rgba(6, 18, 40, 0.4) 100%);
        }

        .service-card__body {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 28px 26px 30px;
            display: grid;
            gap: 8px;
            color: #ffffff;
        }

        .service-label-en {
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .service-label-zh {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.82);
        }

        .slide-kicker {
            display: inline-flex;
            align-items: center;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 14px;
            color: #061536;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 12px 28px rgba(0, 198, 255, 0.35);
        }

        .slide-kicker i {
            color: var(--brand-blue);
        }

         .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 18px;
        }

        .hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #f1f6ff;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .hero-secondary:hover {
            background: rgba(255, 255, 255, 0.18);
        }

         /* Metrics */
        

        .metric-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 22px;
            padding-bottom: 60px;
        }

         @media (max-width: 1100px) {
            .metric-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                
            }
        }


        .metric-card {
            padding: 28px;
            border-radius: var(--card-radius);
            background: #ffffff;
            box-shadow: var(--soft-shadow);
            position: relative;
            overflow: hidden;
        }

        .metric-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(0, 198, 255, 0.12), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .metric-card:hover::after {
            opacity: 1;
        }

        .metric-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            color: #04112f;
            font-size: 20px;
            margin-bottom: 18px;
        }

        .metric-card h3 {
            font-size: 32px;
            margin: 0 0 6px;
            color: var(--brand-blue);
            font-weight: 800;
        }

        .metric-card p {
            margin: 0;
            color: rgba(23, 48, 115, 0.74);
        }

        .metric-card span {
            font-size: 14px;
            color: rgba(23, 48, 115, 0.6);
        }

        @media (max-width: 768px) {
            .metrics {
                margin-top: 0;
                padding: 60px 0;
            }

            .metric-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }

            .metric-card {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .metric-grid {
                grid-template-columns: 1fr;
            }
        }


        .testimonial-area {
            background: #ffffff;
            padding: 120px 0;
        }

        .testimonial-area .container {
            width: min(1180px, 92vw);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .testimonial-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
        }

        .testimonial-label {
            font-size: 14px;
            font-weight: 600;
            color: #3755ff;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .testimonial-heading h2 {
            margin: 8px 0 12px;
            font-size: clamp(32px, 4vw, 48px);
            color: #0b1d57;
        }

        .testimonial-heading p {
            margin: 0;
            color: rgba(11, 29, 87, 0.62);
            max-width: 520px;
            line-height: 1.7;
        }

        .testimonial-controls {
            display: inline-flex;
            gap: 14px;
        }

        .testimonial-controls button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(18, 27, 74, 0.12);
            background: #f5f6ff;
            color: #3755ff;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .testimonial-controls button:hover {
            background: #3755ff;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x proximity;
            padding-bottom: 6px;
        }

        .testimonial-card {
            background: #f4f6ff;
            border-radius: 36px;
            padding: 32px;
            box-shadow: 0 22px 48px rgba(10, 30, 110, 0.08);
            display: grid;
            gap: 10px;
            min-height: 320px;
            scroll-snap-align: start;
        }

        .testimonial-stars {
            display: inline-flex;
            gap: 6px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: #f6c343;
        }

        .testimonial-text {
            margin: 0;
            color: rgba(15, 28, 80, 0.78);
            line-height: 1.75;
            font-size: 15px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .testimonial-author-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5c7cfa, #7b5bff);
            color: #ffffff;
            display: grid;
            place-items: center;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .testimonial-author-text h3 {
            margin: 0;
            font-size: 16px;
            color: #0b1d57;
        }

        .testimonial-author-text span {
            display: block;
            font-size: 13px;
            color: rgba(11, 29, 87, 0.55);
        }

        .testimonial-quote {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #3755ff;
            display: grid;
            place-items: center;
            box-shadow: 0 16px 30px rgba(55, 85, 255, 0.25);
        }

        .testimonial-quote svg {
            width: 20px;
            height: 20px;
            fill: #ffffff;
        }

        /* Section titles */
        .section-heading {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 60px;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            margin-top: 20px;
            border-radius: 999px;
            background: rgba(0, 198, 255, 0.15);
            color: var(--brand-blue);
            font-weight: 600;
            font-size: 14px;
        }

        .section-heading h2 {
            font-size: clamp(2.1rem, 3.1vw, 2.9rem);
            margin: 20px 0 16px;
            color: var(--brand-dark);
            font-weight: 800;
            line-height: 1.25;
        }

        .section-heading p {
            margin: 0 auto;
            color: rgba(23, 48, 115, 0.7);
            font-size: 17px;
        }

        /* Data proof */
        .data-proof {
            background: #0e1b3f;
            color: #e8f2ff;
            overflow: hidden;
        }

        .data-proof::after {
            content: '';
            position: absolute;
            inset: 20% -20% -35% -10%;
            background: radial-gradient(circle, rgba(0, 249, 161, 0.28), transparent 65%);
            opacity: 0.75;
        }

        .data-proof .container {
            position: relative;
            z-index: 2;
        }

        /* Responsive */
        @media (max-width: 1100px) {

            .services {
                padding: 100px 0;
            }
        }

        @media (max-width: 920px) {
            header {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .hero .container {
                padding: 120px 0 100px;
            }

            section {
                padding: 90px 0;
            }

            

            .about-brief {
                padding: 100px 0;
            }

            .testimonial-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 640px) {
            .slide-kicker {
                font-size: 13px;
            }


            .metrics {
                margin-top: -40px;
            }


            .testimonial-cards {
                grid-template-columns: 1fr;
            }

            .about-brief {
                padding: 80px 0;
            }

            .about-brief-content p {
                font-size: 16px;
            }

            .services {
                padding: 70px 0;
            }

            .service-card {
                min-height: 280px;
            }
        }

        .cta-band {
            background: linear-gradient(135deg, rgba(11, 29, 87, 0.92), rgba(0, 198, 255, 0.85));
            color: #ffffff;
            padding: 110px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-band::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 26, 58, 0.35), rgba(8, 19, 53, 0.85));
            pointer-events: none;
        }

        .cta-band .container {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 18px;
            justify-items: center;
            text-align: center;
        }

        .cta-band p {
            margin: 0;
            max-width: 640px;
            color: rgba(226, 238, 255, 0.92);
        }

        

        .cta-content {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 20px;
            justify-items: center;
            text-align: center;
        }

        .cta-content h2 {
            margin: 0;
            font-size: clamp(2.2rem, 3.2vw, 3rem);
            font-weight: 800;
        }

        .preloader {
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at center, rgba(46, 92, 203, 0.18), rgba(8, 16, 45, 0.92));
            display: grid;
            place-items: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .preloader.is-hidden {
            opacity: 0;
            visibility: hidden;
        }

        .other-hero {
            position: relative;
            padding: 140px 0 110px;
            text-align: center;
            color: #f1f5ff;
            overflow: hidden;
            background: #040a20;
        }

        .other-hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .other-hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .other-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(4, 10, 30, 0.65), rgba(8, 26, 66, 0.65));
            pointer-events: none;
        }

        .other-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 20px;
            justify-items: center;
        }

        .other-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.15);
            letter-spacing: 0.08em;
        }

        .other-hero h1 {
            margin: 0;
            font-size: clamp(2.6rem, 4vw, 3.5rem);
            line-height: 1.12;
            font-weight: 800;
            text-shadow: 0 18px 40px rgba(4, 12, 42, 0.55);
        }

        .other-hero p {
            margin: 0;
            max-width: 720px;
            font-size: 1.05rem;
            color: rgba(226, 238, 255, 0.9);
            line-height: 1.8;
        }

        .process h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
        .process-subtitle { color: rgba(8, 26, 58, 0.62); margin-bottom: 36px; }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 22px;
            margin-top: 36px;
        }

        .process-item {
            display: grid;
            gap: 14px;
            align-content: flex-start;
        }

        @media (min-width: 1100px) {
            .process-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }

        .process-step {
            border: none;
            cursor: default;
            position: relative;
            padding: 22px 16px 18px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(235, 244, 255, 0.9));
            box-shadow: 0 12px 24px rgba(23, 72, 170, 0.12);
            display: grid;
            place-items: center;
            gap: 6px;
            min-height: 104px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        .process-step::after {
            content: attr(data-number);
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 46px;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(180deg, rgba(113, 171, 255, 0.85), rgba(240, 245, 255, 0.7));
            -webkit-background-clip: text;
            color: transparent;
            opacity: 0.85;
        }
        .process-step span { font-size: 15px; font-weight: 600; color: var(--brand-blue); }
        .process-step small { font-size: 12px; color: rgba(8, 26, 58, 0.55); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

        .process-panel {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 16px 36px rgba(18, 71, 158, 0.16);
            padding: 22px 20px;
            min-height: 180px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        .process-panel h4 { margin: 0 0 12px; font-size: 17px; color: var(--brand-blue); }
        .process-panel ul {
            margin: 0;
            padding-left: 16px;
            color: rgba(8, 26, 58, 0.78);
            display: grid;
            gap: 8px;
            font-size: 14px;
        }

        .process-panel li { line-height: 1.45; }

        .process-item:hover .process-step,
        .process-item:focus-within .process-step {
            background: linear-gradient(135deg, #0ab6ff, #297bff);
            box-shadow: 0 20px 46px rgba(15, 96, 255, 0.35);
            transform: translateY(-6px);
        }
        .process-item:hover .process-step span,
        .process-item:hover .process-step small,
        .process-item:focus-within .process-step span,
        .process-item:focus-within .process-step small {
            color: #ffffff;
        }

        .process-item:hover .process-panel,
        .process-item:focus-within .process-panel {
            background: linear-gradient(135deg, rgba(7, 63, 180, 0.98), rgba(9, 145, 241, 0.95));
            box-shadow: 0 24px 52px rgba(9, 78, 173, 0.45);
            transform: translateY(-4px);
        }
        .process-item:hover .process-panel h4,
        .process-item:hover .process-panel li,
        .process-item:focus-within .process-panel h4,
        .process-item:focus-within .process-panel li {
            color: #ffffff;
        }

        .partners-section {
            padding: 40px 0 40px;
            background:
                linear-gradient(120deg, rgba(13, 25, 53, 0.624)),
                url('../media/client-bg.png') center/cover no-repeat;
            color: #e7f1ff;
            overflow: hidden;
        }

        .partners-inner {
            width: 100%;
            display: grid;
            gap: 32px;
        }

        .partners-copy h3 {
            margin: 0 0 16px;
            font-size: clamp(28px, 4vw, 42px);
        }

        .partners-copy {
            width: min(1180px, 92vw);
            margin: 0 auto;
        }

        .partners-copy p {
            margin: 0 0 18px;
            color: rgba(231, 241, 255, 0.78);
        }

        .partner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .partner-tags span {
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            font-size: 13px;
            letter-spacing: 0.06em;
        }

        .partner-marquee {
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow: hidden;
        }

        .partner-row {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(7, 16, 38, 0);
        }

        .partner-row::before,
        .partner-row::after {
            display: none;
        }

        .partner-row-track {
            display: flex;
            align-items: center;
            gap: 48px;
            padding: 18px 32px;
            animation: marquee-left 22s linear infinite;
        }

        .partner-row[data-direction="right"] .partner-row-track {
            animation: marquee-right 26s linear infinite;
        }

        .partner-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
            color: #f0f6ff;
        }

        .partner-logo i {
            font-size: 20px;
            color: #7fbeff;
        }

        .partner-logo .badge {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            display: grid;
            place-items: center;
            font-size: 13px;
            font-weight: 700;
            color: #7fbeff;
        }

        .partner-logo .text {
            display: grid;
            gap: 2px;
        }

        .partner-logo span {
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
        }

        .partner-logo small {
            font-size: 12px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(231, 241, 255, 0.7);
        }

        @keyframes marquee-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes marquee-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }


        .team-excellence {
            position: relative;
            padding: 120px 0;
            background: #2e4179;
            overflow: hidden;
        }

        .team-excellence::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(3, 10, 28, 0.4), rgba(7, 19, 58, 0.7));
            pointer-events: none;
        }

        .team-inner {
            position: relative;
            z-index: 1;
            width: min(1180px, 92vw);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
            align-items: center;
        }

        .team-media {
            display: grid;
            gap: 20px;
        }

        .team-photo {
            border-radius: 32px;
            height: 670px;
            background: url('../media/team-about.png') center/cover no-repeat;
            box-shadow: 0 35px 80px rgba(3, 10, 28, 0.65);
            position: relative;
            overflow: hidden;
        }

        .team-photo::after {
            content: "";
            position: absolute;
            inset: 0;
            
        }

        
        .team-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .team-tags span {
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(247, 249, 255, 0.8);
            font-size: 13px;
            letter-spacing: 0.04em;
        }

        .team-content {
            color: #f6f8ff;
            display: grid;
            gap: 20px;
        }

        .team-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            width: fit-content;
        }

        .team-content h3 {
            margin: 0;
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.3;
        }

        .team-content p {
            margin: 0;
            line-height: 1.8;
            color: rgba(247, 249, 255, 0.78);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 20px;
        }

        .team-stat {
            border-radius: 22px;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .team-stat strong {
            display: block;
            font-size: 30px;
            color: #5ad7ff;
        }

        .team-stat span {
            font-size: 14px;
            color: rgba(247, 249, 255, 0.78);
        }

        .team-highlights {
            display: grid;
            gap: 12px;
        }

        .team-highlights li {
            list-style: none;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(247, 249, 255, 0.82);
        }

        .team-highlights li::before {
            content: "▹";
            color: #5ad7ff;
            font-size: 16px;
            line-height: 1;
        }

        .team-countries {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .team-countries span {
            padding: 6px 12px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.12);
            font-size: 13px;
            letter-spacing: 0.03em;
        }

        .team-footnote {
            font-size: 14px;
            color: rgba(247, 249, 255, 0.72);
        }

        @media (max-width: 760px) {
            .team-media {
                order: 2;
            }
        }

        @media (max-width: 920px) {
            .process-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
            .partner-row-track { gap: 28px; padding: 14px 18px; }
            .partner-logo span { font-size: 14px; }
        }


        .service-hero {
            position: relative;
            padding: 100px 0 110px;
            color: #f1f5ff;
            overflow: hidden;
            background: #050d22;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(6, 19, 46, 0.7) 30%, rgba(9, 38, 82, 0.6) 60%);
            backdrop-filter: blur(2px);
        }

        .service-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 22px;
        }

    

        .service-hero h1 {
            margin: 0;
            font-size: clamp(2.8rem, 4vw, 3.6rem);
            line-height: 1.12;
            font-weight: 800;
            max-width: 760px;
        }

        .service-hero p {
            margin: 0;
            max-width: 680px;
            font-size: 1.05rem;
            color: rgba(226, 238, 255, 0.9);
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-insights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 18px;
            margin-top: 26px;
        }

        .hero-insight {
            padding: 20px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(4px);
        }

        .hero-insight h3 {
            margin: 0 0 6px;
            font-size: 1.1rem;
            color: #ffffff;
        }

        .hero-insight p {
            margin: 0;
            color: rgba(226, 238, 255, 0.82);
            font-size: 0.95rem;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin-top: 26px;
        }

        .hero-stat {
            padding: 20px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(4px);
            text-align: center;
        }

        .hero-stat strong {
            display: block;
            font-size: 1.4rem;
            color: #ffffff;
        }

        .hero-stat span {
            display: block;
            font-size: 0.9rem;
            color: rgba(226, 238, 255, 0.82);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .section {
            padding: 110px 0 90px;
        }

        .section-header {
            text-align: center;
            display: grid;
            gap: 12px;
        }

        .section-header span {
            font-weight: 600;
            color: var(--brand-blue);
            font-size: 14px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .section-header h2 {
            margin: 0;
            font-size: clamp(2rem, 3vw, 2.8rem);
            color: #0b173a;
        }

        .section-header p {
            margin: 0 auto;
            max-width: 660px;
            color: rgba(20, 36, 81, 0.75);
        }

        .dashboard-section .dashboard-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            align-items: center;
            margin-bottom: 40px;
        }

        .dashboard-copy .section-header {
            text-align: left;
            margin: 0;
        }

        .dashboard-copy .section-header p {
            text-align: left;
        }

        

        

        .dashboard-visual img {
            display: block;
            box-shadow: 0 28px 60px rgba(4, 16, 46, 0.18);
            width: 100%;
            height: 550px;
            border-radius: 24px;
        }

        .dashboard-grid {
            margin-top: 52px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .dashboard-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 245, 255, 0.92));
            border-radius: 26px;
            padding: 30px;
            box-shadow: 0 22px 50px rgba(18, 62, 150, 0.16);
            border: 1px solid rgba(46, 92, 203, 0.12);
            display: grid;
            gap: 14px;
        }

        .dashboard-card h3 {
            margin: 0;
            font-size: 1.35rem;
            color: #0b173a;
        }

        .dashboard-card p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

        .dashboard-card ul {
            display: grid;
            gap: 10px;
            color: rgba(20, 36, 81, 0.7);
            padding-left: 18px;
        }

        .insight-section {
            padding: 110px 0 90px;
        }

        .insight-grid {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .insight-card {
            border-radius: 26px;
            padding: 30px;
            box-shadow: 0 28px 60px rgba(15, 60, 140, 0.12);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.9));
            border: 1px solid rgba(46, 92, 203, 0.12);
            display: grid;
            gap: 14px;
        }

        .insight-card h3 {
            margin: 0;
            font-size: 1.25rem;
            color: #0b173a;
        }

        .insight-card p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

         .metrics-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin-top: 28px;
        }

        .metrics-card {
            padding: 20px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            text-align: center;
        }

        .metrics-card strong {
            display: block;
            font-size: 1.4rem;
            color: #ffffff;
        }

        .metrics-card span {
            display: block;
            font-size: 0.9rem;
            color: rgba(226, 238, 255, 0.82);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .highlight-grid {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .highlight-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.92));
            border-radius: 26px;
            padding: 30px;
            box-shadow: 0 22px 50px rgba(18, 62, 150, 0.16);
            border: 1px solid rgba(46, 92, 203, 0.12);
            display: grid;
            gap: 14px;
        }

        .highlight-card h3 {
            margin: 0;
            font-size: 1.35rem;
            color: #0b173a;
        }

        .highlight-card ul {
            display: grid;
            gap: 10px;
            color: rgba(20, 36, 81, 0.75);
            padding-left: 18px;
        }

        .workflow {
            background: #ffffff;
        }

        .workflow-steps {
            margin-top: 54px;
            display: grid;
            gap: 24px;
        }

        .workflow-step {
            display: grid;
            grid-template-columns: 72px minmax(0, 1fr);
            gap: 26px;
            align-items: start;
            padding: 26px 30px;
            border-radius: 26px;
            background: rgba(245, 248, 255, 0.92);
            border: 1px solid rgba(46, 92, 203, 0.12);
            box-shadow: 0 18px 42px rgba(15, 60, 140, 0.12);
        }

        .workflow-index {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(11, 51, 120, 0.9), rgba(0, 198, 255, 0.8));
        }

        .workflow-body h3 {
            margin: 0 0 6px;
            font-size: 1.25rem;
            color: #0b173a;
        }

        .workflow-body p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

         @media (max-width: 960px) {
            .workflow-step {
                grid-template-columns: 1fr;
            }
        }

         .pipeline-grid {
            margin-top: 52px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }

        .pipeline-card {
            position: relative;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 245, 255, 0.92));
            border-radius: 26px;
            padding: 32px;
            box-shadow: 0 24px 52px rgba(18, 62, 150, 0.16);
            border: 1px solid rgba(46, 92, 203, 0.12);
            display: grid;
            gap: 16px;
        }

        .pipeline-card h3 {
            margin: 0;
            font-size: 1.35rem;
            color: #0b173a;
        }

        .pipeline-card ul {
            display: grid;
            gap: 10px;
            color: rgba(20, 36, 81, 0.75);
            padding-left: 18px;
        }

        .flow-visual {
            position: relative;
            margin-top: 60px;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(9, 31, 74, 0.94), rgba(0, 102, 204, 0.88));
            padding: 36px;
            color: rgba(226, 238, 255, 0.94);
            box-shadow: 0 28px 60px rgba(4, 16, 46, 0.36);
        }

        .flow-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background-size: cover;
            opacity: 0.15;
            mix-blend-mode: screen;
        }

        .flow-visual h3 {
            margin: 0 0 22px;
            font-size: 1.4rem;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .data-visual {
            border-radius: 30px;
            padding: 20px;
        }

        .data-visual img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 24px;
        }

        @media (max-width: 960px) {
            .cta-band {
                padding: 140px 0 110px;
            }

            .flow-step {
                grid-template-columns: 1fr;
                text-align: left;
            }

            .workflow-step {
                grid-template-columns: 1fr;
            }
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin-top: 26px;
        }

        .hero-metric {
            padding: 20px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(4px);
            text-align: center;
        }

        .hero-metric strong {
            display: block;
            font-size: 1.4rem;
            color: #ffffff;
        }

        .hero-metric span {
            display: block;
            font-size: 0.9rem;
            color: rgba(226, 238, 255, 0.82);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .channel-grid {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .channel-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.92));
            border-radius: 26px;
            padding: 30px;
            box-shadow: 0 22px 50px rgba(18, 62, 150, 0.16);
            border: 1px solid rgba(46, 92, 203, 0.12);
            display: grid;
            gap: 14px;
        }

        .channel-card h3 {
            margin: 0;
            font-size: 1.35rem;
            color: #0b173a;
        }

        .channel-card p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

        .channel-card ul {
            display: grid;
            gap: 10px;
            color: rgba(20, 36, 81, 0.7);
            padding-left: 18px;
        }

        .journey {
            background: #ffffff;
        }

        .journey-map {
            margin-top: 54px;
            display: grid;
            gap: 22px;
        }

        .journey-step {
            position: relative;
            padding: 26px 30px;
            border-radius: 26px;
            background: rgba(245, 248, 255, 0.92);
            border: 1px solid rgba(46, 92, 203, 0.12);
            box-shadow: 0 18px 42px rgba(15, 60, 140, 0.1);
        }

        .journey-step h3 {
            margin: 0 0 10px;
            font-size: 1.25rem;
            color: #0b173a;
        }

        .journey-step p {
            margin: 0;
            color: rgba(20, 36, 81, 0.72);
        }

        .journey-step::before {
            content: attr(data-index);
            position: absolute;
            top: -16px;
            left: 24px;
            background: linear-gradient(135deg, rgba(11, 51, 120, 0.9), rgba(0, 198, 255, 0.8));
            color: #fff;
            border-radius: 14px;
            padding: 6px 12px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .automation-section {
            padding: 110px 0 100px;
        }

        .automation-grid {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .automation-card {
            border-radius: 26px;
            background: linear-gradient(135deg, rgba(11, 51, 120, 0.9), rgba(0, 198, 255, 0.85));
            color: #ffffff;
            padding: 30px;
            box-shadow: 0 28px 60px rgba(4, 16, 46, 0.32);
            display: grid;
            gap: 14px;
        }

        .automation-card h3 {
            margin: 0;
            font-size: 1.35rem;
        }

        .automation-card ul {
            display: grid;
            gap: 10px;
            color: rgba(226, 238, 255, 0.92);
            padding-left: 18px;
        }




        @media (max-width: 960px) {
            .automation-section,
            .section {
                padding: 90px 0 80px;
            }
        }


        .faq-section {
            padding: 110px 0 80px;
        }

        .faq-header {
            text-align: center;
            display: grid;
            gap: 14px;
        }

        .faq-header span {
            font-weight: 600;
            color: var(--brand-blue);
            font-size: 14px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .faq-header h2 {
            margin: 0;
            font-size: clamp(2rem, 3vw, 2.8rem);
            color: #0b173a;
        }

        .faq-header p {
            margin: 0 auto;
            max-width: 640px;
            color: rgba(20, 36, 81, 0.72);
        }

        .faq-list {
            margin-top: 48px;
            display: grid;
            gap: 18px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 22px;
            border: 1px solid rgba(46, 92, 203, 0.12);
            box-shadow: 0 16px 42px rgba(18, 62, 150, 0.12);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 24px 28px;
            cursor: pointer;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.15rem;
            color: #0b173a;
        }

        .faq-toggle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(11, 51, 120, 0.88), rgba(0, 198, 255, 0.8));
            color: #ffffff;
            display: grid;
            place-items: center;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .faq-item.is-open .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 28px 24px;
            display: none;
            color: rgba(20, 36, 81, 0.75);
            line-height: 1.75;
        }

        .faq-item.is-open .faq-answer {
            display: block;
        }

        .contact-grid {
            padding: 110px 0 70px;
        }

        .contact-grid .container {
            display: grid;
            gap: 32px;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 26px;
        }

        .contact-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 20px 46px rgba(15, 60, 140, 0.12);
            display: grid;
            gap: 14px;
        }

        .contact-card h3 {
            margin: 0;
            font-size: 1.4rem;
            color: #0b173a;
        }

        .contact-card p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

        .contact-card a {
            font-weight: 600;
            color: var(--brand-blue);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .office-section {
            padding: 0 0 110px;
        }

        .office-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .office-card {
            border-radius: 26px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 24px 52px rgba(15, 60, 140, 0.12);
            display: grid;
            grid-template-rows: 220px auto;
        }

        .office-card__map {
            background: linear-gradient(135deg, rgba(11, 51, 120, 0.85), rgba(0, 198, 255, 0.7));
            display: grid;
            place-items: center;
            color: rgba(255, 255, 255, 0.92);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .office-card__body {
            padding: 28px 28px 32px;
            display: grid;
            gap: 12px;
        }

        .office-card__body h4 {
            margin: 0;
            font-size: 1.3rem;
            color: #0b173a;
        }

        .office-card__body ul {
            display: grid;
            gap: 6px;
            color: rgba(20, 36, 81, 0.75);
            font-size: 0.95rem;
        }

        .support-section {
            padding: 0 0 110px;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 26px;
        }

        .support-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.9));
            border: 1px solid rgba(46, 92, 203, 0.12);
            border-radius: 26px;
            padding: 30px;
            display: grid;
            gap: 14px;
            box-shadow: 0 18px 42px rgba(18, 62, 150, 0.12);
        }

        .support-card h4 {
            margin: 0;
            color: #0b173a;
            font-size: 1.2rem;
        }

        .support-card p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

        .intro-section {
            padding: 110px 0 80px;
        }

        .intro-grid {
            display: grid;
            gap: 30px;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            margin-top: 40px;
        }

        .intro-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 20px 46px rgba(15, 60, 140, 0.12);
            display: grid;
            gap: 16px;
        }

        .intro-card h3 {
            margin: 0;
            font-size: 1.3rem;
            color: #0b173a;
        }

        .intro-card p {
            margin: 0;
            color: rgba(20, 36, 81, 0.75);
        }

       

        .testimonials {
            background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
            padding: 110px 0 120px;
        }

        .lead-switch {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
            margin-bottom: 36px;
        }

        .lead-switch-card {
            position: relative;
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 240px;
            padding: 18px 26px;
            border-radius: 22px;
            border: 1px solid rgba(46, 92, 203, 0.18);
            background: rgba(255, 255, 255, 0.9);
            color: #132a5c;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
        }

        .lead-switch-card .badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(46, 92, 203, 0.12);
            color: var(--brand-blue);
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 14px;
        }

        .lead-switch-card strong {
            font-size: 15px;
            display: block;
        }

        .lead-switch-card span {
            display: block;
            font-size: 13px;
            color: rgba(16, 40, 92, 0.65);
        }

        .lead-switch-card.is-active {
            border-color: transparent;
            background: linear-gradient(135deg, rgba(0, 198, 255, 0.18), rgba(0, 249, 161, 0.18));
            box-shadow: 0 18px 40px rgba(0, 198, 255, 0.22);
            transform: translateY(-4px);
        }

        .lead-switch-card.is-active .badge {
            background: linear-gradient(135deg, var(--brand-cyan), var(--brand-green));
            color: #06203f;
        }

        .lead-panels {
            position: relative;
        }

        .lead-panel {
            display: none;
            background: #ffffff;
            border-radius: 26px;
            border: 1px solid rgba(23, 48, 115, 0.06);
            box-shadow: 0 28px 64px rgba(9, 32, 84, 0.12);
            padding: 36px;
            gap: 26px;
        }

        .lead-panel.is-active {
            display: grid;
        }

        .panel-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--brand-blue);
            margin: 0 0 20px;
        }

        .form-block {
            background: rgba(248, 251, 255, 0.9);
            border: 1px solid rgba(23, 48, 115, 0.06);
            border-radius: 22px;
            padding: 22px 24px;
            display: grid;
            gap: 18px;
        }

        .form-block-title {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #163266;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-grid {
            display: grid;
            gap: 16px 22px;
        }

        .form-grid.grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .form-grid.grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .form-grid.grid-1 {
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-field.full {
            grid-column: 1 / -1;
        }

        .form-field label {
            font-size: 14px;
            font-weight: 600;
            color: #142451;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-field label span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 10px;
            background: rgba(46, 92, 203, 0.12);
            color: var(--brand-blue);
            font-size: 12px;
            font-weight: 700;
        }

        .form-input,
        .form-textarea,
        .form-select {
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(23, 48, 115, 0.12);
            background: #ffffff;
            font-size: 15px;
            color: #0f2357;
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            border-color: rgba(0, 198, 255, 0.45);
            box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.15);
            outline: none;
        }

        .form-textarea {
            min-height: 110px;
            resize: vertical;
        }

        .select-multi {
            min-height: 130px;
        }

        .form-hint {
            font-size: 12px;
            color: rgba(23, 48, 115, 0.55);
        }

        .file-drop {
            border: 1px dashed rgba(46, 92, 203, 0.35);
            border-radius: 16px;
            background: rgba(46, 92, 203, 0.06);
            padding: 18px;
            text-align: center;
            display: grid;
            gap: 10px;
        }

        .file-drop-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 14px;
            background: #ffffff;
            border: 1px solid rgba(46, 92, 203, 0.2);
            color: var(--brand-blue);
            font-weight: 600;
            cursor: pointer;
        }

        .file-drop-trigger input {
            display: none;
        }

        .form-actions {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .form-actions button {
            padding: 16px 34px;
            border-radius: 999px;
            border: none;
            font-weight: 700;
            font-size: 16px;
            color: #03102f;
            cursor: pointer;
            background: linear-gradient(120deg, var(--brand-cyan), var(--brand-green));
            box-shadow: 0 18px 38px rgba(0, 198, 255, 0.35);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .form-actions button:hover {
            transform: translateY(-2px);
            box-shadow: 0 24px 40px rgba(0, 198, 255, 0.35);
        }

        .form-actions .note {
            font-size: 13px;
            color: rgba(23, 48, 115, 0.7);
        }

        @media (max-width: 960px) {
            .lead-panel {
                padding: 30px;
            }

            .form-grid.grid-3,
            .form-grid.grid-2,
            .form-grid.grid-1 {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        @media (max-width: 640px) {
            .lead-panel {
                padding: 24px 18px;
            }

            .form-block {
                padding: 18px;
            }

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

            .form-actions {
                flex-direction: column;
                align-items: stretch;
            }
        }

        @media (max-width: 960px) {
            .cta-band {
                padding: 120px 0 100px;
            }

            .form-card {
                padding: 36px 28px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-actions {
                flex-direction: column;
                align-items: stretch;
            }
        }






