        #faq {
            overflow: clip;
            background:
                radial-gradient(circle at 14% 18%, rgba(52, 144, 255, .18), transparent 22rem),
                radial-gradient(circle at 88% 30%, rgba(137, 226, 78, .13), transparent 20rem),
                linear-gradient(180deg, rgba(4, 9, 21, .22), rgba(6, 16, 30, .96));
        }

        .faq-layout {
            display: grid;
            grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
            gap: clamp(24px, 4vw, 56px);
            align-items: start;
        }

        .faq-layout > * {
            min-width: 0;
        }

        .faq-intro {
            position: sticky;
            top: calc(var(--premium-header-height) + 34px);
            display: grid;
            gap: 24px;
        }

        .faq-intro > div:first-child {
            min-width: 0;
        }

        .faq-intro .premium-title {
            margin-top: 18px;
            font-size: clamp(28px, 4.4vw, 55px);
            line-height: 1.02;
            overflow-wrap: normal;
        }

        /* Above 1240px the two-column grid's left track settles into a narrow
           ~410-440px range (premium-shell caps at 1280px), so the title needs
           a font size small enough that its longest word never exceeds that
           width - vw-based scaling can't help here since the column stops
           growing with the viewport. */
        @media screen and (min-width: 1241px) {
            .faq-intro .premium-title {
                font-size: 25px;
            }
        }

        .faq-proof-card {
            position: relative;
            display: grid;
            gap: 18px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 8px;
            background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
            box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
            backdrop-filter: blur(18px);
        }

        .faq-proof-card::before {
            content: '';
            position: absolute;
            inset: 0 auto 0 0;
            width: 3px;
            background: linear-gradient(180deg, var(--owu-green), rgba(137, 226, 78, 0));
        }

        .faq-proof-card p {
            margin: 0;
            color: rgba(255, 255, 255, .72);
            font-size: 15px;
            line-height: 1.65;
        }

        .faq-proof-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .faq-proof-metrics span {
            min-height: 76px;
            display: grid;
            align-content: center;
            gap: 6px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 8px;
            background: rgba(255, 255, 255, .045);
            color: rgba(255, 255, 255, .58);
            font-size: 11px;
            font-weight: 700;
            line-height: 1.25;
            text-transform: uppercase;
        }

        .faq-proof-metrics strong {
            color: var(--owu-green);
            font-family: 'Unbounded', sans-serif;
            font-size: 20px;
            line-height: 1;
        }

        .faq-list {
            min-width: 0;
            display: grid;
            gap: 12px;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 8px;
            background: rgba(255, 255, 255, .045);
            box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
            backdrop-filter: blur(18px);
            overflow: hidden;
            transition: border-color .28s ease, background .28s ease, transform .28s ease;
        }

        .faq-item:hover,
        .faq-item[open] {
            border-color: rgba(137, 226, 78, .34);
            background: rgba(255, 255, 255, .07);
        }

        .faq-item[open] {
            transform: translateY(-2px);
        }

        .faq-item summary {
            min-height: 86px;
            display: grid;
            grid-template-columns: 48px minmax(0, 1fr) 38px;
            gap: 18px;
            align-items: center;
            padding: 20px 22px;
            cursor: pointer;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-number {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            background: rgba(52, 144, 255, .16);
            color: var(--owu-green);
            font-family: 'Unbounded', sans-serif;
            font-size: 14px;
            font-weight: 700;
        }

        .faq-question {
            color: #ffffff;
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(15px, 1.45vw, 19px);
            line-height: 1.35;
            letter-spacing: 0;
        }

        .faq-toggle {
            width: 38px;
            height: 38px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
        }

        .faq-toggle::before,
        .faq-toggle::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 14px;
            height: 2px;
            border-radius: 999px;
            background: #ffffff;
            transform: translate(-50%, -50%);
            transition: transform .24s ease, background .24s ease;
        }

        .faq-toggle::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-item[open] .faq-toggle {
            border-color: rgba(137, 226, 78, .42);
            background: rgba(137, 226, 78, .14);
        }

        .faq-item[open] .faq-toggle::before,
        .faq-item[open] .faq-toggle::after {
            background: var(--owu-green);
        }

        .faq-item[open] .faq-toggle::after {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        .faq-answer {
            padding: 0 22px 24px 88px;
        }

        .faq-answer p {
            max-width: 68ch;
            margin: 0;
            color: rgba(255, 255, 255, .7);
            font-size: 16px;
            line-height: 1.7;
        }

        @media screen and (max-width: 1240px) {
            .faq-layout {
                grid-template-columns: 1fr;
            }

            .faq-intro {
                position: static;
            }
        }

        @media screen and (max-width: 620px) {
            /* .faq-proof-metrics {
                grid-template-columns: 1fr;
            } */

            .faq-item summary {
                min-height: auto;
                grid-template-columns: 40px minmax(0, 1fr) 34px;
                gap: 12px;
                padding: 18px 14px;
            }

            .faq-number {
                width: 40px;
                height: 40px;
                font-size: 12px;
            }

            .faq-toggle {
                width: 34px;
                height: 34px;
            }

            .faq-answer {
                padding: 0 14px 20px 66px;
            }

            .faq-answer p {
                font-size: 15px;
                line-height: 1.62;
            }
        }

        @media (max-width: 480px) {
            .faq-intro .premium-title {
                max-width: 100%;
            }
        }