.slead {
    font-size: 16px;
}

.plans-hero {
    position: relative;
    padding-top: 20px;
    background: var(--ivory);
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

/* Geometric decoration — same language as index hero */
.plans-hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.plans-hero-geo-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(154, 123, 58, 0.08) 30%, rgba(154, 123, 58, 0.08) 70%, transparent);
}

.plans-hero-geo-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(154, 123, 58, 0.07) 30%, rgba(154, 123, 58, 0.07) 70%, transparent);
}

.plans-hero-geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.05);
}

.plans-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 96px 40px 88px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.plans-hero-left {
    max-width: 700px;
}

.plans-hero-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 6.5vw, 88px);
    font-weight: 500;
    line-height: 1.04;
    color: var(--ink);
    margin-bottom: 26px;
}

.plans-hero-h em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.plans-hero-lead {
    font-size: 16px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 38px;
}

/* Trust badges row */
.plans-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.plans-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
}

.plans-trust-item i {
    color: var(--gold);
    font-size: 11px;
}

.plans-trust-div {
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero right — key metrics stacked */
.plans-hero-metrics {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 210px;
}

.phm-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-bottom: none;
    padding: 20px 26px;
    text-align: right;
    transition: background 0.2s;
}

.phm-item:last-child {
    border-bottom: 1px solid var(--border-light);
}

.phm-item:hover {
    background: #faf6ef;
}

.phm-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.phm-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-top: 4px;
}

/* Bottom geo line */
.plans-hero-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(154, 123, 58, 0.18) 35%, rgba(154, 123, 58, 0.18) 65%, transparent);
}


/* ══════════════════════════════════════════════
     MARKET FILTER TABS
  ══════════════════════════════════════════════ */
.mfilter-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-light);
    background: #fff;
    overflow: hidden;
    flex-wrap: wrap;
}

.mfilter-btn {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    background: none;
    color: var(--slate-light);
    cursor: pointer;
    border-right: 1px solid var(--border-light);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mfilter-btn:last-child {
    border-right: none;
}

.mfilter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.mfilter-btn.active {
    background: #faf6ef;
    color: var(--gold);
}

.mfilter-btn.active::after {
    transform: scaleX(1);
}

.mfilter-btn:hover:not(.active) {
    background: #fdfcf9;
    color: var(--ink);
}

.mfilter-btn i {
    font-size: 13px;
}


/* ══════════════════════════════════════════════
     PLAN CARDS — GRID
  ══════════════════════════════════════════════ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    background: #fff;
    border: 1px solid var(--border-light);
}

.plan-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #faf6ef;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    background: var(--border-light);
    z-index: 2;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Featured (most popular) card */
.plan-card.featured {
    background: var(--ink);
}

.plan-card.featured:hover {
    background: #16161f;
    box-shadow: 0 16px 60px rgba(13, 13, 20, 0.25);
}

/* Top accent bar */
.plan-card-top {
    height: 3px;
    width: 100%;
    background: var(--gold);
}

.plan-card.featured .plan-card-top {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    height: 3px;
}

/* Ghost number watermark */
.plan-ghost-num {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 110px;
    font-weight: 700;
    color: rgba(154, 124, 58, 0.205);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.plan-card:hover .plan-ghost-num {
    color: rgba(154, 124, 58, 0.356);
}

.plan-card.featured .plan-ghost-num {
    color: rgba(255, 255, 255, 0.137);
}

.plan-card.featured:hover .plan-ghost-num {
    color: rgba(154, 124, 58, 0.251);
}

.plan-card-body {
    padding: 36px 32px;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Featured badge */
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: rgba(154, 123, 58, 0.15);
    color: var(--gold-light);
    padding: 5px 12px;
    margin-bottom: 20px;
}

.plan-badge i {
    font-size: 8px;
}

.plan-badge.hidden-badge {
    visibility: hidden;
}

/* Market tag */
.plan-market-tag {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-market-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.plan-card.featured .plan-market-tag {
    color: rgba(184, 149, 58, 0.8);
}

.plan-card.featured .plan-market-tag::before {
    background: rgba(154, 123, 58, 0.5);
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 6px;
}

.plan-card.featured .plan-name {
    color: #fff;
}

.plan-tagline {
    font-weight: 300;
    color: var(--slate-light);
    margin-bottom: 26px;
    line-height: 1.65;
}

.plan-card.featured .plan-tagline {
    color: rgba(255, 255, 255, 0.468);
}

/* Return display */
.plan-return-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.plan-return-val {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    color: var(--gold);
}

.plan-card.featured .plan-return-val {
    color: var(--gold-light);
}

.plan-return-unit {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.7;
}

.plan-return-label {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 28px;
}

.plan-card.featured .plan-return-label {
    color: rgba(255, 255, 255, 0.514);
}

/* Divider */
.plan-divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 24px;
}

.plan-card.featured .plan-divider {
    background: rgba(255, 255, 255, 0.07);
}

/* Key stats row */
.plan-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    margin-bottom: 28px;
}

.plan-card.featured .plan-stats-row {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
}

.psr-cell {
    background: #fff;
    padding: 14px 12px;
    text-align: center;
    transition: background 0.2s;
}

.plan-card:hover .psr-cell {
    background: var(--ivory);
}

.plan-card.featured .psr-cell {
    background: rgba(255, 255, 255, 0.04);
}

.plan-card.featured:hover .psr-cell {
    background: rgba(255, 255, 255, 0.07);
}

.psr-val {
    font-family: 'DM Sans', monospace;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 3px;
}

.plan-card.featured .psr-val {
    color: rgba(255, 255, 255, 0.943);
}

.psr-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.plan-card.featured .psr-label {
    color: rgba(255, 255, 255, 0.454);
}

/* Features list */
.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    font-size: 15px;
    font-weight: 300;
    color: var(--slate);
    padding: 9px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.plan-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.701);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--gold);
    font-size: 9px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* CTA button */
.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 100%;
    padding: 15px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.14);
    color: var(--ink);
    background: transparent;
}

.plan-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #faf6ef;
}

.plan-cta.plan-cta-dark {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.plan-cta.plan-cta-dark:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.plan-card.featured .plan-cta {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.plan-card.featured .plan-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #fff;
}

.plan-card-footer {
    padding: 18px 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-card.featured .plan-card-footer {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.plan-min-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.plan-card.featured .plan-min-label {
    color: rgba(255, 255, 255, 0.607);
}

.plan-min-val {
    font-family: 'DM Sans', monospace;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
}

.plan-card.featured .plan-min-val {
    color: rgba(255, 255, 255, 0.85);
}


/* ══════════════════════════════════════════════
     COMPARISON TABLE
  ══════════════════════════════════════════════ */
.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table th,
.comp-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.comp-table thead th {
    font-family: 'DM Sans', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--slate-light);
    background: var(--ivory);
    border-bottom: 2px solid var(--border-gold);
}

.comp-table thead th:first-child {
    font-family: 'DM Sans', monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
}

.comp-table tbody tr {
    transition: background 0.15s;
}

.comp-table tbody tr:hover {
    background: #faf6ef;
}

.comp-table tbody td:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

.comp-table tbody td {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    color: var(--slate);
}

.comp-check {
    color: #16a34a;
    font-size: 13px;
}

.comp-cross {
    color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.comp-hl {
    color: var(--gold);
    font-weight: 500;
}

/* Column highlight for featured */
.comp-table th.col-featured,
.comp-table td.col-featured {
    background: rgba(154, 123, 58, 0.04);
    border-left: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
}

.comp-table thead th.col-featured {
    background: rgba(154, 123, 58, 0.08);
    color: var(--gold);
}


/* ══════════════════════════════════════════════
     HOW IT WORKS (plans version — 4 steps)
  ══════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.step-card {
    background: #fff;
    padding: 44px 30px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.step-card:hover {
    background: #faf6ef;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-ghost-num {
    position: absolute;
    top: -20px;
    right: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 130px;
    font-weight: 700;
    color: rgba(154, 123, 58, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.step-card:hover .step-ghost-num {
    color: rgba(154, 123, 58, 0.08);
}

.step-num {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.step-num::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.step-icon-wrap {
    width: 58px;
    height: 58px;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
}

.step-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px dashed rgba(154, 123, 58, 0.12);
}

.step-card:hover .step-icon-wrap {
    border-color: var(--gold);
    background: rgba(154, 123, 58, 0.04);
}

.step-icon-wrap i {
    font-size: 20px;
    color: var(--gold);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.step-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}


/* ══════════════════════════════════════════════
     TESTIMONIALS (3-col, same as index)
  ══════════════════════════════════════════════ */
/* Reuses .testi-g, .testi-c, etc from main CSS */


/* ══════════════════════════════════════════════
     RISK DISCLAIMER BAND
  ══════════════════════════════════════════════ */
.risk-band {
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.risk-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 36px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.risk-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.risk-icon i {
    font-size: 16px;
    color: var(--gold);
}

.risk-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--slate-light);
    line-height: 1.8;
}

.risk-text strong {
    color: var(--slate);
    font-weight: 500;
}


/* ══════════════════════════════════════════════
     FAQ (plans-specific questions)
  ══════════════════════════════════════════════ */
/* Reuses .faq-it, .faq-b, .faq-qt, .faq-tog, .faq-bd from main */


/* ══════════════════════════════════════════════
     FINAL CTA
  ══════════════════════════════════════════════ */
.plans-final-cta {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.plans-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(154, 123, 58, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.pfc-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pfc-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    max-width: 560px;
}

.pfc-h em {
    font-style: italic;
    color: rgba(184, 149, 58, 0.9);
}

.pfc-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-pfc-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: #fff;
    border: 1px solid #fff;
    padding: 15px 32px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-pfc-solid:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #fff;
}

.btn-pfc-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 15px 32px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
}

.btn-pfc-ghost:hover {
    border-color: rgba(184, 149, 58, 0.55);
    color: rgba(184, 149, 58, 0.9);
}


/* ══════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .plans-hero-inner {
        flex-direction: column;
        padding: 80px 24px 70px;
        gap: 40px;
    }

    .plans-hero-metrics {
        flex-direction: row;
        flex-wrap: wrap;
        display: none;
    }

    .phm-item {
        flex: 1;
        min-width: 140px;
        border-bottom: 1px solid var(--border-light);
        text-align: left;
    }

    .mfilter-wrap {
        flex-wrap: wrap;
    }

    .mfilter-btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .comp-table {
        font-size: 11px;
    }

    .comp-table th,
    .comp-table td {
        padding: 12px 10px;
    }

    .pfc-inner {
        flex-direction: column;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .plan-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .plans-hero-h {
        font-size: 38px;
    }

    .pfc-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-pfc-solid,
    .btn-pfc-ghost {
        justify-content: center;
    }

    .risk-inner {
        flex-direction: column;
        gap: 14px;
    }

    .comp-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}