*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Verdana,Arial,sans-serif;
    background:#f5f7fb;
    color:#27313d;
    line-height:1.7;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

.site-header{
    background:#ffffff;
    border-bottom:1px solid #dde3ea;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#10233f;
}

.logo span{
    color:#1e88e5;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:#27313d;
    font-weight:600;
}

.hero{
    background:linear-gradient(135deg,#10233f,#1e88e5);
    color:white;
    padding:90px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:center;
}

.eyebrow{
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:12px;
}

h1{
    font-size:56px;
    line-height:1.1;
}

.hero-card{
    background:white;
    color:#27313d;
    padding:30px;
    border-radius:20px;
}

.button{
    display:inline-block;
    padding:14px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.primary{
    background:white;
    color:#10233f;
}

.site-footer{
    background:#10233f;
    color:white;
    padding:30px 0;
    text-align:center;
}

@media(max-width:900px){

.hero-grid{
    grid-template-columns:1fr;
}

h1{
    font-size:38px;
}

}
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.section{
    padding:70px 0;
}

.hero-card{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

@media(max-width:900px){

.cards{
    grid-template-columns:1fr;
}

}
.form-container{
    max-width:800px;
}

.form{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.form label{
    display:block;
    margin-top:15px;
    font-weight:600;
}

.form input,
.form select{
    width:100%;
    padding:12px;
    border:1px solid #d8dce5;
    border-radius:10px;
    margin-top:5px;
    font-size:16px;
}

.checkbox{
    display:flex !important;
    gap:10px;
    align-items:flex-start;
    margin-top:15px;
}

.checkbox input{
    width:auto;
}

.form button{
    margin-top:20px;
}
.pro-hero{
    min-height:auto;
    padding:60px 0;
    background:
        linear-gradient(135deg,rgba(16,35,63,0.95),rgba(30,136,229,0.86)),
        url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    color:white;
    display:flex;
    align-items:center;
}

.pro-hero-grid{
    display:grid;
    grid-template-columns:1.6fr 0.6fr;

.pro-hero h1{
    font-size:58px;
    max-width:850px;
    margin:20px 0;
}

.pro-hero p{
    font-size:20px;
    max-width:760px;
}

.pro-hero-panel{
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.25);
    backdrop-filter:blur(14px);
    padding:34px;
    border-radius:28px;
}

.mini-stat{
    background:white;
    color:#10233f;
    padding:16px;
    border-radius:18px;
    margin-top:18px;
}

.mini-stat strong{
    display:block;
    font-size:28px;
}

.section-heading{
    max-width:820px;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:44px;
    margin:10px 0;
}

.eyebrow.dark{
    color:#1e88e5;
    font-weight:800;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.feature-card{
    background:white;
    border-radius:24px;
    padding:30px;
    box-shadow:0 12px 35px rgba(16,35,63,0.08);
}

.icon{
    font-size:34px;
    margin-bottom:16px;
}

.light{
    background:#eef4fb;
}

.price{
    font-size:28px;
    font-weight:800;
    color:#1e88e5;
}

.dark-button{
    background:#10233f;
    color:white;
}

.ecosystem{
    background:linear-gradient(135deg,#10233f,#1e88e5);
    color:white;
}

.ecosystem-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
    align-items:center;
}

.ecosystem-box{
    background:white;
    color:#10233f;
    border-radius:28px;
    padding:34px;
}

.ecosystem-box li{
    margin-bottom:12px;
    font-weight:700;
}

.insight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.insight-card{
    background:white;
    border-radius:22px;
    padding:28px;
    box-shadow:0 12px 35px rgba(16,35,63,0.08);
}

.insight-card strong{
    display:block;
    font-size:20px;
    margin-bottom:10px;
}

.insight-card span{
    color:#6d7785;
}

.final-cta{
    background:#10233f;
    color:white;
    text-align:center;
    padding:80px 0;
}

.final-cta h2{
    font-size:48px;
}

@media(max-width:1000px){

.pro-hero-grid,
.ecosystem-grid,
.feature-grid,
.insight-grid{
    grid-template-columns:1fr;
}

.pro-hero h1{
    font-size:46px;
}

}
.secondary{
    background:transparent;
    border:2px solid white;
    color:white;
    margin-left:15px;
}

.device-check{
    background:#f5f7fb;
    padding:80px 0;
}

.device-box{
    background:white;
    border:1px solid #dde3ea;
    border-radius:28px;
    padding:45px;
    box-shadow:0 18px 45px rgba(16,35,63,0.08);
}

.device-box h2{
    font-size:44px;
    margin:15px 0;
}

.device-search{
    display:grid;
    grid-template-columns:1fr auto;
    gap:15px;
    margin:30px 0;
}

.device-search input{
    width:100%;
    padding:20px;
    border:1px solid #ccd6e0;
    border-radius:999px;
    font-size:17px;
}

.device-search button{
    padding:18px 30px;
    border:none;
    border-radius:999px;
    background:#10233f;
    color:white;
    font-weight:800;
    cursor:pointer;
}

.device-result{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:22px;
    align-items:center;
    border-radius:20px;
    padding:24px;
    border:1px solid transparent;
}

.check-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#d7f2e3;
    color:#22a66a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:800;
}

.device-note{
    color:#6d7785;
    font-size:14px;
}

@media(max-width:850px){

    .device-search,
    .device-result{
        grid-template-columns:1fr;
    }

    .device-box h2{
        font-size:34px;
    }

}

.device-result.result-success{
    background:#eefaf4;
    border-color:#9ad9b7;
}

.device-result.result-success .check-icon{
    background:#d7f2e3;
    color:#22a66a;
}

.device-result.result-warning{
    background:#fff8e8;
    border-color:#f0c36d;
}

.device-result.result-warning .check-icon{
    background:#fff1c7;
    color:#b7791f;
}

.device-result.result-error{
    background:#fff0f0;
    border-color:#ef9a9a;
}

.device-result.result-error .check-icon{
    background:#ffe0e0;
    color:#c62828;
}

.form textarea{
    width:100%;
    min-height:130px;
    padding:12px;
    border:1px solid #d8dce5;
    border-radius:10px;
    margin-top:5px;
    font-size:16px;
    font-family:Verdana,Arial,sans-serif;
}

/* ADMIN */

.admin-table-wrapper{
    overflow-x:auto;
    margin-top:25px;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.admin-table th{
    background:#10233f;
    color:white;
    text-align:left;
    padding:14px;
    font-size:14px;
}

.admin-table td{
    padding:14px;
    border-bottom:1px solid #e8edf3;
    vertical-align:top;
}

.admin-table tr:hover{
    background:#f8fbff;
}

.admin-table td:first-child{
    font-weight:bold;
}

.status-new{
    color:#1e88e5;
    font-weight:700;
}

.status-contacted{
    color:#f39c12;
    font-weight:700;
}

.status-closed{
    color:#27ae60;
    font-weight:700;
}

/* ADMIN FORCE STYLE */

.admin-table-wrapper{
    width:100% !important;
    overflow-x:auto !important;
    margin-top:25px !important;
}

table.admin-table{
    width:100% !important;
    border-collapse:collapse !important;
    background:#ffffff !important;
    border-radius:16px !important;
    overflow:hidden !important;
    box-shadow:0 10px 25px rgba(0,0,0,0.08) !important;
}

table.admin-table thead th{
    background:#10233f !important;
    color:#ffffff !important;
    text-align:left !important;
    padding:14px !important;
    font-size:14px !important;
    white-space:nowrap !important;
}

table.admin-table tbody td{
    padding:14px !important;
    border-bottom:1px solid #e8edf3 !important;
    vertical-align:top !important;
    background:#ffffff !important;
}

table.admin-table tbody tr:hover td{
    background:#f8fbff !important;
}

table.admin-table td:first-child{
    font-weight:700 !important;
}