*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#eef3fb;
    color:#111827;
}

a{
    text-decoration:none;
}

/* HEADER */

.header{
    background:#2563eb;
    color:white;
    padding:20px 42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.brand a{
    color:white;
}

.header strong{
    font-size:26px;
}

.header small{
    font-size:17px;
}

.nav{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.nav a{
    color:white;
    font-size:20px;
    font-weight:bold;
}

.nav a:hover{
    opacity:.85;
}

/* HOME HERO */

.home-hero{
    max-width:1280px;
    margin:36px auto 24px;
    padding:50px;
    border-radius:28px;
    background:linear-gradient(135deg,#071f4d,#2563eb);
    color:white;
    display:grid;
    grid-template-columns:1.35fr .9fr;
    gap:35px;
    align-items:center;
    box-shadow:0 20px 55px rgba(15,23,42,.18);
}

.badge{
    display:inline-block;
    background:#f5b301;
    color:#071f4d;
    padding:9px 18px;
    border-radius:999px;
    font-weight:bold;
    margin-bottom:18px;
}

.home-hero h1{
    font-size:56px;
    line-height:1.08;
    margin:0 0 20px;
}

.home-hero p{
    font-size:21px;
    line-height:1.65;
    opacity:.96;
    margin-bottom:28px;
}

.home-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:15px 28px;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
    background:#2563eb;
    color:white;
}

.gold-btn{
    background:#f5b301;
    color:#071f4d;
}

.light-btn{
    background:white;
    color:#071f4d;
}

.home-right{
    display:grid;
    gap:18px;
}

.quick-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    border-radius:20px;
    padding:26px;
    backdrop-filter:blur(8px);
}

.quick-card h3{
    margin:0 0 8px;
    font-size:26px;
    color:#f5b301;
}

.quick-card p{
    margin:0;
    font-size:20px;
}

/* COMPACT SECTION */

.compact-section{
    max-width:1280px;
    margin:24px auto;
    padding:0 20px;
}

.compact-card{
    background:white;
    border-radius:22px;
    padding:34px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    margin-bottom:22px;
}

.compact-card h2{
    margin:0 0 10px;
    font-size:34px;
    color:#174ea6;
}

.compact-card p{
    margin:0;
    font-size:20px;
}

.plans-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.plan-mini{
    background:white;
    border-radius:22px;
    padding:30px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    border:1px solid #dbeafe;
    position:relative;
}

.plan-mini h3{
    margin:0;
    font-size:24px;
    color:#071f4d;
}

.plan-mini h2{
    margin:12px 0;
    font-size:42px;
    color:#2563eb;
}

.plan-mini p{
    margin:0;
    font-size:18px;
}

.best{
    border:3px solid #f5b301;
}

.best span{
    position:absolute;
    top:-14px;
    right:22px;
    background:#f5b301;
    color:#071f4d;
    padding:7px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:bold;
}

/* CTA */

.final-cta{
    max-width:1280px;
    margin:24px auto 35px;
    padding:34px 24px;
    background:white;
    border-radius:22px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
}

.final-cta h2{
    margin:0 0 18px;
    color:#174ea6;
    font-size:36px;
}

/* GENERAL PAGE SUPPORT */

.container{
    max-width:1300px;
    margin:40px auto;
    padding:0 22px;
}

.card{
    background:white;
    border-radius:22px;
    padding:45px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
}

h1{
    color:#2563eb;
}

input,
select,
textarea{
    width:100%;
    padding:14px;
    margin:8px 0 18px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:17px;
}

input[type="radio"]{
    width:auto;
    margin-right:8px;
}

.table-wrapper{
    width:100%;
    overflow-x:auto;
    margin-top:25px;
    border:1px solid #e5e7eb;
    border-radius:14px;
}

table{
    width:100%;
    min-width:1000px;
    border-collapse:collapse;
}

th{
    background:#2563eb;
    color:white;
    padding:16px;
    font-size:18px;
    white-space:nowrap;
}

td{
    padding:16px;
    border:1px solid #e5e7eb;
    white-space:nowrap;
}

tr:nth-child(even){
    background:#f8fafc;
}

/* FOOTER */

.site-footer{
    background:linear-gradient(135deg,#071f4d,#2563eb);
    color:white;
    text-align:center;
    padding:24px;
    font-size:18px;
    font-weight:500;
    margin-top:40px;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    box-shadow:0 -4px 20px rgba(0,0,0,0.08);
}

.site-footer a{
    color:#f5b301;
    font-weight:700;
    text-decoration:none;
}

.site-footer a:hover{
    text-decoration:underline;
}

/* MOBILE */

@media(max-width:850px){

    .header{
        padding:18px 20px;
    }

    .nav{
        width:100%;
        gap:14px;
    }

    .nav a{
        font-size:15px;
    }

    .home-hero{
        grid-template-columns:1fr;
        margin:18px 14px;
        padding:32px 24px;
    }

    .home-hero h1{
        font-size:38px;
    }

    .home-hero p{
        font-size:18px;
    }

    .plans-row{
        grid-template-columns:1fr;
    }

    .btn{
        width:100%;
        text-align:center;
    }

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

    .card{
        padding:28px;
    }

    .site-footer{
        flex-wrap:wrap;
        font-size:15px;
        line-height:1.6;
        padding:22px 14px;
    }
}