/* =========================================================
RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{

    scroll-behavior:smooth;

}
/* =========================================================
ROOT
========================================================= */

:root{

    --white:#ffffff;
    --light:#f4f6f8;
    --gray:#b8bec7;
    --dark:#111827;
    --steel:#607d9b;
    --green:#5f8d7b;
    --border:rgba(0,0,0,0.06);

}

/* =========================================================
BODY
========================================================= */

body{

    font-family:'Inter',sans-serif;
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;

}

/* =========================================================
GLOBAL
========================================================= */

h1,h2,h3,h4,h5,h6{

    font-family:'Montserrat',sans-serif;

}

img{

    max-width:100%;
    display:block;

}

.section-container{

    width:92%;
    max-width:1450px;
    margin:auto;

}

.section-label{

    font-size:12px;
    letter-spacing:4px;
    font-weight:700;
    color:var(--steel);
    margin-bottom:20px;

}

.section-label.white{

    color:white;

}

/* =========================================================
HEADER
========================================================= */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

}

.header-container{

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;

    padding:2px 40px;

    background:rgba(255,255,255,0.88);

    backdrop-filter:blur(4px);

    border-bottom:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 5px 30px rgba(0,0,0,0.03);

}

.logo img{

    height:68px;

}

nav{

    display:flex;
    align-items:center;
    gap:38px;

}

nav a{

    text-decoration:none;

    color:var(--dark);

    font-size:15px;

    font-weight:700;

    letter-spacing:0.3px;

    text-shadow:
    0 1px 1px rgba(255,255,255,0.45);

    transition:0.3s;

    position:relative;

}

nav a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:var(--steel);

    transition:0.3s;

}

nav a:hover::after{

    width:100%;

}

nav a:hover{

    color:var(--steel);

}

.header-btn{

    padding:14px 24px;

    background:var(--dark);

    color:white;

    border-radius:14px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    transition:0.3s;

}

.header-btn:hover{

    background:var(--steel);

}

/* =========================================================
MENU TOGGLE
========================================================= */

.menu-toggle{

    display:none;

    width:54px;
    height:54px;

    border-radius:18px;

    background:rgba(255,255,255,0.92);

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:6px;

    cursor:pointer;

    transition:0.3s;

    border:1px solid rgba(0,0,0,0.04);

}

.menu-toggle:hover{

    transform:translateY(-2px);

}

.menu-toggle span{

    width:22px;
    height:2px;

    background:var(--dark);

    border-radius:50px;

    transition:0.3s;

}


/* =========================================================
MENU ACTIVE
========================================================= */

.menu-toggle.active span:nth-child(1){

    transform:
    translateY(8px)
    rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:
    translateY(-8px)
    rotate(-45deg);

}
/* =========================================================
FULLSCREEN MENU
========================================================= */

.fullscreen-menu{

    position:fixed;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,0.96),
    rgba(244,246,248,0.98)
    );

    backdrop-filter:blur(20px);

    z-index:998;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:0.4s;
     z-index:9999;

}

.fullscreen-menu.active{

    opacity:1;
    visibility:visible;

}

.fullscreen-content{

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:30px;

}

.fullscreen-content a{

    text-decoration:none;

    font-size:58px;

    font-weight:800;

    font-family:'Montserrat',sans-serif;

    color:var(--dark);

    transition:0.3s;

    letter-spacing:-2px;

}

.fullscreen-content a:hover{

    color:var(--steel);

    transform:translateX(10px);

}

/* =========================================================
HERO
========================================================= */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    margin-top:72px;

    overflow:hidden;

}

.hero-video{

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1.02);

}

.hero-overlay{

    position:absolute;

    inset:0;

     background:

    linear-gradient(

    to right,

    rgba(255,255,255,0.38),

    rgba(255,255,255,0.10)

    ),

    linear-gradient(

    to bottom,

    rgba(255,255,255,0.12),

    rgba(255,255,255,0.20)

    );

}
.hero-lines{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:0.25;

}

.hero-content{

    position:absolute;

    left:7%;
    bottom:10%;

    max-width:1100px;

    z-index:3;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:14px 24px;

    background:rgba(255,255,255,0.92);

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:4px;

    color:var(--steel);

    margin-bottom:28px;

    border:1px solid rgba(255,255,255,0.7);

}

.hero h1{

    font-size:82px;

    line-height:0.96;

    margin-bottom:30px;

    font-weight:800;

    letter-spacing:-4px;

    color:var(--dark);

    max-width:1050px;

    text-shadow:
    0 2px 10px rgba(255,255,255,0.12);

}

.hero p{

    font-size:19px;

    line-height:1.9;

    font-weight:500;

    color:#3f4b57;

    margin-bottom:45px;

    max-width:720px;

    display:inline-block;

    padding:18px 26px;

background:rgba(255,255,255,0.78);
    border-radius:24px;

    border:1px solid rgba(255,255,255,0.45);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.03);

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    padding:18px 32px;

    background:
    linear-gradient(
    180deg,
    #1b2430,
    #111827
    );

    color:white;

    border-radius:18px;

    text-decoration:none;

    font-weight:700;

    transition:0.35s;

    box-shadow:
    0 10px 24px rgba(17,24,39,0.16);

    border:1px solid rgba(255,255,255,0.08);

}
.btn-primary:hover{

    background:
    linear-gradient(
    180deg,
    #243244,
    #18212d
    );

    transform:translateY(-3px);

    box-shadow:
    0 18px 38px rgba(17,24,39,0.22);

}

.btn-secondary{

    padding:18px 32px;

    background:rgba(255,255,255,0.88);

    border-radius:18px;

    text-decoration:none;

    color:var(--dark);

    border:1px solid rgba(255,255,255,0.65);

    font-weight:700;

    transition:0.3s;

}

.btn-secondary:hover{

    transform:translateY(-2px);

}

.hero-scroll{

    position:absolute;

    bottom:40px;
    left:50%;

    transform:translateX(-50%);

}

.hero-scroll span{

    width:2px;
    height:70px;

    background:rgba(255,255,255,0.8);

    display:block;

    border-radius:50px;

}

/* =========================================================
INTRO
========================================================= */

.intro{

    position:relative;

    padding:190px 0;

    background:

    linear-gradient(

    180deg,

    #f5f7fa 0%,

    #edf1f5 45%,

    #e7ecf2 100%

    );

    overflow:hidden;

}

.intro::after{

    content:'';

    position:absolute;

    inset:0;

    background:

    radial-gradient(
    circle at 20% 30%,
    rgba(111,74,168,0.05),
    transparent 30%
    ),

    radial-gradient(
    circle at 80% 70%,
    rgba(96,125,155,0.06),
    transparent 35%
    );

    pointer-events:none;

}
.intro-bg-grid{
    
mask-image:

linear-gradient(

to bottom,

rgba(0,0,0,0.9),

rgba(0,0,0,0.55)

);
    position:absolute;

    inset:0;

    opacity:0.5;

    background:

    /* GRID PRINCIPAL */

    linear-gradient(
    rgba(17,24,39,0.035) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.035) 1px,
    transparent 1px
    ),

    /* LINEAS TIPO RUTA */

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(111,74,168,0.06) 50%,
    transparent 52%,
    transparent 100%
    ),

    linear-gradient(
    60deg,
    transparent 0%,
    transparent 48%,
    rgba(96,125,155,0.05) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:

    90px 90px,
    90px 90px,
    420px 420px,
    520px 520px;

    pointer-events:none;

}

.intro-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:0.95fr 1.05fr;

    gap:90px;

    align-items:center;

}

.intro-left h2{

    font-size:72px;

    line-height:0.98;

    letter-spacing:-4px;

    margin-bottom:34px;

    max-width:620px;

}

.intro::before{

    filter:blur(40px);

}
.intro-description{

    font-size:20px;

    line-height:1.9;

    color:#5b6572;

    max-width:540px;

}

.intro-line{

    width:120px;
    height:2px;

    background:
    linear-gradient(
    90deg,
    #6f4aa8,
    transparent
    );

    margin:45px 0;

}

.intro-stats{

    display:flex;

    gap:80px;

    flex-wrap:wrap;

    align-items:flex-start;

}

.intro-stat h3{

    font-size:54px;

    line-height:1;

    margin-bottom:10px;

    color:#111827;

}

.intro-stat > span{

    color:#66707d;

    font-size:14px;

    letter-spacing:1px;

}

.intro-stat{

    position:relative;

    padding-left:24px;

}

.intro-stat::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#6f4aa8;

    box-shadow:
    0 0 20px rgba(111,74,168,0.45);

}

.intro-stat h3{

    font-variant-numeric:tabular-nums;

    transition:0.3s;

}

.intro-stat h3{

    display:flex;

    align-items:flex-start;

    gap:4px;

    font-size:54px;

    font-weight:800;

    line-height:0.9;

    letter-spacing:-2px;

}

.intro-stat h3 .counter{

    font-size:88px;

    line-height:0.8;

    display:inline-block;
    text-shadow:

0 8px 24px rgba(111,74,168,0.10);

}


.intro-right{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.intro-bottom-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

}

.intro-card{
border:1px solid rgba(255,255,255,0.9);
    position:relative;

    padding:46px;

    border-radius:36px;

    background:

linear-gradient(

180deg,

rgba(255,255,255,0.82),

rgba(245,247,250,0.72)

);

    border:1px solid rgba(255,255,255,0.45);

overflow:hidden;

    transition:0.4s;

    box-shadow:
    0 25px 60px rgba(15,23,42,0.08),

0 8px 24px rgba(111,74,168,0.05);

backdrop-filter:blur(24px);
}

.intro-card:hover{

    transform:translateY(-10px);

    box-shadow:
0 45px 110px rgba(15,23,42,0.16),

0 12px 30px rgba(111,74,168,0.08);
}

.intro-card::before{

    content:'';

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(111,74,168,0.18),
    transparent 70%
    );

    top:-120px;
    right:-120px;

}

.intro-card-large{

    min-height:340px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.intro-card-number{

    font-size:13px;

    font-weight:800;

    letter-spacing:3px;

    color:#6f4aa8;

    margin-bottom:28px;

}

.intro-card h3{

    font-size:38px;

    line-height:1.05;

    letter-spacing:-2px;

    margin-bottom:24px;

    max-width:480px;

}

.intro-card p{

    color:#5d6772;

    line-height:1.9;

    font-size:16px;

}

@media(max-width:1100px){

    .intro-grid{

        grid-template-columns:1fr;

    }

    .intro-left h2{

        font-size:54px;

    }

}

@media(max-width:768px){

    .intro{

        padding:120px 0;

    }

    .intro-left h2{

        font-size:42px;

        letter-spacing:-2px;

    }

    .intro-description{

        font-size:17px;

    }

    .intro-bottom-grid{

        grid-template-columns:1fr;

    }

    .intro-card{

        padding:36px;

    }

    .intro-card h3{

        font-size:30px;

    }

}
/* =========================================================
SERVICES
========================================================= */

.services{

    padding:150px 0;

    background:var(--light);

}

.services-header{

    max-width:900px;

    margin-bottom:70px;

}

.services-header h2{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

}

.services-header p{

    font-size:18px;

    line-height:1.9;

    color:#5d6772;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:45px;

    border-radius:30px;

    transition:0.4s;

    border:1px solid var(--border);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);

}

.service-number{

    font-size:14px;

    font-weight:700;

    color:var(--steel);

    margin-bottom:25px;

}

.service-card h3{

    font-size:32px;

    margin-bottom:20px;

}

.service-card p{

    line-height:1.9;

    color:#5d6772;

}

/* =========================================================
INFRASTRUCTURE PREMIUM
========================================================= */

.infrastructure{

    position:relative;

    padding:190px 0;

    background:

    linear-gradient(
    180deg,
    #f5f7fa,
    #eef2f6
    );

    overflow:hidden;

}

.infrastructure-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background-image:
    linear-gradient(rgba(17,24,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,0.03) 1px, transparent 1px);

    background-size:80px 80px;

}

.infrastructure-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.05fr 0.95fr;

    gap:90px;

    align-items:center;

}

/* =========================================
IMAGE
========================================= */

.infrastructure-image-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:42px;

    min-height:760px;

    box-shadow:
    0 40px 120px rgba(15,23,42,0.14);

}

.infrastructure-image-wrapper img{

    width:100%;
    height:100%;

    object-fit:cover;

    position:absolute;

    inset:0;

}

/* =========================================
OVERLAY
========================================= */

.infrastructure-image-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:

    linear-gradient(
    180deg,
    rgba(8,12,24,0.12),
    rgba(8,12,24,0.28)
    );

}

/* =========================================
FLOATING CARD
========================================= */

.infrastructure-floating-card{

    position:absolute;

    top:40px;
    left:40px;

    z-index:5;

    max-width:440px;

    padding:38px;

    border-radius:34px;

    background:

    linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(255,255,255,0.88)
    );

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.65);

    box-shadow:
    0 30px 80px rgba(15,23,42,0.18);

}

.floating-label{

    font-size:12px;

    letter-spacing:4px;

    font-weight:800;

    color:#6f4aa8;

    margin-bottom:18px;

}

.infrastructure-floating-card h3{

    font-size:48px;

    line-height:0.95;

    letter-spacing:-2px;

    color:#111827;

}

/* =========================================
CONTENT SIDE
========================================= */

.infrastructure-content h2{

    font-size:76px;

    line-height:0.92;

    letter-spacing:-4px;

    margin-bottom:32px;

    color:#111827;

}

.infrastructure-content p{

    font-size:20px;

    line-height:1.9;

    color:#5d6772;

    margin-bottom:50px;

}

/* =========================================
FEATURES
========================================= */

.infrastructure-features{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.infra-feature{

    display:flex;

    gap:24px;

    align-items:flex-start;

    padding:28px;

    border-radius:28px;

    background:white;

    box-shadow:
    0 15px 40px rgba(15,23,42,0.05);

}

.infra-feature-icon{

    width:64px;
    height:64px;

    min-width:64px;

    border-radius:20px;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.12),
    rgba(111,74,168,0.06)
    );

    display:flex;
    align-items:center;
    justify-content:center;

}

.infra-feature-icon svg{

    width:28px;
    height:28px;

    stroke:#6f4aa8;

}

.infra-feature h4{

    font-size:34px;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:14px;

    color:#111827;

}

.infra-feature p{

    font-size:17px;

    line-height:1.8;

    margin:0;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

    .infrastructure-grid{

        grid-template-columns:1.1fr 0.9fr;

    }

}

@media(max-width:768px){

    .infrastructure{

        padding:120px 0;

    }

    .infrastructure-image-wrapper{

        min-height:520px;

    }

    .infrastructure-floating-card{

        top:20px;
        left:20px;
        right:20px;

        max-width:none;

        padding:28px;

    }

    .infrastructure-floating-card h3{

        font-size:34px;

    }

    .infrastructure-content h2{

        font-size:48px;

        letter-spacing:-2px;

    }

    .infra-feature h4{

        font-size:26px;

    }

}

/* =========================================================
MONITORING
========================================================= */

.monitoring{

    padding:150px 0;

    background:var(--light);

}

.monitoring-header{

    max-width:850px;

    margin-bottom:60px;

}

.monitoring-header h2{

    font-size:62px;

    margin-bottom:25px;

}

.monitoring-header p{

    font-size:18px;

    line-height:1.9;

    color:#5d6772;

}

.monitoring-dashboard img{

    border-radius:35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);

}

/* =========================================================
PRODUCTS
========================================================= */

.products{

    padding:150px 0;

}

.products-header{

    margin-bottom:60px;

}

.products-header h2{

    font-size:58px;

    line-height:1.1;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.product-card{

    padding:40px 25px;

    border-radius:26px;

    background:var(--light);

    text-align:center;

    font-weight:700;

    transition:0.3s;

}

.product-card:hover{

    background:var(--steel);

    color:white;

}

/* =========================================================
CTA
========================================================= */

.cta{

    position:relative;

    padding:170px 0;

    background:
    linear-gradient(
    135deg,
    #607d9b,
    #5f8d7b
    );

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 30%);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

.cta-content h2{

    font-size:72px;

    line-height:1.05;

    color:white;

    margin-bottom:30px;

}

.cta-content p{

    color:rgba(255,255,255,0.9);

    font-size:19px;

    line-height:1.9;

    margin-bottom:45px;

}

.btn-white{

    padding:18px 34px;

    background:white;

    color:var(--dark);

    border-radius:18px;

    text-decoration:none;

    font-weight:700;

}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    nav{

        display:none;

    }

    .menu-toggle{

        display:flex;
 position:relative;

    z-index:10000;
    }

    .header-btn{

        display:none;

    }

    .hero h1{

        font-size:54px;

    }

    .intro-grid,
    .services-grid,
    .infrastructure-grid,
    .products-grid,
    .footer-top{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .header-container{

        padding:10px 18px;

    }

    .logo img{

        height:58px;

    }

    .hero{

        margin-top:78px;

    }

    .hero-content{

        left:5%;
        right:5%;
animation:heroFade 1.2s ease;
        max-width:none;

    }
@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
    .hero h1{

        font-size:42px;

        line-height:1.02;

    }

    .hero p{

        font-size:16px;

        padding:16px 20px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .services-header h2,
    .monitoring-header h2,
    .intro-left h2,
    .infrastructure-content h2,
    .products-header h2,
    .cta-content h2{

        font-size:42px;

    }

    .fullscreen-content a{

        font-size:42px;

    }

}



.hero-purple{

    color:#6f4aa8;

}.intro-card p{

    color:#5d6772;

    line-height:1.9;

    font-size:16px;

}.intro-icon{

    position:absolute;

    right:30px;
    bottom:30px;

    opacity:0.08;

    z-index:0;

    pointer-events:none;

}

.intro-icon svg{

    width:120px;
    height:120px;

    stroke:#6f4aa8;

    stroke-width:1.4;

}

.intro-card h3,
.intro-card p,
.intro-card-number{

    position:relative;

    z-index:2;

}

/* =========================================================
SERVICES
========================================================= */

.services{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

.services-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    /* GRID */

    linear-gradient(
    rgba(255,255,255,0.035) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.035) 1px,
    transparent 1px
    ),

    /* LINEAS INDUSTRIALES */

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(139,92,246,0.05) 50%,
    transparent 52%,
    transparent 100%
    ),

    linear-gradient(
    60deg,
    transparent 0%,
    transparent 48%,
    rgba(96,125,155,0.04) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:

    80px 80px,
    80px 80px,
    420px 420px,
    520px 520px;

    mask-image:

    linear-gradient(
    to bottom,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.75)
    );

    pointer-events:none;

}

.services::before{

    content:'';

    position:absolute;

    top:-250px;
    right:-250px;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(111,74,168,0.18),
    transparent 70%
    );

    filter:blur(40px);

}

.services-header{

    position:relative;

    z-index:2;

    max-width:920px;

    margin-bottom:90px;

}

.services-header .section-label{

    color:#9f7aea;

}

.services-header h2{

    font-size:72px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.services-header p{

    color:rgba(255,255,255,0.72);

    font-size:19px;

    line-height:1.9;

    max-width:760px;

}

.services-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.service-card{

    position:relative;

    overflow:hidden;

    padding:50px;

    border-radius:38px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    transition:0.45s;

    min-height:430px;

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(139,92,246,0.35);

    box-shadow:
    0 35px 100px rgba(0,0,0,0.40);

}

.service-glow{

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(139,92,246,0.18),
    transparent 70%
    );

}

.service-icon{

    position:absolute;

    right:35px;
    bottom:35px;

    opacity:0.08;

}

.service-icon svg{

    width:130px;
    height:130px;

    stroke:#9f7aea;

    stroke-width:1.4;

}

.service-number{

    position:relative;

    z-index:2;

    font-size:13px;

    font-weight:800;

    letter-spacing:4px;

    color:#9f7aea;

    margin-bottom:26px;

}

.service-card h3{
    margin-top:18px;

    position:relative;

    z-index:2;

    font-size:42px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

     margin-bottom:20px;

    margin-top:10px;

    max-width:320px;

}

.service-card p{

    position:relative;

    z-index:2;

    color:rgba(255,255,255,0.72);

    line-height:1.9;

    margin-bottom:auto;

}

.service-card a{

    position:relative;

    z-index:2;

    margin-top:40px;

    text-decoration:none;

    color:white;

    font-weight:700;

    transition:0.3s;

}

.service-card a:hover{

    color:#9f7aea;

}

@media(max-width:1100px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .services{

        padding:130px 0;

    }

    .services-header h2{

        font-size:46px;

        letter-spacing:-2px;

    }

    .service-card{

        padding:38px;

        min-height:auto;

    }

    .service-card h3{

        font-size:32px;

    }

}

/* =========================================================
SERVICE IMAGE SYSTEM
========================================================= */

.service-card{

    position:relative;

    overflow:hidden;

}

.service-image{

    position:absolute;

    inset:0;

    z-index:1;

}

.service-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0.72;

    transform:scale(1.04);

    transition:0.7s ease;

    filter:
    saturate(1.05)
    contrast(1.02);

}

.service-card:hover .service-image img{

    transform:scale(1.10);

    opacity:0.55;

}

.service-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:

    linear-gradient(
    180deg,
    rgba(8,12,24,0.08) 0%,
    rgba(8,12,24,0.14) 20%,
    rgba(8,12,24,0.35) 45%,
    rgba(8,12,24,0.82) 100%
    ),

    linear-gradient(
    90deg,
    rgba(8,12,24,0.20) 0%,
    rgba(8,12,24,0.02) 50%
    );

}
.service-card h3{

    text-shadow:
    0 4px 18px rgba(0,0,0,0.45);

}

.service-card p{

    color:rgba(255,255,255,0.88);

    text-shadow:

    0 2px 14px rgba(0,0,0,0.50);

}

.service-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.service-card{

    padding:40px;

}

.service-icon{

    position:absolute;

    right:35px;
    bottom:35px;

    opacity:0.08;

    z-index:4;

}

.service-icon svg{

    width:110px;

height:110px;
    stroke:#9f7aea;

    stroke-width:1.4;

}

/* =========================================================
SERVICE OVERLAY FINAL
========================================================= */

.service-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:

    linear-gradient(
    180deg,
    rgba(8,12,24,0.10) 0%,
    rgba(8,12,24,0.18) 25%,
    rgba(8,12,24,0.60) 72%,
    rgba(8,12,24,0.92) 100%
    ),

    linear-gradient(
    90deg,
    rgba(8,12,24,0.30) 0%,
    rgba(8,12,24,0.02) 50%
    );

}

/* =========================================================
SERVICE CONTENT
========================================================= */

.service-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

/* =========================================================
TEXT READABILITY
========================================================= */

.service-card h3{

    text-shadow:
    0 4px 20px rgba(0,0,0,0.60);

}

.service-card p{

    text-shadow:
    0 2px 14px rgba(0,0,0,0.50);

}

/* =========================================================
SERVICE ICON
========================================================= */

.service-icon{

    position:absolute;

    right:35px;
    bottom:35px;

    opacity:0.10;

    z-index:4;

}
/* =========================================================
INFRASTRUCTURE PREMIUM
========================================================= */

.infrastructure{

    position:relative;

    padding:190px 0;

    background:

    linear-gradient(
    180deg,
    #eef2f7,
    #e8edf3
    );

    overflow:hidden;

}

/* ====================================== */
/* GRID BACKGROUND */
/* ====================================== */

.infrastructure-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(111,74,168,0.05) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:
    80px 80px,
    80px 80px,
    420px 420px;

}

/* ====================================== */
/* MAIN GRID */
/* ====================================== */

.infrastructure-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.05fr 0.95fr;

    gap:90px;

    align-items:center;

}

/* ====================================== */
/* IMAGE */
/* ====================================== */

.infrastructure-image-wrapper{

    position:relative;

}

.infrastructure-image-wrapper img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:40px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.16);
    filter:

brightness(0.96)

contrast(1.04)

saturate(1.05);

}

.infrastructure-image-overlay{

    position:absolute;

    inset:0;

    border-radius:40px;

    background:

    linear-gradient(
    180deg,
    rgba(17,24,39,0.02),
    rgba(17,24,39,0.30)
    );

}

/* ====================================== */
/* FLOATING CARD */
/* ====================================== */

.infrastructure-floating-card{

    position:absolute;

    top:40px;
    left:40px;

    z-index:5;

    width:420px;

    padding:34px 34px 30px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(255,255,255,0.90)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.65);

    box-shadow:
    0 30px 80px rgba(15,23,42,0.18);

}

.floating-label{

    font-size:11px;

    letter-spacing:3px;

    font-weight:800;

    color:#6f4aa8;

    margin-bottom:16px;

}

.infrastructure-floating-card h3{

    font-size:28px;

    line-height:1.05;

    letter-spacing:-1.5px;

    color:#111827;

    max-width:320px;

}
.floating-label{

    margin-bottom:16px;

}

.infrastructure-image-wrapper{

    min-height:680px;

}

/* ====================================== */
/* CONTENT */
/* ====================================== */

.infrastructure-content h2{

     font-size:64px;

    line-height:0.95;

    letter-spacing:-4px;

    margin-bottom:34px;

    max-width:650px;

    color:#111827;

}

.infrastructure-content p{

    font-size:19px;

    line-height:1.9;

    color:#5d6772;

    margin-bottom:55px;

    max-width:620px;

}

/* ====================================== */
/* FEATURES */
/* ====================================== */

.infrastructure-features{

    display:flex;

    flex-direction:column;

    gap:24px;

    margin-top:50px;

}

.infra-feature{

    display:flex;

    align-items:flex-start;

    gap:24px;

    padding:28px 30px;

    border-radius:28px;

    background:

    linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.74)
    );

    border:1px solid rgba(255,255,255,0.9);

    box-shadow:
    0 15px 40px rgba(15,23,42,0.05);

    transition:0.35s;

}

.infra-feature:hover{

    transform:translateX(8px);

    box-shadow:
    0 22px 55px rgba(15,23,42,0.08);

}

.infra-feature-icon{

    min-width:62px;
    height:62px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.12),
    rgba(111,74,168,0.04)
    );

}

.infra-feature-icon svg{

    width:28px;
    height:28px;

    stroke:#6f4aa8;

    stroke-width:1.8;

}

.infra-feature h4{

    font-size:24px;

    line-height:1.1;

    letter-spacing:-1px;

    margin-bottom:10px;

    color:#111827;

}

.infra-feature p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:#66707d;

}

/* ====================================== */
/* RESPONSIVE */
/* ====================================== */

@media(max-width:1100px){

    .infrastructure-grid{

        grid-template-columns:1fr;

    }

    .infrastructure-content h2{

        font-size:54px;

    }

}

@media(max-width:768px){

    .infrastructure{

        padding:130px 0;

    }

    .infrastructure-image-wrapper img{

        height:520px;

    }

    .infrastructure-content h2{

        font-size:42px;

        letter-spacing:-2px;

    }

  .infrastructure-floating-card{

    top:auto;

    bottom:18px;

    left:18px;
    right:18px;

    width:auto;

    padding:24px;

    border-radius:28px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.94),
    rgba(255,255,255,0.88)
    );

}

.infrastructure-floating-card h3{

    font-size:24px;

    line-height:1.08;

    max-width:100%;

}

.infrastructure-image-wrapper{

    min-height:420px;
       object-position:center;

}

    .infra-feature{

        flex-direction:column;

    }

}

section{

    position:relative;

}

section::after{

    content:'';

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(111,74,168,0.12),
    transparent
    );

}

/* =========================================================
MONITORING PREMIUM
========================================================= */

.monitoring{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

/* ====================================== */
/* GRID BACKGROUND */
/* ====================================== */

.monitoring-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.42;

    background:

    linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(139,92,246,0.05) 50%,
    transparent 52%,
    transparent 100%
    ),

    linear-gradient(
    60deg,
    transparent 0%,
    transparent 48%,
    rgba(96,125,155,0.04) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:
    80px 80px,
    80px 80px,
    420px 420px,
    520px 520px;

}

/* ====================================== */
/* MAIN GRID */
/* ====================================== */

.monitoring-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:0.92fr 1.08fr;

    gap:90px;

    align-items:center;

}

/* ====================================== */
/* CONTENT */
/* ====================================== */

.monitoring-content h2{

    font-size:74px;

    line-height:0.94;

    letter-spacing:-4px;

    color:white;

    margin-bottom:34px;

    max-width:700px;

}

.monitoring-content p{

    font-size:19px;

    line-height:1.9;

    color:rgba(255,255,255,0.72);

    margin-bottom:60px;

    max-width:620px;

}

/* ====================================== */
/* FEATURES */
/* ====================================== */

.monitoring-features{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.monitoring-feature{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:28px;

    border-radius:30px;

    background:

    linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    transition:0.35s;

}

.monitoring-feature:hover{

    transform:translateX(8px);

    border-color:rgba(139,92,246,0.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);

}

.monitoring-feature-icon{

    min-width:64px;
    height:64px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(139,92,246,0.16),
    rgba(139,92,246,0.06)
    );

}

.monitoring-feature-icon svg{

    width:30px;
    height:30px;

    stroke:#9f7aea;

    stroke-width:1.8;

}

.monitoring-feature h4{

    font-size:24px;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:12px;

    color:white;

}

.monitoring-feature p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:rgba(255,255,255,0.70);

}

/* ====================================== */
/* IMAGE */
/* ====================================== */

.monitoring-image-wrapper{

    position:relative;

}

.monitoring-image-wrapper img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 120px rgba(0,0,0,0.35);

    filter:
    brightness(0.95)
    contrast(1.04)
    saturate(1.05);

}

/* ====================================== */
/* OVERLAY */
/* ====================================== */

.monitoring-image-overlay{

    position:absolute;

    inset:0;

    border-radius:42px;

    z-index:2;

    background:

    linear-gradient(

    180deg,

    rgba(8,12,24,0.04),

    rgba(8,12,24,0.38)

    );

}

/* ====================================== */
/* FLOATING CARD */
/* ====================================== */

.monitoring-floating-card{

    position:absolute;

    bottom:40px;
    left:40px;

    z-index:5;

    width:430px;

    padding:36px;

    border-radius:34px;

    background:

    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.74)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

}

.monitoring-card-label{

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.monitoring-floating-card h3{

    font-size:30px;

    line-height:1.05;

    letter-spacing:-1.5px;

    color:white;

}

/* ====================================== */
/* RESPONSIVE */
/* ====================================== */

@media(max-width:1100px){

    .monitoring-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .monitoring{

        padding:130px 0;

    }

    .monitoring-content h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .monitoring-content p{

        font-size:17px;

    }

    .monitoring-image-wrapper img{

        height:520px;

    }

    .monitoring-floating-card{

        left:18px;
        right:18px;
        bottom:18px;

        width:auto;

        padding:24px;

        border-radius:28px;

    }

    .monitoring-floating-card h3{

        font-size:22px;

    }

    .monitoring-feature{

        flex-direction:column;

    }

}

/* ====================================== */
/* RADAR UI */
/* ====================================== */

/* ====================================== */
/* RADAR UI */
/* ====================================== */

.monitoring-radar{

    position:absolute;

        top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:240px;
    height:240px;

    border-radius:50%;

    z-index:8;

    pointer-events:none;

    overflow:hidden;

    backdrop-filter:blur(4px);

    background:
    radial-gradient(
    circle,
    rgba(139,92,246,0.10),
    rgba(139,92,246,0.03) 45%,
    transparent 75%
    );

}

/* ====================================== */
/* RADAR RINGS */
/* ====================================== */

.radar-ring{

    position:absolute;

    inset:0;

    border-radius:50%;

    border:1px solid rgba(139,92,246,0.20);

}

.radar-ring-2{

    inset:28px;

}

.radar-ring-3{

    inset:56px;

}

/* ====================================== */
/* RADAR SWEEP */
/* ====================================== */

.monitoring-radar::before{

    content:'';

    position:absolute;

    inset:-20%;

    background:
    conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(139,92,246,0.0) 250deg,
    rgba(139,92,246,0.45) 320deg,
    rgba(255,255,255,0.75) 340deg,
    transparent 360deg
    );

    animation:radarRotate 4s linear infinite;

}

/* ====================================== */
/* CENTER DOT */
/* ====================================== */

.radar-center{

    position:absolute;

    top:50%;
    left:50%;

    width:14px;
    height:14px;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:#c4a6ff;

    box-shadow:
    0 0 25px rgba(139,92,246,0.95);

    z-index:3;

}

/* ====================================== */
/* BLIPS */
/* ====================================== */

.monitoring-radar::after{

    content:'';

    position:absolute;

    width:10px;
    height:10px;

    top:42%;
    left:70%;

    border-radius:50%;

    background:#c4a6ff;

    box-shadow:
    0 0 18px rgba(139,92,246,0.95);

    animation:radarBlink 2s infinite;

}

/* ====================================== */
/* ANIMATIONS */
/* ====================================== */

@keyframes radarRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes radarBlink{

    0%{

        opacity:0.2;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0.2;

    }

}
/* ====================================== */
/* ANIMATION */
/* ====================================== */

@keyframes radarPulse{

    0%{

        transform:scale(0.95);

        opacity:0.2;

    }

    50%{

        opacity:0.6;

    }

    100%{

        transform:scale(1.05);

        opacity:0.15;

    }

}
@media(max-width:768px){

    .monitoring-radar{

        width:150px;
        height:150px;

        top:50%;
        left:50%;

        transform:translate(-50%,-50%);

    }

}
/* =========================================================
CHEMICAL TRANSPORT
========================================================= */

.chemical-transport{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

/* ====================================== */
/* GRID BG */
/* ====================================== */

.chemical-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(139,92,246,0.05) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:
    80px 80px,
    80px 80px,
    420px 420px;

}

/* ====================================== */
/* HEADER */
/* ====================================== */

.chemical-header{

    position:relative;

    z-index:2;

    max-width:920px;

    margin-bottom:90px;

}

.chemical-header .section-label{

    color:#9f7aea;

}

.chemical-header h2{

    font-size:72px;

    line-height:0.95;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.chemical-header p{

    color:rgba(255,255,255,0.72);

    font-size:19px;

    line-height:1.9;

    max-width:760px;

}

/* ====================================== */
/* GRID */
/* ====================================== */

.chemical-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ====================================== */
/* CARD */
/* ====================================== */

.chemical-card{

    position:relative;

    overflow:hidden;

    padding:42px;

    border-radius:36px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    min-height:340px;

    transition:0.4s;

}

.chemical-card:hover{

    transform:translateY(-10px);

    border-color:rgba(139,92,246,0.25);

    box-shadow:
    0 35px 90px rgba(0,0,0,0.35);
    background:

linear-gradient(

180deg,

rgba(255,255,255,0.10),

rgba(255,255,255,0.04)

);

box-shadow:

0 40px 120px rgba(0,0,0,0.45),

0 0 40px rgba(139,92,246,0.10);

}

/* ====================================== */
/* FORMULA */
/* ====================================== */

.chemical-formula{

    position:absolute;

    right:28px;
    bottom:18px;

    font-size:74px;

    font-weight:800;

    letter-spacing:-3px;

    color:rgba(255,255,255,0.04);

    z-index:1;

    pointer-events:none;

    font-family:'Montserrat',sans-serif;

    user-select:none;

}

/* ====================================== */
/* GLOW */
/* ====================================== */

.chemical-glow{

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(139,92,246,0.14),
    transparent 70%
    );

}

/* ====================================== */
/* TOP */
/* ====================================== */

.chemical-top{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;
    justify-content:space-between;

    margin-bottom:34px;

}

.chemical-icon{

    width:68px;
    height:68px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(139,92,246,0.16),
    rgba(139,92,246,0.05)
    );

}

.chemical-icon svg{

    width:30px;
    height:30px;

    stroke:#9f7aea;

}

.chemical-badge{

    padding:10px 16px;

    border-radius:50px;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    color:#c4b5fd;

    font-size:11px;

    font-weight:800;

    letter-spacing:2px;

}

/* ====================================== */
/* TEXT */
/* ====================================== */

.chemical-card h3{

    position:relative;

    z-index:2;

    font-size:38px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

    margin-bottom:22px;

}

.chemical-card p{

    position:relative;

    z-index:2;

    color:rgba(255,255,255,0.72);

    line-height:1.9;

    margin-bottom:30px;

}

/* ====================================== */
/* LINE */
/* ====================================== */

.chemical-line{

    position:relative;

    z-index:2;

    width:100%;

    height:1px;

    background:
    linear-gradient(
    90deg,
    rgba(139,92,246,0.45),
    transparent
    );

    margin-bottom:24px;

}

.chemical-detail{

    position:relative;

    z-index:2;

    color:#cbd5e1;

    font-size:14px;

    line-height:1.8;

}

/* ====================================== */
/* CTA */
/* ====================================== */

.chemical-cta{

    position:relative;

    z-index:2;

    margin-top:70px;

    padding:42px;

    border-radius:38px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:40px;

}

.chemical-cta-label{

    color:#9f7aea;

    font-size:12px;

    font-weight:800;

    letter-spacing:4px;

    margin-bottom:16px;

}

.chemical-cta h3{

    font-size:42px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

    margin-bottom:18px;

}

.chemical-cta p{

    color:rgba(255,255,255,0.72);

    line-height:1.9;

    max-width:700px;

}

.chemical-btn{

    min-width:260px;

    text-align:center;

    padding:20px 34px;

    border-radius:20px;

    background:
    linear-gradient(
    180deg,
    #9f7aea,
    #7c3aed
    );

    color:white;

    text-decoration:none;

    font-weight:800;

    transition:0.35s;

    box-shadow:
    0 20px 50px rgba(124,58,237,0.35);

}

.chemical-btn:hover{

    transform:translateY(-4px);

}

/* ====================================== */
/* RESPONSIVE */
/* ====================================== */

@media(max-width:1100px){

    .chemical-grid{

        grid-template-columns:1fr;

    }

    .chemical-cta{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media(max-width:768px){

    .chemical-transport{

        padding:130px 0;

    }

    .chemical-header h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .chemical-card{

        padding:34px;

        min-height:auto;

    }

    .chemical-card h3{

        font-size:30px;

    }

    .chemical-formula{

        font-size:52px;

    }

    .chemical-cta{

        padding:30px;

    }

    .chemical-cta h3{

        font-size:32px;

    }

    .chemical-btn{

        width:100%;

        min-width:auto;

    }

}

/* =========================================================
FOOTER PREMIUM LIGHT
========================================================= */

.footer-premium{

    position:relative;

    padding:120px 0 40px;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

/* ====================================== */
/* GRID BG */
/* ====================================== */

.footer-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.5;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    radial-gradient(
    circle at top right,
    rgba(139,92,246,0.10),
    transparent 30%
    ),

    radial-gradient(
    circle at bottom left,
    rgba(96,125,155,0.08),
    transparent 35%
    );

    background-size:
    80px 80px,
    80px 80px,
    auto,
    auto;

}

/* ====================================== */
/* TOP */
/* ====================================== */

.footer-top{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1fr;

    gap:42px;

    padding:50px;

    border-radius:42px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.72),
    rgba(255,255,255,0.52)
    );

    border:1px solid rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    box-shadow:
    0 30px 80px rgba(15,23,42,0.08);

}

/* ====================================== */
/* BRAND */
/* ====================================== */

.footer-brand img{

    width:100%;

    max-width:220px;

    height:auto;

    object-fit:contain;

    margin-bottom:22px;

}

.footer-brand p{

    color:#5d6772;

    line-height:1.9;

    max-width:420px;

    margin-bottom:28px;

}

.footer-badge{

    display:inline-flex;

    align-items:center;

    padding:14px 20px;

    border-radius:50px;

    background:
    linear-gradient(
    180deg,
    rgba(139,92,246,0.12),
    rgba(139,92,246,0.05)
    );

    border:1px solid rgba(139,92,246,0.12);

    color:#6f4aa8;

    font-size:11px;

    font-weight:800;

    letter-spacing:3px;

}

/* ====================================== */
/* COLUMNS */
/* ====================================== */

.footer-column h4{

    font-size:20px;

    color:#111827;

    margin-bottom:26px;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-column li{

    list-style:none;

    color:#66707d;

    line-height:1.8;

}

.footer-column a{

    text-decoration:none;

    color:#66707d;

    transition:0.3s;

}

.footer-column a:hover{

    color:#6f4aa8;

}

/* ====================================== */
/* BUTTON */
/* ====================================== */

.footer-contact-btn{

    display:inline-flex;

    margin-top:28px;

    padding:16px 24px;

    border-radius:18px;

    background:
    linear-gradient(
    180deg,
    #1b2430,
    #111827
    );

    color:white !important;

    font-weight:800;

    text-decoration:none;

    transition:0.35s;

    box-shadow:
    0 15px 40px rgba(17,24,39,0.18);

}

.footer-contact-btn:hover{

    transform:translateY(-4px);

}

/* ====================================== */
/* BOTTOM */
/* ====================================== */

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:40px;

    padding-top:30px;

    border-top:1px solid rgba(17,24,39,0.08);

    display:flex;

    justify-content:space-between;

    gap:20px;

    color:#66707d;

    font-size:14px;

}

/* ====================================== */
/* RESPONSIVE */
/* ====================================== */

@media(max-width:1100px){

    .footer-top{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .footer-premium{

        padding:90px 0 30px;

    }

    .footer-top{

        grid-template-columns:1fr;

        padding:34px;

        border-radius:30px;

    }

    .footer-bottom{

        flex-direction:column;

    }

  

}

/* =========================================================
ABOUT HERO
========================================================= */

.about-hero{

    position:relative;

    padding:210px 0 170px;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.about-hero-grid{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.about-hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-hero-content h1{

    font-size:76px;

    line-height:0.95;

    letter-spacing:-4px;

    margin-bottom:34px;

    color:#111827;

}

.about-hero-content p{

    font-size:19px;

    line-height:1.9;

    color:#5d6772;

    max-width:700px;

    margin-bottom:50px;

}

.about-hero-stats{

    display:flex;

    gap:50px;

    flex-wrap:wrap;

}

.about-hero-stat h3{

    font-size:54px;

    line-height:1;

    margin-bottom:10px;

    color:#6f4aa8;

}

.about-hero-stat span{

    color:#66707d;

    font-size:14px;

}

.about-hero-image{

    position:relative;

}

.about-hero-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:40px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.16);

}

.about-floating-card{

    position:absolute;

    left:40px;
    bottom:40px;

    width:400px;

    padding:34px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.74)
    );

    backdrop-filter:blur(20px);

}

.about-floating-label{

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.about-floating-card h3{

    color:white;

    font-size:28px;

    line-height:1.05;

    letter-spacing:-1px;

}

/* =========================================================
ABOUT STORY
========================================================= */

.about-story{

    position:relative;

    padding:190px 0;

    background:white;

}

.about-story-bg{

    position:absolute;

    inset:0;

    opacity:0.4;

    background:

    radial-gradient(
    circle at top right,
    rgba(111,74,168,0.06),
    transparent 30%
    );

}

.about-story-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-story-content h2{

    font-size:68px;

    line-height:0.96;

    letter-spacing:-4px;

    margin-bottom:30px;

}

.about-story-content p{

    font-size:18px;

    line-height:1.9;

    color:#5d6772;

    margin-bottom:24px;

}

.about-story-line{

    width:120px;
    height:2px;

    background:
    linear-gradient(
    90deg,
    #6f4aa8,
    transparent
    );

    margin:40px 0;

}

.about-story-features{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.about-story-feature{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:28px;

    border-radius:28px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.74)
    );

    box-shadow:
    0 15px 40px rgba(15,23,42,0.05);

}

.about-story-icon{

    width:62px;
    height:62px;

    min-width:62px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.12),
    rgba(111,74,168,0.04)
    );

}

.about-story-icon svg{

    width:28px;
    height:28px;

    stroke:#6f4aa8;

}

.about-story-feature h4{

    font-size:24px;

    margin-bottom:10px;

}

.about-story-feature p{

    margin:0;

    font-size:15px;

}

.about-story-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:40px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.12);

}

/* =========================================================
VALUES
========================================================= */

.about-values{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

.about-values-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.4;

    background:

    linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.about-values-header{

    position:relative;

    z-index:2;

    max-width:900px;

    margin-bottom:80px;

}

.about-values-header .section-label{

    color:#9f7aea;

}

.about-values-header h2{

    font-size:72px;

    line-height:0.95;

    letter-spacing:-4px;

    color:white;

    margin-bottom:26px;

}

.about-values-header p{

    color:rgba(255,255,255,0.72);

    line-height:1.9;

    font-size:19px;

}

.about-values-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.about-value-card{

    padding:46px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

}

.about-value-icon{

    width:70px;
    height:70px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    background:
    linear-gradient(
    180deg,
    rgba(139,92,246,0.16),
    rgba(139,92,246,0.05)
    );

}

.about-value-icon svg{

    width:32px;
    height:32px;

    stroke:#9f7aea;

}

.about-value-card h3{

    font-size:34px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

    margin-bottom:20px;

}

.about-value-card p{

    color:rgba(255,255,255,0.72);

    line-height:1.9;

}

/* =========================================================
ABOUT CTA
========================================================= */

.about-cta{

    position:relative;

    padding:180px 0;

    background:
    linear-gradient(
    135deg,
    #607d9b,
    #5f8d7b
    );

    overflow:hidden;

}

.about-cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(255,255,255,0.15),
    transparent 30%
    );

}

.about-cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

}

.about-cta-content h2{

    font-size:72px;

    line-height:1;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.about-cta-content p{

    font-size:19px;

    line-height:1.9;

    color:rgba(255,255,255,0.88);

    margin-bottom:45px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .about-hero-container,
    .about-story-grid,
    .about-values-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .about-hero,
    .about-story,
    .about-values,
    .about-cta{

        padding:130px 0;

    }

    .about-hero-content h1,
    .about-story-content h2,
    .about-values-header h2,
    .about-cta-content h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .about-hero-image img,
    .about-story-image img{

        height:520px;

    }

    .about-floating-card{

        left:18px;
        right:18px;
        bottom:18px;

        width:auto;

        padding:24px;

    }

    .about-floating-card h3{

        font-size:22px;

    }

    .about-value-card{

        padding:34px;

    }

}/* =========================================================
MISSION VISION
========================================================= */

.mission-vision{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.mission-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.mission-header{

    position:relative;

    z-index:2;

    max-width:920px;

    margin-bottom:80px;

}

.mission-header h2{

    font-size:72px;

    line-height:0.96;

    letter-spacing:-4px;

    margin-bottom:28px;

    color:#111827;

}

.mission-header p{

    font-size:19px;

    line-height:1.9;

    color:#5d6772;

    max-width:760px;

}

.mission-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.mission-card{

    position:relative;

    overflow:hidden;

    padding:48px;

    border-radius:36px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.74)
    );

    border:1px solid rgba(255,255,255,0.9);

    backdrop-filter:blur(18px);

    box-shadow:
    0 25px 60px rgba(15,23,42,0.06);

    transition:0.4s;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 35px 90px rgba(15,23,42,0.10);

}

.mission-icon{

    width:74px;
    height:74px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.14),
    rgba(111,74,168,0.05)
    );

}

.mission-icon svg{

    width:34px;
    height:34px;

    stroke:#6f4aa8;

}

.mission-number{

    font-size:12px;

    font-weight:800;

    letter-spacing:4px;

    color:#6f4aa8;

    margin-bottom:18px;

}

.mission-card h3{

    font-size:40px;

    line-height:1;

    letter-spacing:-2px;

    margin-bottom:22px;

    color:#111827;

}

.mission-card p{

    color:#5d6772;

    line-height:1.9;

    font-size:16px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .mission-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .mission-vision{

        padding:130px 0;

    }

    .mission-header h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .mission-card{

        padding:36px;

    }

    .mission-card h3{

        font-size:32px;

    }

}
/* =========================================================
SERVICES HERO
========================================================= */

.services-hero{

    position:relative;

    padding:180px 0 140px;

    background:
    linear-gradient(
    180deg,
    #f5f7fa,
    #eef2f7
    );

    overflow:hidden;

}

.services-hero-grid{

    position:absolute;

    inset:0;

    opacity:0.45;

    background-image:
    linear-gradient(rgba(17,24,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,0.03) 1px, transparent 1px);

    background-size:80px 80px;

}

.services-hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:0.95fr 1.05fr;

    gap:90px;

    align-items:center;

}

.services-hero-left h1{

    font-size:78px;

    line-height:0.95;

    letter-spacing:-4px;

    color:#111827;

    margin-bottom:34px;

}

.services-hero-left p{

    font-size:20px;

    line-height:1.9;

    color:#5d6772;

    max-width:680px;

    margin-bottom:45px;

}

.services-hero-buttons{

    display:flex;

    gap:18px;

}

.services-hero-right{

    position:relative;

}

.services-hero-right img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.16);

}

.services-hero-card{

    position:absolute;

    top:40px;
    right:40px;

    left:auto;
    bottom:auto;

    width:420px;

    padding:34px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.72)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

    z-index:5;

}

.services-hero-card span{

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    display:block;

    margin-bottom:18px;

}

.services-hero-card h3{

    font-size:34px;

    line-height:1.05;

    letter-spacing:-1px;

    color:white;

}

/* =========================================================
SERVICES PREMIUM
========================================================= */

.services-premium{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

.services-premium-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size:80px 80px;

}

.services-premium-header{

    position:relative;

    z-index:2;

    max-width:920px;

    margin-bottom:90px;

}

.services-premium-header .section-label{

    color:#9f7aea;

}

.services-premium-header h2{

    font-size:72px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.services-premium-header p{

    color:rgba(255,255,255,0.72);

    font-size:19px;

    line-height:1.9;

}

.services-premium-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.service-premium-card{

    position:relative;

    overflow:hidden;

    min-height:520px;

    border-radius:40px;

    transition:0.45s;

}

.service-premium-card:hover{

    transform:translateY(-10px);

}

.service-premium-image{

    position:absolute;

    inset:0;

}

.service-premium-image img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.service-premium-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    rgba(8,12,24,0.15),
    rgba(8,12,24,0.92)
    );

}

.service-premium-content{

    position:relative;

    z-index:5;

    height:100%;

    padding:42px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.service-premium-icon{

    width:72px;
    height:72px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(139,92,246,0.20),
    rgba(139,92,246,0.08)
    );

    margin-bottom:24px;

}

.service-premium-icon svg{

    width:32px;
    height:32px;

    stroke:#c4b5fd;

}

.service-premium-number{

    font-size:12px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:18px;

}

.service-premium-content h3{

    font-size:40px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

    margin-bottom:20px;

}

.service-premium-content p{

    color:rgba(255,255,255,0.78);

    line-height:1.9;

    margin-bottom:30px;

}

.service-premium-content ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.service-premium-content li{

    list-style:none;

    color:#dbe4ee;

    font-size:14px;

    position:relative;

    padding-left:22px;

}

.service-premium-content li::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#9f7aea;

}

/* =========================================================
PROCESS
========================================================= */

.services-process{

    padding:170px 0;

    background:#eef2f7;

}

.services-process-header{

    max-width:850px;

    margin-bottom:70px;

}

.services-process-header h2{

    font-size:68px;

    line-height:0.96;

    letter-spacing:-4px;

    color:#111827;

}

.services-process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.process-card{

    padding:42px;

    border-radius:36px;

    background:white;

    box-shadow:
    0 25px 60px rgba(15,23,42,0.06);

}

.process-number{

    font-size:14px;

    letter-spacing:4px;

    font-weight:800;

    color:#6f4aa8;

    margin-bottom:24px;

}

.process-card h3{

    font-size:34px;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:18px;

}

.process-card p{

    color:#5d6772;

    line-height:1.9;

}

/* =========================================================
SERVICES CTA
========================================================= */

.services-cta{

    position:relative;

    padding:180px 0;

    background:
    linear-gradient(
    135deg,
    #111827,
    #1f2937
    );

    overflow:hidden;

}

.services-cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(139,92,246,0.20),
    transparent 30%
    );

}

.services-cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

.services-cta-content h2{

    font-size:74px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.services-cta-content p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,0.78);

    margin-bottom:45px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .services-hero-container,
    .services-premium-grid,
    .services-process-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .services-hero,
    .services-premium,
    .services-process,
    .services-cta{

        padding:130px 0;

    }

    .services-hero-left h1,
    .services-premium-header h2,
    .services-process-header h2,
    .services-cta-content h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .services-hero-right img{

        height:520px;

    }

    .services-hero-card{

        left:18px;
        right:18px;
        bottom:18px;

        width:auto;

        padding:24px;

    }

    .services-hero-card h3{

        font-size:24px;

    }

    .service-premium-content{

        padding:32px;

    }

    .service-premium-content h3{

        font-size:30px;

    }

}
/* =========================================================
SECURITY HERO
========================================================= */

.security-hero{

    position:relative;

    padding:190px 0 150px;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.security-hero-grid{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.security-hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:0.95fr 1.05fr;

    gap:90px;

    align-items:center;

}

.security-hero-left h1{

    font-size:78px;

    line-height:0.94;

    letter-spacing:-4px;

    color:#111827;

    margin-bottom:34px;

}

.security-hero-left p{

    font-size:20px;

    line-height:1.9;

    color:#5d6772;

    max-width:700px;

    margin-bottom:45px;

}

.security-hero-right{

    position:relative;

}

.security-hero-right img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.16);

}

.security-hero-card{

    position:absolute;

    top:40px;
    right:40px;

    width:430px;

    padding:36px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.72)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

}

.security-hero-card span{

    display:block;

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.security-hero-card h3{

    font-size:30px;

    line-height:1.05;

    letter-spacing:-1px;

    color:white;

}

/* =========================================================
SECURITY MAIN
========================================================= */

.security-main{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

.security-main-bg{

    position:absolute;

    inset:0;

    opacity:0.42;

    background:

    linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(139,92,246,0.05) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:
    80px 80px,
    80px 80px,
    420px 420px;

}

.security-main-header{

    position:relative;

    z-index:2;

    max-width:920px;

    margin-bottom:90px;

}

.security-main-header .section-label{

    color:#9f7aea;

}

.security-main-header h2{

    font-size:72px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.security-main-header p{

    color:rgba(255,255,255,0.72);

    font-size:19px;

    line-height:1.9;

}

.security-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.security-card{

    position:relative;

    overflow:hidden;

    min-height:560px;

    border-radius:40px;

    transition:0.45s;

}

.security-card:hover{

    transform:translateY(-10px);

}

.security-image{

    position:absolute;

    inset:0;

}

.security-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s ease;

}

.security-card:hover .security-image img{

    transform:scale(1.08);

}

.security-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    180deg,
    rgba(8,12,24,0.08),
    rgba(8,12,24,0.92)
    );

}

.security-content{

    position:relative;

    z-index:5;

    height:100%;

    padding:42px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.security-number{

    font-size:12px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:18px;

}

.security-content h3{

    font-size:42px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

    margin-bottom:22px;

}

.security-content p{

    color:rgba(255,255,255,0.78);

    line-height:1.9;

    margin-bottom:28px;

}

.security-content ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.security-content li{

    list-style:none;

    position:relative;

    padding-left:22px;

    color:#dbe4ee;

    font-size:14px;

}

.security-content li::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#9f7aea;

}

/* =========================================================
PROTOCOLS
========================================================= */

.security-protocols{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.security-protocols-grid{

    display:grid;

    grid-template-columns:1.05fr 0.95fr;

    gap:90px;

    align-items:center;

}

.security-protocols-image{

    position:relative;

}

.security-protocols-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.14);

}

.security-protocol-card{

    position:absolute;

    bottom:40px;
    left:40px;

    width:420px;

    padding:34px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.72)
    );

    backdrop-filter:blur(18px);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

}

.security-protocol-card span{

    display:block;

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.security-protocol-card h3{

    font-size:30px;

    line-height:1.05;

    letter-spacing:-1px;

    color:white;

}

.security-protocols-content h2{

    font-size:68px;

    line-height:0.95;

    letter-spacing:-4px;

    color:#111827;

    margin-bottom:30px;

}

.security-protocols-content p{

    font-size:19px;

    line-height:1.9;

    color:#5d6772;

    margin-bottom:55px;

}

.security-features{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.security-feature{

    display:flex;

    align-items:flex-start;

    gap:24px;

    padding:28px;

    border-radius:28px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.74)
    );

    border:1px solid rgba(255,255,255,0.9);

    box-shadow:
    0 15px 40px rgba(15,23,42,0.05);

}

.security-feature-icon{

    min-width:62px;
    height:62px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.12),
    rgba(111,74,168,0.04)
    );

}

.security-feature-icon svg{

    width:28px;
    height:28px;

    stroke:#6f4aa8;

}

.security-feature h4{

    font-size:24px;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:12px;

    color:#111827;

}

.security-feature p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:#66707d;

}

/* =========================================================
SECURITY CTA
========================================================= */

.security-cta{

    position:relative;

    padding:180px 0;

    background:
    linear-gradient(
    135deg,
    #111827,
    #1f2937
    );

    overflow:hidden;

}

.security-cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(139,92,246,0.20),
    transparent 30%
    );

}

.security-cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

.security-cta-content h2{

    font-size:74px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.security-cta-content p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,0.78);

    margin-bottom:45px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .security-hero-container,
    .security-grid,
    .security-protocols-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .security-hero,
    .security-main,
    .security-protocols,
    .security-cta{

        padding:130px 0;

    }

    .security-hero-left h1,
    .security-main-header h2,
    .security-protocols-content h2,
    .security-cta-content h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .security-hero-right img,
    .security-protocols-image img{

        height:520px;

    }

    .security-hero-card,
    .security-protocol-card{

        left:18px;
        right:18px;
        bottom:18px;
        top:auto;

        width:auto;

        padding:24px;

        border-radius:28px;

    }

    .security-hero-card h3,
    .security-protocol-card h3{

        font-size:22px;

    }

    .security-content{

        padding:32px;

    }

    .security-content h3{

        font-size:32px;

    }

    .security-feature{

        flex-direction:column;

    }

}
@media(max-width:768px){

    .footer-brand{

        display:flex;

        flex-direction:column;

        align-items:flex-start;

    }

    .footer-brand img{

        max-width:180px;

    }

}


/* =========================================================
COVERAGE HERO
========================================================= */

.coverage-hero{

    position:relative;

    padding:190px 0 150px;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.coverage-hero-grid{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.coverage-hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:0.95fr 1.05fr;

    gap:90px;

    align-items:center;

}

.coverage-hero-left h1{

    font-size:78px;

    line-height:0.94;

    letter-spacing:-4px;

    color:#111827;

    margin-bottom:34px;

}

.coverage-hero-left p{

    font-size:20px;

    line-height:1.9;

    color:#5d6772;

    max-width:700px;

    margin-bottom:45px;

}

.coverage-hero-right{

    position:relative;

}

.coverage-hero-right img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.16);

}

.coverage-hero-card{

    position:absolute;

    top:40px;
    right:40px;

    width:430px;

    padding:36px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.72)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

}

.coverage-hero-card span{

    display:block;

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.coverage-hero-card h3{

    font-size:30px;

    line-height:1.05;

    letter-spacing:-1px;

    color:white;

}

/* =========================================================
COVERAGE MAIN
========================================================= */

.coverage-main{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

.coverage-main-bg{

    position:absolute;

    inset:0;

    opacity:0.42;

    background:

    linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    120deg,
    transparent 0%,
    transparent 48%,
    rgba(139,92,246,0.05) 50%,
    transparent 52%,
    transparent 100%
    );

    background-size:
    80px 80px,
    80px 80px,
    420px 420px;

}

.coverage-main-header{

    position:relative;

    z-index:2;

    max-width:920px;

    margin-bottom:90px;

}

.coverage-main-header .section-label{

    color:#9f7aea;

}

.coverage-main-header h2{

    font-size:72px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.coverage-main-header p{

    color:rgba(255,255,255,0.72);

    font-size:19px;

    line-height:1.9;

}

/* =========================================================
COVERAGE GRID
========================================================= */

.coverage-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.coverage-card{

    position:relative;

    overflow:hidden;

    min-height:560px;

    border-radius:40px;

    transition:0.45s;

}

.coverage-card:hover{

    transform:translateY(-10px);

}

.coverage-image{

    position:absolute;

    inset:0;

}

.coverage-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s ease;

}

.coverage-card:hover .coverage-image img{

    transform:scale(1.08);

}

.coverage-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    180deg,
    rgba(8,12,24,0.08),
    rgba(8,12,24,0.92)
    );

}

.coverage-content{

    position:relative;

    z-index:5;

    height:100%;

    padding:42px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.coverage-number{

    font-size:12px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:18px;

}

.coverage-content h3{

    font-size:42px;

    line-height:1;

    letter-spacing:-2px;

    color:white;

    margin-bottom:22px;

}

.coverage-content p{

    color:rgba(255,255,255,0.78);

    line-height:1.9;

    margin-bottom:28px;

}

.coverage-content ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.coverage-content li{

    list-style:none;

    position:relative;

    padding-left:22px;

    color:#dbe4ee;

    font-size:14px;

}

.coverage-content li::before{

    content:'';

    position:absolute;

    left:0;
    top:8px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#9f7aea;

}

/* =========================================================
COORDINATION
========================================================= */

.coverage-coordination{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.coverage-coordination-grid{

    display:grid;

    grid-template-columns:1.05fr 0.95fr;

    gap:90px;

    align-items:center;

}

.coverage-coordination-image{

    position:relative;

}

.coverage-coordination-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.14);

}

.coverage-coordination-card{

    position:absolute;

    bottom:40px;
    left:40px;

    width:420px;

    padding:34px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.72)
    );

    backdrop-filter:blur(18px);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

}

.coverage-coordination-card span{

    display:block;

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.coverage-coordination-card h3{

    font-size:30px;

    line-height:1.05;

    letter-spacing:-1px;

    color:white;

}

.coverage-coordination-content h2{

    font-size:68px;

    line-height:0.95;

    letter-spacing:-4px;

    color:#111827;

    margin-bottom:30px;

}

.coverage-coordination-content p{

    font-size:19px;

    line-height:1.9;

    color:#5d6772;

    margin-bottom:55px;

}

/* =========================================================
FEATURES
========================================================= */

.coverage-features{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.coverage-feature{

    display:flex;

    align-items:flex-start;

    gap:24px;

    padding:28px;

    border-radius:28px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.74)
    );

    border:1px solid rgba(255,255,255,0.9);

    box-shadow:
    0 15px 40px rgba(15,23,42,0.05);

}

.coverage-feature-icon{

    min-width:62px;
    height:62px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.12),
    rgba(111,74,168,0.04)
    );

}

.coverage-feature-icon svg{

    width:28px;
    height:28px;

    stroke:#6f4aa8;

}

.coverage-feature h4{

    font-size:24px;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:12px;

    color:#111827;

}

.coverage-feature p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:#66707d;

}

/* =========================================================
CTA
========================================================= */

.coverage-cta{

    position:relative;

    padding:180px 0;

    background:
    linear-gradient(
    135deg,
    #111827,
    #1f2937
    );

    overflow:hidden;

}

.coverage-cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(139,92,246,0.20),
    transparent 30%
    );

}

.coverage-cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

.coverage-cta-content h2{

    font-size:74px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.coverage-cta-content p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,0.78);

    margin-bottom:45px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .coverage-hero-container,
    .coverage-grid,
    .coverage-coordination-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .coverage-hero,
    .coverage-main,
    .coverage-coordination,
    .coverage-cta{

        padding:130px 0;

    }

    .coverage-hero-left h1,
    .coverage-main-header h2,
    .coverage-coordination-content h2,
    .coverage-cta-content h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .coverage-hero-right img,
    .coverage-coordination-image img{

        height:520px;

    }

    .coverage-hero-card,
    .coverage-coordination-card{

        left:18px;
        right:18px;
        bottom:18px;
        top:auto;

        width:auto;

        padding:24px;

        border-radius:28px;

    }

    .coverage-hero-card h3,
    .coverage-coordination-card h3{

        font-size:22px;

    }

    .coverage-content{

        padding:32px;

    }

    .coverage-content h3{

        font-size:32px;

    }

    .coverage-feature{

        flex-direction:column;

    }

}

/* =========================================================
CONTACT HERO
========================================================= */

.contact-hero{

    position:relative;

    padding:210px 0 170px;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

    overflow:hidden;

}

.contact-hero-grid-bg{

    position:absolute;

    inset:0;

    opacity:0.45;

    background:

    linear-gradient(
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(17,24,39,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.contact-hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:0.95fr 1.05fr;

    gap:90px;

    align-items:center;

}

.contact-hero-content h1{

    font-size:78px;

    line-height:0.94;

    letter-spacing:-4px;

    color:#111827;

    margin-bottom:34px;

    max-width:760px;

}

.contact-hero-content p{

    font-size:20px;

    line-height:1.9;

    color:#5d6772;

    margin-bottom:40px;

    max-width:680px;

}

.contact-hero-badges{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

.contact-badge{

    padding:14px 22px;

    border-radius:50px;

    background:
    linear-gradient(
    180deg,
    rgba(111,74,168,0.12),
    rgba(111,74,168,0.05)
    );

    border:1px solid rgba(111,74,168,0.12);

    color:#6f4aa8;

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

}

.contact-hero-image{

    position:relative;

}

.contact-hero-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.16);

}

.contact-floating-card{

    position:absolute;

    left:40px;
    bottom:40px;

    width:420px;

    padding:34px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(17,24,39,0.88),
    rgba(17,24,39,0.72)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

}

.contact-floating-card span{

    display:block;

    font-size:11px;

    letter-spacing:4px;

    font-weight:800;

    color:#9f7aea;

    margin-bottom:16px;

}

.contact-floating-card h3{

    font-size:30px;

    line-height:1.05;

    letter-spacing:-1px;

    color:white;

}

/* =========================================================
CONTACT MAIN
========================================================= */

.contact-main{

    position:relative;

    padding:190px 0;

    background:
    linear-gradient(
    180deg,
    #0b1120,
    #111827
    );

    overflow:hidden;

}

.contact-main-bg{

    position:absolute;

    inset:0;

    opacity:0.42;

    background:

    linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
    );

    background-size:80px 80px;

}

.contact-main-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr 0.9fr;

    gap:40px;

    align-items:start;

}

/* =========================================================
FORM
========================================================= */

.contact-form-wrapper{

    padding:50px;

    border-radius:42px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

}

.contact-form-top h2{

    font-size:62px;

    line-height:0.96;

    letter-spacing:-3px;

    color:white;

    margin-bottom:26px;

    max-width:700px;

}

.contact-form-top p{

    color:rgba(255,255,255,0.72);

    line-height:1.9;

    font-size:18px;

    margin-bottom:50px;

    max-width:620px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    color:#dbe4ee;

    margin-bottom:14px;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    border:none;

    outline:none;

    padding:20px 22px;

    border-radius:20px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.04)
    );

    border:1px solid rgba(255,255,255,0.08);

    color:white;

    font-size:15px;

    transition:0.35s;

    font-family:'Inter',sans-serif;

}

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:rgba(255,255,255,0.45);

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#9f7aea;

    box-shadow:
    0 0 0 4px rgba(139,92,246,0.10);

}

.form-group textarea{

    min-height:180px;

    resize:none;

}

.form-group select option{

    background:#111827;

    color:white;

}

.contact-submit-btn{

    margin-top:10px;

    height:68px;

    border:none;

    border-radius:22px;

    background:
    linear-gradient(
    180deg,
    #9f7aea,
    #7c3aed
    );

    color:white;

    font-size:15px;

    font-weight:800;

    letter-spacing:1px;

    cursor:pointer;

    transition:0.35s;

    box-shadow:
    0 20px 50px rgba(124,58,237,0.35);

}

.contact-submit-btn:hover{

    transform:translateY(-4px);

}

/* =========================================================
INFO
========================================================= */

.contact-info-wrapper{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-info-card{

    padding:36px;

    border-radius:34px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    transition:0.35s;

}

.contact-info-card:hover{

    transform:translateY(-6px);

    border-color:rgba(139,92,246,0.25);

}

.contact-info-icon{

    width:72px;
    height:72px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:26px;

    background:
    linear-gradient(
    180deg,
    rgba(139,92,246,0.18),
    rgba(139,92,246,0.06)
    );

}

.contact-info-icon svg{

    width:32px;
    height:32px;

    stroke:#c4b5fd;

}

.contact-info-card h3{

    font-size:30px;

    line-height:1;

    letter-spacing:-1px;

    color:white;

    margin-bottom:16px;

}

.contact-info-card p{

    color:rgba(255,255,255,0.72);

    line-height:1.9;

}

/* =========================================================
MAP
========================================================= */

.contact-map{

    position:relative;

    padding:170px 0;

    background:
    linear-gradient(
    180deg,
    #eef2f7,
    #e7ecf3
    );

}

.contact-map-top{

    max-width:850px;

    margin-bottom:60px;

}

.contact-map-top h2{

    font-size:68px;

    line-height:0.96;

    letter-spacing:-4px;

    color:#111827;

}

.contact-map-wrapper{

    overflow:hidden;

    border-radius:42px;

    box-shadow:
    0 40px 100px rgba(15,23,42,0.12);

}

.contact-map-wrapper iframe{

    width:100%;

    height:620px;

    border:none;

}

/* =========================================================
CTA
========================================================= */

.contact-cta{

    position:relative;

    padding:180px 0;

    background:
    linear-gradient(
    135deg,
    #111827,
    #1f2937
    );

    overflow:hidden;

}

.contact-cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(139,92,246,0.20),
    transparent 30%
    );

}

.contact-cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

}

.contact-cta-content h2{

    font-size:74px;

    line-height:0.96;

    letter-spacing:-4px;

    color:white;

    margin-bottom:30px;

}

.contact-cta-content p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,0.78);

    margin-bottom:45px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .contact-hero-container,
    .contact-main-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .contact-hero,
    .contact-main,
    .contact-map,
    .contact-cta{

        padding:130px 0;

    }

    .contact-hero-content h1,
    .contact-form-top h2,
    .contact-map-top h2,
    .contact-cta-content h2{

        font-size:44px;

        letter-spacing:-2px;

    }

    .contact-hero-image img{

        height:520px;

    }

    .contact-floating-card{

        left:18px;
        right:18px;
        bottom:18px;

        width:auto;

        padding:24px;

        border-radius:28px;

    }

    .contact-floating-card h3{

        font-size:22px;

    }

    .contact-form-wrapper{

        padding:34px;

    }

    .contact-form-grid{

        grid-template-columns:1fr;

    }

    .contact-map-wrapper iframe{

        height:480px;

    }

}