 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    :root {
        --primary-color: #ff8c42; /* Updated Primary Orange */
        --primary-hover: #e67a35;
        --secondary-color: #0a1931;
        --teal-accent: #00a99d; 
        --card-bg: #f3f7ff;
        --text-dark: #0a1931;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #f4f7f9;
        min-height: 100vh;
    }

    /* --- PLAN GRID DESIGN --- */
    /* ===== PLAN GRID ===== */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}


/* ===== PLAN GRID ===== */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}


/* ===== PLAN CARD ===== */
.plan-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    min-height: 260px;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* ===== LOGO BOX ===== */
.plan-logo-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ===== PLAN TYPE BADGE ===== */
.plan-type {
    display: inline-block;
    background: #ffe8d6;
    color: #ff6b00;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}


/* ===== TITLE ===== */
.plan-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0 5px;
    line-height: 1.4;
}


/* ===== PRICE ===== */
.plan-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 5px 0;
}


/* ===== SUBTITLE ===== */
.plan-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #777;
    margin-bottom: 10px;
}


/* ===== BUTTON ===== */
.btn-plan-continue {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-plan-continue:hover {
    opacity: 0.9;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .plan-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .plan-price {
        font-size: 26px;
    }
}
.btn-plan-continue:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

    .btn-plan-continue:hover {
        background-color: var(--primary-hover);
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
    }

    /* --- HEADER STYLES --- */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h1 {
        font-weight: 800;
        color: var(--secondary-color);
        font-size: 32px;
    }

    @media (max-width: 768px) {
        .plan-grid { grid-template-columns: 1fr; }
    }
     footer {
        background-color: var(--primary-dark);
        color: white;
        padding: 50px 0;
        margin-top: 0px !important;
        text-align: center;
        position: relative;
    }