﻿:root {
    --primary: #002542;
    --primary-dark: #c74e12;
    --secondary: #1A3C5E;
    --accent: #F5A623;
    --light-bg: #F8F9FC;
    --card-shadow: 0 4px 30px rgba(0,0,0,0.08);
    --card-hover: 0 12px 40px rgba(232,97,26,0.18);
    --radius: 16px;
    --text: #1A1A2E;
    --muted: #6B7280;
}



/* HERO */
.pricing-hero {
    background: #002542;
    color:#fff;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pricing-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(232,97,26,0.07) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        border-radius: 50%;
    }


    .pricing-hero h1{
        color:#fff !important;
    }
    /* TOGGLE */
    .billing-toggle {
        display: inline-flex;
        align-items: center;
        background: #f0f0f5;
        border-radius: 50px;
        padding: 4px;
        gap: 4px;
        margin: 24px auto;
    }

    .billing-toggle button {
        border: none;
        background: transparent;
        padding: 8px 22px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--muted);
        cursor: pointer;
        transition: all 0.25s;
    }

        .billing-toggle button.active {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        }

.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;
}

/* PRICING CARDS */
.pricing-section {
    padding: 20px 0 60px;
    background: var(--light-bg);
}


.plan-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .plan-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-hover);
        border-color: var(--primary);
    }

    .plan-card.featured {
        border-color: #000;
        background: linear-gradient(160deg, #fff 80%, #fff8f3 100%);
    }

        .plan-card.featured .plan-name {
            background: #000;
            color:#fff !important
        }
.plan-body {
    height: 400px;
    overflow-y: scroll;
    padding: 12px;
}

    /* Scrollbar width */
    .plan-body::-webkit-scrollbar {
        width: 3px;
    }

    /* Scrollbar track */
    .plan-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    /* Scrollbar handle */
    .plan-body::-webkit-scrollbar-thumb {
        background: #0d6efd; /* change color */
        border-radius: 10px;
    }

        /* Scrollbar handle hover */
        .plan-body::-webkit-scrollbar-thumb:hover {
            background: #084298;
        }
.plan-body h6{
    margin-bottom:0px;
}
.plan-footer{
    padding:12px;
}
.popular-badge {
    position: absolute;
    top: 18px;
    display: none;
    right: -33px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 36px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.plan-header {
    padding: 12px;
    text-align: center;
    background: #fece1a21;
}
.plan-name {
    font-size: 16px;
   padding:15px;
   text-align:center;
   border-bottom:1px solid #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000
}

.plan-price {
    font-size: 42px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1;
}

    .plan-price sup {
        font-size: 1.4rem;
        vertical-align: super;
    }

.plan-period {
    color: var(--muted);
    font-size: 14px;
    line-height:20px;
    margin-bottom: 20px;
}

.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-features {
    list-style: none;
    padding: 0;
    padding-left:0px !important;
    margin: 0 0 24px;
    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: 50px 0 30px;
    }
}

/* 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;
}

/* ===== TAB CONTAINER ===== */
.pricing-tabs {
    background: #fff;
    padding: 8px !important;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
}
    .pricing-tabs .nav-item::before{
        content:unset;    }

    .pricing-tabs .nav-item:hover {
        border:unset !important;
    }
    /* REMOVE DEFAULT BOOTSTRAP STYLES */
    .pricing-tabs .nav-link {
        border: none;
        border-radius: 40px;
        padding: 10px 28px;
        font-weight: 500;
        color: #000;
        line-height:20px;
        background: transparent;
        transition: all 0.3s ease;
    }

        /* HOVER */
        .pricing-tabs .nav-link:hover {
            color: #fece1a;
        }

        /* ACTIVE TAB */
        .pricing-tabs .nav-link.active {
            background: #fece1a;
            color: #000;
            
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

    /* OPTIONAL: SMOOTH TRANSITION */
    .pricing-tabs .nav-link {
        position: relative;
        z-index: 1;
    }
/* 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(5, 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);
    }

/* Popular tag */

.pop-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0b1220;
    color: #f6d365;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Optional icon */

.p-icon {
    font-size: 22px;
    margin-bottom: .5rem;
    opacity: .85;
}

/* Plan name */

.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.5fr repeat(5,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(5,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.5fr repeat(5,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: var(--navy);
        background: rgba(0,37,66,.05);
        color: var(--navy);
    }

.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 × */
}