/* ═══════════════════════════════════════════════════════════
   PLANS PAGE — PRICING SECTIONS
   ═══════════════════════════════════════════════════════════ */
.pricing-section {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section + .pricing-section {
    padding-top: 0;
}

.pricing-section .section-header {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 720px;
}

.pricing-section .section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-section .section-header p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   PRICING GRID
   ═══════════════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   PRICING CARD
   ═══════════════════════════════════════════════════════════ */
.pricing-card {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--white-faint);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(184, 115, 51, 0.3);
    transform: translateY(-4px);
}

.pricing-card-target {
    border-color: rgba(184, 115, 51, 0.4);
    box-shadow: 0 0 0 1px rgba(184, 115, 51, 0.2);
}

.pricing-card-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
    border-radius: 20px 20px 0 0;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.pricing-card h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    margin: 0.5rem 0 -0.25rem;
}

.pricing-card p {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.pricing-card .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════
   PRICE LINE
   ═══════════════════════════════════════════════════════════ */
.pricing-price {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.pricing-price .founding {
    color: var(--copper-light);
    font-weight: 700;
}

.pricing-price .standard {
    color: var(--white-dim);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.pricing-tagline {
    font-style: italic;
    color: var(--white);
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.pricing-availability {
    font-size: 0.85rem !important;
    color: var(--white-dim);
}

.spot-count {
    font-weight: 700;
    color: var(--copper-light);
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--white-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 2rem auto 0;
}

.pricing-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════ */
.comparison {
    padding: 5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison .section-header {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 720px;
}

.comparison .section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid var(--white-faint);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--white-faint);
}

.comparison-table th {
    background: var(--navy-mid);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(184, 115, 51, 0.05);
}

.comparison-table th:nth-child(3) {
    color: var(--copper-light);
}

.comparison-table td:nth-child(3) {
    color: var(--white);
    font-weight: 500;
}

.comparison-table td {
    color: var(--white-dim);
}

.check {
    color: var(--copper-light);
    font-weight: 600;
}

.dash {
    color: var(--white-faint);
}

[data-theme="light"] .comparison-wrapper {
    border-color: rgba(13, 27, 42, 0.1);
}

[data-theme="light"] .comparison-table th {
    background: rgba(13, 27, 42, 0.04);
    color: #0D1B2A;
}

[data-theme="light"] .comparison-table td {
    color: rgba(13, 27, 42, 0.65);
    border-bottom-color: rgba(13, 27, 42, 0.08);
}

[data-theme="light"] .comparison-table td:nth-child(3) {
    color: #0D1B2A;
}

[data-theme="light"] .comparison-table tbody tr:hover {
    background: rgba(184, 115, 51, 0.04);
}

@media (max-width: 768px) {
    .comparison {
        padding: 3rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOUNDING CLIENT CALLOUT
   ═══════════════════════════════════════════════════════════ */
.founding-callout {
    margin: 2rem 3rem 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.08), rgba(184, 115, 51, 0.02));
    border: 1px solid rgba(184, 115, 51, 0.25);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.founding-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
}

.founding-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.founding-inner .section-tag {
    color: var(--copper);
    margin-bottom: 1rem;
}

.founding-inner h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.founding-inner p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.founding-inner .btn-primary {
    margin-top: 1rem;
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   FIELD PRE-FILL HIGHLIGHT (when a tier CTA pre-fills the form)
   ═══════════════════════════════════════════════════════════ */
@keyframes fieldPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(184, 115, 51, 0);
        border-color: rgba(240, 237, 232, 0.1);
    }
    30%, 70% {
        box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.45);
        border-color: var(--copper);
    }
}

.field-highlight {
    animation: fieldPulse 1.25s ease-in-out 2;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }

    .pricing-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 1.5rem;
    }

    .pricing-grid,
    .pricing-grid-2col {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

    .founding-callout {
        margin: 2rem 1.5rem 4rem;
        padding: 3rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME
   ═══════════════════════════════════════════════════════════ */
[data-theme="light"] .pricing-card {
    background: #FFFFFF;
    border-color: rgba(13, 27, 42, 0.08);
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .pricing-card:hover {
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
}

[data-theme="light"] .pricing-card-target {
    border-color: rgba(184, 115, 51, 0.4);
    box-shadow: 0 0 0 1px rgba(184, 115, 51, 0.2), 0 2px 20px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .pricing-card p {
    color: rgba(13, 27, 42, 0.72);
}

[data-theme="light"] .pricing-tagline {
    color: #0D1B2A;
}

[data-theme="light"] .pricing-price .founding {
    color: var(--copper-dark);
}

[data-theme="light"] .pricing-price .standard {
    color: rgba(13, 27, 42, 0.55);
}

[data-theme="light"] .pricing-availability {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .spot-count {
    color: var(--copper-dark);
}

[data-theme="light"] .pricing-note {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .pricing-section .section-header p {
    color: rgba(13, 27, 42, 0.7);
}

[data-theme="light"] .founding-callout {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.06), rgba(184, 115, 51, 0.02));
    border-color: rgba(184, 115, 51, 0.3);
}

[data-theme="light"] .founding-inner p {
    color: rgba(13, 27, 42, 0.72);
}

[data-theme="light"] .founding-inner h2 {
    color: #0D1B2A;
}
