/* ── HERO ── */
.consultation-hero {
    padding: clamp(6rem, 10vw, 10rem) 0 clamp(4rem, 7vw, 8rem) 0;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
    margin-bottom: 0rem;
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subheading {
    font-size: 1.1rem;
    color: var(--text-subtle);
    font-weight: 400;
    max-width: clamp(20rem, 60vw, 40rem);
    margin: 0 auto;
}

/* ── GRID LAYOUT ── */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: var(--mw-content);
    margin: 0 auto clamp(4rem, 7vw, 8rem) auto;
    padding: 0 2rem;
}

/* ── CARD ── */
.consult-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
    background: var(--surface-color);
    backdrop-filter: blur(1.5rem);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    text-align: start;
}

.consult-card:hover {
    transform: translateY(-0.625rem);
    background: var(--glass-bg);
    border-color: var(--text-color);
    box-shadow: 0 1.875rem 3.75rem rgba(0,0,0,0.1);
}

/* ── ICON ── */
.icon-box {
    grid-column: 1;
    grid-row: 1;
    width: clamp(3rem, 4vw, 4rem);
    height: clamp(3rem, 4vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    font-size: 1.8rem;
    color: var(--text-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.consult-card:hover .icon-box {
    background: var(--text-color);
    color: var(--bg-color);
    transform: rotate(10deg);
}

/* ── CARD TEXT ── */
.card-text {
    display: contents;
}

.card-text h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-color);
}

.card-text p {
    grid-column: 1 / span 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-subtle);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* ── CTA & FOOTER ── */
.cta-section { text-align: center; padding-bottom: 0rem; }

.footer {
    margin-top: 8rem;
}

/* ── Laptop & Tablet (max 64rem / 1024px) ── */
@media (max-width: 64rem) {
    .consultation-hero {
        padding: 4rem 1.5rem;
        margin-bottom: 4rem;
        max-width: 100%;
    }

    .hero-headline {
        margin-bottom: 1rem;
    }

    .hero-subheading {
        font-size: 1.05rem;
        max-width: 100%;
        padding: 0 1rem;
        line-height: 2rem;
    }

    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
        margin-bottom: 4rem;
    }

    .consult-card {
        padding: 2.5rem 1.5rem;
        gap: 1.2rem;
    }

    .cta-section {
        padding-bottom: 4rem;
    }

    .footer { margin: 0rem; padding: 2rem 0rem; }
}

/* ── Mobile (max 48rem / 768px) ── */
@media (max-width: 48rem) {
    .consultation-hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .consult-card {
        padding: 2rem 1.5rem;
        gap: 0.5rem;
    }

    .icon-box {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}
