.subtitle a{
	color: #fff;
}
.pricing-section{
    padding:90px 0;
    background:linear-gradient(180deg, rgba(247,147,26,.05), transparent);
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:28px;
    align-items:stretch;
}

.pricing-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:32px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    transition:.25s ease;
}

.pricing-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.15);
}

.pricing-card-featured{
    border:2px solid rgba(247,147,26,.55);
    background:linear-gradient(180deg, rgba(247,147,26,.10), rgba(255,255,255,.03));
    box-shadow:0 25px 70px rgba(247,147,26,.18);
    transform:scale(1.03);
}

.pricing-card h3{
    font-size:1.6rem;
    margin-bottom:10px;
}

.pricing-price{
    font-size:3rem;
    font-weight:800;
    color:var(--primary);
    margin:18px 0;
}

.pricing-card p{
    color:var(--muted);
    margin-bottom:20px;
}

.pricing-card ul{
    list-style:none;
    margin-bottom:28px;
}

.pricing-card ul li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:var(--muted);
}

.pricing-card ul li:last-child{
    border-bottom:none;
}

.pricing-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    font-size:.85rem;
    margin-bottom:18px;
}

.pricing-badge.neutral{
    background:rgba(255,255,255,.06);
    color:var(--muted);
}

.pricing-badge.featured{
    background:linear-gradient(135deg,#f7931a,#ffb14d);
    color:#111;
    font-weight:700;
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    box-shadow:0 10px 30px rgba(247,147,26,.25);
}

/* =========================================
POPUP CHECKOUT SATOSHITAX
========================================= */

.checkout-modal{
    position:fixed;
    inset:0;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.25s ease;
}

.checkout-modal.active{
    opacity:1;
    visibility:visible;
}

.checkout-modal-overlay{
    position:absolute;
    inset:0;

    background:rgba(5,10,20,.78);
    backdrop-filter:blur(8px);
}

.checkout-modal-content{
    position:relative;
    z-index:2;

    width:min(560px, calc(100% - 24px));

    background:
        linear-gradient(
            180deg,
            rgba(25,35,70,.98),
            rgba(12,18,35,.98)
        );

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:42px;

    box-shadow:
        0 40px 120px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.03);

    overflow:hidden;
}

.checkout-modal-content::before{
    content:"";

    position:absolute;
    inset:-120px;

    background:
        radial-gradient(
            circle,
            rgba(247,147,26,.12),
            transparent 60%
        );

    pointer-events:none;
}

/* CLOSE */

.checkout-close{
    position:absolute;
    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;
    border-radius:14px;

    background:rgba(255,255,255,.05);

    color:#fff;

    font-size:1rem;
    cursor:pointer;

    transition:.2s ease;
}

.checkout-close:hover{
    background:rgba(255,255,255,.12);
}

/* HEADER */

.checkout-header{
    position:relative;
    z-index:2;

    text-align:center;

    margin-bottom:34px;
}

.checkout-logo img{
    width:72px;
    height:72px;

    margin:0 auto 20px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;
    font-weight:800;

    color:#111;

    background:
        linear-gradient(
            135deg,
            #f7931a,
            #ffb14d
        );

    box-shadow:
        0 12px 30px rgba(247,147,26,.25);
}

.checkout-header h2{
    font-size:2rem;
    line-height:1.1;

    margin-bottom:14px;

    letter-spacing:-1px;
}

.checkout-header p{
    color:var(--muted);
    font-size:1rem;
}

/* FORM */

#checkoutForm{
    position:relative;
    z-index:2;
}

.checkout-field{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.checkout-field label{
    width:140px;
    flex-shrink:0;

    font-size:.95rem;
    font-weight:600;
    color:#fff;
}

.checkout-field input,
.checkout-field select{
    flex:1;

    width:100%;
    height:54px;

    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);
    color:#fff;

    padding:0 16px;
    font-size:1rem;
}

.checkout-field input,
.checkout-field select{
    width:100%;

    height:35px;

    border-radius:8px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:#fff;

    padding:0 18px;

    font-size:1rem;

    outline:none;

    transition:.2s ease;
}
.checkout-field select{
    color:#fff;
    background:rgba(255,255,255,.04);
}

/* Options du dropdown */
.checkout-field select option{
    background:#33303b;
    color:#fff;
}

.checkout-field input:focus,
.checkout-field select:focus{
    border-color:rgba(247,147,26,.5);

    box-shadow:
        0 0 0 4px rgba(247,147,26,.12);
}

.checkout-field input::placeholder{
    color:rgba(255,255,255,.35);
}

/* RGPD */

.checkout-rgpd{
    margin-top:12px;
    margin-bottom:22px;
}

.checkout-rgpd label{
    display:flex;
    align-items:flex-start;
    gap:12px;

    cursor:pointer;
}

.checkout-rgpd input{
    margin-top:4px;
}

.checkout-rgpd span{
    color:var(--muted);
    font-size:.92rem;
    line-height:1.5;
}

/* INFO */

.checkout-info{
    padding:16px 18px;

    border-radius:16px;

    background:rgba(247,147,26,.08);

    border:1px solid rgba(247,147,26,.15);

    color:#ffd29c;

    font-size:.95rem;

    margin-bottom:24px;
}

/* SUBMIT */

.checkout-submit{
    width:100%;
    height:58px;

    border:none;

    font-size:1rem;
    font-weight:700;

    cursor:pointer;
}

/* STRIPE */

.checkout-stripe{
    margin-top:22px;

    text-align:center;

    color:var(--muted);

    font-size:.92rem;
}

.checkout-cards{
    margin-top:8px;

    font-size:.85rem;

    opacity:.7;
}

/* MOBILE */

@media(max-width:640px){

    .checkout-modal-content{
        padding:28px 22px;
        border-radius:22px;
    }

    .checkout-header h2{
        font-size:1.6rem;
    }

    .checkout-logo{
        width:62px;
        height:62px;
        font-size:1.7rem;
    }
	
	.checkout-field{
        flex-direction:column;
        align-items:stretch;
    }

    .checkout-field label{
        width:auto;
    }
}