:root{
    --bg:#f4f7fb;
    --panel:#ffffff;
    --panel-soft:#f8fbff;
    --text:#111827;
    --muted:#667085;

    --primary:#2563eb;
    --primary-dark:#1d4ed8;

    --green:#16a34a;

    --border:#e5eaf2;

    --shadow:
        0 10px 30px rgba(15,23,42,.05);

    --radius:24px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at top left,
        rgba(37,99,235,.08),
        transparent 28%),

        radial-gradient(circle at top right,
        rgba(22,163,74,.05),
        transparent 22%),

        var(--bg);

    color:var(--text);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    min-height:100vh;
}

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

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:100;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    border-bottom:
        1px solid var(--border);
}

.nav{
    min-height:78px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:24px;
}

.logo{
    color:#111827;

    font-size:32px;
    font-weight:950;

    letter-spacing:-.05em;
}

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

.menu{
    display:flex;
    align-items:center;
    gap:10px;
}

.menu a{
    color:#475467;

    text-decoration:none;

    font-size:15px;
    font-weight:850;

    padding:11px 15px;

    border-radius:14px;

    transition:.18s ease;
}

.menu a:hover{
    background:#eef4ff;
    color:var(--primary);
}

/* HERO */

.hero{
    padding:70px 0 50px;
}

.hero-grid{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        370px;

    gap:42px;

    align-items:start;
}

.badge{
    display:inline-flex;
    align-items:center;

    padding:10px 16px;

    border-radius:999px;

    background:#eef4ff;

    border:1px solid #dbe8ff;

    color:var(--primary);

    font-size:14px;
    font-weight:900;

    margin-bottom:24px;
}

.hero h1{
    max-width:760px;

    color:#0f172a;

    font-size:64px;
    line-height:1;

    letter-spacing:-.06em;

    margin-bottom:24px;
}

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

.hero p{
    max-width:780px;

    color:var(--muted);

    font-size:21px;
    line-height:1.75;

    margin-bottom:30px;
}

/* NOTICE */

.notice-box{
    max-width:760px;

    background:#fff7ed;

    border:1px solid #fed7aa;

    color:#9a3412;

    border-radius:18px;

    padding:18px 20px;

    font-size:15px;
    line-height:1.7;
    font-weight:750;

    margin-bottom:28px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-height:50px;

    padding:14px 22px;

    border-radius:16px;

    text-decoration:none;

    font-size:15px;
    font-weight:900;

    transition:.18s ease;
}

.btn-primary{
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #4f8cff
        );

    color:#fff;

    box-shadow:
        0 14px 30px rgba(37,99,235,.24);
}

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

.btn-secondary{
    background:#fff;

    border:1px solid var(--border);

    color:#344054;
}

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

    color:var(--primary);

    border-color:#c7d7f3;
}

/* HERO CARD */

.hero-card{
    background:rgba(255,255,255,.96);

    border:1px solid var(--border);

    border-radius:30px;

    padding:26px;

    box-shadow:var(--shadow);
}

.hero-card-title{
    color:#0f172a;

    font-size:24px;
    font-weight:950;

    margin-bottom:18px;
}

.hero-stats{
    display:grid;
    gap:14px;
}

.stat-box{
    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:18px;
}

.stat-box h3{
    color:var(--primary);

    font-size:38px;
    line-height:1;

    margin-bottom:8px;

    letter-spacing:-.05em;
}

.stat-box p{
    color:var(--muted);

    font-weight:850;
}

/* PACKAGES */

.packages{
    padding:55px 0 90px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-end;

    margin-bottom:28px;
}

.section-title{
    color:#101828;

    font-size:44px;
    font-weight:950;

    letter-spacing:-.05em;

    margin-bottom:10px;
}

.section-lead{
    max-width:850px;

    color:var(--muted);

    font-size:17px;
    line-height:1.7;
}

/* GRID */

.cards{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(340px,1fr));

    gap:22px;

    align-items:stretch;
}

/* CARD */

.card{
    background:rgba(255,255,255,.97);

    border:1px solid var(--border);

    border-radius:26px;

    padding:22px;

    box-shadow:
        0 8px 22px rgba(15,23,42,.05);

    transition:.18s ease;

    display:flex;
    flex-direction:column;
}

.card:hover{
    transform:translateY(-4px);

    border-color:#cbdaf5;

    box-shadow:
        0 18px 40px rgba(15,23,42,.09);
}

.card-top{
    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:14px;

    margin-bottom:16px;
}

.bank-name{
    color:#667085;

    font-size:13px;
    font-weight:900;

    margin-bottom:7px;
}

.package-name{
    color:#101828;

    font-size:18px;
    line-height:1.25;

    font-weight:950;

    letter-spacing:-.03em;

    max-width:270px;
}

/* PRICE BADGE */

.price{
    flex:0 0 auto;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    max-width:170px;

    color:#15803d;

    background:#f0fdf4;

    border:1px solid #bbf7d0;

    border-radius:999px;

    padding:7px 12px;

    font-size:13px;
    line-height:1.2;

    font-weight:950;

    text-align:center;
}

.meta-row{
    color:#667085;

    font-size:13px;
    font-weight:800;

    margin-bottom:16px;
}

/* FEATURES */

.features{
    display:flex;
    flex-wrap:wrap;

    gap:9px;

    margin-bottom:16px;
}

.features span{
    display:inline-flex;
    align-items:center;

    padding:8px 11px;

    border-radius:999px;

    background:#f2f4f7;

    color:#475467;

    font-size:13px;
    font-weight:850;
}

/* CONDITION */

.condition-text{
    background:#f8fafc;

    border:1px solid #e7edf5;

    color:#475467;

    border-radius:14px;

    padding:12px 14px;

    line-height:1.55;

    font-size:13px;
    font-weight:700;

    margin-bottom:16px;
}

/* DETAILS */

.fee-details{
    display:grid;
    gap:8px;

    color:#475467;

    font-size:14px;
    line-height:1.6;

    margin-bottom:20px;
}

.fee-details strong{
    color:#111827;
}

/* FOOTER PART */

.card-footer{
    margin-top:auto;

    padding-top:16px;

    border-top:1px solid var(--border);
}

.card-footer a{
    color:var(--primary);

    text-decoration:none;

    font-weight:900;
}

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

/* LEGAL */

.legal-note{
    margin-top:34px;

    background:#f8fafc;

    border:1px solid var(--border);

    color:#475467;

    border-radius:20px;

    padding:22px;

    line-height:1.75;

    font-size:14px;
    font-weight:700;
}

.legal-note strong{
    color:#111827;
}

/* FOOTER */

.footer{
    margin-top:40px;

    border-top:1px solid var(--border);

    background:#fff;

    padding:34px 0;

    color:#667085;

    font-weight:750;
}

.footer-grid{
    display:flex;
    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;
}

/* RESPONSIVE */

@media(max-width:1100px){

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

    .hero-card{
        max-width:560px;
    }

    .hero h1{
        font-size:52px;
    }
}

@media(max-width:760px){

    .nav{
        flex-direction:column;

        align-items:flex-start;

        padding:18px 0;
    }

    .menu{
        width:100%;

        overflow:auto;

        padding-bottom:4px;
    }

    .hero{
        padding:48px 0 34px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:17px;
    }

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

    .section-title{
        font-size:34px;
    }

    .card-top{
        flex-direction:column;
    }

    .price{
        max-width:100%;
    }
}
.hero-counter{
    display:inline-flex;
    flex-direction:column;

    margin-top:18px;

    padding:16px 20px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.hero-counter strong{
    color:var(--primary);

    font-size:34px;
    line-height:1;

    font-weight:950;

    letter-spacing:-.05em;

    margin-bottom:6px;
}

.hero-counter span{
    color:#667085;

    font-size:14px;
    font-weight:800;
}