﻿/* ═══════════════════════════════════════════
   PACKAGES PAGE — REDESIGNED PRICING SECTIONS
   ═══════════════════════════════════════════ */

:root {
    --primary: #002542;
    --primary-dark: #001a30;
    --secondary: #1A3C5E;
    --accent: #fece1a;
    --accent-glow: rgba(254, 206, 26, 0.15);
    --light-bg: #f4f7fb;
    --card-shadow: 0 4px 24px rgba(0, 37, 66, 0.06);
    --card-hover: 0 20px 50px rgba(0, 37, 66, 0.12);
    --radius: 16px;
    --text: #1A1A2E;
    --muted: #6B7280;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.pricing-hero {
    background: linear-gradient(160deg, #001a30 0%, #002542 50%, #0a3a6b 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(254, 206, 26, 0.07) 0%, transparent 70%);
    top: -150px;
    right: -80px;
    border-radius: 50%;
    animation: heroOrb 8s ease-in-out infinite alternate;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 206, 26, 0.04) 0%, transparent 70%);
    bottom: -180px;
    left: -60px;
    border-radius: 50%;
    animation: heroOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroOrb {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(15px, -15px); }
}

.pricing-hero h1 {
    color: #fff !important;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 56px;
    position: relative;
    z-index: 1;
}

.pricing-hero h1 span {
    background: linear-gradient(135deg, #fece1a 30%, #ffe066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero > .container > p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ═══ BILLING TOGGLE (kept for compat) ═══ */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
    margin: 24px auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.billing-toggle button {
    border: none;
    background: transparent;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.billing-toggle button.active {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 2px 12px rgba(254,206,26,0.3);
}

.save-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}


/* ═══════════════════════════════════════
   TAB PILLS  (was at line ~736)
   ═══════════════════════════════════════ */
.pricing-tabs {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 5px !important;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.pricing-tabs .nav-item::before {
    content: unset;
}

.pricing-tabs .nav-item:hover {
    border: unset !important;
}

.pricing-tabs .nav-link {
    border: none;
    border-radius: 40px;
    padding: 11px 28px;
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 20px;
    background: transparent;
    transition: all 0.35s var(--ease);
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.pricing-tabs .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.pricing-tabs .nav-link.active {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(254, 206, 26, 0.35);
}


/* ═══════════════════════════════════════
   PRICING SECTION + PLAN CARDS
   ═══════════════════════════════════════ */
.pricing-section {
    padding: 30px 0 80px;
    background: var(--light-bg);
    position: relative;
}

/* ── Card Shell ── */
.plan-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e7ef;
    transition: all 0.4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
    border-color: transparent;
}

.plan-card:hover::before {
    height: 5px;
}

/* ── Featured Card ── */
.plan-card.featured {
    border-color: rgba(254, 206, 26, 0.5);
    background: #fff;
    box-shadow: 0 8px 40px rgba(254, 206, 26, 0.12), var(--card-shadow);
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
}

.plan-card.featured::before {
    background: linear-gradient(90deg, #fece1a, #ffe066, #fece1a);
    height: 5px;
}

/*.plan-card.featured::after {
    content: '★ POPULAR';
    position: absolute;
    top: 18px;
    right: -30px;
    background: linear-gradient(135deg, #fece1a, #ffe066);
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    padding: 5px 34px;
    transform: rotate(45deg);
    letter-spacing: 0.12em;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(254, 206, 26, 0.4);
}
*/
.plan-card.featured:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 24px 60px rgba(254, 206, 26, 0.18), 0 8px 30px rgba(0, 37, 66, 0.08);
}

/* ── Plan Name ── */
.plan-name {
    font-size: 16px;
    line-height:24px;
    padding: 16px 20px;
    text-align: center;
    border-bottom: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    background: linear-gradient(135deg, #f8fafd, #eef2f8);
    position: relative;
}

.plan-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d0d8e4, transparent);
}
.plan-footer {
    padding: 12px 20px;
}
.plan-card.featured .plan-name {
    background: linear-gradient(135deg, var(--primary), #0a3a6b);
    color: var(--accent) !important;
}

.plan-card.featured .plan-name::after {
    background: linear-gradient(90deg, transparent, rgba(254, 206, 26, 0.25), transparent);
}

/* ── Plan Header / Price ── */
.plan-header {
    padding: 20px 20px 16px;
    text-align: center;
    background: #fff;
}

.plan-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: 1;
}

.plan-price .price-val {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.plan-price sup {
    font-size: 1.4rem;
    vertical-align: super;
}

.text-16 {
    font-size: 14px !important;
    font-weight: 500;
    color: var(--muted);
}

.plan-period {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 17px;
    margin-bottom: 0;
    padding: 8px 14px;
    background: var(--light-bg);
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #e8ecf2;
}

/* ── Plan Limits (kept for compat) ── */
.plan-limits {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.plan-limits span {
    display: block;
    font-size: 14px;
    color: var(--text);
    padding: 3px 0;
}

.plan-limits span i {
    color: var(--primary);
    margin-right: 8px;
    width: 14px;
}

/* ── Plan Body (scrollable) ── */
.plan-body {
    height: 400px;
    overflow-y: auto;
    padding: 18px 20px;
    position: relative;
    flex-grow: 1;
}

.plan-body h6 {
    margin-bottom: 6px;
    margin-top: 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Scrollbar */
.plan-body::-webkit-scrollbar {
    width: 4px;
}

.plan-body::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.plan-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), #e5b800);
    border-radius: 10px;
}

.plan-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ── Feature List ── */
.plan-features {
    list-style: none;
    padding: 0;
    padding-left: 0px !important;
    margin: 0 0 20px;
    flex-grow: 1;
}

    .plan-features li {
        font-size: 14px;
        padding: 5px 0;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .plan-features li i {
            color: #4CAF50;
            margin-top: 2px;
            font-size: 14px;
            flex-shrink: 0;
        }
        .plan-features li::before{
            content:unset !important;
        }
        .plan-features li.more-link {
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
        }

            .plan-features li.more-link:hover {
                text-decoration: underline;
            }

.btn-plan {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #fff;
    transition: all 0.25s;
    cursor: pointer;
}

    .btn-plan:hover, .btn-plan.primary {
        background: var(--primary);
        color: #fff;
    }

.plan-card.featured .btn-plan {
    background: var(--primary);
    color: #fff;
}

    .plan-card.featured .btn-plan:hover {
        background: var(--primary-dark);
    }

/* FREE PLAN STRIP */
.free-strip {
    background: linear-gradient(135deg, #1A3C5E 0%, #2a5a8e 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 32px 0;
}

    .free-strip h4 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.4rem;
        margin: 0;
    }

    .free-strip p {
        margin: 4px 0 0;
        opacity: 0.8;
        font-size: 0.9rem;
    }

    .free-strip .free-features {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .free-strip .free-feat {
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 6px 14px;
        font-size: 0.83rem;
        font-weight: 600;
    }

.btn-free {
    background: #fff;
    color: var(--secondary);
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

    .btn-free:hover {
        background: var(--accent);
        color: #fff;
    }

/* ADD-ONS */
.addons-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
}

.addon-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e8e8f0;
}

    .addon-card:hover {
        box-shadow: var(--card-shadow);
        transform: translateY(-4px);
        border-color: var(--primary);
    }

.addon-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #fff4ef, #ffe0d0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--primary);
}

.addon-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.addon-price {
    font-size: ;
    color: var(--primary);
}

    .addon-price sup {
        font-size: 0.9rem;
    }

.addon-period {
    font-size: 0.78rem;
    color: var(--muted);
}

/* CALCULATOR */
.calculator-section {
    padding: 60px 0;
    background: #f1f1f1;
}

.calc-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 22px;
}

.calc-plan-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.calc-tab {
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
}

    .calc-tab.active {
        border-color: var(--primary);
        color: var(--primary);
        background: #fff8f5;
        font-size: 16px;
    }

.calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f5;
    gap: 16px;
    flex-wrap: wrap;
}

    .calc-row:last-child {
        border-bottom: none;
    }

.calc-label {
    font-weight: 500;
    font-size: 16px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--secondary);
    font-weight: 700;
}

    .qty-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

.qty-val {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.calc-amt {
    font-weight: 600;
    color: var(--secondary);
    min-width: 60px;
    text-align: right;
}

.calc-total {
  color: #000;
    /* border-radius: 12px; */
    padding: 12px 0px;
    margin-top: 24px;
    border-top: 1px solid #dde;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

    .calc-total .total-label {
        font-size: 20px;
        opacity: 0.9;
    }

    .calc-total .total-price {
        font-size: 20px;
    }
.total-sub-label {
    font-size: 14px;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-item {
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .faq-item:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    background: #fff;
}

    .faq-question i {
        color: var(--primary);
        transition: transform 0.3s;
    }

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

/* TRUST STRIP */
.trust-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.trust-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform 0.3s;
}

    .trust-card:hover {
        transform: translateY(-4px);
    }

.trust-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 14px;
}

.trust-card h5 {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary);
}

.trust-card p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
}

/* CTA FOOTER */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f2740 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

    .cta-section h2 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        margin-bottom: 12px;
    }

    .cta-section p {
        opacity: 0.8;
        font-size: 1rem;
        margin-bottom: 28px;
    }

.btn-cta-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    margin: 6px;
}

    .btn-cta-primary:hover {
        background: var(--primary-dark);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 13px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    margin: 6px;
}

    .btn-cta-secondary:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1);
        color: #fff;
    }


.footer-brand {
    font-family: 'DM Serif Display', serif;
    color: var(--primary);
    font-size: 1.4rem;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 28px 0 16px;
}

.footer-bottom {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .free-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-hero {
        padding: 60px 0 40px;
    }

    .pricing-tabs {
        flex-wrap: wrap;
        border-radius: 16px;
        justify-content: center;
    }

    .pricing-tabs .nav-link {
        padding: 9px 20px;
        font-size: 0.82rem;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* STAR RATING */
.rating-stars {
    color: #FFB800;
    font-size: 0.85rem;
}

/* Grid Layout */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* Card */
.extra-item {
    display: flex;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 12px;
    transition: 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

    .extra-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

/* Icon */
.extra-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #002542;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

/* Text Area */
.extra-content {
    display: flex;
    flex-direction: column;
}

.extra-title {
    font-weight: 600;
    font-size: 15px;
    color: #1f2a37;
}

.extra-cost {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-top: 2px;
}

.extra-note {
    font-size: 12px;
    color: #6b7280;
}

/* Custom Card Style */
.extra-item.custom {
    background: linear-gradient(135deg,#fff8f5,#fff4ef);
    border-color: #ffd0b5;
}

    .extra-item.custom .extra-icon {
        background: linear-gradient(135deg,#ffe4d4,#ffc9a8);
        color: #ff6a2b;
    }

.extra-cost.contact {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

.package-table{
    padding:60px 0px;
}

/* ── HEADING ── */
.eyebrow {
    display: inline-block;
    background: rgba(254,206,26,.2);
    border: 1px solid rgba(254,206,26,.6);
    color: #7a5800;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: .28rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}

.main-heading {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: .6rem;
}

    .main-heading em {
        font-style: normal;
        color: var(--navy);
    }

.sub {
    color: var(--muted);
    font-size: .93rem;
    max-width: 460px;
}

/* ── TABLE SCROLL WRAPPER ── */
.tbl-wrap {
    border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0,37,66,.09);
}

.tbl {
    min-width: 820px;
    width: 100%;
}
/* ───────── MODERN PLAN HEADER ───────── */

.ph-row {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 8px 8px 0px 0px;
    border: 1px solid #ddd;
    position: sticky;
    top: 70px;
    z-index: 20;
    overflow: hidden;
}

/* Section Title (left column) */

.ph:first-child {
    border-left: none;
    text-align: left;
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction:column;
    align-items: flex-start;
}

.ph .header-title {
    font-size: 26px;
    font-weight: 700;
    color: #002542;
    margin-bottom:20px;
    letter-spacing: -0.02em;
}
.ph .header-para {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #002542;
    letter-spacing: -0.02em;
}


/* Plan Header Cells */

.ph {
    padding: 20px 15px;
    text-align: center;
    border-left: 1px solid #e2e2e2;
    transition: all .25s ease;
    position: relative;
}

    /* Hover effect */

    .ph:hover {
        background: rgba(255,255,255,0.04);
        transform: translateY(-2px);
    }

    /* Popular plan highlight */

    .ph.pop {
        background: #fece1a52;
        color: #0b1220;
        border-left: none;
        border-right: none;
        box-shadow: 0 0 0 1px rgba(255,215,120,0.35), 0 15px 30px rgba(244,192,77,0.25);
    }

.p-label {
    display: inline-block;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #1e2a44, #0b1220);
    border: 1px solid rgb(254 206 26);
    border-radius: 9px;
    backdrop-filter: blur(6px);
    transition: all .25s ease;
    cursor: default;
}

/* Price */

.p-price {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #000;
    margin-top:15px;
    letter-spacing: -0.02em;
}

/* Optional subtitle */

.p-sub {
    font-size: 12px;
    opacity: .7;
    margin-top: .25rem;
}

.p-price small {
    font-size: 14px;

    color: #fff;
    display: none;
    font-weight: 400;
    margin-top: 13px;
}

.ph.pop .p-label {
    color: rgb(254 206 26)
}

.ph.pop .p-price {
    color: var(--navy);
    margin-top:15px;
}

    .ph.pop .p-price small {
        color: #000;
    }

.ph-feat-label {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
}

/* ── TABLE BODY ── */
.tbl-body {
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    background: #fff;
}

/* Section label */
.s-row {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
}

.s-label {
    grid-column: 1 / -1;
    padding: .6rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--navy);
    background: #eef4fa;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Feature row */
.f-row {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    border-top: 1px solid #ddd;
    transition: background .12s;
}

    .f-row:hover {
        background: #f5f9ff;
    }

        .f-row:hover .f.pop {
            background: var(--gold-col-hover);
        }

.f {
    padding: .88rem 1rem;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ddd;
    color: rgba(0,37,66,.6);
}

    .f:first-child {
        text-align: left;
        justify-content: flex-start;
        border-left: none;
        padding-left: 1.8rem;
        color: var(--navy);
        font-weight: 500;
    }

    .f.pop {
        background: var(--gold-col-bg);
        border-left: 1px solid #ddd;
        border-right: 1px solid var(--gold-col-border);
    }

/* Chips */
.yes {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(43 129 20 / 90%);
    border: 1.5px solid rgba(5, 150, 105, 1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
}

.no {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,37,66,.04);
    border: 1.5px solid rgba(0,37,66,.1);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
}

.val {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.f.pop .val {
    color: #6b4f00;
}

.val-sm {
    font-size: .72rem;
}

/* ── CTA ROW ── */
.cta-row {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    background: #000;
    border-top: 2px solid var(--border);
}

.cta-c {
    padding: 1.2rem 1rem;
    border-left: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cta-c:first-child {
        border-left: none;
        padding-left: 1.8rem;
        justify-content: flex-start;
    }

    .cta-c.pop {
        background: var(--gold-col-bg);
        border-left: 1px solid var(--gold-col-border);
        border-right: 1px solid var(--gold-col-border);
    }

.btn-c {
    display: inline-block;
    padding: 10px  14px;
    border-radius: 8px;
    font-size: 14px;
    line-height:20px;
    width:100%;
    text-align:center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    border: 1.5px solid rgba(0,37,66,.25);
    color: var(--navy);
    background: #fff;
    white-space: nowrap;
}

    .btn-c:hover {
        border-color: #ffe040;
        background: #ffe040;
        color: #000;
    }

.btn-gold {
    background: #fece1a;
    border-color: #fece1a;
    color: #000;
}

    .btn-gold:hover {
        background: #ffe040;
        border-color: #ffe040;
        color: var(--navy);
    }

.cta-note {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Accordion container */
.acc-item{
  border-top:1px solid var(--border);
}

/* Header */
.acc-header{
  width:100%;
  background:#11141b;
  color:#e9ecf1;
  border:none;
  padding:16px 18px;
  text-align:left;
  font-weight:600;
  font-size:1rem;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.acc-header:hover{
  background:#161a22;
}

/* Icon */
.acc-icon{
  font-size:1.2rem;
  transition:.3s;
}

/* Body */
.acc-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

/* Active state */
.acc-item.active .acc-body{
  max-height:1000px; /* enough height */
}

.acc-item.active .acc-icon{
  transform:rotate(45deg); /* + becomes × */
}