/* ── PRICING PAGE — MATCHES ABOUT ── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --dark: #0f172a;
    --dark-card: #1e293b;
    --green: #4ade80;
    --green-pale: rgba(74, 222, 128, 0.12);
    --blue: #3b82f6;
    --gold: #f59e0b;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --border: rgba(255,255,255,0.1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.25s;
    --duration-base: 0.5s;
    --duration-slow: 0.75s;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: #e2e8f0;
    line-height: 1.6;
}

/* ── HERO ── */

.page-hero {
    background: linear-gradient(135deg, #065f46 0%, #1e3a8a 100%);
    color: #fff;
    padding: 7rem 2rem 5rem;
    position: relative;
    text-align: center;
    overflow: hidden;
    min-height: auto !important;
}

.page-hero-texture {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 10% 40%, rgba(74,222,128,0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 90% 60%, rgba(59,130,246,0.1) 0%, transparent 60%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.3);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

    .page-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
    }

.page-heading {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff !important;
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.75rem, 6vw, 5rem) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    margin-bottom: 1.25rem !important;
}

    .page-heading .accent {
        color: var(--green) !important;
        font-style: italic;
    }

.page-sub {
    display: block !important;
    opacity: 1 !important;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75) !important;
    max-width: 520px;
    margin: 0 auto;
}

/* ── SECTION ── */

.section {
    padding: 5rem 2rem !important;
    min-height: auto !important;
}

.section-alt {
    background: rgba(255,255,255,0.02);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.center-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--green);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

    .section-label::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--green);
        transition: width var(--duration-slow) var(--ease-out-expo);
    }

    .section-label:hover::after {
        width: 100%;
    }

/* ── REVEAL FIX ── */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 1 !important;
    transform: none !important;
}

/* ── PRICING GRID ── */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem !important;
    align-items: stretch;
}

/* ── CARD BASE — SAME FEEL AS ABOUT ── */

.pricing-card,
.faq-item,
.guarantee-block {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background var(--duration-base) ease, border-color var(--duration-base) ease, transform var(--duration-base) var(--ease-out-expo), box-shadow var(--duration-base) ease;
}

    .pricing-card::after,
    .faq-item::after,
    .guarantee-block::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
        transition: left var(--duration-slow) var(--ease-out-expo);
        pointer-events: none;
    }

    .pricing-card:hover,
    .faq-item:hover,
    .guarantee-block:hover {
        background: rgba(255,255,255,0.09);
        border-color: rgba(74,222,128,0.2);
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(74,222,128,0.08), 0 0 60px rgba(74,222,128,0.06);
    }

        .pricing-card:hover::after,
        .faq-item:hover::after,
        .guarantee-block:hover::after {
            left: 140%;
        }

/* ── RIBBONS ── */

.card-ribbon {
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ribbon-green {
    background: linear-gradient(135deg, #065f46, #4ade80);
    color: #fff;
}

.ribbon-blue {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
}

.ribbon-gold {
    background: linear-gradient(135deg, #92400e, #f59e0b);
    color: #fff;
}

/* ── CARD BODY ── */

.pricing-card-body {
    padding: 2.25rem 2rem;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

    .card-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
    }

.tag-green {
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.3);
    color: #4ade80;
}

.tag-blue {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.3);
    color: #93c5fd;
}

.tag-gold {
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    color: #fbbf24;
}

/* ── TITLES ── */

.card-title-light,
.card-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.card-desc-light,
.card-desc-dark {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-light);
    margin-bottom: 2rem;
}

/* ── PRICE ── */

.price-block {
    margin-bottom: 2rem;
}

.price-label-light,
.price-label-dark {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.price-num-light,
.price-num-dark,
.price-num-gold {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.price-num-light,
.price-num-dark {
    color: #fff;
}

.price-num-gold {
    color: #fbbf24;
}

.price-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-strike-light,
.price-strike-dark {
    font-size: 0.95rem;
    color: var(--muted);
    text-decoration: line-through;
}

.save-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.25);
    color: #4ade80;
}

/* ── FEATURES ── */

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.7;
    transition: transform var(--duration-fast) ease, color var(--duration-fast) ease;
}

    .feat-row:hover {
        transform: translateX(4px);
        color: #fff;
    }

    .feat-row::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-top: 6px;
        flex-shrink: 0;
        background: #4ade80;
        transition: transform var(--duration-fast) var(--ease-out-back);
    }

.pricing-card:hover .feat-row::before {
    transform: scale(1.2);
}

/* ── BUTTONS ── */

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--duration-fast) var(--ease-out-back), box-shadow var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

    .pricing-btn:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    }

.btn-green {
    background: linear-gradient(135deg, #065f46 0%, #1e3a8a 100%);
    color: #fff;
    border: 1px solid rgba(74,222,128,0.2);
}

.btn-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #065f46 100%);
    color: #fff;
    border: 1px solid rgba(59,130,246,0.2);
}

.btn-gold {
    background: linear-gradient(135deg, #92400e 0%, #1e3a8a 100%);
    color: #fff;
    border: 1px solid rgba(245,158,11,0.2);
}

/* ── GUARANTEE BLOCK ── */

.guarantee-block {
    margin-top: 5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #065f46, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .guarantee-icon svg {
        width: 36px;
        height: 36px;
        color: #4ade80;
    }

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--muted-light);
    line-height: 1.8;
}

    .guarantee-text strong {
        color: #4ade80;
    }

.guarantee-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.g-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: #4ade80;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.g-label {
    font-size: 0.8rem;
    color: var(--muted-light);
}

/* ── COMPARE TABLE ── */

.compare-wrap {
    overflow-x: auto;
    margin-top: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
}

.compare-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

    .compare-table thead tr {
        background: rgba(255,255,255,0.04);
    }

    .compare-table th {
        padding: 1.25rem;
        text-align: center;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 700;
    }

        .compare-table th:first-child {
            text-align: left;
        }

    .compare-table td {
        padding: 1.1rem 1.25rem;
        border-top: 1px solid rgba(255,255,255,0.06);
        color: var(--muted-light);
        font-size: 0.9rem;
        text-align: center;
    }

        .compare-table td:first-child {
            text-align: left;
            color: #fff;
            font-weight: 500;
        }

    .compare-table tbody tr:hover {
        background: rgba(255,255,255,0.03);
    }

.check-svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    display: block;
    margin: 0 auto;
}

.dash {
    color: #475569;
    font-size: 1.1rem;
}

.weekly-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.25);
    color: #fbbf24;
}

/* ── FAQ ── */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
    max-width: 850px;
}

.faq-item {
    padding: 2rem;
}

.faq-q {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.65rem;
}

.faq-a {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--muted-light);
}

/* ── MOBILE ── */

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.25rem !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card-body {
        padding: 2rem 1.5rem;
    }

    .guarantee-block {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .guarantee-icon {
        margin: 0 auto;
    }

    .guarantee-stats {
        justify-content: center;
        gap: 2rem;
    }

    .pricing-card:hover,
    .faq-item:hover,
    .guarantee-block:hover {
        transform: translateY(-3px);
    }
}

/* ── REDUCED MOTION ── */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
