﻿:root {
    --primary: #0f6fff;
    --primary-dark: #174ea6;
    --cyan: #00c2ff;
    --navy: #071a36;
    --navy-soft: #10284f;
    --white: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fbff;
    --shadow-soft: 0 15px 40px rgba(2, 8, 23, .08);
    --shadow-lg: 0 30px 80px rgba(2, 8, 23, .12);
    --shadow-blue: 0 26px 70px rgba(15, 111, 255, .25);
}

/* HERO */

.fx-home-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 120px;
    background: radial-gradient(circle at top right, rgba(0, 194, 255, .18), transparent 28%), radial-gradient(circle at 10% 80%, rgba(15, 111, 255, .10), transparent 30%), linear-gradient(135deg, #ffffff 0%, #eef6ff 50%, #f8fbff 100%);
}

.fx-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 111, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 111, 255, .045) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.fx-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.fx-home-hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.fx-hero-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--muted);
    max-width: 700px;
}

.fx-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

/* TRUST CARDS */

.fx-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

    .fx-trust-row div {
        position: relative;
        overflow: hidden;
        background: white;
        border: 1px solid var(--border);
        padding: 18px;
        border-radius: 20px;
        box-shadow: var(--shadow-soft);
        transition: transform .18s ease, box-shadow .3s ease, border-color .3s ease;
        transform-style: preserve-3d;
        will-change: transform;
    }

        .fx-trust-row div::before {
            content: "";
            position: absolute;
            width: 130px;
            height: 130px;
            right: -55px;
            top: -55px;
            background: radial-gradient(circle, rgba(0, 194, 255, .35), transparent 70%);
            opacity: 0;
            transition: .3s ease;
        }

        .fx-trust-row div::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 0;
            height: 4px;
            border-radius: 999px 999px 0 0;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            opacity: 0;
            transform: scaleX(.25);
            transition: .3s ease;
        }

        .fx-trust-row div:hover {
            border-color: rgba(15, 111, 255, .35);
            box-shadow: var(--shadow-blue);
        }

            .fx-trust-row div:hover::before,
            .fx-trust-row div:hover::after {
                opacity: 1;
                transform: scaleX(1);
            }

    .fx-trust-row strong,
    .fx-trust-row span {
        position: relative;
        z-index: 2;
        transform: translateZ(18px);
    }

    .fx-trust-row strong {
        display: block;
        color: var(--navy);
    }

    .fx-trust-row span {
        display: block;
        color: var(--muted);
        font-size: .9rem;
        margin-top: 4px;
    }

/* LOGO SHOWCASE */

.fx-logo-showcase {
    position: relative;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 111, 255, .12);
    border-radius: 35px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .3s ease, border-color .3s ease;
    will-change: transform;
    overflow: visible;
}

    .fx-logo-showcase::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 35px;
        background: linear-gradient(135deg, rgba(15, 111, 255, .38), rgba(0, 194, 255, .08), transparent);
        opacity: 0;
        transition: .3s ease;
        z-index: -1;
    }

    .fx-logo-showcase::after {
        content: "";
        position: absolute;
        left: 45px;
        right: 45px;
        bottom: -12px;
        height: 8px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), transparent);
        opacity: 0;
        filter: blur(8px);
        transition: .3s ease;
    }

    .fx-logo-showcase:hover {
        border-color: rgba(15, 111, 255, .28);
        box-shadow: 0 38px 100px rgba(15, 111, 255, .24);
    }

        .fx-logo-showcase:hover::before,
        .fx-logo-showcase:hover::after {
            opacity: 1;
        }

    .fx-logo-showcase img {
        position: relative;
        width: 100%;
        border-radius: 20px;
        transform: translateZ(34px);
        box-shadow: 0 20px 60px rgba(2, 8, 23, .16);
    }

.fx-logo-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 194, 255, .35), transparent 70%);
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.fx-floating-badge {
    position: absolute;
    z-index: 5;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 111, 255, .12);
    color: var(--navy);
    transform: translateZ(60px);
}

    .fx-floating-badge i {
        color: var(--primary);
        margin-right: 8px;
    }

.fx-badge-one {
    top: 8%;
    left: -5%;
}

.fx-badge-two {
    top: 48%;
    right: -5%;
}

.fx-badge-three {
    bottom: 10%;
    left: 8%;
}

/* CAROUSEL */

.fx-carousel-section {
    padding: 100px 0;
    background: white;
}

.fx-executive-carousel {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fx-slide-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background: white;
}

.fx-slide-image {
    height: 100%;
    overflow: hidden;
}

    .fx-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.1s ease;
    }

.carousel-item.active .fx-slide-image img {
    transform: scale(1.04);
}

.fx-slide-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .fx-slide-content span {
        color: var(--primary);
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .fx-slide-content h2 {
        margin: 20px 0;
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 900;
        color: var(--navy);
    }

    .fx-slide-content p {
        color: var(--muted);
        line-height: 1.9;
        font-size: 1.05rem;
    }

.fx-slide-link {
    margin-top: 25px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

    .fx-slide-link:hover {
        color: var(--cyan);
    }

/* SECTIONS */

.fx-section {
    padding: 110px 0;
}

.fx-white {
    background: white;
}

.fx-section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

    .fx-section-title span {
        color: var(--primary);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .fx-section-title h2 {
        margin-top: 15px;
        font-size: clamp(2.2rem, 4vw, 3rem);
        color: var(--navy);
        font-weight: 900;
        letter-spacing: -1.5px;
    }

    .fx-section-title p {
        color: var(--muted);
    }

/* SERVICE CARDS */

.fx-service-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    min-height: 310px;
    box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .18s ease, box-shadow .3s ease, border-color .3s ease;
}

    .fx-service-card::before {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        right: -90px;
        top: -90px;
        background: radial-gradient(circle, rgba(0, 194, 255, .32), transparent 68%);
        opacity: 0;
        transition: .3s ease;
    }

    .fx-service-card::after {
        content: "";
        position: absolute;
        left: 35px;
        right: 35px;
        bottom: 0;
        height: 5px;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(90deg, var(--primary), var(--cyan));
        opacity: 0;
        transform: scaleX(.25);
        transition: .3s ease;
    }

    .fx-service-card:hover {
        border-color: rgba(15, 111, 255, .35);
        box-shadow: var(--shadow-blue);
    }

        .fx-service-card:hover::before,
        .fx-service-card:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

    .fx-service-card i,
    .fx-service-card h3,
    .fx-service-card p,
    .fx-service-card small {
        position: relative;
        z-index: 2;
        transform: translateZ(24px);
    }

    .fx-service-card i {
        font-size: 2rem;
        color: var(--primary);
    }

    .fx-service-card h3 {
        margin-top: 20px;
        color: var(--navy);
        font-weight: 900;
    }

    .fx-service-card p {
        color: var(--muted);
        line-height: 1.8;
    }

    .fx-service-card small {
        display: block;
        color: var(--primary);
        font-weight: 900;
        margin-top: 18px;
    }

/* DARK SECTION */

.fx-dark-panel {
    background: radial-gradient(circle at top right, rgba(0, 194, 255, .18), transparent 32%), linear-gradient(135deg, #071a36, #10284f);
    color: white;
}

    .fx-dark-panel h2 {
        font-size: clamp(2.1rem, 4vw, 3rem);
        font-weight: 900;
    }

    .fx-dark-panel p {
        color: #d5e3f7;
        line-height: 1.8;
    }

.light {
    color: var(--cyan);
}

.fx-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

    .fx-process-grid div {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 25px;
        padding: 30px;
        transform-style: preserve-3d;
        transition: transform .18s ease, background .3s ease, border-color .3s ease;
    }

        .fx-process-grid div::after {
            content: "";
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 0;
            height: 4px;
            border-radius: 999px 999px 0 0;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            opacity: 0;
            transform: scaleX(.25);
            transition: .3s ease;
        }

        .fx-process-grid div:hover {
            background: rgba(255, 255, 255, .10);
            border-color: rgba(0, 194, 255, .35);
        }

            .fx-process-grid div:hover::after {
                opacity: 1;
                transform: scaleX(1);
            }

    .fx-process-grid b {
        display: inline-flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary), var(--cyan));
        margin-bottom: 15px;
        transform: translateZ(24px);
    }

    .fx-process-grid h4,
    .fx-process-grid p {
        position: relative;
        z-index: 2;
        transform: translateZ(20px);
    }

    .fx-process-grid h4 {
        font-weight: 900;
    }

    .fx-process-grid p {
        color: #dce6f7;
    }

/* CTA */

.fx-executive-cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(0, 194, 255, .18), transparent 30%), linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid var(--border);
    border-radius: 35px;
    padding: 50px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .3s ease, border-color .3s ease;
}

    .fx-executive-cta::after {
        content: "";
        position: absolute;
        left: 50px;
        right: 50px;
        bottom: 0;
        height: 5px;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(90deg, var(--primary), var(--cyan));
        opacity: 0;
        transform: scaleX(.25);
        transition: .3s ease;
    }

    .fx-executive-cta:hover {
        border-color: rgba(15, 111, 255, .35);
        box-shadow: var(--shadow-blue);
    }

        .fx-executive-cta:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

    .fx-executive-cta img,
    .fx-executive-cta div,
    .fx-executive-cta a {
        position: relative;
        z-index: 2;
        transform: translateZ(24px);
    }

    .fx-executive-cta img {
        width: 100%;
    }

    .fx-executive-cta span {
        color: var(--primary);
        font-weight: 900;
    }

    .fx-executive-cta h2 {
        color: var(--navy);
        font-size: 2.5rem;
        font-weight: 900;
    }

    .fx-executive-cta p {
        color: var(--muted);
    }

/* BUTTONS */

.btn-primary {
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    box-shadow: 0 15px 35px rgba(15, 111, 255, .25);
}

    .btn-primary:hover {
        transform: translateY(-3px);
    }

.btn-outline-dark {
    border: 1px solid #cbd5e1;
}

/* MOBILE */

@media (max-width: 991px) {
    .fx-home-hero {
        padding: 135px 0 80px;
    }

    .fx-slide-card {
        grid-template-columns: 1fr;
    }

    .fx-slide-image {
        min-height: 330px;
    }

    .fx-slide-content {
        padding: 40px;
    }

        .fx-slide-content h2 {
            font-size: 2rem;
        }

    .fx-process-grid {
        grid-template-columns: 1fr;
    }

    .fx-trust-row {
        grid-template-columns: 1fr;
    }

    .fx-executive-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fx-floating-badge {
        display: none;
    }
}

@media (max-width: 576px) {
    .fx-logo-showcase {
        padding: 18px;
        border-radius: 26px;
    }

    .fx-service-card {
        min-height: auto;
    }

    .fx-section {
        padding: 75px 0;
    }
}
