    /* ===== VARIABLES ===== */
    :root {
        --bg: #f5f7fb;
        --blue: #0c4f8f;
        --blue2: #0a2d5b;
        --blue3: #2f64ad;
        --cyan: #11cfc4;
        --green: #12c98a;
        --text: #1f2937;
        --muted: #5f6b7a;
        --white: #fff;
        --shadow: 0 12px 28px rgba(0, 0, 0, .12);
        --shadow-sm: 0 4px 12px rgba(0, 0, 0, .08);
        --radius: 24px;
        --max: 1200px;
        --footer-bg: #3b5998;
    }

    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: 'Inter', Arial, Helvetica, sans-serif;
        color: var(--text);
        background: var(--bg);
        line-height: 1.6;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* ===== BANNER FACUL & IV2GAMES ===== */
    .banner-facul-section {
        padding: 30px 0 0 0;
        background: var(--bg);
    }

    .banner-facul-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .banner-facul-btns {
        display: flex;

    }

    .banner-btn {
        flex: 1;
        text-align: center;
        padding: 12px 20px;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: .5px;
        transition: opacity .2s, transform .2s;
        color: #fff;
    }

    .banner-btn:hover {
        opacity: .88;
        transform: translateY(-2px);
    }

    .btn-facul {
        background: #b5175e;
        flex: auto;
        width: 53%;
    }

    .btn-iv2games {
        background: #f5a623;
        color: #1a1a1a;
        flex: auto;
        width: 46.9%;
    }

    footer {
        border-radius: 40px 40px 0 0;
    }

    .success-content.fade-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .quote-icon {
        font-size: 130px !important;
        color: #ffffff !important;
        line-height: 1 !important;
        margin: 0 70% -64px 0 !important;
        
    }

    .quote-text {
        font-size: 20px;
        line-height: 1.6;
        font-weight: 600;
        color: #ffffff;
        max-width: 520px !important;
        margin: 0 auto 18px auto !important;
        padding: 0;
    }

    .quote-author {
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 14px;
    }

    .stars {
        display: flex;
        justify-content: center;
        gap: 6px;
    }

    .stars i {
        color: #f7c948;
        font-size: 24px;
    }

    /* ===== UTILITIES ===== */
    .container {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title h2 {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        font-size: clamp(2rem, 4vw, 2.8rem);
        color: var(--blue3);
        line-height: 1.15;
    }

    .section-title .line {
        width: 90px;
        height: 4px;
        margin: 14px auto 0;
        border-radius: 999px;
        background: var(--cyan);
    }

    .lead {
        max-width: 820px;
        margin: 0 auto 32px;
        text-align: center;
        color: var(--muted);
        font-size: 1.05rem;
    }

    /* ===== BUTTONS ===== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 0 30px;
        border-radius: 999px;
        font-weight: 700;
        font-size: .95rem;
        background: var(--white);
        color: var(--blue2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
        transition: all .3s ease;
        cursor: pointer;
        border: none;
        letter-spacing: .3px;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--white);
        color: var(--white);
    }

    .btn-outline:hover {
        background: var(--white);
        color: var(--blue2);
    }

    /* ===== ANIMATIONS ===== */
    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scale-in {
        opacity: 0;
        transform: scale(.85);
        transition: opacity .6s ease, transform .6s ease;
    }

    .scale-in.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* ===== HEADER / HERO ===== */
    header.hero {
        position: relative;
        overflow: hidden;
        color: var(--white);
        background: url('assets/images/capa.png') center/cover no-repeat;
        min-height: 600px;
        border-radius: 0 0 40px 40px;
    }

    header.hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10, 45, 91, .55) 0%, rgba(9, 168, 183, .35) 50%, rgba(10, 45, 91, .65) 100%);
        pointer-events: none;
    }

    header.hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .1), transparent 20%),
            radial-gradient(circle at 80% 80%, rgba(17, 207, 196, .1), transparent 20%);
        pointer-events: none;
    }

    .topbar {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 24px 0;
    }

    .logo-img {
        height: 42px;
        filter: brightness(0) invert(1);
    }

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 100;
        background: none;
        border: none;
        padding: 8px;
    }

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: all .3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: flex-end;
    }

    nav a {
        color: rgba(255, 255, 255, .92);
        font-size: .95rem;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 999px;
        transition: all .3s ease;
    }

    nav a:hover {
        background: rgba(255, 255, 255, .15);
        color: #fff;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
        padding: 80px 0 100px;
        min-height: 480px;
    }

    .hero h1 {
        margin: 0 0 32px;
        font-family: 'Poppins', sans-serif;
        font-size: clamp(2.6rem, 5.5vw, 4.4rem);
        line-height: 1.08;
        font-weight: 800;
        max-width: 18ch;
        text-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    }

    .hero h1 em {
        font-style: italic;
        color: #7dd3fc;
    }

    /* Topbar sticky on scroll */
    .topbar-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(10, 45, 91, .95);
        backdrop-filter: blur(12px);
        padding: 12px calc((100% - var(--max)) / 2 + 16px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
        animation: slideDown .3s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25d366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
        transition: all .3s ease;
        animation: pulse-wpp 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
    }

    .whatsapp-float i {
        color: #fff;
        font-size: 1.8rem;
    }

    @keyframes pulse-wpp {

        0%,
        100% {
            box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
        }

        50% {
            box-shadow: 0 6px 30px rgba(37, 211, 102, .7);
        }
    }

    /* ===== CHIPS ===== */
    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 16px;
        justify-content: center;
        max-width: 900px;
        margin: 0 auto 40px;
        padding: 0;
        list-style: none;
    }

    .chips li {
        background: #fff;
        padding: 10px 18px;
        border-radius: 999px;
        box-shadow: var(--shadow-sm);
        font-weight: 600;
        color: #213042;
        font-size: .95rem;
        transition: all .3s ease;
    }

    .chips li:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .chips li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--green);
        margin-right: 8px;
    }

    /* ===== PLATFORM LOGOS (DYNAMIC SECTION) ===== */
    .platforms-section {
        padding: 0 0 20px;
    }

    .logos-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: hidden;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .logo-card {
        position: relative;
        min-height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.8rem;
        font-weight: 800;
        padding: 24px;
        overflow: hidden;
        cursor: pointer;
        transition: all .4s cubic-bezier(.25, .8, .25, 1);
    }

    .logo-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, .15), transparent 60%);
        opacity: 0;
        transition: opacity .4s ease;
    }

    .logo-card:hover::before {
        opacity: 1;
    }

    .logo-card:hover {
        transform: scale(1.03);
        z-index: 2;
    }

    .logo-card .logo-text {
        position: relative;
        z-index: 2;
        transition: all .4s ease;
    }

    .logo-card:hover .logo-text {
        transform: scale(1.08);
    }

    .logo-card .logo-desc {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 16px;
        background: rgba(0, 0, 0, .4);
        backdrop-filter: blur(8px);
        font-size: .82rem;
        font-weight: 500;
        text-align: center;
        transform: translateY(100%);
        transition: transform .4s cubic-bezier(.25, .8, .25, 1);
        letter-spacing: .3px;
    }

    .logo-card:hover .logo-desc {
        transform: translateY(0);
    }

    /* Particle animation on cards */
    .logo-card .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .4);
        animation: float-particle 3s infinite ease-in-out;
    }

    @keyframes float-particle {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: .4;
        }

        50% {
            transform: translateY(-20px) scale(1.5);
            opacity: .8;
        }
    }

    .logo-card:nth-child(1) {
        background: linear-gradient(135deg, #0a2d5b, #0d3a6e);
    }

    .logo-card:nth-child(2) {
        background: linear-gradient(135deg, #0fd9a0, #2af5c5);
        color: #09212f;
    }

    .logo-card:nth-child(3) {
        background: linear-gradient(135deg, #0e8fb8, #14a9d8);
    }

    .logo-card:nth-child(4) {
        background: linear-gradient(135deg, #0b3ccc, #0f4cff);
    }

    /* ===== CASES DE SUCESSO ===== */
    .success-section {
        background: url('img/fundo-azul.png') center/cover no-repeat;
        position: relative;
        padding: 80px 0;
    }

    .success-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15, 111, 184, .85), rgba(10, 45, 91, .92));
    }

    .success-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 40px;
        align-items: center;
    }

    .success-content {
        color: #fff;
    }

    .success-content .section-title {
        text-align: left;
    }

    .success-content .section-title h2 {
        color: #fff;
    }

    .success-content .section-title .line {
        margin-left: 0;
    }

    .quote-icon {
        font-size: 3.5rem;
        color: rgba(255, 255, 255, .25);
        line-height: 1;
        margin-bottom: 8px;
        font-family: Georgia, serif;
    }

    .quote-text {
        font-size: 1.15rem;
        line-height: 1.6;
        max-width: 540px;
        margin-bottom: 16px;
        font-style: italic;
    }

    .quote-author {
        font-weight: 600;
        margin-bottom: 6px;
        opacity: .92;
        border-left: 3px solid var(--cyan);
        padding-left: 12px;
    }

    .stars {
        color: #fbbf24;
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    /* Testimonial carousel */
    .testimonial-carousel {
        width: 100%;
    }

    .testimonial-slides {
        position: relative;
        min-height: 220px;
    }

    .testimonial-slide {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .testimonial-slide.active {
        opacity: 1;
        pointer-events: auto;
        position: relative;
    }

    .testimonial-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }

    .testimonial-btn {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
        font-size: 0.85rem;
    }

    .testimonial-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .testimonial-dots {
        display: flex;
        gap: 8px;
    }

    .t-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        cursor: pointer;
        transition: background 0.2s;
    }

    .t-dot.active {
        background: var(--cyan);
    }

    .testimonial-card {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
        position: relative;
        aspect-ratio: 16/11;
        background: #0a2d5b;
        cursor: pointer;
    }

    .testimonial-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity .4s ease;
    }

    .testimonial-card iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255, 0, 0, .85);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
        transition: all .3s ease;
        cursor: pointer;
        z-index: 3;
    }

    .play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(255, 0, 0, .95);
    }

    .play-btn i {
        color: #fff;
        font-size: 1.4rem;
        margin-left: 4px;
    }

    /* ===== CLIENTES — REDESIGN ELEGANTE ===== */
    .clients-section {
        padding: 80px 0 60px;
        background: var(--white);
        text-align: center;
    }

    .clients-logos-row {
        margin-bottom: 48px;
    }

    .clients-visual {
        display: flex;
        justify-content: center;
    }

    .clients-main-img {
        position: absolute;
    top: -36rem;
    left: -11rem;
    max-width: 345px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, .1));
    }

    /* ===== CARROSSEL DE LOGOS CLIENTES ===== */
    .carousel-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .carousel-track {
        display: flex;
        align-items: center;
        gap: 48px;
        animation: carousel-scroll 20s linear infinite;
        width: max-content;
    }

    .carousel-track:hover {
        animation-play-state: paused;
    }

    .carousel-item {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 16px 28px;
        border-radius: 16px;
        background: #f5f7fb;
        border: 1px solid rgba(0, 0, 0, .06);
        transition: all .4s cubic-bezier(.25, .8, .25, 1);
    }

    .carousel-item:hover {
        background: var(--white);
        box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
        transform: translateY(-6px);
    }

    .carousel-track img {
        height: 48px;
        max-width: 140px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .55;
        transition: all .4s cubic-bezier(.25, .8, .25, 1);
        flex-shrink: 0;
    }

    .carousel-item:hover img {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.1);
    }

    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ===== STATS ===== */
    .stats-section {
        background: linear-gradient(90deg, #17c0c5, #0d63a9);
        color: #fff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 50%, rgba(255, 255, 255, .08), transparent 30%),
            radial-gradient(circle at 90% 50%, rgba(255, 255, 255, .06), transparent 30%);
    }

    .stats-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }

    .stat {
        padding: 16px 8px;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        opacity: .9;
    }

    .stat-number {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-size: 2.4rem;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: .95rem;
        opacity: .9;
    }

    /* ===== QUEM SOMOS ===== */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .about-photo {
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .about-video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        cursor: pointer;
        border-radius: 22px;
        overflow: hidden;
    }

    .about-video-wrapper img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 22px;
    }

    .yt-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: none;
        border: none;
        cursor: pointer;
        filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
        transition: transform .2s;
        z-index: 2;
    }

    .yt-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.12);
    }

    .about-photo img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .about-text {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* ===== PROJETOS SOCIAIS ===== */
    .social-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        margin-top: 50px;
    }

    .social-text h3 {
        font-family: 'Poppins', sans-serif;
        color: var(--blue3);
        font-size: 1.5rem;
        margin: 0 0 14px;
    }

    .social-text p {
        color: var(--muted);
        font-size: 1.02rem;
        line-height: 1.7;
    }

    .social-photo {
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .social-photo img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

    /* ===== SOCIAL CAROUSEL ===== */
    .social-carousel {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
        height: 320px;
    }

    .social-carousel-track {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .social-carousel-track img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transform: scale(1.04);
        transition: opacity 0.7s ease, transform 0.7s ease;
        pointer-events: none;
    }

    .social-carousel-track img.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .social-carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.85);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        color: var(--blue2);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        transition: background 0.2s, opacity 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        opacity: 0.7;
    }

    .social-carousel-btn:hover {
        background: #fff;
        opacity: 1;
    }

    .social-carousel-btn.prev { left: 10px; }
    .social-carousel-btn.next { right: 10px; }

    .social-carousel-dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 7px;
        z-index: 2;
    }

    .social-carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    .social-carousel-dots .dot.active {
        background: #fff;
        transform: scale(1.3);
    }

    /* ===== FOOTER ===== */
    footer {
        margin-top: 7rem;
        background: linear-gradient(135deg, #1a3a6e, #0a2d5b);
        color: #fff;
        padding: 56px 0 28px;
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 90%, rgba(17, 207, 196, .08), transparent 40%),
            radial-gradient(circle at 90% 10%, rgba(47, 100, 173, .1), transparent 40%);
        pointer-events: none;
    }

    .footer-grid {
        position: relative;
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 28px;
    }

    .footer-logo {
        height: 36px;
        filter: brightness(0) invert(1);
        margin-bottom: 14px;
    }

    .footer-brand p {
        margin: 0 0 16px;
        font-size: .92rem;
        opacity: .85;
        line-height: 1.6;
    }

    .social-icons {
        display: flex;
        gap: 14px;
        margin-bottom: 14px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .12);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s ease;
        font-size: 1rem;
    }

    .social-icons a:hover {
        background: rgba(255, 255, 255, .25);
        transform: translateY(-2px);
    }

    .we-love {
        font-weight: 700;
        font-size: .95rem;
        letter-spacing: 1px;
    }

    .we-love i {
        color: #ff4757;
    }

    footer h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.15rem;
        margin: 0 0 14px;
    }

    footer p {
        margin: 0;
        font-size: .92rem;
        opacity: .88;
        line-height: 1.7;
    }

    /* ===== CONTACT FORM — MODERN GLASS ===== */
    .contact-form {
        background: rgba(255, 255, 255, .06);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, .12);
        color: #fff;
        border-radius: 20px;
        padding: 28px 26px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
        position: relative;
        overflow: hidden;
    }

    .contact-form::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 70% 30%, rgba(17, 207, 196, .08), transparent 50%);
        pointer-events: none;
    }

    .contact-form h3 {
        margin: 0 0 20px;
        color: #fff;
        font-size: 1.3rem;
        position: relative;
    }

    .contact-form h3::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background: var(--cyan);
        border-radius: 999px;
        margin-top: 8px;
    }

    .field {
        margin-bottom: 18px;
        position: relative;
    }

    .field label {
        display: block;
        font-size: .82rem;
        margin-bottom: 6px;
        color: rgba(255, 255, 255, .6);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .8px;
    }

    .field input,
    .field textarea {
        width: 100%;
        border: none;
        border-bottom: 1.5px solid rgba(255, 255, 255, .2);
        outline: none;
        background: transparent;
        padding: 10px 4px;
        font: inherit;
        font-size: .95rem;
        color: #fff;
        transition: border-color .3s ease;
    }

    .field input::placeholder,
    .field textarea::placeholder {
        color: rgba(255, 255, 255, .3);
    }

    .field input:focus,
    .field textarea:focus {
        border-bottom-color: var(--cyan);
    }

    .send-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--cyan), #0e8fb8);
        color: #fff;
        border: none;
        border-radius: 999px;
        padding: 12px 32px;
        font-weight: 700;
        font-size: .9rem;
        letter-spacing: .5px;
        cursor: pointer;
        transition: all .3s ease;
        box-shadow: 0 4px 16px rgba(17, 207, 196, .3);
        margin-top: 6px;
        text-transform: uppercase;
    }

    .send-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(17, 207, 196, .45);
    }

    .send-btn i {
        font-size: .85rem;
        transition: transform .3s ease;
    }

    .send-btn:hover i {
        transform: translateX(4px);
    }

    .footer-bottom {
        position: relative;
        text-align: center;
        margin-top: 36px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        font-size: .85rem;
        opacity: .7;
    }

    /* ===== COUNTER ANIMATION ===== */
    .stat-number[data-target] {
        display: inline-block;
    }

    /* ===== VIDEO INLINE ===== */
    .video-container-inline {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 16/9;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow);
        background: #000;
    }

    .video-container-inline iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */

     @media (max-width: 1550px) {
        .clients-main-img {
            max-width: 360px;
            display: none;
        }
     }

    @media (max-width: 1024px) {

        .success-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .success-content {
            text-align: center;
        }

        .success-content .section-title {
            text-align: center;
        }

        .success-content .section-title .line {
            margin: 14px auto 0;
        }

        .quote-text {
            max-width: 100%;
        }

        .about-grid,
        .social-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }

        .clients-main-img {
            max-width: 360px;
            display: none;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(180deg, #0a2d5b, #0c4f8f);
            padding: 80px 24px 24px;
            transition: right .4s cubic-bezier(.25, .8, .25, 1);
            z-index: 90;
            box-shadow: -8px 0 30px rgba(0, 0, 0, .3);
        }

        nav.open {
            right: 0;
        }

        nav ul {
            flex-direction: column;
            gap: 4px;
        }

        nav a {
            display: block;
            padding: 14px 16px;
            font-size: 1.05rem;
            border-radius: 12px;
        }

        nav a:hover {
            background: rgba(255, 255, 255, .1);
        }

        .hero h1 {
            max-width: none;
            font-size: clamp(2rem, 7vw, 3rem);
        }

        .hero-content {
            padding: 60px 0 80px;
            min-height: auto;
        }

        header.hero {
            min-height: 420px;
        }

        .logos-grid {
            grid-template-columns: 1fr 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-grid > * {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-icons {
            justify-content: center;
        }

        .about-photo img,
        .social-photo img {
            height: auto;
            max-height: 280px;
        }

        .social-carousel {
            height: 240px;
        }

        .success-section {
            padding: 60px 0;
        }

        .clients-section {
            padding: 60px 0 40px;
        }

        .clients-main-img {
            max-width: 280px;
            display: none;
        }

        .carousel-track {
            gap: 32px;
        }

        .carousel-item {
            padding: 12px 20px;
        }

        .carousel-track img {
            height: 36px;
            max-width: 110px;
        }

        .section-title h2 {
            font-size: clamp(1.5rem, 5vw, 2rem);
        }

        .lead {
            font-size: .95rem;
        }

        .section {
            padding: 60px 0;
        }

        .quote-text {
            font-size: 1rem;
        }

        .btn {
            padding: 0 24px;
            font-size: .85rem;
            min-height: 44px;
        }
    }

    @media (max-width: 480px) {
        .section {
            padding: 48px 0;
        }

        .hero-content {
            padding: 40px 0 60px;
        }

        header.hero {
            min-height: 360px;
        }

        .hero h1 {
            font-size: clamp(1.6rem, 8vw, 2.2rem);
        }

        .logos-grid {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .logo-card {
            min-height: 120px;
        }

        .stat-number {
            font-size: 2rem;
        }

        .carousel-track img {
            height: 28px;
            max-width: 90px;
        }

        .carousel-item {
            padding: 10px 16px;
        }

        .carousel-track {
            gap: 24px;
        }

        .clients-main-img {
            max-width: 220px;
            display: none;
        }

        .clients-section {
            padding: 48px 0 32px;
        }

        .clients-logos-row {
            margin-bottom: 32px;
        }

        .play-btn {
            width: 48px;
            height: 48px;
        }

        .play-btn i {
            font-size: 1rem;
        }

        .footer-grid {
            gap: 32px;
        }

        .contact-form {
            padding: 20px 18px;
        }
    }

    /* ===== OVERLAY FOR MOBILE NAV ===== */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 80;
    }

    .nav-overlay.active {
        display: block;
    }

    /* ===== SCROLL PROGRESS ===== */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--cyan), var(--blue3));
        z-index: 1000;
        transition: width .1s linear;
    }
