/* ── Reset / base ── */
* { box-sizing: border-box; }

/* ── FAQ Accordion ── */
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.faq-item.open {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(59,130,246,0.10);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.45;
    transition: background-color 0.2s, color 0.2s;
}
.faq-question:hover { background-color: #f8fafc; }
.faq-item.open .faq-question { color: #1e40af; }

.faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #9ca3af;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), color 0.3s;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 22px 20px 22px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4b5563;
}

/* ── Contact form radio pills ── */
.contact-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 9999px;
    background: #f9fafb;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.contact-form label:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
}
.contact-form input[type="radio"]:checked + label {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
    box-shadow: 0 0 0 1px #3b82f6;
}
.contact-form input[type="radio"] { display: none; }

.send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 28px;
    background: #111827;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.send-btn:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.send-btn:active { transform: translateY(0); }
.send-btn:disabled { background: #9ca3af; cursor: not-allowed; transform: none; box-shadow: none; }
.send-btn svg { width: 16px; height: 16px; }

/* ── Responsive main layout ── */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 900px) {
    .faq-layout {
        grid-template-columns: 3fr 2fr;
        gap: 2rem;
    }
}

/* ── "More" button ── */
#faq-more-btn {
    transition: all 0.2s;
}
#faq-more-btn:active {
    transform: scale(0.98);
}

/* ── Smooth number animation ── */
.stat-number {
    transition: all 0.3s ease;
}

/* ── Seamless logo fade-in ── */
.seamless-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.seamless-logo:hover { opacity: 1; }

/* ── Right sidebar card shadow ── */
.sidebar-card {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}