/* faq.css — ZSM Digital FAQ Page (light theme) */

body.light-theme .faq-hero {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 72px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 0, 0, 0.03) 0%, transparent 70%),
        var(--bg-main);
}
body.light-theme .faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.10) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 72%);
}
body.light-theme .faq-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: faqHeroReveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}
@keyframes faqHeroReveal {
    to { opacity: 1; transform: translateY(0); }
}
body.light-theme .faq-hero .hero-badge {
    background: #fff;
    border: 1px solid var(--border-soft);
    color: var(--text-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
body.light-theme .faq-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}
body.light-theme .faq-hero h1 em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
}
body.light-theme .faq-hero h1 strong { font-weight: 400; }
body.light-theme .faq-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 28px;
}

body.light-theme .faq-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
body.light-theme .faq-quick-links a {
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-soft);
    background: #fff;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
body.light-theme .faq-quick-links a:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow-card);
    transform: translateY(-1px);
}

body.light-theme .faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 100px;
}

body.light-theme .faq-category {
    margin-bottom: 48px;
}
body.light-theme .faq-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-soft);
}
body.light-theme .faq-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
body.light-theme .faq-category-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
body.light-theme .faq-category-header h2 {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin: 0;
}
body.light-theme .faq-category-header p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--text-gray);
}

body.light-theme .faq-page .faq-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    gap: 0;
    max-width: none;
    margin: 0;
}
body.light-theme .faq-page .faq-item {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
}
body.light-theme .faq-page .faq-item:last-child { border-bottom: none; }
body.light-theme .faq-page .faq-item::after { display: none; }
body.light-theme .faq-page .faq-item.active { background: #fafafa; }
body.light-theme .faq-page .faq-trigger {
    padding: 24px 28px;
    color: var(--text-dark);
}
body.light-theme .faq-page .faq-number {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-faint);
    min-width: 24px;
}
body.light-theme .faq-page .faq-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}
body.light-theme .faq-page .faq-icon span { background: #111; }
body.light-theme .faq-page .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px 0 66px;
}
body.light-theme .faq-page .faq-item.active .faq-content {
    max-height: 400px;
    padding-bottom: 24px;
}
body.light-theme .faq-page .faq-body {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0;
}
body.light-theme .faq-page .faq-body a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.light-theme .faq-page-cta {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 24px;
}
body.light-theme .faq-page-cta .services-cta {
    padding: 0;
    max-width: none;
}
body.light-theme .faq-page-cta .services-cta-card {
    text-align: center;
}

@media (max-width: 768px) {
    body.light-theme .faq-hero { padding: 140px 24px 48px; min-height: auto; }
    body.light-theme .faq-page .faq-trigger { padding: 20px; }
    body.light-theme .faq-page .faq-content { padding-left: 20px; padding-right: 20px; }
    body.light-theme .faq-page .faq-item.active .faq-content { padding-bottom: 20px; }
    body.light-theme .faq-category-header { flex-wrap: wrap; }
}
