
.page-hero {
    text-align: center;
    padding: 3.5rem 1.5rem 2.5rem
}

.page-hero .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 14px 5px 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink2);
    margin-bottom: 1.4rem
}

.page-hero .hero-pill-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: .9rem
}

.page-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.page-hero p {
    font-size: .95rem;
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.75
}

/* ── WRAPPER ── */
.contact-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem
}

/* ── CONTACT CARDS GRID ── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 2rem
}

.contact-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    transition: border-color .15s, box-shadow .15s, transform .15s
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(91, 79, 233, .09);
    transform: translateY(-2px)
}

.cc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px
}

.cc-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary)
}

.cc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px
}

.cc-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink)
}

.cc-val a {
    color: var(--primary);
    text-decoration: none
}

.cc-val a:hover {
    text-decoration: underline
}

.cc-desc {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.5
}

/* ── EMAIL DIRECT BUTTON ── */
.email-cta {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.email-cta-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px
}

.email-cta-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.resp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
    margin-top: 8px
}

.resp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.5s ease infinite;
    flex-shrink: 0
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.mailto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #A855F7);
    color: #fff;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s, transform .15s;
    flex-shrink: 0
}

.mailto-btn:hover {
    opacity: .9;
    transform: translateY(-1px)
}

/* ── SOCIAL SECTION ── */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 2rem
}

.social-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    text-decoration: none;
    transition: border-color .15s, box-shadow .15s, transform .15s
}

.social-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(91, 79, 233, .09);
    transform: translateY(-2px)
}

.sc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px
}

.sc-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px
}

.sc-handle {
    font-size: 11px;
    color: var(--muted)
}

/* ── FAQ ── */
.faq-list {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-item:last-child {
    border-bottom: none
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
    transition: background .12s
}

.faq-q:hover {
    background: var(--bg)
}

.faq-q .arrow {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .2s, background .15s
}

.faq-item.open .faq-q .arrow {
    transform: rotate(180deg);
    background: var(--primary-light);
    border-color: var(--primary)
}

.faq-q .arrow svg {
    width: 10px;
    height: 10px;
    color: var(--muted)
}

.faq-item.open .faq-q .arrow svg {
    color: var(--primary)
}

.faq-a {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.8;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 18px 14px
}

/* ── RESPONSIVE ── */
@media(max-width:680px) {
    .contact-cards {
        grid-template-columns: 1fr
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .email-cta {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:420px) {
    .social-grid {
        grid-template-columns: 1fr 1fr
    }
}