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

    :root {
        /* Dark theme (default) */
        --green: #5CB87B;
        --teal: #0D9AAE;
        --teal-light: #ABD7D7;
        --teal-dim: rgba(13, 154, 174, 0.15);
        --teal-glow: rgba(13, 154, 174, 0.35);
        --green-dim: rgba(92, 183, 123, 0.12);
        --bg-deep: #070d12;
        --bg-mid: #0b1520;
        --bg-card: rgba(11, 21, 32, 0.72);
        --border-subtle: rgba(171, 215, 215, 0.12);
        --border-active: rgba(13, 154, 174, 0.5);
        --text-primary: #e8f4f5;
        --text-secondary: rgba(171, 215, 215, 0.65);
        --text-muted: rgba(171, 215, 215, 0.38);
        --input-bg: rgba(13, 154, 174, 0.06);
        --input-bg-focus: rgba(13, 154, 174, 0.1);
        --font: 'Noto Sans Display', 'Noto Sans Display SemiCondensed', system-ui, sans-serif;
        --shadow-card: 0 32px 80px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(171, 215, 215, 0.06) inset;
        --bg-orb-1: rgba(13, 154, 174, 0.22);
        --bg-orb-2: rgba(92, 183, 123, 0.14);
        --bg-orb-3: rgba(13, 154, 174, 0.1);
        --grid-color: rgba(171, 215, 215, 0.08);
        --noise-opacity: 0.018;
        --logo-opacity: 0.028;
    }

    [data-theme="light"] {
        --green: #2E8B5B;
        --teal: #0A7A8A;
        --teal-light: #0D9AAE;
        --teal-dim: rgba(13, 154, 174, 0.08);
        --teal-glow: rgba(13, 154, 174, 0.2);
        --green-dim: rgba(92, 183, 123, 0.08);
        --bg-deep: #f0f4f5;
        --bg-mid: #e8edef;
        --bg-card: rgba(255, 255, 255, 0.85);
        --border-subtle: rgba(13, 154, 174, 0.15);
        --border-active: rgba(13, 154, 174, 0.6);
        --text-primary: #0a0f12;
        --text-secondary: rgba(10, 15, 18, 0.85);
        --text-muted: rgba(10, 15, 18, 0.6);
        --input-bg: rgba(13, 154, 174, 0.04);
        --input-bg-focus: rgba(13, 154, 174, 0.08);
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
        --bg-orb-1: rgba(13, 154, 174, 0.12);
        --bg-orb-2: rgba(92, 183, 123, 0.08);
        --bg-orb-3: rgba(13, 154, 174, 0.06);
        --grid-color: rgba(13, 154, 174, 0.10);
        --noise-opacity: 0.008;
        --logo-opacity: 0.06;
    }

    html,
    body {
        min-height: 100vh;
    }

    body {
        font-family: var(--font);
        background-color: var(--bg-deep);
        color: var(--text-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    /* ── Theme Toggle ── */
    .theme-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 100;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s ease;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: var(--shadow-card);
    }

    .theme-toggle:hover {
        transform: scale(1.05);
        border-color: var(--border-active);
        box-shadow: 0 4px 20px var(--teal-glow);
    }

    .theme-toggle svg {
        width: 22px;
        height: 22px;
        stroke: var(--teal);
        transition: all 0.3s ease;
    }

    [data-theme="light"] .theme-toggle .moon-icon {
        display: none;
    }

    [data-theme="light"] .theme-toggle .sun-icon {
        display: block;
    }

    :root:not([data-theme="light"]) .theme-toggle .moon-icon {
        display: block;
    }

    :root:not([data-theme="light"]) .theme-toggle .sun-icon {
        display: none;
    }

    /* ── Atmospheric background ── */
    .bg-canvas {
        position: fixed;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }



    .bg-gradient-orb-1 {
        position: absolute;
        width: 55vw;
        height: 55vw;
        border-radius: 50%;
        background: radial-gradient(circle, var(--bg-orb-1) 0%, transparent 70%);
        top: -20%;
        left: -15%;
        animation: drift1 18s ease-in-out infinite alternate;
    }

    .bg-gradient-orb-2 {
        position: absolute;
        width: 40vw;
        height: 40vw;
        border-radius: 50%;
        background: radial-gradient(circle, var(--bg-orb-2) 0%, transparent 70%);
        bottom: -10%;
        right: 5%;
        animation: drift2 22s ease-in-out infinite alternate;
    }

    .bg-gradient-orb-3 {
        position: absolute;
        width: 30vw;
        height: 30vw;
        border-radius: 50%;
        background: radial-gradient(circle, var(--bg-orb-3) 0%, transparent 70%);
        top: 40%;
        right: -5%;
        animation: drift3 15s ease-in-out infinite alternate;
    }

    .bg-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(var(--grid-color) 1px, transparent 1px),
            linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
        background-size: 24px 24px;
        transition: background-image 0.3s ease;
    }

    .bg-noise {
        position: absolute;
        inset: 0;
        opacity: var(--noise-opacity);
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 256px 256px;
        transition: opacity 0.3s ease;
    }

    @keyframes drift1 {
        from {
            transform: translate(0, 0) scale(1);
        }

        to {
            transform: translate(3%, 5%) scale(1.08);
        }
    }

    @keyframes drift2 {
        from {
            transform: translate(0, 0) scale(1);
        }

        to {
            transform: translate(-4%, -3%) scale(1.05);
        }
    }

    @keyframes drift3 {
        from {
            transform: translate(0, 0);
        }

        to {
            transform: translate(-2%, 4%);
        }
    }

    /* ── Scan line accent ── */
    .scan-line {
        position: fixed;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(13, 154, 174, 0.4) 40%, rgba(92, 183, 123, 0.4) 60%, transparent 100%);
        animation: scan 8s linear infinite;
        z-index: 1;
        pointer-events: none;
    }

    @keyframes scan {
        from {
            top: -1px;
            opacity: 0;
        }

        5% {
            opacity: 1;
        }

        95% {
            opacity: 1;
        }

        to {
            top: 100vh;
            opacity: 0;
        }
    }

    /* ── Main layout ── */
    .page {
        position: relative;
        z-index: 10;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1.5rem;
    }

    .login-wrap {
        width: 100%;
        max-width: 440px;
        animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── Brand header ── */
    .brand-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .brand-logo-svg {
        display: block;
        margin: 0 auto 1.25rem;
        height: 52px;
        width: auto;
    }

    .brand-tagline {
        font-size: 13.5px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-secondary);
        margin-top: 0.5rem;
        transition: color 0.3s ease;
    }

    .brand-divider {
        width: 48px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--teal), transparent);
        margin: 1.1rem auto 0;
    }

    /* ── Card ── */
    .card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 18px;
        padding: 2.4rem 2.4rem 2rem;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(24px) saturate(160%);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        box-shadow: var(--shadow-card);
        transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20%;
        right: 20%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(13, 154, 174, 0.55), rgba(92, 183, 123, 0.4), transparent);
    }

    .card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(180deg, var(--teal-dim) 0%, transparent 100%);
        pointer-events: none;
    }

    /* ── Card heading ── */
    .card-heading {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 1.75rem;
        transition: color 0.3s ease;
    }

    /* ── Alert messages ── */
    .alert {
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 300;
        margin-bottom: 1.25rem;
        display: none;
        animation: alertIn 0.25s ease both;
    }

    .alert.show {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @keyframes alertIn {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .alert-error {
        background: rgba(244, 67, 54, 0.1);
        border: 1px solid rgba(244, 67, 54, 0.25);
        color: #ff8a85;
    }

    .alert-success {
        background: rgba(76, 175, 80, 0.1);
        border: 1px solid rgba(76, 175, 80, 0.25);
        color: #7ee08a;
    }

    [data-theme="light"] .alert-error {
        background: rgba(244, 67, 54, 0.08);
        border: 1px solid rgba(244, 67, 54, 0.2);
        color: #d32f2f;
    }

    [data-theme="light"] .alert-success {
        background: rgba(76, 175, 80, 0.08);
        border: 1px solid rgba(76, 175, 80, 0.2);
        color: #388e3c;
    }

    .alert-icon {
        font-size: 15px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    /* ── Form fields ── */
    .field {
        margin-bottom: 1.25rem;
    }

    .field-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 7px;
    }

    .field-label span {
        font-size: 12.5px;
        font-weight: 500;
        color: var(--text-secondary);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .field-inner {
        position: relative;
    }

    .field-icon {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        display: flex;
        align-items: center;
    }

    .field-icon svg {
        width: 16px;
        height: 16px;
        stroke: var(--teal-light);
        opacity: 0.5;
        transition: opacity 0.2s;
    }

    .field-inner:focus-within .field-icon svg {
        opacity: 0.9;
    }

    input[type="email"],
    input[type="password"],
    input[type="text"] {
        width: 100%;
        background: var(--input-bg);
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        padding: 12px 14px 12px 40px;
        font-family: var(--font);
        font-size: 14.5px;
        font-weight: 300;
        color: var(--text-primary);
        transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, color 0.3s ease;
        outline: none;
        -webkit-appearance: none;
    }

    input::placeholder {
        color: var(--text-muted);
        font-weight: 300;
    }

    input:focus {
        border-color: var(--border-active);
        background: var(--input-bg-focus);
        box-shadow: 0 0 0 3px var(--teal-dim), 0 0 16px var(--teal-glow);
    }

    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 100px var(--bg-mid) inset;
        -webkit-text-fill-color: var(--text-primary);
    }

    [data-theme="light"] input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 100px #fff inset;
    }

    /* password toggle */
    .pw-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .pw-toggle:hover {
        color: var(--teal-light);
    }

    .pw-toggle svg {
        width: 16px;
        height: 16px;
    }

    /* ── Row extras ── */
    .row-extras {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 1.75rem;
        margin-top: 0.25rem;
    }

    .forgot-link {
        font-size: 13px;
        font-weight: 500;
        color: var(--teal);
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: color 0.2s;
        position: relative;
        cursor: pointer;
    }

    .forgot-link::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--teal);
        transform: scaleX(0);
        transition: transform 0.2s;
        transform-origin: left;
    }

    .forgot-link:hover {
        color: var(--teal-light);
    }

    .forgot-link:hover::after {
        transform: scaleX(1);
    }

    /* ── Submit button ── */
    .btn-submit {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 11px;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.04em;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: transform 0.15s, box-shadow 0.25s;
        color: #fff;
        background: linear-gradient(135deg, #0e9fbb 0%, #0d9aae 45%, #5CB87B 100%);
        background-size: 200% 200%;
        background-position: 0% 50%;
        box-shadow: 0 4px 20px rgba(13, 154, 174, 0.35), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
        animation: btnGradient 6s ease infinite;
    }

    [data-theme="light"] .btn-submit {
        box-shadow: 0 4px 20px rgba(13, 154, 174, 0.25), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
    }

    @keyframes btnGradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .btn-submit::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0);
        transition: background 0.2s;
    }

    .btn-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(13, 154, 174, 0.45), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    }

    .btn-submit:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(13, 154, 174, 0.3);
    }

    .btn-submit:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
        animation: none;
    }

    .btn-submit .btn-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* ── Spinner ── */
    .spinner {
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 0.75s linear infinite;
        display: none;
    }

    .spinning .spinner {
        display: block;
    }

    .spinning .btn-label {
        opacity: 0.85;
    }

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

    /* ── Footer ── */
    .copyright {
        text-align: center;
        margin-top: 2rem;
        font-size: 11px;
        font-weight: 300;
        color: var(--text-muted);
        letter-spacing: 0.03em;
        line-height: 1.6;
        animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
        transition: color 0.3s ease;
    }

    /* ── Status dot ── */
    .status-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-bottom: 1.75rem;
    }

    .status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 6px var(--green);
        animation: pulse 2.5s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            box-shadow: 0 0 6px var(--green);
        }

        50% {
            opacity: 0.6;
            box-shadow: 0 0 12px var(--green);
        }
    }

    .status-text {
        font-size: 11px;
        font-weight: 300;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
        transition: color 0.3s ease;
    }

    /* ── Modal ── */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 200;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .modal-overlay.show {
        display: flex;
        opacity: 1;
    }

    .modal {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 18px;
        padding: 2rem;
        max-width: 400px;
        width: 100%;
        position: relative;
        backdrop-filter: blur(24px) saturate(160%);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        box-shadow: var(--shadow-card);
        transform: translateY(20px);
        transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }

    .modal-overlay.show .modal {
        transform: translateY(0);
    }

    .modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.25rem;
    }

    .modal-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        transition: color 0.3s ease;
    }

    .modal-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: var(--text-muted);
        transition: color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-close:hover {
        color: var(--text-primary);
    }

    .modal-close svg {
        width: 20px;
        height: 20px;
    }

    .modal-text {
        font-size: 13.5px;
        font-weight: 300;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        transition: color 0.3s ease;
    }

    .modal-success {
        text-align: center;
        padding: 1rem 0;
    }

    .modal-success-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 1rem;
        background: var(--green-dim);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-success-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--green);
    }

    .modal-back-btn {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        background: var(--input-bg);
        color: var(--text-primary);
        font-family: var(--font);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 1rem;
    }

    .modal-back-btn:hover {
        border-color: var(--border-active);
        background: var(--input-bg-focus);
    }

    /* ── Light Theme Font Weight Increase ── */
    [data-theme="light"] body {
        font-weight: 400;
    }

    [data-theme="light"] .card-heading,
    [data-theme="light"] .field-label span,
    [data-theme="light"] .btn-submit,
    [data-theme="light"] .modal-title {
        font-weight: 600;
    }

    [data-theme="light"] input[type="email"],
    [data-theme="light"] input[type="password"],
    [data-theme="light"] input[type="text"] {
        font-weight: 400;
    }

    [data-theme="light"] .forgot-link,
    [data-theme="light"] .status-text,
    [data-theme="light"] .copyright {
        font-weight: 500;
    }

    /* ── Responsive ── */
    @media (max-width: 480px) {
        .page {
            padding: 4.5rem 1rem 2rem;
        }

        .card {
            padding: 2rem 1.5rem 1.75rem;
            border-radius: 16px;
        }

        .brand-logo-svg {
            height: 44px;
        }

        .theme-toggle {
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
        }

        .modal {
            padding: 1.5rem;
        }
    }

    /* ── Language Toggle ── */
    .lang-toggle {
        position: fixed;
        top: 20px;
        right: 72px;
        z-index: 100;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s ease;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: var(--shadow-card);
        font-family: var(--font);
        font-size: 12px;
        font-weight: 600;
        color: var(--teal);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .lang-toggle:hover {
        transform: scale(1.05);
        border-color: var(--border-active);
        box-shadow: 0 4px 20px var(--teal-glow);
    }

    @media (max-width: 480px) {
        .lang-toggle {
            top: 12px;
            right: 60px;
            width: 40px;
            height: 40px;
        }
    }

    /* ── Language Dropdown ── */
    .language-dropdown {
        position: fixed;
        top: 20px;
        right: 72px;
        z-index: 100;
    }

    @media (max-width: 480px) {
        .language-dropdown {
            top: 12px;
            right: 60px;
        }
    }

    .lang-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        box-shadow: var(--shadow-card);
        min-width: 160px;
        z-index: 101;
        overflow: hidden;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .lang-menu.show {
        display: block;
    }

    .lang-option {
        display: block;
        width: 100%;
        padding: 12px 18px;
        background: none;
        border: none;
        text-align: left;
        font-family: var(--font);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .lang-option:hover {
        background: var(--bg-hover);
    }

    .lang-option.active {
        background: var(--teal);
        color: white;
    }

    /* ── Compliance Logos Section ── */
    .compliance-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
        margin-top: 2.25rem;
        margin-bottom: 0.5rem;
        width: 100%;
        transition: all 0.3s ease;
    }

    .compliance-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
    }

    .compliance-title {
        font-size: 9.5px;
        font-weight: 600;
        color: var(--text-muted);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.3s ease;
        text-align: center;
        white-space: nowrap;
    }

    .compliance-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .compliance-logo {
        height: 50px;
        width: auto;
        object-fit: contain;
        filter: grayscale(1) brightness(1.2) opacity(0.35);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    [data-theme="light"] .compliance-logo {
        filter: grayscale(1) brightness(0.6) opacity(0.45);
    }

    .compliance-logo:hover {
        filter: none;
        opacity: 0.95;
        transform: translateY(-3px) scale(1.08);
    }

    @media (max-width: 480px) {
        .compliance-section {
            flex-direction: column;
            align-items: center;
            gap: 3.00rem;
        }

        .compliance-logos {
            gap: 2.00rem;
        }
    }