/* faq-style.css — page-specific styles */
/* ════════════════════════════════════════
           PAGE HERO
        ════════════════════════════════════════ */
        .faq-hero {
            padding: 170px 24px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Orbiting ring decoration */
        .faq-hero::before {
            content: '';
            position: absolute;
            width: 600px; height: 600px;
            border-radius: 50%;
            border: 1px solid rgba(104,242,213,0.1);
            top: 50%; left: 50%;
            transform: translate(-50%, -40%);
            animation: ringOrbit 30s linear infinite;
        }

        .faq-hero::after {
            content: '';
            position: absolute;
            width: 380px; height: 380px;
            border-radius: 50%;
            border: 1px solid rgba(188,122,255,0.12);
            top: 50%; left: 50%;
            transform: translate(-50%, -40%);
            animation: ringOrbit 18s linear infinite reverse;
        }

        @keyframes ringOrbit { from{transform:translate(-50%,-40%) rotate(0)} to{transform:translate(-50%,-40%) rotate(360deg)} }

        .faq-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto;
        }

        .faq-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 24px;
            padding: 8px 22px;
            border-radius: 999px;
            background: rgba(104,242,213,0.07);
            border: 1px solid rgba(104,242,213,0.2);
            animation: fadeUp 0.7s ease 0.1s both;
        }

        .eyebrow-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--teal);
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }
        @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
        @keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

        .faq-hero h1 {
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 22px;
            animation: fadeUp 1s ease 0.3s both;
        }

        .faq-hero h1 .word-everything {
            display: block;
            background: linear-gradient(135deg, #fff 0%, #68f2d5 40%, #69bfff 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeUp 1s ease 0.3s both, gradientShift 7s ease infinite;
        }

        .faq-hero h1 .word-you {
            display: block;
            color: rgba(255,255,255,0.18);
            font-style: italic;
            font-size: 0.65em;
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        .faq-hero-sub {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.75;
            max-width: 520px;
            margin: 0 auto 48px;
            animation: fadeUp 1s ease 0.5s both;
        }

        /* ── SEARCH BAR ── */
        .faq-search-wrap {
            animation: fadeUp 1s ease 0.7s both;
            max-width: 520px;
            margin: 0 auto 20px;
            position: relative;
        }

        .faq-search {
            width: 100%;
            padding: 18px 56px 18px 22px;
            border-radius: 999px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.14);
            color: #fff;
            font-size: 0.97rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(12px);
        }

        .faq-search::placeholder { color: rgba(255,255,255,0.35); }

        .faq-search:focus {
            border-color: rgba(104,242,213,0.5);
            box-shadow: 0 0 0 4px rgba(104,242,213,0.08), 0 0 30px rgba(104,242,213,0.1);
            background: rgba(255,255,255,0.09);
        }

        .faq-search-icon {
            position: absolute;
            right: 20px; top: 50%;
            transform: translateY(-50%);
            font-size: 1.1rem;
            opacity: 0.45;
            pointer-events: none;
        }

        .search-count {
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.28);
            margin-top: 10px;
            letter-spacing: 0.05em;
            min-height: 20px;
            transition: all 0.3s ease;
            animation: fadeUp 1s ease 0.9s both;
        }

        /* ── CATEGORY PILLS ── */
        .faq-categories {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 28px;
            animation: fadeUp 1s ease 0.9s both;
        }

        .cat-pill {
            padding: 8px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.55);
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            user-select: none;
        }

        .cat-pill:hover, .cat-pill.active {
            background: rgba(104,242,213,0.1);
            border-color: rgba(104,242,213,0.35);
            color: var(--teal);
            transform: translateY(-2px);
        }

        /* ════════════════════════════════════════
           FAQ GRID — 2 columns with large number accent
        ════════════════════════════════════════ */
        .faq-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 24px 120px;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* The core accordion item */
        .faq-item {
            border-radius: 20px;
            background: rgba(255,255,255,0.055);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(16px);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(.22,.61,.36,1);
            position: relative;
        }

        /* Glow line on left side when open */
        .faq-item::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 3px;
            border-radius: 3px 0 0 3px;
            background: linear-gradient(180deg, var(--teal), var(--cyan));
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .faq-item.open::before {
            opacity: 1;
        }

        .faq-item.open {
            background: rgba(255,255,255,0.08);
            border-color: rgba(104,242,213,0.22);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 30px rgba(104,242,213,0.06);
        }

        .faq-item.hidden {
            display: none;
        }

        /* Question row */
        .faq-question {
            display: grid;
            grid-template-columns: 52px 1fr 44px;
            align-items: center;
            gap: 16px;
            padding: 26px 28px;
            cursor: pointer;
            user-select: none;
            transition: all 0.25s ease;
        }

        .faq-question:hover .faq-q-text {
            color: #fff;
        }

        /* Big number */
        .faq-num {
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, rgba(104,242,213,0.5), rgba(105,191,255,0.4));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.05em;
            flex-shrink: 0;
            transition: all 0.35s ease;
        }

        .faq-item.open .faq-num {
            background: linear-gradient(135deg, var(--teal), var(--cyan));
            -webkit-background-clip: text;
            background-clip: text;
        }

        .faq-q-text {
            font-size: 1.05rem;
            font-weight: 600;
            color: rgba(255,255,255,0.82);
            line-height: 1.4;
            transition: color 0.25s ease;
        }

        /* +/× Toggle */
        .faq-toggle {
            width: 36px; height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.35s cubic-bezier(.22,.61,.36,1);
            background: rgba(255,255,255,0.04);
        }

        .faq-toggle-icon {
            font-size: 1.1rem;
            line-height: 1;
            color: rgba(255,255,255,0.5);
            transition: all 0.35s cubic-bezier(.22,.61,.36,1);
            font-weight: 300;
        }

        .faq-item.open .faq-toggle {
            background: linear-gradient(135deg, rgba(104,242,213,0.18), rgba(105,191,255,0.18));
            border-color: rgba(104,242,213,0.35);
            transform: rotate(45deg);
        }

        .faq-item.open .faq-toggle-icon {
            color: var(--teal);
        }

        /* Answer panel */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease, padding 0.4s ease;
            opacity: 0;
            padding: 0 28px 0 96px;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            opacity: 1;
            padding: 0 28px 28px 96px;
        }

        .faq-answer-inner {
            padding-top: 4px;
            border-top: 1px solid rgba(255,255,255,0.07);
            padding-top: 20px;
        }

        .faq-answer p {
            font-size: 0.97rem;
            color: #a8bfd4;
            line-height: 1.85;
            margin: 0;
        }

        /* Highlight link inside answer */
        .faq-answer a {
            color: var(--teal);
            border-bottom: 1px solid rgba(104,242,213,0.3);
            transition: all 0.2s ease;
        }
        .faq-answer a:hover { color: #fff; border-color: #fff; }

        /* ── FLOATING QUICK ANSWERS (decorative tags) ── */
        .faq-quick-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .quick-tag {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .qt-green { background: rgba(104,242,213,0.12); color: var(--teal); border: 1px solid rgba(104,242,213,0.2); }
        .qt-blue  { background: rgba(105,191,255,0.12); color: var(--cyan); border: 1px solid rgba(105,191,255,0.2); }
        .qt-purple{ background: rgba(188,122,255,0.12); color: var(--purple); border: 1px solid rgba(188,122,255,0.2); }

        /* ── NO RESULTS ── */
        .faq-no-results {
            text-align: center;
            padding: 60px 24px;
            display: none;
        }

        .faq-no-results.visible { display: block; }

        .faq-no-results-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }
        .faq-no-results h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
        .faq-no-results p { color: var(--muted); font-size: 0.95rem; }

        /* ════════════════════════════════════════
           BOTTOM CTA STRIP
        ════════════════════════════════════════ */
        .faq-cta {
            max-width: 1100px;
            margin: 0 auto 100px;
            padding: 0 24px;
        }

        .faq-cta-inner {
            border-radius: 28px;
            padding: 56px 48px;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 40px;
            background: linear-gradient(135deg, rgba(104,242,213,0.08), rgba(105,191,255,0.07), rgba(188,122,255,0.05));
            border: 1px solid rgba(104,242,213,0.18);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .faq-cta-inner::before {
            content: '?';
            position: absolute;
            right: 48px; bottom: -20px;
            font-size: 14rem;
            font-weight: 800;
            color: rgba(255,255,255,0.02);
            line-height: 1;
            letter-spacing: -0.05em;
            pointer-events: none;
            user-select: none;
        }

        .faq-cta-text h2 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .faq-cta-text p {
            color: var(--muted);
            font-size: 1rem;
            margin: 0;
        }

        .faq-cta-btn {
            display: inline-block;
            padding: 18px 40px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--teal), var(--cyan));
            background-size: 200% 200%;
            color: #071019;
            font-weight: 800;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            white-space: nowrap;
            transition: all 0.35s ease;
            box-shadow: 0 0 32px rgba(104,242,213,0.28);
            animation: gradientShift 6s ease infinite;
        }

        .faq-cta-btn:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 0 56px rgba(104,242,213,0.5);
            color: #071019;
        }

        /* ── SCROLL REVEAL ── */
        .reveal { opacity:0; transform:translateY(28px); transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1); }
        .reveal.visible { opacity:1; transform:translateY(0); }
        .rd1 { transition-delay: 0.05s; }
        .rd2 { transition-delay: 0.1s; }
        .rd3 { transition-delay: 0.15s; }

        footer { padding: 40px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
        .footer-content { max-width: 1200px; margin: 0 auto; }
        .footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-links a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
        .footer-links a:hover { color: var(--teal); }
        .footer-copyright { text-align: center; color: #5a7085; font-size: 0.84rem; }

        /* ── RESPONSIVE ── */
        @media (max-width: 860px) {
            .faq-cta-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
            .faq-cta-inner::before { display: none; }
            .faq-cta-btn { width: 100%; text-align: center; }
        }

        @media (max-width: 640px) {
            .faq-question { grid-template-columns: 36px 1fr 36px; gap: 12px; padding: 20px 18px; }
            .faq-num { font-size: 1.1rem; }
            .faq-q-text { font-size: 0.95rem; }
            .faq-item.open .faq-answer { padding: 0 18px 22px 64px; }
        }
    

        /* Performance tuning */
        .faq-hero::before,
        .faq-hero::after,
        .eyebrow-dot,
        .faq-hero h1 .word-everything,
        .faq-cta-button {
            animation: none !important;
        }

        .faq-search,
        .faq-item,
        .faq-cta-card {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .faq-cta-button,
        .faq-cta-button:hover {
            box-shadow: 0 10px 26px rgba(104,242,213,0.22) !important;
        }

        main > section,
        .faq-section,
        .faq-cta {
            content-visibility: auto;
            contain-intrinsic-size: 900px;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }