/* ============================================================
   SafeW 常见问题页样式 - css/faq.css
   版本: V3.2.1 · 2026 安全补丁覆盖
   描述: SafeW 问答中心专属样式
   ============================================================ */

:root {
    --safe-teal: #00c9a7;
    --safe-teal-dark: #009f86;
    --safe-teal-glow: rgba(0, 201, 167, 0.2);
    --safe-teal-light: #e6f7f3;
    --safe-navy: #0b2b4a;
    --safe-navy-light: #1a3b5c;
    --safe-slate: #3a5268;
    --safe-slate-light: #4a6278;
    --safe-mist: #f0f7fa;
    --safe-mist-dark: #e6f0f5;
    --safe-white: #ffffff;
    --safe-border: rgba(0,0,0,0.04);
    --safe-border-strong: rgba(0,0,0,0.08);
    --safe-shadow-sm: 0 4px 16px rgba(0,0,0,0.04);
    --safe-shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --safe-shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
    --safe-shadow-teal: 0 6px 20px rgba(0,201,167,0.25);
    --safe-radius-sm: 12px;
    --safe-radius-md: 18px;
    --safe-radius-lg: 24px;
    --safe-radius-xl: 32px;
    --safe-radius-full: 50px;
    --safe-transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --safe-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    --safe-font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--safe-font);
    background: #f8fbfc;
    color: #1a2a3a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--safe-transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 导航栏（与首页一致） ========== */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--safe-border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--safe-navy);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.nav-brand svg {
    flex-shrink: 0;
}

.nav-brand .version-tag {
    font-size: 11px;
    font-weight: 500;
    background: var(--safe-teal);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 2px;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    padding: 6px 0;
    position: relative;
    transition: color var(--safe-transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--safe-teal);
}

.nav-links a.active {
    color: var(--safe-teal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--safe-teal);
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--safe-teal), var(--safe-teal-dark));
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--safe-shadow-teal);
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,201,167,0.35);
    color: #fff !important;
}

.nav-more {
    position: relative;
}

.nav-more-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--safe-transition);
    font-family: var(--safe-font);
}

.nav-more-btn:hover {
    color: var(--safe-teal);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    border-radius: var(--safe-radius-md);
    box-shadow: var(--safe-shadow-lg);
    border: 1px solid var(--safe-border-strong);
    padding: 12px 0;
    min-width: 180px;
    z-index: 1001;
    margin-top: 8px;
}

.nav-dropdown.open {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 8px 24px;
    font-size: 14px;
    color: #2c3e50;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
    background: rgba(0,201,167,0.08);
    color: var(--safe-teal);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--safe-navy);
    border-radius: 3px;
    transition: 0.3s;
}

/* ========== FAQ英雄区 ========== */
.faq-hero {
    background: linear-gradient(145deg, #f0f7fa, #e6f0f5);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,201,167,0.12);
    color: var(--safe-teal-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--safe-teal);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(0,201,167,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(0,201,167,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,201,167,0); }
}

.faq-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--safe-navy);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.faq-hero-text h1 span {
    color: var(--safe-teal);
    position: relative;
    display: inline-block;
}

.faq-hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(0,201,167,0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-lead {
    font-size: 18px;
    color: var(--safe-slate);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 550px;
}

.faq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--safe-teal), var(--safe-teal-dark));
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--safe-shadow-teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-family: var(--safe-font);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,201,167,0.4);
}

.btn-secondary {
    background: rgba(11,43,74,0.06);
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 500;
    color: var(--safe-navy);
    border: 1px solid rgba(11,43,74,0.1);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-family: var(--safe-font);
}

.btn-secondary:hover {
    background: rgba(11,43,74,0.1);
    border-color: rgba(11,43,74,0.2);
    transform: translateY(-2px);
}

.faq-hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--safe-slate);
}

.fhs-item strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--safe-navy);
}

.fhs-divider {
    width: 1px;
    height: 20px;
    background: var(--safe-border-strong);
}

.faq-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 380px;
}

.faq-orb {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fq-ring {
    position: absolute;
    border: 2px dashed rgba(0,201,167,0.35);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.fq-r1 { width: 250px; height: 250px; }
.fq-r2 { width: 200px; height: 200px; animation-duration: 14s; animation-direction: reverse; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fq-core {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0,201,167,0.3);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.fq-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--safe-teal);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,201,167,0.6);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.fq1 { top: 15px; left: 30%; }
.fq2 { top: 30%; right: 5px; animation-delay: 0.5s; }
.fq3 { bottom: 15px; left: 20%; animation-delay: 1s; }
.fq4 { bottom: 25%; right: 15%; animation-delay: 0.3s; }

.faq-badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: #fff;
    border-radius: var(--safe-radius-md);
    padding: 12px 18px;
    box-shadow: var(--safe-shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    animation: float 5s ease-in-out infinite 1.5s;
    border: 1px solid var(--safe-border);
}

.fq-badge-icon {
    font-size: 24px;
}

.faq-badge strong {
    display: block;
    font-size: 14px;
    color: var(--safe-navy);
}

.faq-badge span {
    font-size: 12px;
    color: var(--safe-slate-light);
}

/* ========== FAQ分类导航 ========== */
.faq-categories {
    background: #fff;
    border-bottom: 1px solid var(--safe-border);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--safe-border-strong);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--safe-slate);
    transition: all 0.2s;
}

.category-pill:hover {
    border-color: var(--safe-teal);
    color: var(--safe-teal-dark);
}

.category-pill.active {
    background: var(--safe-teal);
    border-color: var(--safe-teal);
    color: #fff;
    box-shadow: var(--safe-shadow-teal);
}

.cp-icon {
    font-size: 18px;
}

.cp-count {
    background: rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 500;
}

.category-pill.active .cp-count {
    background: rgba(255,255,255,0.25);
}

/* ========== FAQ区块 ========== */
.faq-section {
    padding: 70px 0;
    background: #fff;
}

.faq-section.alt {
    background: var(--safe-mist);
}

.faq-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--safe-teal-dark);
    background: rgba(0,201,167,0.1);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.section-tag.light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.faq-section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.faq-section-header p {
    color: var(--safe-slate);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: var(--safe-radius-md);
    overflow: hidden;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--safe-navy);
    text-align: left;
    transition: background 0.2s;
    font-family: var(--safe-font);
}

.faq-question:hover {
    background: rgba(0,201,167,0.05);
}

.faq-toggle {
    font-size: 22px;
    color: var(--safe-teal);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    color: var(--safe-slate);
    font-size: 15px;
    line-height: 1.8;
    padding: 0 24px;
}

.faq-answer p {
    margin-bottom: 12px;
}

/* ========== 常见误解 ========== */
.faq-misconceptions {
    padding: 70px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.section-title p {
    color: var(--safe-slate);
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto;
}

.misconception-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.misconception-card {
    background: #fff;
    border-radius: var(--safe-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    transition: transform 0.25s;
}

.misconception-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--safe-shadow-md);
}

.mc-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.misconception-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 8px;
}

.mc-wrong {
    color: var(--safe-slate-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.mc-right {
    color: var(--safe-slate);
    font-size: 14px;
    line-height: 1.6;
}

.mc-right strong {
    color: var(--safe-teal-dark);
}

/* ========== 热门问题排行 ========== */
.faq-popular {
    padding: 70px 0;
    background: var(--safe-mist);
}

.popular-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: var(--safe-radius-lg);
    padding: 20px 24px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    transition: transform 0.25s;
}

.popular-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--safe-shadow-md);
}

.popular-rank {
    font-size: 28px;
    font-weight: 800;
    color: #ccc;
    line-height: 1;
    flex-shrink: 0;
}

.rank-1 { color: #ffb400; }
.rank-2 { color: #a8b8c8; }
.rank-3 { color: #cd7f32; }
.rank-4 { color: var(--safe-teal); }
.rank-5 { color: var(--safe-slate-light); }

.popular-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 4px;
}

.popular-content p {
    color: var(--safe-slate);
    font-size: 14px;
    margin-bottom: 8px;
}

.popular-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--safe-teal-dark);
}

.popular-link:hover {
    color: var(--safe-navy);
}

/* ========== 快速联系 ========== */
.faq-contact {
    padding: 70px 0;
    background: #fff;
}

.faq-contact-box {
    background: linear-gradient(135deg, var(--safe-navy), var(--safe-navy-light));
    border-radius: var(--safe-radius-xl);
    padding: 50px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--safe-shadow-lg);
    position: relative;
    overflow: hidden;
}

.faq-contact-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(0,201,167,0.15);
    border-radius: 50%;
    pointer-events: none;
}

.fc-text {
    flex: 1;
    z-index: 1;
}

.fc-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.fc-text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 450px;
}

.fc-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
}

/* ========== CTA ========== */
.faq-cta {
    padding: 70px 0;
    background: var(--safe-mist);
}

.faq-cta-box {
    background: #fff;
    border-radius: var(--safe-radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
}

.faq-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 12px;
}

.faq-cta-box p {
    font-size: 18px;
    color: var(--safe-slate);
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ========== 页脚 ========== */
.footer {
    background: var(--safe-mist-dark);
    padding: 48px 0 32px;
    border-top: 1px solid var(--safe-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 22px;
    color: var(--safe-navy);
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--safe-slate-light);
    font-size: 14px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-meta {
    margin-top: 8px;
    font-size: 13px;
    color: var(--safe-slate-light);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--safe-navy);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--safe-slate-light);
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--safe-teal);
}

.footer-bottom {
    border-top: 1px solid var(--safe-border-strong);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--safe-slate-light);
}

.footer-bottom .info-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.footer-bottom .badge {
    background: var(--safe-teal);
    color: #fff;
    padding: 1px 12px;
    border-radius: 20px;
    font-size: 11px;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .faq-hero-grid,
    .faq-contact-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-lead,
    .fc-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .faq-hero-actions,
    .faq-hero-stats {
        justify-content: center;
    }
    .faq-hero-visual {
        min-height: 300px;
    }
    .misconception-grid {
        grid-template-columns: 1fr;
    }
    .faq-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .fc-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        padding: 20px 30px;
        border-bottom: 1px solid var(--safe-border);
        gap: 12px;
        align-items: flex-start;
        box-shadow: var(--safe-shadow-md);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-more {
        display: block;
        width: 100%;
    }
    .nav-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 16px;
        background: transparent;
        min-width: auto;
    }
    .nav-dropdown.open {
        display: block;
    }
    .nav-more-btn {
        width: 100%;
        justify-content: space-between;
    }
    .nav-cta {
        margin-top: 8px;
    }
    .faq-hero-text h1 {
        font-size: 36px;
    }
    .hero-lead {
        font-size: 16px;
    }
    .category-pills {
        gap: 6px;
    }
    .category-pill {
        padding: 6px 14px;
        font-size: 13px;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }
    .faq-answer {
        padding: 0 18px;
        font-size: 14px;
    }
    .popular-item {
        flex-direction: column;
        gap: 8px;
        padding: 16px 18px;
    }
    .popular-rank {
        font-size: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .fhs-divider {
        display: none;
    }
    .faq-hero-stats {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .faq-hero {
        padding: 40px 0;
    }
    .faq-hero-text h1 {
        font-size: 30px;
    }
    .faq-hero-visual {
        min-height: 250px;
    }
    .faq-orb {
        width: 200px;
        height: 200px;
    }
    .fq-r1 { width: 200px; height: 200px; }
    .fq-r2 { width: 160px; height: 160px; }
    .fq-core {
        width: 80px;
        height: 80px;
    }
    .faq-section-header h2 {
        font-size: 26px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .faq-cta-box {
        padding: 40px 20px;
    }
    .faq-cta-box h2 {
        font-size: 26px;
    }
    .faq-contact-box {
        padding: 30px 20px;
    }
    .fc-text h2 {
        font-size: 24px;
    }
    .fc-actions {
        flex-direction: column;
    }
    .misconception-card {
        padding: 20px 16px;
    }
}