﻿:root{
    --ink:#0f172a;
    --text:#334155;
    --muted:#64748b;
    --line:#dbeafe;
    --soft:#eff6ff;
    --paper:#ffffff;
    --blue:#2563eb;
    --blue-dark:#1e40af;
    --navy:#111827;
    --green:#16a34a;
    --amber:#f59e0b;
    --shadow:0 18px 45px rgba(15,23,42,0.08);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",Arial,sans-serif;
    color:var(--ink);
    background:#fff;
    overflow-x:hidden;
}

a{
    color:inherit;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:50;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:18px 7%;
    background:rgba(255,255,255,0.94);
    border-bottom:1px solid rgba(219,234,254,0.9);
    backdrop-filter:blur(18px);
}

.logo{
    text-decoration:none;
    font-size:26px;
    font-weight:900;
    letter-spacing:0;
    color:var(--ink);
    white-space:nowrap;
}

.logo span{
    color:var(--blue);
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    font-size:14px;
    font-weight:700;
}

.nav-links a:hover{
    color:var(--blue);
}

.nav-actions{
    display:flex;
    gap:12px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px 20px;
    border-radius:10px;
    border:1px solid transparent;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
    transition:transform 0.25s ease,box-shadow 0.25s ease,background 0.25s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    color:#fff;
    background:var(--blue);
    box-shadow:0 12px 24px rgba(37,99,235,0.22);
}

.btn-primary:hover{
    background:var(--blue-dark);
}

.btn-outline{
    color:var(--ink);
    background:#fff;
    border-color:var(--line);
}

.section-label,
.industrial-label,
.industries-label,
.booking-label,
.contact-label{
    color:var(--blue);
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
    text-align:center;
    margin-bottom:16px;
}

.section-title,
.industrial-title,
.industries-title,
.booking-title,
.contact-title{
    max-width:920px;
    margin:0 auto 20px;
    color:var(--ink);
    text-align:center;
    font-size:clamp(34px,4vw,52px);
    line-height:1.12;
    font-weight:900;
    letter-spacing:0;
}

.section-description,
.industrial-description,
.industries-description,
.booking-description,
.contact-description{
    max-width:900px;
    margin:0 auto 64px;
    color:var(--muted);
    text-align:center;
    font-size:18px;
    line-height:1.75;
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(420px,0.98fr);
    align-items:center;
    gap:48px;
    padding:130px 7% 78px;
    background:
        radial-gradient(circle at 10% 10%,rgba(37,99,235,0.15),transparent 30%),
        radial-gradient(circle at 86% 78%,rgba(22,163,74,0.12),transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
}

.hero-subtitle{
    display:inline-flex;
    max-width:100%;
    padding:9px 16px;
    color:var(--blue);
    background:var(--soft);
    border:1px solid var(--line);
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    margin-bottom:26px;
}

.hero h1{
    max-width:780px;
    color:var(--ink);
    font-size:clamp(38px,5vw,58px);
    line-height:1.04;
    font-weight:900;
    letter-spacing:0;
    margin-bottom:28px;
}

.hero h1 span{
    color:var(--blue);
}

.hero p{
    max-width:690px;
    color:#475569;
    font-size:19px;
    line-height:1.8;
    margin-bottom:34px;
}

.hero-buttons,
.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.hero-stats{
    gap:38px;
    margin-top:42px;
}

.stat h3{
    font-size:31px;
    line-height:1;
    color:var(--ink);
    margin-bottom:7px;
}

.stat p{
    font-size:14px;
    color:var(--muted);
    margin:0;
}

.hero-visual{
    position:relative;
    min-height:560px;
}

.dashboard{
    --hero-float-x:0;
    position:absolute;
    inset:90px 0 auto auto;
    width:min(100%,540px);
    padding:24px;
    background:#fff;
    border:1px solid rgba(219,234,254,0.9);
    border-radius:24px;
    box-shadow:var(--shadow);
    animation:floatDashboard 6s ease-in-out infinite;
}

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.dashboard-title{
    font-size:18px;
    font-weight:900;
}

.live-pill{
    padding:6px 10px;
    color:#166534;
    background:#dcfce7;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.widget{
    min-height:124px;
    padding:18px;
    border:1px solid var(--line);
    border-radius:18px;
    background:linear-gradient(145deg,#f8fbff,#fff);
}

.widget h4,
.floating-card h4{
    font-size:14px;
    margin-bottom:14px;
}

.widget-bar,
.progress{
    height:10px;
    overflow:hidden;
    background:#dbeafe;
    border-radius:999px;
}

.widget-fill,
.progress span{
    display:block;
    height:100%;
    width:72%;
    border-radius:999px;
    background:linear-gradient(90deg,var(--blue),#60a5fa);
    transform-origin:left center;
    animation:barPulse 3.6s ease-in-out infinite;
}

.mini-chart{
    display:flex;
    align-items:flex-end;
    gap:8px;
    height:48px;
    margin-top:18px;
}

.mini-chart span{
    flex:1;
    min-width:10px;
    border-radius:8px 8px 0 0;
    background:linear-gradient(180deg,#60a5fa,var(--blue));
}

.floating-card{
    position:absolute;
    width:220px;
    padding:20px;
    background:#fff;
    border:1px solid rgba(219,234,254,0.95);
    border-radius:18px;
    box-shadow:0 20px 45px rgba(15,23,42,0.1);
    animation:floatCard 5.4s ease-in-out infinite;
}

.card-1{
    top:20px;
    left:0;
    animation-delay:-0.8s;
}

.card-2{
    right:18px;
    bottom:18px;
    animation-delay:-1.6s;
}

.card-3{
    left:34px;
    bottom:78px;
    animation-delay:-2.4s;
}

@keyframes floatDashboard{
    0%,100%{
        transform:translate(var(--hero-float-x),0);
    }
    50%{
        transform:translate(var(--hero-float-x),-18px);
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-14px);
    }
}

@keyframes barPulse{
    0%,100%{
        filter:saturate(1);
        opacity:0.9;
    }
    50%{
        filter:saturate(1.25);
        opacity:1;
    }
}

.products-section,
.booking-section,
.contact-section{
    padding:112px 7%;
    background:#fff;
}

.products-grid,
.industrial-grid,
.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:26px;
}

.product-card,
.industrial-card,
.industry-card,
.kpi-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:32px;
    box-shadow:0 12px 28px rgba(15,23,42,0.04);
    transition:transform 0.28s ease,box-shadow 0.28s ease,border-color 0.28s ease;
}

.product-card:hover,
.industrial-card:hover,
.industry-card:hover{
    transform:translateY(-8px);
    border-color:#bfdbfe;
    box-shadow:0 22px 48px rgba(15,23,42,0.09);
}

.product-card:before,
.industrial-card:before,
.industry-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--blue),#60a5fa);
}

.product-icon,
.industrial-icon,
.industry-icon{
    width:66px;
    height:66px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--blue);
    background:var(--soft);
    border-radius:18px;
    font-size:26px;
    font-weight:900;
    margin-bottom:22px;
}

.product-card h3,
.industrial-card h3,
.industry-card h3{
    color:var(--ink);
    font-size:25px;
    margin-bottom:14px;
}

.product-card p,
.industrial-card p,
.industry-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
    margin-bottom:20px;
}

.product-features,
.industry-features,
.booking-info ul,
.tech-list{
    list-style:none;
}

.product-features li,
.industry-features li,
.tech-list li,
.booking-info li{
    padding:7px 0;
    color:var(--text);
    font-size:14px;
}

.product-features li:before,
.industry-features li:before,
.tech-list li:before,
.booking-info li:before{
    content:"\2713";
    display:inline-block;
    color:var(--green);
    font-weight:900;
    margin-right:9px;
}

.learn-btn{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:10px 16px;
    color:#fff;
    background:var(--blue);
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}

.learn-btn:hover{
    background:var(--blue-dark);
}

.enterprise-banner,
.ai-enterprise,
.global-enterprise{
    margin-top:72px;
    padding:50px;
    color:#fff;
    text-align:center;
    border-radius:26px;
    background:linear-gradient(135deg,#0f172a,#1e40af);
}

.enterprise-banner h2,
.ai-enterprise h2,
.global-enterprise h2{
    font-size:clamp(30px,4vw,44px);
    line-height:1.15;
    margin-bottom:18px;
}

.enterprise-banner p,
.ai-enterprise p,
.global-enterprise p{
    max-width:940px;
    margin:0 auto;
    color:#dbeafe;
    font-size:17px;
    line-height:1.75;
}

.industrial-section{
    padding:112px 7%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.industrial-container,
.industries-container,
.booking-container,
.contact-container{
    max-width:1500px;
    margin:auto;
}

.tech-tag{
    display:inline-flex;
    padding:9px 12px;
    color:var(--blue);
    background:var(--soft);
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.ai-grid,
.global-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin-top:38px;
}

.ai-box,
.global-box{
    padding:22px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:16px;
}

.ai-box h4,
.global-box h4{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.ai-box span,
.global-box span{
    color:#cbd5e1;
    font-size:14px;
}

.industries-section{
    padding:112px 7%;
    background:#fff;
}

.booking-section{
    background:linear-gradient(135deg,#f8fbff,#ffffff);
}

.booking-grid,
.contact-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,520px);
    gap:42px;
}

.booking-form,
.contact-form{
    padding:40px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
}

.form-grid,
.contact-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.input-group.full,
.contact-group.full{
    grid-column:1 / -1;
}

label{
    display:block;
    margin-bottom:9px;
    color:var(--text);
    font-size:14px;
    font-weight:800;
}

input,
select,
textarea{
    width:100%;
    min-height:48px;
    padding:13px 14px;
    color:var(--ink);
    background:#f8fbff;
    border:1px solid var(--line);
    border-radius:10px;
    font:inherit;
    outline:none;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#93c5fd;
    box-shadow:0 0 0 4px rgba(37,99,235,0.1);
    background:#fff;
}

textarea{
    min-height:145px;
    resize:vertical;
}

.book-btn,
.send-btn{
    width:100%;
    margin-top:22px;
    padding:16px;
    color:#fff;
    background:var(--blue);
    border:0;
    border-radius:12px;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
}

.book-btn:hover,
.send-btn:hover{
    background:var(--blue-dark);
}

.booking-info,
.contact-info{
    padding:40px;
    color:#fff;
    background:var(--ink);
    border-radius:24px;
}

.booking-info h3,
.contact-info h3{
    font-size:30px;
    margin-bottom:26px;
}

.booking-info li{
    color:#dbeafe;
}

.calendar-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:30px;
}

.calendar-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 16px;
    color:#fff;
    text-align:center;
    text-decoration:none;
    border-radius:10px;
    font-weight:900;
}

.google{
    background:var(--blue);
}

.outlook{
    background:#111827;
    border:1px solid rgba(255,255,255,0.16);
}

.timezone-box{
    margin-top:24px;
    padding:18px;
    color:#bfdbfe;
    background:rgba(37,99,235,0.12);
    border:1px solid rgba(147,197,253,0.24);
    border-radius:14px;
    line-height:1.6;
    font-weight:700;
}

.kpi-section{
    padding:90px 7%;
    background:linear-gradient(135deg,#eff6ff,#ffffff);
}

.kpi-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    max-width:1300px;
    margin:auto;
}

.kpi-card{
    text-align:center;
    border-radius:20px;
}

.kpi-number{
    color:var(--blue);
    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.kpi-card p{
    color:var(--text);
    font-weight:700;
}

.info-box{
    margin-bottom:24px;
}

.info-box h4{
    color:#93c5fd;
    margin-bottom:8px;
}

.info-box p{
    color:#cbd5e1;
    line-height:1.7;
}

.footer{
    padding:66px 7% 34px;
    color:#fff;
    background:var(--ink);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:38px;
}

.footer h3{
    font-size:21px;
    margin-bottom:18px;
}

.footer p,
.footer li{
    color:#cbd5e1;
    line-height:1.8;
}

.footer ul{
    list-style:none;
}

.footer a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:42px;
    padding-top:26px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#94a3b8;
    text-align:center;
}

@media(max-width:1180px){
    .navbar{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .nav-links{
        order:3;
        width:100%;
        justify-content:flex-start;
        flex-wrap:wrap;
    }

    .hero{
        grid-template-columns:1fr;
        padding-top:160px;
    }

    .hero-visual{
        min-height:500px;
    }

    .dashboard{
        left:50%;
        right:auto;
        --hero-float-x:-50%;
    }
}

@media(max-width:960px){
    .booking-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .ai-grid,
    .global-grid,
    .kpi-grid,
    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){
    .navbar{
        position:static;
        padding:18px 5%;
    }

    .nav-actions{
        width:100%;
    }

    .nav-actions .btn{
        flex:1;
    }

    .hero,
    .products-section,
    .industrial-section,
    .industries-section,
    .booking-section,
    .contact-section,
    .kpi-section,
    .footer{
        padding-left:5%;
        padding-right:5%;
    }

    .hero{
        padding-top:62px;
    }

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

    .dashboard,
    .floating-card{
        position:relative;
        inset:auto;
        left:auto;
        right:auto;
        bottom:auto;
        width:100%;
        transform:none;
        margin-top:18px;
    }

    .dashboard{
        --hero-float-x:0;
    }

    .dashboard-grid,
    .form-grid,
    .contact-form-grid,
    .ai-grid,
    .global-grid,
    .kpi-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .enterprise-banner,
    .ai-enterprise,
    .global-enterprise,
    .booking-form,
    .booking-info,
    .contact-form,
    .contact-info{
        padding:28px;
    }
}
