/* ================================================
   PERFORMANCE REVIEW PAGE LAYOUT
   performreview-layout.css
   ================================================ */

/* ── How It Works steps ─────────────────────── */
.how-it-works {
    counter-reset: steps;
}

.how-step {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.how-step:last-child {
    border-bottom: none;
}

.how-step__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #BE0F17;
    flex-shrink: 0;
    line-height: 1;
    width: 2rem;
    text-align: right;
}

.how-step__text {
    font-size: 0.95rem;
    color: rgba(245,242,237,0.7);
    line-height: 1.65;
}

.how-step__text strong {
    color: #f5f2ed;
}

.how-step__text a {
    color: #c9a84c;
}

/* ── What's included list ───────────────────── */
.included-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.included-list li {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    font-size: 0.95rem;
    color: rgba(245,242,237,0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: '→';
    color: #c9a84c;
    flex-shrink: 0;
}

/* ── Testimonial cards ──────────────────────── */
.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-item {
    border-left: 3px solid #c9a84c;
    padding: 1.25rem 1.5rem;
    background: rgba(201,168,76,0.05);
}

.testimonial-item p {
    font-size: 1rem;
    font-style: italic;
    color: rgba(245,242,237,0.8);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.testimonial-item cite {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    font-style: normal;
}

/* ── Video embed ────────────────────────────── */
.video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    margin: 2rem 0;
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border: 1px solid rgba(201,168,76,0.2);
}

/* ── Purchase section ───────────────────────── */
.purchase-section {
    background: #111111;
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.purchase-card {
    border: 1px solid rgba(201,168,76,0.25);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: border-color 0.2s;
}

.purchase-card:hover {
    border-color: #c9a84c;
}

.purchase-card.featured {
    border-color: #c9a84c;
    background: #141414;
}

.purchase-card__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 0.75rem;
    display: block;
}

.purchase-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.03em;
    color: #f5f2ed;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.purchase-card__duration {
    font-size: 0.85rem;
    color: rgba(245,242,237,0.5);
    margin-bottom: 0.75rem;
}

.purchase-card__desc {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(245,242,237,0.45);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.purchase-card__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 2rem;
}

.purchase-card__price sup {
    font-size: 1.8rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Stripe button container */
.stripe-wrap {
    display: flex;
    justify-content: center;
}

/* ── Turnaround note ────────────────────────── */
.turnaround-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(245,242,237,0.55);
    letter-spacing: 0.03em;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
    .purchase-grid {
        grid-template-columns: 1fr;
    }

    .purchase-card {
        padding: 2.5rem 2rem;
    }
}