        /* =========================================================
     TERMS PAGE — STRICT / MINIMAL
     ========================================================= */

        :root {
            --terms-dark: #0b1220;
            --terms-dark-soft: #172033;
            --terms-text: #1f2937;
            --terms-muted: #667085;
            --terms-border: #d9dee7;
            --terms-surface: #ffffff;
            --terms-surface-alt: #f5f7fa;
            --terms-accent: #d65a1f;
            --terms-accent-dark: #b54716;
            --terms-warning-bg: #fff8f3;
            --terms-info-bg: #f3f6fa;
        }

        .terms-page {
            background: var(--terms-surface);
            color: var(--terms-text);
        }

        .terms-page main {
            flex: 1;
        }

        /* =========================================================
     HERO
     ========================================================= */

        .terms-hero {
            position: relative;
            padding: 72px 0 76px;
            background: var(--terms-dark);
            color: #ffffff;
            overflow: hidden;
        }

        .terms-hero::before,
        .terms-hero::after {
            display: none;
        }

        .terms-hero__inner {
            max-width: 860px;
        }

        .terms-breadcrumbs {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.82rem;
            font-weight: 600;
        }

        .terms-breadcrumbs a {
            color: rgba(255, 255, 255, 0.82);
        }

        .terms-breadcrumbs a:hover {
            color: #ffffff;
        }

        .terms-breadcrumbs i {
            font-size: 0.62rem;
        }

        .terms-hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 7px 11px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 6px;
            background: transparent;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.72rem;
            font-weight: 750;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .terms-hero__eyebrow i {
            color: #f28a55;
        }

        .terms-hero h1 {
            max-width: 760px;
            margin: 0 0 18px;
            color: #ffffff;
            font-family: var(--font-heading, "Outfit", sans-serif);
            font-size: clamp(2.7rem, 5vw, 4.6rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.045em;
        }

        .terms-hero__lead {
            max-width: 730px;
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.02rem;
            line-height: 1.7;
        }

        .terms-updated {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-top: 26px;
            padding: 9px 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .terms-updated i {
            color: #f28a55;
        }

        .terms-updated strong {
            color: #ffffff;
        }

        /* =========================================================
     SUMMARY
     ========================================================= */

        .terms-summary {
            margin: 0;
            border-bottom: 1px solid var(--terms-border);
            background: var(--terms-surface-alt);
        }

        .terms-summary__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .terms-summary__item {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            padding: 24px 28px;
        }

        .terms-summary__item+.terms-summary__item {
            border-left: 1px solid var(--terms-border);
        }

        .terms-summary__icon {
            flex: 0 0 38px;
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border: 1px solid var(--terms-border);
            border-radius: 8px;
            background: #ffffff;
            color: var(--terms-accent);
            font-size: 0.9rem;
        }

        .terms-summary__item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--terms-dark);
            font-size: 0.9rem;
        }

        .terms-summary__item p {
            margin: 0;
            color: var(--terms-muted);
            font-size: 0.79rem;
            line-height: 1.5;
        }

        /* =========================================================
     MAIN LAYOUT
     ========================================================= */

        .terms-main {
            padding: 72px 0 88px;
        }

        .terms-layout {
            display: grid;
            grid-template-columns: 250px minmax(0, 820px);
            justify-content: center;
            gap: 56px;
            align-items: start;
        }

        /* =========================================================
     CONTENTS NAVIGATION
     ========================================================= */

        .terms-nav {
            position: sticky;
            top: 102px;
            padding: 18px;
            border: 1px solid var(--terms-border);
            border-radius: 10px;
            background: #ffffff;
            box-shadow: none;
        }

        .terms-nav__title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 13px;
            padding: 0 0 12px;
            border-bottom: 1px solid var(--terms-border);
            color: var(--terms-dark);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .terms-nav__title i {
            color: var(--terms-accent);
        }

        .terms-nav ul {
            display: flex;
            flex-direction: column;
            gap: 1px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .terms-nav a {
            display: block;
            padding: 8px 9px;
            border-radius: 5px;
            color: var(--terms-muted);
            font-size: 0.77rem;
            line-height: 1.35;
            transition:
                background 0.18s ease,
                color 0.18s ease;
        }

        .terms-nav a:hover,
        .terms-nav a:focus-visible {
            background: var(--terms-surface-alt);
            color: var(--terms-dark);
        }

        /* =========================================================
     ARTICLE
     ========================================================= */

        .terms-article {
            min-width: 0;
        }

        .terms-intro {
            margin-bottom: 34px;
            padding: 22px 24px;
            border: 1px solid var(--terms-border);
            border-left: 4px solid var(--terms-accent);
            border-radius: 6px;
            background: var(--terms-surface-alt);
        }

        .terms-intro strong {
            display: block;
            margin-bottom: 8px;
            color: var(--terms-dark);
            font-size: 1rem;
        }

        .terms-intro p {
            margin: 0;
            color: var(--terms-muted);
            font-size: 0.9rem;
            line-height: 1.68;
        }

        .terms-section {
            scroll-margin-top: 115px;
            padding: 36px 0;
            border-bottom: 1px solid var(--terms-border);
        }

        .terms-section:first-of-type {
            padding-top: 0;
        }

        .terms-section:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .terms-section__number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 30px;
            height: 30px;
            margin-bottom: 12px;
            padding: 0 9px;
            border-radius: 5px;
            background: var(--terms-dark);
            color: #ffffff;
            font-size: 0.69rem;
            font-weight: 800;
        }

        .terms-section h2 {
            margin: 0 0 17px;
            color: var(--terms-dark);
            font-family: var(--font-heading, "Outfit", sans-serif);
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            line-height: 1.2;
            letter-spacing: -0.025em;
        }

        .terms-section h3 {
            margin: 26px 0 10px;
            color: var(--terms-dark-soft);
            font-size: 1rem;
            line-height: 1.4;
        }

        .terms-section p {
            margin: 0 0 15px;
            color: #4b5565;
            font-size: 0.93rem;
            line-height: 1.75;
        }

        .terms-section p:last-child {
            margin-bottom: 0;
        }

        .terms-section ul,
        .terms-section ol {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin: 16px 0;
            padding-left: 22px;
            color: #4b5565;
            font-size: 0.92rem;
            line-height: 1.67;
        }

        .terms-section ul {
            list-style: disc;
        }

        .terms-section ol {
            list-style: decimal;
        }

        .terms-section li::marker {
            color: var(--terms-accent);
        }

        .terms-section a {
            color: var(--terms-accent-dark);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: rgba(181, 71, 22, 0.3);
            text-underline-offset: 3px;
        }

        .terms-section a:hover {
            color: #8f3510;
            text-decoration-color: currentColor;
        }

        /* =========================================================
     NOTES
     ========================================================= */

        .terms-note,
        .terms-warning {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 20px 0;
            padding: 15px 16px;
            border-radius: 6px;
        }

        .terms-note {
            border: 1px solid #d4dae4;
            background: var(--terms-info-bg);
        }

        .terms-warning {
            border: 1px solid #ebc7b7;
            background: var(--terms-warning-bg);
        }

        .terms-note i,
        .terms-warning i {
            flex: 0 0 auto;
            margin-top: 3px;
        }

        .terms-note i {
            color: #51647c;
        }

        .terms-warning i {
            color: var(--terms-accent);
        }

        .terms-note p,
        .terms-warning p {
            margin: 0;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .terms-note p {
            color: #44546a;
        }

        .terms-warning p {
            color: #73351d;
        }

        /* =========================================================
     COMPANY TABLE
     ========================================================= */

        .terms-company {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            margin-top: 20px;
            overflow: hidden;
            border: 1px solid var(--terms-border);
            border-radius: 8px;
            background: #ffffff;
        }

        .terms-company dt,
        .terms-company dd {
            margin: 0;
            padding: 13px 15px;
            border-bottom: 1px solid var(--terms-border);
        }

        .terms-company dt {
            background: var(--terms-surface-alt);
            color: var(--terms-muted);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .terms-company dd {
            color: var(--terms-text);
            font-size: 0.86rem;
            font-weight: 600;
            overflow-wrap: anywhere;
        }

        .terms-company dt:last-of-type,
        .terms-company dd:last-of-type {
            border-bottom: 0;
        }

        /* =========================================================
     CONTACT BOX
     ========================================================= */

        .terms-contact-box {
            margin-top: 24px;
            padding: 25px;
            border-radius: 8px;
            background: var(--terms-dark);
            color: #ffffff;
        }

        .terms-contact-box h3 {
            margin: 0 0 9px;
            color: #ffffff;
            font-size: 1.18rem;
        }

        .terms-contact-box p {
            margin: 0 0 17px;
            color: rgba(255, 255, 255, 0.65);
        }

        .terms-contact-box__links {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }

        .terms-contact-box__links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 40px;
            padding: 9px 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 5px;
            background: transparent;
            color: #ffffff;
            font-size: 0.79rem;
            font-weight: 700;
            text-decoration: none;
        }

        .terms-contact-box__links a:hover {
            border-color: rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
        }

        /* =========================================================
     OFFICIAL LINKS
     ========================================================= */

        .terms-official {
            padding: 0 0 82px;
        }

        .terms-official__panel {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            gap: 20px;
            align-items: center;
            padding: 27px 30px;
            border: 1px solid var(--terms-border);
            border-radius: 8px;
            background: var(--terms-surface-alt);
        }

        .terms-official__icon {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 7px;
            background: var(--terms-dark);
            color: #ffffff;
            font-size: 1rem;
        }

        .terms-official h2 {
            margin: 0 0 5px;
            color: var(--terms-dark);
            font-size: 1.18rem;
        }

        .terms-official p {
            margin: 0;
            color: var(--terms-muted);
            font-size: 0.86rem;
            line-height: 1.55;
        }

        .terms-official__links {
            display: flex;
            flex-direction: column;
            gap: 7px;
            align-items: flex-start;
        }

        .terms-official__links a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--terms-dark-soft);
            font-size: 0.78rem;
            font-weight: 750;
            white-space: nowrap;
        }

        .terms-official__links a:hover {
            color: var(--terms-accent-dark);
        }

        /* =========================================================
     RESPONSIVE
     ========================================================= */

        @media (max-width: 1024px) {
            .terms-layout {
                grid-template-columns: 220px minmax(0, 1fr);
                gap: 38px;
            }
        }

        @media (max-width: 860px) {
            .terms-summary__grid {
                grid-template-columns: 1fr;
            }

            .terms-summary__item+.terms-summary__item {
                border-top: 1px solid var(--terms-border);
                border-left: 0;
            }

            .terms-layout {
                grid-template-columns: 1fr;
            }

            .terms-nav {
                position: relative;
                top: auto;
            }

            .terms-nav ul {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 2px 8px;
            }

            .terms-official__panel {
                grid-template-columns: auto 1fr;
            }

            .terms-official__links {
                grid-column: 1 / -1;
                padding-left: 68px;
            }
        }

        @media (max-width: 600px) {
            .terms-hero {
                padding: 52px 0 58px;
            }

            .terms-hero h1 {
                font-size: clamp(2.55rem, 13vw, 3.7rem);
            }

            .terms-hero__lead {
                font-size: 0.94rem;
            }

            .terms-updated {
                align-items: flex-start;
                border-radius: 6px;
            }

            .terms-summary__item {
                padding: 20px 0;
            }

            .terms-main {
                padding: 52px 0 68px;
            }

            .terms-nav ul {
                grid-template-columns: 1fr;
            }

            .terms-intro {
                padding: 19px;
            }

            .terms-section {
                padding: 29px 0;
            }

            .terms-company {
                grid-template-columns: 1fr;
            }

            .terms-company dt {
                padding-bottom: 4px;
                border-bottom: 0;
            }

            .terms-company dd {
                padding-top: 3px;
            }

            .terms-contact-box {
                padding: 21px;
            }

            .terms-contact-box__links {
                flex-direction: column;
            }

            .terms-contact-box__links a {
                justify-content: center;
                width: 100%;
            }

            .terms-official {
                padding-bottom: 64px;
            }

            .terms-official__panel {
                grid-template-columns: 1fr;
                padding: 22px;
            }

            .terms-official__links {
                grid-column: auto;
                padding-left: 0;
            }

            .terms-official__links a {
                white-space: normal;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }