:root{
    --primary:#0b1f4d;
    --accent:#2563eb;
    --white:#ffffff;
    --text:#1e293b;
    --muted:#64748b;
    --border:#e5e7eb;
    --light:#f8fbff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.6;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* HEADER */
.site-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    height:85px;
    max-width:1450px;
    margin:auto;
    padding:0 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.logo{
    flex-shrink:0;
}

.logo img{
    height:60px;
    max-width:300px;
    display:block;
    object-fit:contain;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-menu a,
.dropdown button{
    background:none;
    border:0;
    font-size:15px;
    font-weight:700;
    color:#0f172a;
    cursor:pointer;
    font-family:inherit;
    white-space:nowrap;
}

.main-menu a.active,
.main-menu a:hover,
.dropdown button:hover{
    color:var(--accent);
}

.dropdown{
    position:relative;
    padding:35px 0;
}

.dropdown-menu{
    position:absolute;
    top:80px;
    left:0;
    width:300px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.14);
    padding:12px;
    display:none;
    z-index:9999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu a{
    display:block;
    padding:12px 14px;
    border-radius:10px;
    font-size:14px;
    color:#0f172a;
    white-space:normal;
}

.dropdown-menu a:hover{
    background:#eff6ff;
    color:var(--accent);
}

.dropdown-menu span{
    font-size:11px;
    color:var(--muted);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.btn-primary,
.btn-outline{
    padding:12px 22px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
}

.btn-primary{
    background:var(--accent);
    color:#fff !important;
}

.btn-outline{
    border:1px solid #cbd5e1;
    color:#0f172a !important;
    background:#fff;
}

.menu-toggle{
    display:none;
    background:var(--accent);
    color:#fff;
    border:0;
    font-size:26px;
    width:46px;
    height:46px;
    border-radius:10px;
    cursor:pointer;
}

.mobile-actions{
    display:none;
}

/* HERO */
.hero{
    padding:70px 0;
    background:linear-gradient(135deg,#f8fbff,#ffffff);
}

.hero-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:55px;
    align-items:center;
}

.hero-tag,
.section-tag{
    display:inline-block;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    color:var(--accent);
    margin-bottom:16px;
}

.hero h1{
    font-size:52px;
    line-height:1.12;
    margin-bottom:22px;
    color:var(--primary);
}

.hero h1 span{
    color:var(--accent);
}

.hero p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:28px;
    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:24px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,max-content);
    gap:10px 22px;
    font-size:15px;
    font-weight:600;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-features i{
    color:var(--accent);
}

.hero-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 24px 70px rgba(15,23,42,.16);
}

/* FEATURED PRODUCT */
.featured-product{
    padding:80px 0;
    background:#f8fbff;
}

.product-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:55px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:45px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.product-content h2{
    font-size:42px;
    line-height:1.2;
    color:var(--primary);
    margin:15px 0;
}

.product-content p{
    color:var(--muted);
    font-size:18px;
    margin-bottom:24px;
}

.product-list{
    list-style:none;
    margin-bottom:28px;
}

.product-list li{
    margin-bottom:12px;
    font-weight:600;
}

.product-list i{
    color:var(--accent);
    margin-right:8px;
}

.product-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 18px 50px rgba(15,23,42,.12);
}

/* COMMON SECTION */
.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary);
}

.section-title p{
    color:var(--muted);
    margin-top:10px;
}

/* CARDS */
.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.card p{
    color:var(--muted);
}

/* SERVICES */
.services-section{
    background:#fff;
}

.service-card{
    min-height:230px;
}

.service-card i{
    font-size:34px;
    color:var(--accent);
    margin-bottom:18px;
}

/* PRODUCTS */
.products-section{
    background:#f8fbff;
}

.product-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    position:relative;
    transition:.3s;
    min-height:280px;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.product-card i{
    font-size:36px;
    color:var(--accent);
    margin-bottom:18px;
}

.product-card h3{
    color:var(--primary);
    margin-bottom:12px;
}

.product-card p{
    color:var(--muted);
    margin-bottom:18px;
}

.product-card a{
    color:var(--accent);
    font-weight:700;
}

.active-product{
    border:2px solid var(--accent);
}
/* INDUSTRIES */
.industries-section{
    background:#fff;
}

.industry-card{
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.industry-card:hover{
    background:#fff;
    transform:translateY(-5px);
    box-shadow:0 14px 35px rgba(15,23,42,.08);
}

.industry-card i{
    font-size:38px;
    color:var(--accent);
    margin-bottom:18px;
}

.industry-card h3{
    color:var(--primary);
}






.badge{
    position:absolute;
    top:18px;
    right:18px;
    font-size:11px;
    font-weight:800;
    padding:6px 10px;
    border-radius:30px;
}

.available{
    background:#dcfce7;
    color:#166534;
}

.coming{
    background:#e0f2fe;
    color:#075985;
}

/* WHY US */
.why-us{
    background:#fff;
}

.why-us .card{
    text-align:center;
    padding:40px 30px;
}

.why-us .card i{
    font-size:46px;
    color:var(--accent);
    margin-bottom:20px;
}

/* STATS */
.stats-section{
    padding:70px 0;
    background:var(--primary);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.stats-grid div{
    padding:25px;
    border-right:1px solid rgba(255,255,255,.18);
}

.stats-grid div:last-child{
    border-right:0;
}

.stats-grid h2{
    font-size:42px;
    color:#fff;
    margin-bottom:8px;
}

.stats-grid p{
    color:#cbd5e1;
    font-size:16px;
}

/* CTA FOOTER */
.footer-cta{
    background:linear-gradient(135deg,#0b1f4d,#12326b);
    color:#fff;
    text-align:center;
    padding:55px 20px;
}

.footer-cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.footer-cta p{
    max-width:700px;
    margin:0 auto 30px;
    color:#dbeafe;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* FOOTER */
.site-footer{
    background:var(--primary);
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding:70px 0;
}

.footer-logo{
    margin-bottom:20px;
}

.footer-logo img{
    max-width:380px;
    opacity:.95;
}

.site-footer h4,
.footer-grid h2{
    margin-bottom:15px;
}

.site-footer p{
    color:#cbd5e1;
    margin-bottom:12px;
}

.footer-grid a{
    display:block;
    color:#cbd5e1;
    margin-bottom:10px;
    transition:.3s;
}

.footer-grid a:hover{
    color:#4f8cff;
    padding-left:4px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.contact-item i{
    color:#3b82f6;
    width:22px;
    font-size:18px;
    margin-top:4px;
    flex-shrink:0;
}

.contact-item span{
    line-height:1.7;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
    padding:20px;
}

/* TABLET + MOBILE */
@media(max-width:1250px){

    .header-inner{
        height:90px;
        padding:0 22px;
    }

    .logo img{
        height:70px;
        max-width:320px;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    .header-actions{
        display:none;
    }

    .main-menu{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:15px 22px 25px;
        border-bottom:1px solid var(--border);
        box-shadow:0 20px 40px rgba(0,0,0,.12);
        display:none;
    }

    .main-menu.show{
        display:flex;
    }

    .main-menu > a,
    .dropdown button{
        width:100%;
        padding:15px 0;
        font-size:17px;
        text-align:left;
        border-bottom:1px solid #eef2f7;
    }

    .dropdown{
        width:100%;
        padding:0;
    }

    .dropdown-toggle{
        display:flex !important;
        justify-content:space-between;
        align-items:center;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        box-shadow:none;
        border:0;
        background:#f8fafc;
        margin:0 0 10px;
        padding:10px;
        border-radius:14px;
        display:none;
    }

    .dropdown.open .dropdown-menu{
        display:block;
    }

    .dropdown:hover .dropdown-menu{
        display:none;
    }

    .dropdown.open:hover .dropdown-menu{
        display:block;
    }

    .mobile-actions{
        display:flex;
        flex-direction:column;
        gap:12px;
        width:100%;
        margin-top:20px;
    }

    .mobile-actions .btn-outline,
    .mobile-actions .btn-primary{
        display:block !important;
        width:100%;
        text-align:center;
        padding:14px 20px;
        border-radius:10px;
        font-weight:700;
    }

    .mobile-actions .btn-outline{
        border:1px solid #cbd5e1;
        color:#0f172a !important;
        background:#fff;
    }

    .mobile-actions .btn-primary{
        background:var(--accent);
        color:#fff !important;
    }

   .hero-grid,
.product-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.grid-3{
    grid-template-columns:repeat(2,1fr);
}

    .hero h1{
        font-size:42px;
    }

    .product-grid{
        padding:28px;
    }

    .product-content h2{
        font-size:34px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid div:nth-child(2){
        border-right:0;
    }
}

/* MOBILE */
@media(max-width:600px){

    .logo img{
        height:50px;
        max-width:240px;
    }

    .header-inner{
        height:75px;
    }

    .main-menu{
        top:82px;
    }
    .grid-3{
        grid-template-columns:1fr;
    }

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:36px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

    .section-title h2,
    .footer-cta h2{
        font-size:32px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stats-grid div{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.18);
    }

    .stats-grid div:last-child{
        border-bottom:0;
    }

    .footer-logo img{
        max-width:260px;
    }
}


/* COOKIE BANNER */
.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#ffffff;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    box-shadow:0 -5px 20px rgba(0,0,0,.1);
    z-index:9999;
}

.cookie-banner h4{
    font-size:18px;
    margin-bottom:6px;
}

.cookie-banner p{
    font-size:14px;
    line-height:1.5;
    margin:0;
}

.cookie-btn{
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:10px 22px;
    font-size:16px;
    font-weight:700;
    border-radius:10px;
    white-space:nowrap;
}

.cookie-btn:hover{
    opacity:.9;
}

@media(max-width:768px){
    .cookie-banner{
        flex-direction:column;
        align-items:flex-start;
    }
}
/* CLIENT LOGIN DROPDOWN */

.login-dropdown{
    position:relative;
    display:inline-block;
    padding-bottom:10px;
    margin-bottom:-10px;
}

.login-dropdown-btn{
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:7px;
}

.login-dropdown-menu{
    position:absolute;
    top:100%;
    right:0;
    width:225px;
    padding:8px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    box-shadow:0 15px 35px rgba(15,23,42,.15);
    display:none;
    z-index:9999;
}

.login-dropdown:hover .login-dropdown-menu{
    display:block;
}

.login-dropdown-menu a{
    display:block;
    padding:11px 12px;
    font-size:14px;
    font-weight:700;
    color:#0f172a !important;
    border-radius:8px;
    white-space:nowrap;
}

.login-dropdown-menu a:hover{
    background:#eff6ff;
    color:var(--accent) !important;
}
@media(max-width:1250px){

    .mobile-actions .login-dropdown{
        width:100%;
        padding-bottom:0;
        margin-bottom:0;
    }

    .mobile-actions .login-dropdown-btn{
        width:100%;
        justify-content:center;
    }

    .mobile-actions .login-dropdown-menu{
        position:static;
        width:100%;
        margin-top:8px;
        padding:8px;
        box-shadow:none;
        border:1px solid var(--border);
        border-radius:10px;
    }

    .mobile-actions .login-dropdown:hover .login-dropdown-menu{
        display:block;
    }

    .mobile-actions .login-dropdown-menu a{
        text-align:center;
        padding:12px;
    }
}


