:root{
    --mpro-blue:#245BFF;
    --mpro-dark:#07111f;
    --mpro-green:#16A34A;
    --mpro-orange:#F59E0B;
    --mpro-bg:#F5F8FF;
    --mpro-muted:#64748B;
    --mpro-line:#E2E8F0;
    --mpro-card:#FFFFFF;
    --mpro-shadow:0 22px 70px rgba(15,23,42,.10);
}
*{box-sizing:border-box}
body{
    margin:0;
    background:var(--mpro-bg);
    color:var(--mpro-dark);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}
a{text-decoration:none;color:inherit}
.mpro-container{width:min(1160px,calc(100% - 32px));margin:auto}
.mpro-header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(226,232,240,.9);
}
.mpro-header-inner{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}
.mpro-logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:23px;
    font-weight:950;
}
.mpro-logo-icon{
    width:48px;
    height:48px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:linear-gradient(135deg,var(--mpro-blue),#102033);
    box-shadow:0 16px 38px rgba(36,91,255,.22);
}
.mpro-nav{
    display:flex;
    gap:18px;
    align-items:center;
    font-size:14px;
    font-weight:850;
    color:var(--mpro-muted);
}
.mpro-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:0;
    cursor:pointer;
    padding:14px 20px;
    border-radius:999px;
    font-weight:950;
    color:#fff;
    background:var(--mpro-green);
    box-shadow:0 18px 38px rgba(22,163,74,.20);
    transition:.18s ease;
}
.mpro-btn:hover{transform:translateY(-2px)}
.mpro-btn.blue{background:var(--mpro-blue);box-shadow:0 18px 38px rgba(36,91,255,.22)}
.mpro-btn.dark{background:var(--mpro-dark);box-shadow:0 18px 38px rgba(15,23,42,.22)}
.mpro-btn.light{
    background:#fff;
    color:var(--mpro-dark);
    border:1px solid var(--mpro-line);
    box-shadow:none;
}
.mpro-hero{
    padding:72px 0 54px;
    background:
        radial-gradient(circle at top left,rgba(245,158,11,.18),transparent 28%),
        radial-gradient(circle at bottom right,rgba(36,91,255,.18),transparent 30%),
        linear-gradient(180deg,#fff,var(--mpro-bg));
}
.mpro-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
    gap:42px;
    align-items:center;
}
.mpro-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border-radius:999px;
    background:#FFF7ED;
    border:1px solid #FED7AA;
    color:#B45309;
    font-size:13px;
    font-weight:950;
}
.mpro-kicker:before{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--mpro-green);
}
.mpro-hero h1{
    margin:20px 0 18px;
    font-size:clamp(38px,5.4vw,72px);
    line-height:1.02;
    letter-spacing:-.055em;
}
.mpro-hero h1 span{color:var(--mpro-blue)}
.mpro-hero p{
    color:var(--mpro-muted);
    line-height:1.75;
    font-size:18px;
    font-weight:650;
    max-width:780px;
}
.mpro-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}
.mpro-proof-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:26px;
}
.mpro-proof{
    background:#fff;
    border:1px solid var(--mpro-line);
    border-radius:22px;
    padding:18px;
    box-shadow:0 12px 34px rgba(15,23,42,.05);
}
.mpro-proof strong{
    display:block;
    color:var(--mpro-blue);
    font-size:28px;
    font-weight:950;
}
.mpro-proof span{
    color:var(--mpro-muted);
    font-size:13px;
    font-weight:850;
}
.mpro-card{
    background:#fff;
    border:1px solid var(--mpro-line);
    border-radius:36px;
    padding:30px;
    box-shadow:var(--mpro-shadow);
}
.mpro-card h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.12;
    letter-spacing:-.03em;
}
.mpro-card p{
    color:var(--mpro-muted);
    line-height:1.7;
    font-weight:650;
}
.mpro-card ul{
    list-style:none;
    padding:0;
    margin:20px 0;
    display:grid;
    gap:11px;
}
.mpro-card li{
    background:#F8FAFC;
    border:1px solid var(--mpro-line);
    border-radius:17px;
    padding:13px 14px;
    font-weight:850;
    line-height:1.45;
}
.mpro-card li:before{
    content:"✓";
    color:var(--mpro-green);
    font-weight:950;
    margin-right:8px;
}
.mpro-section{padding:64px 0}
.mpro-soft{background:linear-gradient(180deg,#F8FBFF,#EEF5FF)}
.mpro-section-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 34px;
}
.mpro-section-head h2{
    margin:14px 0 12px;
    font-size:clamp(30px,4vw,52px);
    line-height:1.08;
    letter-spacing:-.04em;
}
.mpro-section-head p{
    color:var(--mpro-muted);
    line-height:1.7;
    font-size:17px;
    font-weight:650;
}
.mpro-grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.mpro-grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.mpro-box{
    background:#fff;
    border:1px solid var(--mpro-line);
    border-radius:28px;
    padding:24px;
    box-shadow:0 18px 48px rgba(15,23,42,.065);
}
.mpro-icon{
    width:58px;
    height:58px;
    border-radius:20px;
    background:#EFF6FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:15px;
}
.mpro-box h3{
    margin:0 0 10px;
    color:var(--mpro-blue);
    font-size:23px;
    line-height:1.18;
}
.mpro-box p{
    margin:0;
    color:var(--mpro-muted);
    line-height:1.65;
    font-weight:650;
}
.mpro-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:start;
}
.mpro-list{
    display:grid;
    gap:12px;
}
.mpro-list div{
    background:#fff;
    border:1px solid var(--mpro-line);
    border-radius:20px;
    padding:17px 18px;
    box-shadow:0 12px 34px rgba(15,23,42,.045);
    font-weight:850;
    line-height:1.55;
}
.mpro-list div:before{
    content:"✓";
    color:var(--mpro-green);
    margin-right:9px;
    font-weight:950;
}
.mpro-final{
    text-align:center;
    border-radius:40px;
    padding:50px 26px;
    background:
        radial-gradient(circle at top left,rgba(245,158,11,.25),transparent 32%),
        linear-gradient(135deg,#07111f,#0F3D91);
    color:#fff;
    box-shadow:0 28px 90px rgba(15,61,145,.24);
}
.mpro-final h2{
    margin:16px auto 12px;
    max-width:880px;
    font-size:clamp(30px,4vw,54px);
    line-height:1.05;
    letter-spacing:-.04em;
}
.mpro-final p{
    color:rgba(255,255,255,.78);
    max-width:760px;
    margin:0 auto 24px;
    line-height:1.7;
    font-weight:650;
}
.mpro-footer{
    background:#07111f;
    color:#CBD5E1;
    padding:32px 0;
    font-weight:700;
}
.mpro-footer-inner{
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
}
.mpro-form{
    display:grid;
    gap:15px;
}
.mpro-form label{
    display:block;
    margin-bottom:7px;
    color:#475569;
    font-size:12px;
    text-transform:uppercase;
    font-weight:950;
    letter-spacing:.04em;
}
.mpro-form input,
.mpro-form select,
.mpro-form textarea{
    width:100%;
    border:1px solid var(--mpro-line);
    border-radius:18px;
    background:#F8FAFC;
    padding:15px 16px;
    font-size:16px;
    font-weight:750;
    outline:none;
}
.mpro-form textarea{min-height:130px;resize:vertical}
.mpro-form input:focus,
.mpro-form select:focus,
.mpro-form textarea:focus{
    border-color:var(--mpro-blue);
    background:#fff;
    box-shadow:0 0 0 4px rgba(36,91,255,.10);
}
.mpro-alert{
    border-radius:18px;
    padding:15px 16px;
    font-weight:850;
    margin-bottom:18px;
}
.mpro-alert.ok{
    background:#ECFDF5;
    border:1px solid #BBF7D0;
    color:#047857;
}
.mpro-alert.err{
    background:#FEF2F2;
    border:1px solid #FECACA;
    color:#B91C1C;
}
@media(max-width:1000px){
    .mpro-nav{display:none}
    .mpro-hero-grid,
    .mpro-split,
    .mpro-grid-3,
    .mpro-grid-4{
        grid-template-columns:1fr;
    }
}
@media(max-width:720px){
    .mpro-container{width:min(100% - 24px,1160px)}
    .mpro-header-inner{min-height:66px}
    .mpro-logo{font-size:20px}
    .mpro-logo-icon{width:42px;height:42px}
    .mpro-header .mpro-btn{padding:11px 14px;font-size:13px}
    .mpro-hero{padding:42px 0 36px}
    .mpro-hero h1{font-size:36px;line-height:1.08}
    .mpro-hero p{font-size:16px}
    .mpro-proof-grid{grid-template-columns:1fr}
    .mpro-card{border-radius:28px;padding:22px}
    .mpro-section{padding:44px 0}
    .mpro-box{border-radius:23px;padding:20px}
    .mpro-final{border-radius:28px;padding:36px 20px}
    .mpro-actions .mpro-btn,
    .mpro-final .mpro-btn{
        width:100%;
        text-align:center;
    }
}