:root{
    --bg:#f6f9fc;
    --text:#0f172a;
    --muted:#64748b;
    --card:rgba(255,255,255,.85);
}

body{
    background:#fff;
    color:var(--text);
}

/* HERO */

.hero{
    padding:170px 8% 70px;
    text-align:center;
    max-width:900px;
    margin:auto;
}

.hero h1{
    font-size:56px;
    color:var(--blue);
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    line-height:1.7;
    color:var(--muted);
}

/* PRICING */

.section{
    max-width:1100px;
    margin:auto;
    padding:140px 8% 100px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:36px;
    align-items:stretch;
}

.pricing-card{
    background:#f8fbff;
    border:1px solid #dbe8f6;
    border-radius:28px;
    padding:44px 40px;
    box-shadow:0 10px 30px rgba(20,61,122,.06);

    display:flex;
    flex-direction:column;
}

.pricing-card .cta{
    margin-top:auto;
}

.pricing-card:hover{
    transform:translateY(-8px);
}

.pricing-card:nth-child(2):hover{
    transform:translateY(-8px);
}

.pricing-card h2{
    color:var(--blue);
    margin-bottom:16px;
}

.price{
    font-size:54px;
    font-weight:800;
    margin-bottom:22px;
}

.price span{
    font-size:16px;
    color:var(--muted);
}

.pricing-card ul{
    list-style:none;
}

.pricing-card li{
    padding:8px 0;
    color:var(--muted);
}

.pricing-card li::before{
    content:"✓ ";
    color:var(--green);
    font-weight:bold;
}

.pricing-card:nth-child(2){
    background:var(--blue);
    color:#fff;
    border:2px solid var(--green);
    box-shadow:0 20px 50px rgba(20,61,122,.25);
}

.pricing-card:nth-child(2) h2,
.pricing-card:nth-child(2) .price,
.pricing-card:nth-child(2) li,
.pricing-card:nth-child(2) .price span{
    color:#fff;
}

.pricing-card:nth-child(2) li::before{
    color:var(--green);
}

.pricing-card:nth-child(2) .primary{
    background:#fff;
    color:var(--blue);
}

.pricing-card:nth-child(2) .primary:hover{
    background:#f4f7fb;
}

.secondary{
    background:white;
    color:var(--blue);
    border:1px solid var(--blue);
}

.primary{
    background:var(--blue);
    color:white;
}

.strip{
    text-align:center;
    padding:100px 8%;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:white;
}

.strip h2{
    margin-bottom:20px;
}

.strip p{
    max-width:700px;
    margin:auto;
    color:var(--muted);
}

footer{
    text-align:center;
    padding:60px;
    color:var(--muted);
}

/* MOBILE */

@media(max-width:900px){

    .hero{
        padding:140px 24px 50px;
    }

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

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

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

.badge{
    display:inline-block;
    margin-bottom:18px;
    padding:6px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}

/* ==========================================
   PREMIUM ACCOUNT CHOICE
========================================== */

.premium-choice-modal {

    position: fixed;
    inset: 0;

    background: rgba(15, 23, 42, 0.45);

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

    opacity: 0;
    visibility: hidden;

    transition: .2s;

    z-index: 9999;

}

.premium-choice-modal.show {

    opacity: 1;
    visibility: visible;

}

.premium-choice-content {

    width: 420px;
    max-width: calc(100% - 40px);

    background: #ffffff;

    padding: 35px;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .15);

}

.premium-choice-content h2 {

    color: #143D7A;

    margin-bottom: 10px;

}

.premium-choice-content p {

    color: #4b5563;

    margin-bottom: 25px;

}

.premium-choice-actions {

    display: flex;
    flex-direction: column;
    gap: 12px;

}

.premium-choice-actions .cta {

    width: 100%;
    text-decoration: none;

}

.premium-choice-close {

    margin-top: 18px;

    border: none;
    background: none;

    color: #6b7280;

    cursor: pointer;

    font-size: 14px;

}