/* ══════════════════════════════════════════════════════════
   PRICING PAGE — FOLDED
   Extends index.css
   ══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */

.pricing-hero {
    padding-block: 90px 80px;
}

.pricing-hero h1 {
    font-size: 85px;
    line-height: 94px;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 20px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 520px;
}

/* ── Plans ──────────────────────────────────────────────── */

.pricing-plans {
    padding-block: 0 100px;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* ── Plan card ──────────────────────────────────────────── */

.plan-card {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-featured {
    background-color: #000;
}

/* Badge */
.plan-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background-color: #FFDE59;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 4px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #000;
    white-space: nowrap;
}

.plan-top {
    margin-bottom: 32px;
}

.plan-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.plan-featured .plan-name {
    color: rgba(255, 255, 255, 0.4);
}

.plan-price {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 88px;
    line-height: 1;
    color: #000;
    margin-bottom: 6px;
}

.plan-featured .plan-price {
    color: #fff;
}

.price-dollar {
    font-size: 36px;
    vertical-align: super;
}

.plan-per {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.45);
}

.plan-featured .plan-per {
    color: rgba(255, 255, 255, 0.45);
}

.plan-saving {
    display: inline-block;
    margin-top: 10px;
    background-color: #FFDE59;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

/* Includes list */
.plan-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex: 1;
}

.plan-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.plan-featured .plan-includes li {
    color: #fff;
}

.plan-includes li svg {
    flex-shrink: 0;
    stroke: #000;
}

.plan-featured .plan-includes li svg {
    stroke: #FFDE59;
}

/* Button */
.plan-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.plan-btn:hover {
    background-color: #FFDE59;
    color: #000;
    border-color: #000;
}

.plan-featured .plan-btn {
    background-color: #FFDE59;
    border-color: #FFDE59;
    color: #000;
}

.plan-featured .plan-btn:hover {
    background-color: #fff;
    border-color: #fff;
}

/* Note below plans */
.plans-note {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 24px;
    max-width: 560px;
}

/* ── Extras ─────────────────────────────────────────────── */

.pricing-extras {
    padding-block: 100px;
    background-color: #fff;
}

.extras-header {
    margin-bottom: 40px;
}

.extras-header h2 {
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 10px;
}

.extras-header p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.extra-card {
    background-color: #FFDE59;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 28px 24px;
}

.extra-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.extra-icon {
    width: 46px;
    height: 46px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-price {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 28px;
    line-height: 1;
}

.extra-card h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
}

.extra-card p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
}

/* ── FAQ ────────────────────────────────────────────────── */

.pricing-faq {
    padding-block: 100px;
    background-color: #FFDE59;
}

.pricing-faq h2 {
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.faq-item {
    border-top: 2px solid #000;
    padding: 0;
}

.faq-item:last-child {
    border-bottom: 2px solid #000;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: 'GulfDisplay', sans-serif;
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.65);
    padding-bottom: 22px;
}

/* ── CTA ────────────────────────────────────────────────── */

.pricing-cta {
    padding-block: 0 100px;
    background-color: #FFDE59;
}

.pricing-cta-card {
    background-color: #000;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-cta-card h2 {
    font-size: 50px;
    line-height: 58px;
    color: #fff;
    margin-bottom: 12px;
}

.pricing-cta-card p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFDE59;
    color: #000;
    border: 2px solid #FFDE59;
    border-radius: 8px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn:hover {
    background-color: transparent;
    color: #FFDE59;
    border-color: #FFDE59;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media screen and (max-width: 999px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 720px) {
    .pricing-hero h1 {
        font-size: 60px;
        line-height: 68px;
    }

    .pricing-hero {
        padding-block: 70px 60px;
    }

    .pricing-plans {
        padding-bottom: 70px;
    }

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

    .extras-header h2,
    .pricing-faq h2,
    .pricing-cta-card h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .pricing-extras,
    .pricing-faq {
        padding-block: 65px;
    }

    .pricing-cta {
        padding-bottom: 65px;
    }

    .pricing-cta-card {
        padding: 40px 28px;
    }
}

@media screen and (max-width: 540px) {
    .pricing-hero h1 {
        font-size: 46px;
        line-height: 54px;
    }

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

    .plan-card {
        padding: 32px 24px;
    }

    .plan-price {
        font-size: 72px;
    }
}
