/* ─── PRICING PAGE STYLES ─── */

/* Hero */
.pricing-hero {
    margin-top: 64px;
    padding: 100px 48px;
    background: var(--cream);
    text-align: center;
    border-bottom: 1px solid var(--rule);
}
.pricing-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}
.pricing-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.pricing-hero p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── PRICING CARDS ─── */
.pricing-cards-section {
    padding: 100px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}
.pricing-cards {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card .price-onetime {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
}
.pricing-card {
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 8px 30px rgba(0,0,0,0.04);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.pricing-card .feature-list { flex: 1; }
.pricing-card .btn-cta,
.pricing-card .btn-outline,
.pricing-card .btn-navy { margin-top: auto; }
.pricing-card .badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}
.pricing-card .badge.coral { background: var(--coral); }
.pricing-card .badge.navy { background: var(--navy); }
.pricing-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}
.pricing-card .price {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.pricing-card .price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-mid);
}
.pricing-card .card-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    flex: 1;
}
.feature-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 10px;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}
.feature-list li.section-label {
    font-weight: 600;
    color: var(--text-mid);
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 8px;
}
.feature-list li.section-label::before {
    display: none;
}
.feature-list li.not-included {
    color: var(--text-light);
    opacity: 0.4;
}
.feature-list li.not-included::before {
    display: none;
}
.feature-list li.not-included::after {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1.5px;
    background: var(--text-light);
}
.pricing-card .badge-area {
    min-height: 30px;
}

/* Card CTAs */
.pricing-card .btn-cta,
.pricing-card .btn-outline,
.pricing-card .btn-navy {
    text-align: center;
}

/* ─── COMPARISON TABLE ─── */
.comparison-section {
    padding: 80px 48px;
    border-bottom: 1px solid var(--rule);
}
.comparison-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.comparison-section-inner h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--navy);
    margin-bottom: 48px;
    text-align: center;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison-table thead th {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-mid);
    padding: 14px 16px;
    text-align: center;
    border-bottom: 2px solid var(--rule);
}
.comparison-table thead th:first-child {
    text-align: left;
}
.comparison-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--rule);
    color: var(--text);
    text-align: center;
    vertical-align: middle;
}
.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text);
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table .check {
    display: inline-block;
    width: 18px;
    height: 18px;
    color: var(--coral);
}
.comparison-table .dash {
    display: inline-block;
    width: 12px;
    height: 2px;
    background: var(--rule);
    vertical-align: middle;
}

/* ─── FAQ ACCORDION ─── */
.faq-section {
    padding: 100px 48px;
    border-bottom: 1px solid var(--rule);
}
.faq-section-inner {
    max-width: 720px;
    margin: 0 auto;
}
.faq-section .eyebrow {
    text-align: center;
    margin-bottom: 48px;
}
.faq-item {
    border-bottom: 1px solid var(--rule);
}
.faq-item:first-of-type {
    border-top: 1px solid var(--rule);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.faq-question h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
}
.faq-question .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-mid);
    transition: transform 0.3s ease;
}
.faq-question .faq-icon::before {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-question .faq-icon::after {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item.open .faq-question .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0;
}
.faq-answer p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 0 24px;
}

/* ─── BOTTOM CTA (dark navy) ─── */
.pricing-cta {
    background: var(--navy);
    padding: 120px 48px;
    text-align: center;
}
.pricing-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.pricing-cta h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}
.pricing-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .comparison-table {
        font-size: 13px;
    }
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 10px;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    .pricing-hero {
        padding: 72px 24px;
    }
    .pricing-cards-section {
        padding: 72px 24px;
    }
    .comparison-section {
        padding: 60px 24px;
    }
    .comparison-section-inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table {
        min-width: 560px;
    }
    .faq-section {
        padding: 72px 24px;
    }
    .pricing-cta {
        padding: 80px 24px;
    }
}
