/* ══════════════════════════════════════════════════════
   FAQ PAGE  —  prefix: fq-
   ══════════════════════════════════════════════════════ */

/* ── HERO ── */
.fq-hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 40%, #f0f9ff 100%);
    padding: 90px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fq-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.fq-hero-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(20,184,166,.12);
}
.fq-ring-1 { width: 650px; height: 650px; top: -220px; right: -160px; }
.fq-ring-2 { width: 420px; height: 420px; top: -110px; right: -60px; border-color: rgba(8,145,178,.08); }
.fq-ring-3 { width: 850px; height: 850px; bottom: -420px; left: -220px; border-color: rgba(20,184,166,.06); }

.fq-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.fq-hero-inner h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900; color: #0f172a;
    letter-spacing: -2px; line-height: 1.1;
    margin: 16px 0 20px;
}
.fq-hero-accent {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fq-hero-inner p { font-size: 1.125rem; color: #64748b; line-height: 1.7; margin-bottom: 30px; }
.fq-hero-pills {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px;
}
.fq-hero-pills span {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px;
    background: rgba(20,184,166,.08);
    border: 1px solid rgba(20,184,166,.2);
    border-radius: 100px;
    font-size: .8125rem; font-weight: 600; color: #0d9488;
}
.fq-hero-pills i { font-size: 11px; }

/* ── STATS STRIP ── */
.fq-strip {
    background: linear-gradient(90deg, #0f766e, #0891b2, #0369a1);
    padding: 32px 0;
}
.fq-strip-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.fq-strip-item { text-align: center; padding: 0 44px; }
.fq-strip-num { font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -1px; margin-bottom: 6px; }
.fq-strip-lbl { font-size: .8125rem; color: rgba(255,255,255,.75); font-weight: 600; }
.fq-strip-sep { width: 1px; height: 44px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ── TABS ── */
.fq-section { padding: 60px 0 80px; background: #f8fafc; }
.fq-tabs-wrap { margin-bottom: 48px; }
.fq-tabs {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px;
}
.fq-tab {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 100px;
    font-size: .875rem; font-weight: 600; color: #64748b;
    cursor: pointer; transition: all .22s;
    font-family: inherit;
}
.fq-tab:hover {
    border-color: #14b8a6; color: #0d9488;
    background: rgba(20,184,166,.04);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20,184,166,.12);
}
.fq-tab.fq-tab-active {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    border-color: transparent; color: #fff;
    box-shadow: 0 6px 20px rgba(20,184,166,.35);
}
.fq-tab i { font-size: 13px; }
.fq-tab-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 22px; height: 20px; padding: 0 6px;
    background: rgba(255,255,255,.25);
    border-radius: 100px;
    font-size: .6875rem; font-weight: 700;
}
.fq-tab:not(.fq-tab-active) .fq-tab-count {
    background: #f1f5f9; color: #94a3b8;
}

/* ── CATEGORY GROUP ── */
.fq-group { margin-bottom: 40px; }
.fq-group.fq-hidden { display: none; }

.fq-group-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
.fq-group-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #fff;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    box-shadow: 0 4px 12px rgba(20,184,166,.3);
}
.fq-group-icon-2  { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 12px rgba(245,158,11,.28); }
.fq-group-icon-3  { background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 4px 12px rgba(99,102,241,.28); }
.fq-group-icon-4  { background: linear-gradient(135deg, #0891b2, #0369a1); box-shadow: 0 4px 12px rgba(8,145,178,.28); }
.fq-group-icon-5  { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 12px rgba(16,185,129,.28); }
.fq-group-head h2 {
    font-size: 1.25rem; font-weight: 800; color: #0f172a;
    letter-spacing: -.5px; margin: 0;
}

/* ── ACCORDION ITEMS ── */
.fq-list { display: flex; flex-direction: column; gap: 10px; }

.fq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s;
    position: relative;
}
.fq-item:hover {
    border-color: #a7f3d0;
    box-shadow: 0 4px 20px rgba(20,184,166,.08);
}
.fq-item.fq-open {
    border-color: #5eead4;
    box-shadow: 0 8px 32px rgba(20,184,166,.13);
}

.fq-q {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background .18s;
}
.fq-q:hover { background: rgba(20,184,166,.03); }

.fq-q-num {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(20,184,166,.12), rgba(8,145,178,.12));
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 800; color: #0d9488;
    transition: background .22s, color .22s;
}
.fq-item.fq-open .fq-q-num {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    color: #fff;
}

.fq-q-text {
    flex: 1;
    font-size: 1rem; font-weight: 700; color: #0f172a;
    line-height: 1.4;
}
.fq-item.fq-open .fq-q-text { color: #0d9488; }

.fq-q-badges { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.fq-badge-hot {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fcd34d;
    border-radius: 100px;
    font-size: .6875rem; font-weight: 700; color: #92400e;
}
.fq-badge-hot i { font-size: 10px; color: #d97706; }

.fq-q-arrow {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #94a3b8;
    transition: transform .3s, background .22s, color .22s;
}
.fq-item.fq-open .fq-q-arrow {
    transform: rotate(180deg);
    background: rgba(20,184,166,.1);
    color: #0d9488;
}

/* Answer */
.fq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.fq-item.fq-open .fq-a { max-height: 600px; }

.fq-a-inner {
    padding: 0 24px 22px 72px;
    font-size: .9375rem; color: #374151;
    line-height: 1.8;
    border-top: 1px solid #f0fdfa;
    background: rgba(240,253,250,.4);
}
.fq-a-inner p { margin: 0; }

.fq-a-inner strong { color: #0f172a; }
.fq-a-inner a { color: #0d9488; text-decoration: underline; text-underline-offset: 3px; }
.fq-a-inner a:hover { color: #0f766e; }

/* Tip block inside answers */
.fq-tip {
    display: flex; align-items: flex-start; gap: 10px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(20,184,166,.07);
    border-left: 3px solid #14b8a6;
    border-radius: 0 8px 8px 0;
    font-size: .875rem; color: #0d9488;
}
.fq-tip i { margin-top: 2px; flex-shrink: 0; }

/* Cost table inside answer */
.fq-cost-table { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.fq-cost-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc; border-radius: 10px;
    font-size: .875rem;
}
.fq-cost-row:nth-child(even) { background: #fff; }
.fq-cost-lbl { color: #374151; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.fq-cost-lbl i { color: #14b8a6; font-size: 13px; }
.fq-cost-val { font-weight: 800; color: #0d9488; font-size: .9375rem; }
.fq-cost-val.fq-free { color: #10b981; }

/* ── CTA SECTION ── */
.fq-cta-section {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 60%, #0369a1 100%);
    padding: 72px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.fq-cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.fq-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.fq-cta-icon {
    width: 80px; height: 80px; margin: 0 auto 24px;
    background: rgba(255,255,255,.15);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    backdrop-filter: blur(6px);
}
.fq-cta-inner h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1px; margin: 0 0 14px;
}
.fq-cta-inner p {
    font-size: 1.0625rem; color: rgba(255,255,255,.8);
    line-height: 1.7; margin: 0 0 36px;
}
.fq-cta-btns { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.fq-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    font-size: 1rem; font-weight: 700;
    text-decoration: none; transition: all .22s;
}
.fq-cta-btn-main {
    background: #fff; color: #0d9488;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.fq-cta-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,.22);
    color: #0f766e;
}
.fq-cta-btn-sec {
    background: rgba(255,255,255,.12);
    color: #fff; border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.fq-cta-btn-sec:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-2px);
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .fq-hero { padding: 64px 0 56px; }
    .fq-hero-inner h1 { letter-spacing: -1px; }
    .fq-strip-item { padding: 14px 24px; }
    .fq-strip-sep { width: 100%; height: 1px; }
    .fq-section { padding: 40px 0 60px; }
    .fq-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .fq-tab { flex-shrink: 0; }
    .fq-a-inner { padding-left: 24px; }
    .fq-q { padding: 16px 18px; gap: 12px; }
    .fq-q-text { font-size: .9375rem; }
    .fq-q-num { display: none; }
    .fq-cta-section { padding: 52px 0; }
}
