:root {
    --brand-kro: #00C6FB;
    --brand-aqua: #0090D4;
    --bg-body: #ffffff;
    --bg-light: #f8f6f6; 
    --bg-dark-footer: black; 
    --text-main: #2c1a1a; 
    --text-muted: #5e5e5e;
    --radius-soft: 12px;
    --radius-pill: 50px;
    --shadow-ms: 0 6px 20px rgba(0, 144, 212, 0.15);
}

        body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body); 
    color: var(--text-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#loader-screen {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #ffffff;
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    overflow: hidden;
}

.logo-stack {
    position: absolute; top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: auto;
    z-index: 10; pointer-events: none;
}
.logo-base { filter: grayscale(100%) opacity(0.1); position: absolute; width: 100%; top: 0px;; left:0; }
.logo-fill {
    position: absolute; width: 100%; top:0; left:0;
    clip-path: circle(0% at 50% 50%);
    filter: drop-shadow(0 0 15px rgba(0, 144, 212, 0.4));
}

.drop {
    position: absolute; top: -100px; left: 50%;
    width: 14px; height: 14px;
    border-radius: 0 50% 50% 50%;
    transform: translate(-50%, 0) rotate(45deg);
    z-index: 20;
    background: radial-gradient(circle at 30% 30%, #e0f7fa 0%, var(--brand-aqua) 100%);
    box-shadow: 0 0 15px var(--brand-aqua); 
}

.splash-rebound {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    width: 6px; height: 0px; 
    background: linear-gradient(to top, var(--brand-aqua), #ffffff);
    border-radius: 10px 10px 0 0;
    z-index: 19; opacity: 0;
    box-shadow: 0 0 25px var(--brand-cyan);
}

.splash-base {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px; height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 144, 212, 0.6) 0%, transparent 70%);
    z-index: 18; opacity: 0;
}

.splash-top {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    width: 12px; height: 12px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--brand-aqua) 100%);
    z-index: 20; opacity: 0;
    box-shadow: 0 0 10px var(--brand-aqua);
}

#ripples-container {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 0; height: 0;
    z-index: 15; pointer-events: none;
}

.ripple {
    position: absolute; top: 0; left: 0;
    transform: translate(-50%, -50%) scale(0);
    width: 100vmax; height: 100vmax;
    border: 3px solid var(--brand-aqua); 
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 198, 251, 0.4);
    opacity: 0; will-change: transform, opacity;
}

        h1, h2, h3, h4 { margin: 0; font-weight: 700; color: black; }
        p { color: var(--text-muted); line-height: 1.6; font-weight: 400; margin-bottom: 20px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; position: relative; }

        header {
            padding: 30px 0; position: absolute; width: 100%; z-index: 100;
            background: linear-gradient(to bottom, rgba(255,255,255,0.95), transparent); 
        }
        .nav-flex { display: flex; justify-content: space-between; align-items: center; }
        .logo img { display: block; }
        nav { display: flex; gap: 50px; }
        nav a { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-main); font-weight: 700; position: relative; }
        nav a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: -5px; left: 0; background: var(--brand-kro); transition: 0.3s; }
        nav a:hover::after { width: 100%; }
        .header-btn {
            padding: 12px 30px; color: white; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
            background: var(--brand-aqua); border: 1px solid var(--brand-aqua); 
        }
        .header-btn:hover { transform: translateY(-3px); background: var(--brand-kro); border-color: var(--brand-kro); box-shadow: 0 10px 20px rgba(156, 52, 41, 0.3); }

        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-bottom: 50px; }
        .hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('resources/header2.png'); background-size: cover; background-position: center; z-index: 0; padding-top: 5%; }
        .hero-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background: linear-gradient(90deg, var(--bg-body) 0%, var(--bg-body) 30%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.0) 100%); }
        .hero-content-wrapper { position: relative; z-index: 2; margin-top: 4%; width: 100%; padding-left: 3%; }
        .hero-text-box { max-width: 650px; }
        .hero-subtitle { color: var(--brand-aqua); letter-spacing: 3px; text-transform: uppercase; font-weight: 800; font-size: 0.9rem; margin-bottom: 20px; display: block; }
        .hero h1 { font-size: 4rem; line-height: 1; margin-bottom: 30px; text-transform: uppercase; }
        .hero h1 .highlight { color: transparent; -webkit-text-stroke: 2px var(--brand-kro); text-stroke: 2px var(--brand-kro); font-weight: 900; letter-spacing: 1px; }
        .hero p { font-size: 1.25rem; margin-bottom: 50px; max-width: 90%; }
        .hero-btns { display: flex; gap: 25px; }
        .btn { padding: 16px 40px; border-radius: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; display: inline-block; }
        .btn-fill { background: var(--brand-aqua); color: white; border: none; box-shadow: 0 10px 20px rgba(156, 52, 41, 0.2); }
        .btn-fill:hover { transform: translateY(-3px); background: var(--brand-kro); }

        .ms-hub-section { text-align: center; padding: 80px 0 100px; background: white; position: relative; overflow: hidden; }
        .ms-hub-title { font-size: 3.5rem; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.1; }
        .ms-hub-subtitle { max-width: 700px; margin: 0 auto 60px; font-size: 1.1rem; }
        .ecosystem-graphic { position: relative; max-width: 1000px; margin: 40px auto 0; height: 350px; display: flex; align-items: center; justify-content: center; }
        .orbit-ring { position: absolute; width: 90%; height: 280px; border: 1px solid #b1afaf; border-radius: 50%; transform: rotate(-3deg); z-index: 1; }
        .core-badge { width: 160px; height: 140px; background: #0090D4; border-radius: 28px; display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 60px -10px rgba(41, 108, 156, 0.3), 0 10px 20px -5px rgba(43, 41, 156, 0.15); position: relative; z-index: 2; }
        .core-badge img { width: 130px; height: auto; }
        
        .satellite { 
        position: absolute; 
        background-color: var(--brand-aqua);
        padding: 18px 35px;
        font-size: 1.25rem;
        border-radius: 50px;
        gap: 18px;
        box-shadow: 0 15px 30px rgba(0, 144, 212, 0.3);
        display: flex; 
        align-items: center; 
        color: white; 
        z-index: 2; 
        transition: transform 0.3s; 
        white-space: nowrap;
}
        .satellite:hover { 
        transform: scale(1.1) translateY(-5px);
        background-color: var(--brand-kro);
        cursor: default; 
}
        .sat-1 { top: 23px; left: 18%; }
        .sat-3 { top: 15px; right: 18%; }
        .sat-2 { bottom: 40px; right: 15%; }
        .sat-4 { bottom: 30px; left: 12%; }
        .sat-icon {
            width: auto; 
            height: auto; 
            background: transparent;
            border-radius: 0; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            margin-right: 5px; 
}

.sat-icon svg { 
    width: 38px; 
    height: 38px; 
    stroke: white; 
    stroke-width: 1.8;
    fill: none; 
    stroke-linecap: square; 
    stroke-linejoin: miter; 
}

.feature-icon-badge {
    width: 80px;
    height: 80px;
    background-color: #fff5f5; 
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(156, 52, 41, 0.1);
    border: 1px solid rgba(156, 52, 41, 0.1);
    transition: all 0.3s ease;
}

.feature-icon-badge svg {
    width: 40px;
    height: 40px;
    stroke: var(--brand-aqua);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.3s;
}

.split-feature:hover .feature-icon-badge {
    background-color: var(--brand-aqua);
    transform: scale(1.1); 
    box-shadow: 0 15px 30px rgba(156, 52, 41, 0.3);
}

.split-feature:hover .feature-icon-badge svg {
    stroke: white;
}

.split-feature {
    display: flex;
    width: 100%;
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden;
    position: relative;
    align-items: center;
}

.split-feature.bg-alt {
    background-color: var(--bg-body);
}

.split-text-col {
    width: 40%;
    padding: 0 5%; 
    padding-right: 60px;
    z-index: 2;
    box-sizing: border-box;
}

.split-text-col h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: black;
}

.split-text-col p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.check-list li { 
    margin-bottom: 12px; 
    display: flex; gap: 12px; align-items: center; 
    font-weight: 500; color: var(--text-muted);
}
.check-list strong { color: var(--brand-aqua); font-weight: 900; font-size: 1.1rem; }

.split-image-col {
    width: 55%;
    height: 500px;
    position: relative;
}

.image-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.05);
    border-radius: 40px;
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.split-feature:hover .image-mask img {
    transform: scale(1.03);
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.split-feature.reverse .split-text-col {
    padding-right: 5%;
    padding-left: 60px;
}

.split-feature.reverse .image-mask {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
}

        .modules-carousel-section { padding: 100px 0; background: var(--bg-body); overflow: hidden; }
        .carousel-header { margin-bottom: 50px; text-align: left; padding: 0 10px; }
        .carousel-wrapper { position: relative; display: flex; align-items: center; }
        .carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; padding: 20px 10px 60px 10px; scrollbar-width: none; -ms-overflow-style: none; }
        .carousel-track::-webkit-scrollbar { display: none; }
        .service-card { min-width: 280px; height: 420px; background-color: #f0f0f0; border-radius: 16px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; flex-shrink: 0; }
        .card-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s ease; }
        .card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(156, 52, 41, 0.1) 0%, rgb(0, 198, 251, 0.5) 50%, rgb(0, 146, 214, 0.8) 100%); z-index: 1; }
        .card-content { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; padding: 30px; box-sizing: border-box; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; }
        .card-icon-large { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; opacity: 0.8; transition: 0.3s; }
        .card-icon-large svg { width: 100%; height: 100%; stroke: white; stroke-width: 1.5; fill: none; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2)); }
        .service-card h3 { color: white; font-size: 1.5rem; line-height: 1.2; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
        .card-cta { color: white; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; opacity: 0.9; }
        .card-cta span { transition: 0.3s; }
        .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(156, 52, 41, 0.4); }
        .service-card:hover .card-bg-img { transform: scale(1.1); }
        .service-card:hover .card-icon-large { top: 35%; opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
        .service-card:hover .card-cta span { transform: translateX(5px); }
        
        .nav-arrow { width: 50px; height: 50px; border-radius: 50%; background: white; border: 1px solid #eee; color: var(--brand-aqua); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; z-index: 10; position: absolute; top: 50%; transform: translateY(-50%); }
        .nav-arrow:hover { background: var(--brand-aqua); color: white; box-shadow: 0 10px 20px rgba(156, 52, 41, 0.3); }
        .nav-prev { left: -25px; }
        .nav-next { right: -25px; }

        .carousel-indicators { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 30px; }
        .dot { width: 10px; height: 10px; border-radius: 50%; background-color: #d1d5db; border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 0; }
        .dot.active { width: 30px; border-radius: 5px; background-color: var(--brand-aqua); }
        .dot:hover:not(.active) { background-color: var(--brand-kro); }

        .app-section { padding: 80px 0; background: var(--bg-light); text-align: center; border-top: 1px solid #eee; }
        .qr-box { width: 160px; height: 160px; margin: 0 auto 30px; background: white; padding: 15px; border: 2px solid var(--bg-dark-footer); border-radius: 12px; box-shadow: var(--shadow-ms); transition: 0.3s;}
        .qr-box:hover { transform: scale(1.05); }
        .qr-box img { width: 100%; height: 100%; display: block; }

footer {
    padding: 80px 0 40px;
    background-color: var(--bg-dark-footer); 
    color: #999;
    text-align: center;
}

.footer-grid {
    display: flex; 
    justify-content: center; 
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.footer-col {
    min-width: 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--brand-kro); 
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    margin-bottom: 15px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 10, 10, 0.6); backdrop-filter: blur(5px); z-index: 2000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
        .modal-overlay.active { display: flex; opacity: 1; }
        .modal-box { background: white; width: 90%; max-width: 500px; padding: 40px; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); border-top: 6px solid var(--brand-kro); position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
        .modal-overlay.active .modal-box { transform: translateY(0); }
        .modal-header { margin-bottom: 25px; text-align: center; }
        .modal-title { font-size: 1.8rem; color: var(--text-main); margin-bottom: 10px; }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: var(--text-muted); cursor: pointer; transition: 0.2s; line-height: 1; }
        .close-modal:hover { color: var(--brand-aqua); }
        .form-group { margin-bottom: 20px; text-align: left; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; color: var(--text-main); }
        .form-input { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 1rem; background: #fcf9f9; box-sizing: border-box; transition: 0.3s; }
        .form-input:focus { outline: none; border-color: var(--brand-aqua); background: white; box-shadow: 0 0 0 3px rgba(156, 52, 41, 0.1); }
        textarea.form-input { resize: none; height: 120px; }
        .btn-submit { width: 100%; padding: 16px; background: var(--brand-aqua); color: white; border: none; border-radius: 8px; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
        .btn-submit:hover { background: var(--brand-kro); box-shadow: 0 10px 20px rgba(156, 52, 41, 0.2); }

        #scrollTopBtn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: white; border: 2px solid var(--brand-aqua); color: var(--brand-aqua); border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; z-index: 1000; transition: all 0.3s ease; opacity: 0; visibility: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        #scrollTopBtn svg { width: 24px; height: 24px; }
        #scrollTopBtn.show { opacity: 1; visibility: visible; transform: translateY(0); }
        #scrollTopBtn:hover { background-color: var(--brand-aqua); color: white; transform: translateY(-5px); box-shadow: 0 8px 15px rgba(156, 52, 41, 0.3); }

        #qr { scroll-margin-top: 150px; }
        #modulos { scroll-margin-top: 20px; }
        #caracteristicas { scroll-margin-top: 70px; }
        #sa { scroll-margin-top: 40px; }

@media screen and (max-width: 479px) {
    .container { padding: 0 20px; width: 100%; box-sizing: border-box; }

    header {
        position: absolute !important;
        top: 0; left: 0; width: 100%;
        background: transparent !important;
        padding: 20px 0;
        z-index: 100;
        height: auto;
    }
    
    .nav-flex { 
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center;
        gap: 30px; 
        width: 100%;
    }
    
    nav { display: none; }
    
    .logo { width: 100%; display: flex; justify-content: center; }
    .logo img { width: 180px; display: block; }
    
    .header-btn { 
        width: auto; 
        padding: 8px 25px; 
        font-size: 0.8rem;
        margin-top: 5px; 
    }

    .hero { 
        min-height: auto; 
        padding-top: 180px; 
        padding-bottom: 60px;
        display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; 
    }
    .hero-content-wrapper { padding: 0; margin: 0 auto; width: 100%; display: flex; flex-direction: column; align-items: center; }
    .hero-text-box { width: 100%; max-width: 100%; margin: 0 auto; }
    .hero h1 { font-size: 2.6rem !important; line-height: 1.1; margin-bottom: 15px; width: 100%; text-align: center; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 2px; text-align: center; display: block; margin-bottom: 10px; }
    .hero p { font-size: 1rem; margin: 0 auto 30px auto; padding: 0 10px; max-width: 320px; text-align: center; }
    .hero-btns { display: flex; justify-content: center; width: 100%; }
    .btn { width: 100%; max-width: 280px; padding: 15px; }
    .hero-bg-image { opacity: 0.15 !important; background-position: center top; }

    .ecosystem-graphic { height: auto; flex-direction: column; margin-top: 30px; }
    .orbit-ring { display: none; }
    .satellite { top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 100%; max-width: 280px; margin-bottom: 15px; }
    .split-feature, .split-feature.reverse { flex-direction: column-reverse; padding: 40px 0; }
    .split-text-col { width: 100%; padding: 40px 20px 0; text-align: center; }
    .split-text-col h2 { font-size: 1.8rem; }
    .mini-icon, .feature-icon-badge { margin: 0 auto 20px; }
    .split-image-col { width: 100%; height: 250px; padding: 0 15px; }
    .image-mask, .split-feature.reverse .image-mask { border-radius: 16px; }
    .carousel-track { padding-right: 40px; }
    .nav-arrow { display: none; }
    .footer-grid { gap: 40px; text-align: center; }
    .app-row { gap: 20px; }
    .app-item { width: 50px; height: 50px; }

    .ecosystem-graphic {
        height: auto !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .orbit-ring { display: none; }

    .core-badge {
        position: relative;
        margin-bottom: 30px;
        z-index: 5;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .satellite {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 280px; 
        margin-bottom: 15px;
        justify-content: center;
        transform: none !important; 
    }

    .split-feature, .split-feature.reverse { 
        flex-direction: column-reverse; 
        padding: 40px 0; 
        height: auto;
    }

    .split-text-col, .split-feature.reverse .split-text-col { 
        width: 100%; 
        padding: 40px 20px 0 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center;
    }

    .split-text-col p {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .feature-icon-badge, .mini-icon { 
        margin: 0 auto 20px auto; 
    }

    .check-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;       
        margin: 20px 0 30px;
        width: 100%;
    }
    
    .check-list li {
        display: flex;
        align-items: flex-start; 
        text-align: left;        
        gap: 15px;              
        width: fit-content;
        max-width: 280px;
        margin-bottom: 15px;
    }

    .check-list strong {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .split-image-col { 
        width: 100%; 
        height: 250px; 
        padding: 0 20px; 
        box-sizing: border-box;
    }
    
    .image-mask, .split-feature.reverse .image-mask { 
        border-radius: 24px; 
    }

    .ecosystem-graphic { height: auto; flex-direction: column; margin-top: 30px; }
    .orbit-ring { display: none; }
    .satellite { top: auto !important; left: auto !important; width: 100%; max-width: 280px; margin-bottom: 15px; }
    .carousel-header {
        text-align: center !important;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .carousel-header h2 {
        font-size: 2rem !important; 
        line-height: 1.2;
    }
    
    .carousel-header p {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-grid { gap: 40px; text-align: center; }
    .footer-col {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-bottom img {
        width: 180px !important; 
        height: auto;
        margin-top: 20px;
    }

    .modal-box {
        width: 95% !important;
        padding: 20px 15px !important; 
        max-height: 85vh !important; 
        overflow-y: auto;
        border-radius: 12px;
    }

    .close-modal {
        top: 10px; 
        right: 15px; 
        font-size: 1.5rem;
    }

    .modal-header {
        margin-bottom: 15px;
    }
    .modal-header h3 {
        font-size: 1.4rem !important;
        margin-bottom: 5px;
    }
    .modal-header p {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .form-group {
        margin-bottom: 10px; 
    }
    
    .form-label {
        margin-bottom: 3px;
        font-size: 0.85rem;
    }

    .form-input {
        padding: 10px;
        font-size: 16px; 
    }
    
    textarea.form-input {
        height: 60px !important; 
        min-height: 60px !important;
    }

    .btn-submit {
        padding: 12px;
        margin-top: 10px;
        font-size: 0.9rem;
    }
}


@media (min-width: 480px ) and (max-width: 768px) {
    .container { padding: 0 30px; width: 100%; box-sizing: border-box; }

    header {
        position: absolute !important;
        background: transparent !important;
        padding: 25px 0;
        top: 0; left: 0; width: 100%;
        z-index: 100;
    }
    .nav-flex { 
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 30px;
        width: 100%;
    }
    .logo { margin: 0 auto; }
    .logo img { width: 140px; display: block; }
    nav { display: none; } 

    .hero { 
        min-height: auto; 
        padding-top: 200px;
        padding-bottom: 80px;
        display: flex; flex-direction: column; align-items: center; text-align: center; 
    }
    .hero-content-wrapper { padding: 0; margin: 0 auto; display: flex; flex-direction: column; align-items: center; width: 100%; }
    .hero-text-box { width: 100%; max-width: 600px; margin: 0 auto; }
    .hero h1 { font-size: 3rem !important; line-height: 1.1; margin-bottom: 20px; text-align: center; }
    .hero p { font-size: 1rem; max-width: 90%; margin: 0 auto 30px auto; text-align: center; }
    .hero-btns { display: flex; justify-content: center; width: 100%; }
    .hero-bg-image { opacity: 0.2 !important; }

    .ecosystem-graphic { height: auto; flex-direction: column; margin-top: 50px; }
    .orbit-ring { display: none; }
    .satellite { position: relative; top: auto !important; margin-bottom: 20px; width: 80%; justify-content: center; }
    .split-feature, .split-feature.reverse { flex-direction: column-reverse; padding: 60px 0; }
    .split-text-col { width: 100%; padding: 50px 40px 0; text-align: center; }
    .split-image-col { width: 100%; height: 350px; padding: 0 40px; }
    .footer-grid { flex-direction: column; align-items: center; }

    .ecosystem-graphic {
        height: auto !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .orbit-ring { display: none; }

    .core-badge {
        position: relative;
        margin-bottom: 40px;
    }

    .satellite {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        
        width: 80%;
        max-width: 350px;
        margin-bottom: 20px;
        padding: 15px 30px; 
        justify-content: flex-start;
        padding-left: 30px;
    }

    .split-feature, .split-feature.reverse { 
        flex-direction: column-reverse; 
        padding: 60px 0; 
        height: auto;
    }
    
    .split-text-col, .split-feature.reverse .split-text-col { 
        width: 100%; 
        padding: 50px 30px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-badge, .mini-icon { 
        margin: 0 auto 25px auto !important; 
    }

    .split-text-col h2 {
        width: 100%;
        text-align: center;
    }
    .split-text-col p {
        margin: 0 auto 30px auto;
        max-width: 100%;
    }
    
    .check-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .check-list li { 
        width: fit-content; 
        display: flex;
        align-items: center; 
        gap: 15px;
        text-align: left; 
        margin-bottom: 12px;
    }

    .split-image-col { 
        width: 100%; 
        height: 350px; 
        padding: 0 40px; 
        box-sizing: border-box;
    }
    .image-mask, .split-feature.reverse .image-mask { border-radius: 24px; }

    .carousel-header {
        text-align: center !important;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .ecosystem-graphic { height: auto; flex-direction: column; margin-top: 50px; }
    .orbit-ring { display: none; }
    .satellite { position: relative; top: auto !important; margin-bottom: 20px; width: 80%; justify-content: center; }
    .footer-grid { flex-direction: column; align-items: center; }
    .footer-bottom img { width: 200px !important; height: auto; margin-top: 20px; }
    .footer-col { text-align: center; }
    .contact-item { justify-content: center; }

    .modal-box {
        width: 85%;
        max-width: 450px;
        padding: 25px 30px !important; 
        max-height: 80vh !important; 
        overflow-y: auto;
        border-radius: 16px;
    }

    .modal-header h3 { font-size: 1.6rem; margin-bottom: 10px; }
    
    .form-group { margin-bottom: 12px; }
    
    .form-input { padding: 12px; }
    
    textarea.form-input { 
        height: 80px !important; 
        min-height: 80px !important; 
    }

    .close-modal { top: 15px; right: 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    
    .container { 
        padding: 0 40px; 
        width: 100%;
        box-sizing: border-box;
    }

    header { 
        padding: 25px 0; 
        position: absolute !important;
        top: 0; left: 0; width: 100%;
        z-index: 100;
    }

    .nav-flex { 
        display: flex; 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        width: 100%;
    }
    
    .logo img { width: 120px; display: block; flex-shrink: 0; }

    nav { 
        display: flex; 
        justify-content: center; 
        align-items: center;
        flex-grow: 1; 
        gap: 20px; 
        margin: 0 10px; 
    } 

    nav a { 
        font-size: 0.75rem; 
        letter-spacing: 0.5px;
        font-weight: 700;
        white-space: nowrap; 
        text-align: center;
    }
    
    .header-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
        flex-shrink: 0; 
    }

    .hero { 
        min-height: 60vh; 
        padding-top: 180px; 
        padding-bottom: 80px;
        display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; 
    }
    .hero-content-wrapper { width: 100%; padding: 0; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-text-box { width: 100%; max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero h1 { font-size: 3.5rem !important; line-height: 1.1; margin-bottom: 20px; text-align: center; width: 100%; }
    .hero p { max-width: 90%; margin: 0 auto 35px auto; text-align: center; }
    .hero-btns { display: flex; justify-content: center; width: 100%; }
    .btn-fill { width: auto; min-width: 250px; max-width: 350px; }
    .hero-bg-image { opacity: 0.3 !important; }

    .split-feature, .split-feature.reverse { 
        flex-direction: column-reverse;
        padding: 60px 0; 
    }
    
    .split-text-col { 
        width: 80%; 
        margin: 0 auto; 
        padding: 50px 0 0; 
        text-align: center; 
        display: flex; flex-direction: column; align-items: center; 
    }
    
    .feature-icon-badge { margin: 0 auto 25px auto; }
    .check-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .check-list li { 
        width: fit-content; 
        display: flex;
        align-items: center; 
        gap: 15px;
        text-align: left; 
        margin-bottom: 12px;
    }

    .split-image-col { 
        width: 100%; 
        height: 400px; 
        padding: 0 80px; 
        box-sizing: border-box; 
    }
    
    .image-mask, .split-feature.reverse .image-mask { 
        border-radius: 30px; 
    }
    
    .split-image-col::after, .split-feature.reverse .split-image-col::after {
        left: 0; right: 0; top: auto; bottom: 0;
        width: 100%; height: 30%;
        background: linear-gradient(to top, var(--bg-body) 0%, rgba(255,255,255,0) 100%);
    }

    .ecosystem-graphic { transform: scale(0.8); margin: 0; }
    .footer-grid { flex-direction: column; align-items: center; text-align: center; }
    .contact-item { justify-content: center; }
    .footer-bottom img { width: 210px !important; margin-top: 25px; }

     .modal-box {
        width: 70%;
        max-width: 500px;
        padding: 35px !important;
        max-height: 85vh !important;
        overflow-y: auto;
        border-radius: 16px;
    }

    .modal-header h3 { font-size: 1.8rem; margin-bottom: 10px; }
    
    .form-group { margin-bottom: 15px; }
    
    textarea.form-input { 
        height: 100px !important; 
        min-height: 100px !important; 
    }
}

@media (min-width: 1025px) and (max-width: 1366px) {

    body, html {
        overflow-x: hidden;
    }

    .container { 
        padding: 0 40px; 
        max-width: 1100px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    header { 
        padding: 15px 40px; 
        position: absolute !important;
        top: 0; left: 0; width: 100%;
        z-index: 100;
        box-sizing: border-box;
    }
    .logo img { width: 130px; display: block; }
    nav { display: flex; gap: 30px; align-items: center; }
    nav a { font-size: 0.85rem; letter-spacing: 1px; font-weight: 700; white-space: nowrap; }
    .header-btn { padding: 10px 25px; font-size: 0.85rem; }

    .hero { 
        min-height: 85vh; 
        padding-top: 160px; 
        padding-bottom: 60px;
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center;
        text-align: center;  
    }

    .hero-content-wrapper { 
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .hero-text-box { 
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 { 
        font-size: 3.8rem !important; 
        line-height: 1.1; 
        margin-bottom: 25px; 
        width: 100%;
        text-align: center;
    }

    .hero p { 
        font-size: 1.1rem; 
        max-width: 750px; 
        margin: 0 auto 35px auto;
        text-align: center;
    }
    
    .hero-btns { 
        display: flex; 
        justify-content: center;
        width: 100%;
    }

    .hero-bg-image { opacity: 0.3 !important; }
    .split-feature { 
        display: flex;
        flex-direction: row; 
        align-items: center;
        width: 100%;
        padding: 80px 0;
        box-sizing: border-box;
    }
    
    .split-feature.reverse { flex-direction: row-reverse; }
    
    .split-text-col { 
        width: 50%; 
        padding: 0 40px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-icon-badge { margin: 0 0 25px 0; } 
    .check-list { width: 100%; align-items: flex-start; } 
    .check-list li { justify-content: flex-start; }
    .split-text-col p { text-align: left; margin: 0 0 30px 0; max-width: 100%; }
    .split-image-col { 
        width: 50%; 
        height: 450px; 
        padding: 0 40px;
        box-sizing: border-box;
    }
    
    .image-mask { 
        width: 100%;
        height: 100%;
        border-radius: 30px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .split-feature.reverse .image-mask { 
        border-radius: 30px; 
    }
    
    .split-image-col::after, .split-feature.reverse .split-image-col::after {
        display: none;
    }

    .ms-hub-title { font-size: 2.8rem; }
    .ecosystem-graphic { transform: scale(0.85); margin: 20px auto; }
    .carousel-container { max-width: 950px; }
    .footer-grid { justify-content: center; text-align: center; }
    .contact-item { justify-content: center; }

    .modal-box {
        max-width: 500px;
        padding: 40px !important;
        max-height: 90vh !important; 
        overflow-y: auto;
    }
    
    .modal-header { margin-bottom: 20px; }
    
    textarea.form-input { 
        height: 120px !important; 
        min-height: 120px !important; 
    }
}


        