/* ================================================
   VIDEO CONSULTS PAGE LAYOUT
   videoconsults-layout.css
   ================================================ */

/* ── 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;
}

/* ── How It Works 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;
}

/* ── Platform pills ─────────────────────────── */
.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}

.platform-pill {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    color: rgba(245,242,237,0.6);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
}

/* ── Pricing block ──────────────────────────── */
.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

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

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

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

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

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

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

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

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

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

.consult-card__cta {
    margin-top: auto;
}

/* ── Booking note ───────────────────────────── */
.booking-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) {
    .consult-grid {
        grid-template-columns: 1fr;
    }

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