:root {
    --primary: #005dff;
    --dark: #101116;
    --muted: #68707c;
    --soft: #f3f6fb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

.fw-black {
    font-weight: 900;
}

/* NAVBAR */

.navbar {
    transition: .25s ease;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(16, 17, 22, .08);
}

.logo {
    height: 50px;
    max-width: 180px;
}

.nav-link {
    font-weight: 700;
    color: #1d2430;
}

.floating-navbar {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid white;
    width: calc(100% - 48px);
    max-width: 1320px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 14px 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    z-index: 9999;
}

.floating-navbar .logo {
    max-height: 44px;
    width: auto;
}

.floating-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 4px;
}

.floating-navbar .nav-link:hover,
.floating-navbar .nav-link:focus {
    color: #ffffff;
}

.floating-navbar .nav-cta {
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    border: 2px solid #ffffff;
}

.floating-navbar .nav-cta:hover {
    background: transparent;
    color: #ffffff;
}

.floating-navbar .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.floating-navbar .navbar-toggler-icon {
    filter: invert(1);
}

/* HERO VIDEO SECTION */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
    background: #050505;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-row {
    min-height: calc(100vh - 160px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .78rem;
}

.hero-title {
    font-size: clamp(2.75rem, 4vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.hero-description {
    color: rgba(255, 255, 255, .85);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

/* BUTTONS */

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 14px 28px rgba(0, 93, 255, .22);
}

.btn-outline-light {
    border-width: 2px;
}

/* HERO STATS */

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    color: #fff;
    font-size: 1.3rem;
}

.hero-stats span {
    color: rgba(255, 255, 255, .75);
}

/* HERO CAROUSEL */

.hero-carousel {
    position: relative;
}

.hero-carousel .carousel-inner {
    overflow: hidden;
    border-radius: 30px;
    background: #111;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
}

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

.hero-carousel-landscape {
    width: 100%;
}

.hero-carousel-landscape .carousel-inner {
    aspect-ratio: 1920 / 1020;
    overflow: hidden;
    border-radius: 30px;
}

.hero-carousel-landscape .carousel-item {
    height: 100%;
}

.hero-carousel-landscape .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* GENERAL SECTIONS */

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.1;
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bg-light {
    background: var(--soft) !important;
}

/* CARDS */

.service-card,
.process-card,
.contact-card {
    height: 100%;
    background: white;
    border: 1px solid #e7e9ee;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(16, 17, 22, .06);
    transition: .25s ease;
}

.service-card:hover,
.process-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--dark);
    color: white;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

.service-card h3,
.process-card h3 {
    font-size: 1.35rem;
    font-weight: 850;
}

.service-card p,
.process-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.process-card span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
}

/* IMAGE BAND VIDEO SECTION */

.image-band {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #050505;
}

.image-band-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.image-band-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.48)
    );
}

.image-band .container {
    position: relative;
    z-index: 2;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.solution-item span {
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.solution-item p {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* TRUST VIDEO SECTION */

.trust-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #050505;
}

.trust-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.trust-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, .82),
        rgba(0, 0, 0, .55)
    );
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

.trust-card {
    padding: 60px;
    border-radius: 32px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.lead-text {
    color: rgba(255, 255, 255, .85);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 900px;
}

.feature-box {
    height: 100%;
    padding: 30px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    transition: all .3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}

.feature-box h5 {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
    line-height: 1.7;
}

.mini-feature {
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    padding: 1rem;
    font-weight: 800;
    background: #fff;
}

/* CONTACT */

.contact-section {
    background: linear-gradient(180deg, #f8faff, #fff);
}

.form-control {
    border-radius: 16px;
    border-color: #dfe4ee;
}

.form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 93, 255, .12);
    border-color: var(--primary);
}

/* FOOTER */

.footer-logo {
    height: 28px;
}

/* TABLET */

@media (max-width: 991px) {
    .floating-navbar {
        top: 16px;
        width: calc(100% - 24px);
        border-radius: 28px;
        padding: 12px 18px;
    }

    .floating-navbar .logo {
        max-height: 38px;
    }

    .floating-navbar .navbar-collapse {
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .floating-navbar .navbar-nav {
        align-items: flex-start !important;
        gap: 6px;
    }

    .floating-navbar .nav-link {
        padding: 10px 0;
        width: 100%;
    }

    .floating-navbar .nav-cta {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .hero-section {
        text-align: center;
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-overlay,
    .image-band-overlay {
        background: rgba(0, 0, 0, 0.72);
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-carousel-landscape .carousel-inner {
        aspect-ratio: 16 / 9;
    }

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

    .image-band {
        padding: 90px 0;
    }

    .trust-section {
        padding: 90px 0;
    }

    .trust-card {
        padding: 40px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .hero-section {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-section .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 1rem;
    }

    .hero-carousel-landscape .carousel-inner {
        aspect-ratio: 16 / 10;
        border-radius: 22px;
    }

    .image-band {
        padding: 70px 0;
    }

    .solution-item {
        padding: 18px;
    }

    .solution-item span {
        min-width: 55px;
        height: 55px;
        font-size: 1rem;
    }

    .solution-item p {
        font-size: 0.95rem;
    }

    .trust-section {
        padding: 70px 0;
    }

    .trust-card {
        padding: 30px 25px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .service-card,
    .process-card,
    .contact-card {
        padding: 1.45rem;
    }

    .navbar .logo {
        height: 28px;
    }
}

@media (max-width: 575px) {
    .display-2 {
        font-size: 2.65rem;
    }

    .hero-stats div {
        width: 100%;
    }
}