        :root {
            --blue: #4285C4;
            --blue-dark: #3670A8;
            --blue-deeper: #2C5A8A;
            --blue-light: #5A9BD5;
            --blue-pale: #EBF2FA;
            --blue-ghost: #F5F8FC;
            --blue-tint: rgba(66, 133, 196, 0.08);
            --blue-tint-md: rgba(66, 133, 196, 0.15);
            --navy: #1A2B42;
            --navy-light: #2A3F5C;
            --text: #2D3748;
            --text-light: #5A6577;
            --text-muted: #8694A7;
            --border: #DAE2EC;
            --border-light: #E8EEF4;
            --white: #FFFFFF;
            --bg: #FAFBFD;
            --danger: #D94452;
            --danger-bg: #FDF2F3;
            --danger-border: rgba(217, 68, 82, 0.15);
            --safe: #2EA66F;
            --safe-bg: #F0FAF5;
            --safe-border: rgba(46, 166, 111, 0.15);
            --radius: 10px;
            --radius-lg: 16px;
            --shadow-sm: 0 1px 3px rgba(26, 43, 66, 0.06);
            --shadow-md: 0 4px 16px rgba(26, 43, 66, 0.08);
            --shadow-lg: 0 8px 40px rgba(26, 43, 66, 0.1);
        }

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

        html {
            scroll-behavior: smooth;
            background: var(--white);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .serif {
            font-family: 'Source Serif 4', serif;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: box-shadow 0.4s, padding 0.4s;
        }

        nav.scrolled {
            box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
            padding: 14px 0;
        }

        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: inline-flex;
            align-items: center;
        }

        .logo img {
            display: block;
            width: auto;
            height: 32px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 2px 8px rgba(66, 133, 196, 0.3);
        }

        .btn-primary:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(66, 133, 196, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--blue);
            border: 1.5px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--blue);
            background: var(--blue-tint);
        }

        .btn-nav {
            padding: 10px 20px;
            font-size: 0.84rem;
            color: var(--white) !important;
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 130px 0 100px;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, var(--blue-tint) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 72px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            background: var(--blue-pale);
            border: 1px solid rgba(66, 133, 196, 0.15);
            border-radius: 60px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--blue-dark);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
        }

        .hero h1 {
            font-family: 'Source Serif 4', serif;
            font-size: clamp(2.4rem, 4.5vw, 3.4rem);
            line-height: 1.12;
            color: var(--navy);
            margin-bottom: 22px;
            letter-spacing: -0.02em;
            font-weight: 700;
        }

        .hero h1 em {
            color: var(--blue);
            font-style: normal;
        }

        .hero p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 36px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ── HERO CARD ── */
        .hero-visual {
            position: relative;
            z-index: 1;
        }

        .consent-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: visible;
        }

        .cc-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .cc-header-dot {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--blue-pale);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cc-header-dot svg {
            width: 16px;
            height: 16px;
            color: var(--blue);
        }

        .cc-header span {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .consent-card h3 {
            font-family: 'Source Serif 4', serif;
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 22px;
            font-weight: 600;
        }

        .consent-line {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-top: 1px solid var(--border-light);
            position: relative;
        }

        .consent-line.has-hotspot {
            padding-bottom: 40px;
        }

        .cb {
            width: 20px;
            height: 20px;
            border-radius: 5px;
            border: 2px solid var(--border);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .cb.on {
            background: var(--blue);
            border-color: var(--blue);
        }

        .cb svg {
            width: 12px;
            height: 12px;
            color: var(--white);
            opacity: 0;
        }

        .cb.on svg {
            opacity: 1;
        }

        .consent-line p {
            font-size: 0.82rem;
            line-height: 1.5;
            color: var(--text-light);
        }

        .consent-line p strong {
            color: var(--text);
        }

        .cc-submit-row {
            margin-top: 20px;
            display: flex;
            justify-content: flex-end;
            position: relative;
        }

        .cc-submit-row.has-hotspot {
            padding-bottom: 38px;
        }

        .cc-submit {
            padding: 10px 28px;
            background: var(--blue);
            color: var(--white);
            font-weight: 600;
            font-size: 0.82rem;
            border: none;
            border-radius: 6px;
            cursor: default;
        }

        .hotspot {
            position: absolute;
            width: 24px;
            height: 24px;
            background-color: var(--danger);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 0 0 rgba(230, 112, 112, 0.6);
            animation: pulse 2s infinite;
            transition: var(--transition);
            border: none;
        }

        .hotspot:hover,
        .hotspot:focus-visible {
            background-color: var(--danger);
            transform: translate(-50%, -50%) scale(1);
            outline: none;
        }

        .hotspot::after {
            content: "+";
            color: var(--white);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 112, 112, 0.6);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(230, 112, 112, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(230, 112, 112, 0);
            }
        }

        .tooltip {
            position: absolute;
            background-color: rgba(255, 199, 199, 0.95);
            color: var(--danger-border);
            padding: 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            max-width: 220px;
            width: max-content;
            z-index: 10;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateX(-50%) translateY(12px) scale(0.96);
            left: 50%;
            will-change: opacity, transform;
        }

        .hotspot:hover .tooltip,
        .hotspot:focus-visible .tooltip,
        .tooltip.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .tooltip p {
            margin-bottom: 0;
            line-height: 1.4;
            font-size: 0.9rem;
            text-align: left;
            color: rgb(114 42 49);
        }

        .tooltip::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: rgba(255, 199, 199, 0.95);
            transform: rotate(45deg);
        }

        .tooltip-top::after {
            bottom: -6px;
            left: 50%;
            margin-left: -6px;
        }

        .tooltip-bottom::after {
            top: -6px;
            left: 50%;
            margin-left: -6px;
        }

        .tooltip-left::after {
            right: -6px;
            top: 50%;
            margin-top: -6px;
        }

        .tooltip-right::after {
            left: -6px;
            top: 50%;
            margin-top: -6px;
        }

        .consent-hotspot {
            top: calc(100% - 4px);
            left: 50%;
        }

        .consent-hotspot .tooltip {
            top: 50%;
            left: calc(100% + 16px);
            transform: translateY(-50%) scale(0.96);
        }

        .consent-hotspot .tooltip::after {
            left: -6px;
            top: 50%;
            margin-top: -6px;
            margin-left: 0;
        }

        .submit-hotspot {
            top: calc(100% - 2px);
            left: 50%;
        }

        .submit-hotspot .tooltip {
            top: 50%;
            bottom: auto;
            left: auto;
            right: calc(100% + 16px);
            transform: translateY(-50%) scale(0.96);
        }

        .submit-hotspot .tooltip::after {
            right: -6px;
            left: auto;
            top: 50%;
            margin-top: -6px;
            margin-left: 0;
        }

        .consent-hotspot:hover .tooltip,
        .consent-hotspot:focus-visible .tooltip {
            transform: translateY(-50%) scale(1);
        }

        .submit-hotspot:hover .tooltip,
        .submit-hotspot:focus-visible .tooltip {
            transform: translateY(-50%) scale(1);
        }

        .forensic-float {
            position: absolute;
            top: -14px;
            left: 24px;
            background: var(--white);
            border: 2px solid var(--danger-border);
            border-radius: 60px;
            padding: 9px 16px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 0.76rem;
            font-weight: 600;
            color: var(--danger);
            box-shadow: var(--shadow-md);
            animation: float-subtle 3.5s ease-in-out infinite;
        }

        @keyframes float-subtle {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .forensic-float svg {
            width: 15px;
            height: 15px;
        }

        /* ── SECTIONS COMMON ── */
        .section-label {
            font-size: 0.73rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--blue);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Source Serif 4', serif;
            font-size: clamp(1.9rem, 3.2vw, 2.6rem);
            color: var(--navy);
            line-height: 1.18;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .section-sub {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-light);
            max-width: 600px;
            margin-bottom: 52px;
        }

        /* ── PROBLEM ── */
        .problem {
            padding: 110px 0;
            background: var(--bg);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .risk-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .risk-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
        }

        .risk-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .risk-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--danger-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .risk-icon svg {
            width: 20px;
            height: 20px;
            color: var(--danger);
        }

        .risk-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .risk-card p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: var(--text-light);
        }

        /* ── COMPARISON ── */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .comp-card {
            border-radius: var(--radius-lg);
            padding: 40px 32px;
        }

        .comp-card.before {
            background: var(--danger-bg);
            border: 1px solid var(--danger-border);
        }

        .comp-card.after {
            background: var(--safe-bg);
            border: 1px solid var(--safe-border);
        }

        .comp-tag {
            display: inline-flex;
            padding: 5px 12px;
            border-radius: 60px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }

        .comp-card.before .comp-tag {
            background: rgba(217, 68, 82, 0.1);
            color: var(--danger);
        }

        .comp-card.after .comp-tag {
            background: rgba(46, 166, 111, 0.1);
            color: var(--safe);
        }

        .comp-card h3 {
            font-family: 'Source Serif 4', serif;
            font-size: 1.35rem;
            color: var(--navy);
            margin-bottom: 18px;
            font-weight: 600;
        }

        .comp-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .comp-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text);
        }

        .comp-list li svg {
            flex-shrink: 0;
            margin-top: 3px;
            width: 17px;
            height: 17px;
        }

        .comp-card.before .comp-list li svg {
            color: var(--danger);
        }

        .comp-card.after .comp-list li svg {
            color: var(--safe);
        }

        /* ── HOW ── */
        .how {
            padding: 110px 0;
            background: var(--bg);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .how .section-title,
        .how .section-sub,
        .how .section-label {
            text-align: center;
        }

        .how .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 14%;
            right: 14%;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-family: 'Source Serif 4', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--blue);
            box-shadow: var(--shadow-sm);
        }

        .step h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .step p {
            font-size: 0.82rem;
            line-height: 1.5;
            color: var(--text-muted);
        }

        /* ── USE CASES ── */
        .usecases {
            padding: 110px 0;
            background: var(--white);
        }

        .usecases .section-title,
        .usecases .section-sub,
        .usecases .section-label {
            text-align: center;
        }

        .usecases .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

        .uc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .uc-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .uc-card:hover {
            border-color: var(--blue);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .uc-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--blue-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .uc-icon svg {
            width: 20px;
            height: 20px;
            color: var(--blue);
        }

        .uc-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .uc-card p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: var(--text-light);
        }

        /* ── BENEFITS ── */
        .benefits {
            padding: 110px 0;
            background: var(--bg);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .benefit-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px 28px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .benefit-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .benefit-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--blue-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            width: 20px;
            height: 20px;
            color: var(--blue);
        }

        .benefit-card h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .benefit-card p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: var(--text-light);
        }

        /* ── COMPLIANCE BANNER ── */
        .compliance {
            padding: 110px 0;
            background: var(--white);
        }

        .compliance-inner {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            border-radius: var(--radius-lg);
            padding: 56px;
            display: grid;
            gap: 48px;
            align-items: center;
            color: #fff;
        }

        .compliance-inner .section-label {
            color: var(--blue-light);
        }

        .cta .compliance-inner {
            margin-top: 42px;
            text-align: center;
            background: linear-gradient(135deg, var(--navy) 0%, #243c61 100%);
            box-shadow: var(--shadow-lg);
        }

        .cta .compliance-inner h2 {
            font-family: 'Source Serif 4', serif;
            font-size: clamp(1.7rem, 2.8vw, 2.2rem);
            color: #fff;
            line-height: 1.2;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .cta .compliance-inner>div>p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
        }

        .compliance-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            padding: 22px;
            text-align: center;
        }

        .stat-card .num {
            font-family: 'Source Serif 4', serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--blue-light);
            margin-bottom: 4px;
        }

        .stat-card .label {
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.4;
        }

        /* ── CTA ── */
        .cta {
            padding: 90px 0 110px;
            background: var(--bg);
            border-top: 1px solid var(--border-light);
            text-align: center;
        }

        .cta h2 {
            font-family: 'Source Serif 4', serif;
            font-size: clamp(1.9rem, 3.2vw, 2.6rem);
            color: var(--navy);
            margin-bottom: 14px;
            font-weight: 700;
        }

        .cta p {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 52px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .comparison-grid {
            margin-bottom: 52px;
            text-align: left;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ── FOOTER ── */
        .footer {
            padding: 34px 0 30px;
            border-top: 1px solid var(--border-light);
            background: var(--white);
        }

        .footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 18px;
        }

        .footer p {
            margin: 0;
            font-size: 0.8rem;
            line-height: 1.7;
            color: var(--text-muted);
        }

        .footer a {
            color: var(--blue);
            text-decoration: none;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .footer a:hover {
            color: var(--navy);
        }

        #social {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        #social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--blue-pale);
            color: var(--blue);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        #social a:hover {
            background: var(--blue);
            color: var(--white);
            border-color: var(--blue);
        }

        .icon-mail::before {
            content: "@";
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
        }

        .icon-linkedin::before {
            content: "in";
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1;
        }

        .footer-cert {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 14px;
            border-radius: var(--radius);
        }

        .footer-cert img {
            display: block;
            width: 200px;
            height: auto;
        }

        #footer-link {
            font-size: 0.76rem;
            letter-spacing: 0.04em;
        }

        #footer-link a {
            color: var(--text-muted);
        }

        #footer-link a:hover {
            color: var(--navy);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 56px;
                text-align: center;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
            }

            .consent-card {
                max-width: 420px;
                margin: 0 auto;
            }

            .risk-grid,
            .uc-grid {
                grid-template-columns: 1fr;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .steps::before {
                display: none;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .compliance-inner {
                grid-template-columns: 1fr;
                padding: 36px 24px;
                gap: 32px;
            }
        }

        @media (max-width: 640px) {
            .nav-links a:not(.btn) {
                display: none;
            }

            .hero {
                padding: 110px 0 70px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .problem,
            .how,
            .usecases,
            .benefits,
            .cta {
                padding: 72px 0;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .consent-card {
                padding: 22px;
            }

            .tooltip {
                max-width: min(220px, calc(100vw - 48px));
                width: min(220px, calc(100vw - 48px));
            }

            .compliance-stats {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 28px 0 24px;
            }

            .footer .container {
                gap: 16px;
            }
        }

        /* ═══════════════════════════════════════════
           WEB TRUST DEMO — Acquisizione Forense
           Namespaced sotto .wt-demo per isolamento
           ═══════════════════════════════════════════ */
        .wt-demo {
            --blue: #4285C4;
            --blue-dk: #3670A8;
            --blue-lt: #5A9BD5;
            --blue-pale: #EBF2FA;
            --navy: #1A2B42;
            --text: #2D3748;
            --text-lt: #5A6577;
            --text-mt: #8694A7;
            --border: #DAE2EC;
            --border-lt: #E8EEF4;
            --white: #FFF;
            --demo-bg: #F5F8FC;
            --safe: #2EA66F;
            --safe-bg: #EEFBF4;
            --safe-bd: rgba(46, 166, 111, .2);
            --mono: 'JetBrains Mono', monospace;
            margin-top: 72px;
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            -webkit-font-smoothing: antialiased;
        }

        .wt-demo .wrap {
            width: 100%;
            max-width: 960px;
            margin: 0 auto
        }

        .wt-demo .hdr {
            text-align: center;
            margin-bottom: 22px
        }

        .wt-demo .hdr h2 {
            font-family: 'Source Serif 4', serif;
            font-size: 1.55rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 5px
        }

        .wt-demo .hdr p {
            font-size: .86rem;
            color: var(--text-mt)
        }

        .wt-demo .hdr em {
            color: var(--blue);
            font-style: normal;
            font-weight: 600
        }

        .wt-demo .plabels {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-bottom: 10px
        }

        .wt-demo .plab {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: .68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            padding: 0 4px
        }

        .wt-demo .plab svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0
        }

        .wt-demo .plab.lu {
            color: var(--blue)
        }

        .wt-demo .plab.lb {
            color: var(--navy)
        }

        .wt-demo .plab .ln {
            flex: 1;
            height: 1px;
            background: var(--border)
        }

        .wt-demo .stage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(26, 43, 66, .07);
            height: 620px
        }

        /* ── LEFT PANEL ── */
        .wt-demo .fpan {
            padding: 28px 26px;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden
        }

        .wt-demo .fpan::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 1px;
            background: var(--border-lt)
        }

        .wt-demo .fbadge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: var(--blue-pale);
            border-radius: 60px;
            font-size: .64rem;
            font-weight: 600;
            color: var(--blue-dk);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: 14px;
            width: fit-content
        }

        .wt-demo .fbadge svg {
            width: 12px;
            height: 12px
        }

        .wt-demo .fpan h3 {
            font-family: 'Source Serif 4', serif;
            font-size: 1.1rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 3px
        }

        .wt-demo .fpan .sub {
            font-size: .76rem;
            color: var(--text-mt);
            margin-bottom: 16px
        }

        .wt-demo .frow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 9px
        }

        .wt-demo .ff label {
            font-size: .66rem;
            font-weight: 600;
            color: var(--text-mt);
            text-transform: uppercase;
            letter-spacing: .05em;
            display: block;
            margin-bottom: 2px
        }

        .wt-demo .finp {
            height: 32px;
            border: 1px solid var(--border);
            border-radius: 5px;
            background: var(--white);
            padding: 0 9px;
            font-size: .78rem;
            color: var(--text);
            display: flex;
            align-items: center
        }

        .wt-demo .cblock {
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid var(--border-lt);
            flex: 1
        }

        .wt-demo .cblock-t {
            font-size: .66rem;
            font-weight: 700;
            color: var(--text-mt);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 10px
        }

        .wt-demo .ci {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 8px 0;
            cursor: pointer
        }

        .wt-demo .ci:hover {
            opacity: .85
        }

        .wt-demo .ci+.ci {
            border-top: 1px solid var(--border-lt)
        }

        .wt-demo .ck {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            border: 2px solid var(--border);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
            transition: all .25s cubic-bezier(.34, 1.56, .64, 1)
        }

        .wt-demo .ck svg {
            width: 11px;
            height: 11px;
            color: var(--white);
            opacity: 0;
            transform: scale(0);
            transition: all .25s cubic-bezier(.34, 1.56, .64, 1)
        }

        .wt-demo .ci.on .ck {
            background: var(--blue);
            border-color: var(--blue)
        }

        .wt-demo .ci.on .ck svg {
            opacity: 1;
            transform: scale(1)
        }

        .wt-demo .ci p {
            font-size: .76rem;
            line-height: 1.38;
            color: var(--text-lt)
        }

        .wt-demo .ci p b {
            color: var(--text);
            font-weight: 600
        }

        .wt-demo .srow {
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .wt-demo .sbtn {
            padding: 9px 26px;
            background: var(--blue);
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: .8rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all .3s
        }

        .wt-demo .sbtn:hover:not(:disabled) {
            background: var(--blue-dk);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(66, 133, 196, .3)
        }

        .wt-demo .sbtn:disabled {
            opacity: .4;
            cursor: not-allowed
        }

        .wt-demo .sbtn.proc {
            pointer-events: none;
            background: var(--blue-dk)
        }

        .wt-demo .shint {
            font-size: .7rem;
            color: var(--text-mt);
            opacity: 0;
            transition: opacity .4s
        }

        .wt-demo .shint.show {
            opacity: 1
        }

        .wt-demo .fload {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--white);
            z-index: 6;
            transition: opacity .6s;
            text-align: center;
            gap: 14px;
            padding: 40px
        }

        .wt-demo .fload.done {
            opacity: 0;
            pointer-events: none
        }

        .wt-demo .fload-spinner {
            width: 36px;
            height: 36px;
            border: 3px solid var(--border);
            border-top-color: var(--blue);
            border-radius: 50%;
            animation: wt-spin .8s linear infinite
        }

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

        .wt-demo .fload h4 {
            font-family: 'Source Serif 4', serif;
            font-size: .95rem;
            color: var(--navy);
            font-weight: 700
        }

        .wt-demo .fload p {
            font-size: .74rem;
            color: var(--text-mt);
            max-width: 220px;
            line-height: 1.4
        }

        .wt-demo .fsuc {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .96);
            opacity: 0;
            pointer-events: none;
            transition: opacity .5s;
            z-index: 5;
            text-align: center;
            padding: 40px
        }

        .wt-demo .fsuc.on {
            opacity: 1;
            pointer-events: all
        }

        .wt-demo .fsuc-ic {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--safe-bg);
            border: 2px solid var(--safe-bd);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px
        }

        .wt-demo .fsuc-ic svg {
            width: 20px;
            height: 20px;
            color: var(--safe)
        }

        .wt-demo .fsuc h4 {
            font-family: 'Source Serif 4', serif;
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 4px
        }

        .wt-demo .fsuc p {
            font-size: .76rem;
            color: var(--text-mt);
            max-width: 230px;
            line-height: 1.4
        }

        /* ── RIGHT PANEL — FORENSIC ── */
        .wt-demo .rpan {
            background: var(--navy);
            color: #fff;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: box-shadow .6s
        }

        .wt-demo .rpan.glow {
            box-shadow: inset 0 0 40px rgba(66, 133, 196, .06), 0 0 0 1px rgba(66, 133, 196, .15)
        }

        .wt-demo .rpan::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: .03;
            pointer-events: none;
            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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 200px
        }

        .wt-demo .scan {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue-lt), transparent);
            opacity: 0;
            z-index: 2;
            pointer-events: none;
            top: 0
        }

        .wt-demo .scan.on {
            opacity: .5;
            animation: wt-scn 2.5s linear infinite
        }

        @keyframes wt-scn {
            0% {
                top: 0
            }

            100% {
                top: 100%
            }
        }

        .wt-demo .rh {
            padding: 13px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
            flex-shrink: 0
        }

        .wt-demo .rh-l {
            display: flex;
            align-items: center;
            gap: 7px
        }

        .wt-demo .rh-l svg {
            width: 14px;
            height: 14px;
            color: var(--blue-lt)
        }

        .wt-demo .rh-l span {
            font-size: .66rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: rgba(255, 255, 255, .5)
        }

        .wt-demo .pill {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 3px 8px;
            border-radius: 60px;
            font-size: .62rem;
            font-weight: 600;
            letter-spacing: .03em;
            transition: all .5s
        }

        .wt-demo .pill.idle {
            background: rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .35)
        }

        .wt-demo .pill.sub {
            background: rgba(66, 133, 196, .2);
            color: var(--blue-lt)
        }

        .wt-demo .pill.cap {
            background: rgba(212, 147, 13, .2);
            color: #F0C040;
            animation: wt-pls 1.5s ease-in-out infinite
        }

        .wt-demo .pill.conc {
            background: rgba(46, 166, 111, .2);
            color: #5EDC9E
        }

        @keyframes wt-pls {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .6
            }
        }

        .wt-demo .pdot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: currentColor
        }

        .wt-demo .rb {
            flex: 1;
            overflow-y: auto;
            position: relative;
            z-index: 1;
            min-height: 0;
            padding: 12px 18px
        }

        .wt-demo .rb::-webkit-scrollbar {
            width: 3px
        }

        .wt-demo .rb::-webkit-scrollbar-track {
            background: transparent
        }

        .wt-demo .rb::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .1);
            border-radius: 4px
        }

        .wt-demo .ridle {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 8px;
            transition: opacity .4s, transform .4s
        }

        .wt-demo .ridle.hid {
            opacity: 0;
            transform: scale(.95);
            pointer-events: none;
            position: absolute
        }

        .wt-demo .ridle-ic {
            width: 48px;
            height: 48px;
            border-radius: 11px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2px
        }

        .wt-demo .ridle-ic svg {
            width: 20px;
            height: 20px;
            color: rgba(255, 255, 255, .2)
        }

        .wt-demo .ridle h4 {
            font-size: .82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .4)
        }

        .wt-demo .ridle p {
            font-size: .72rem;
            color: rgba(255, 255, 255, .2);
            max-width: 195px;
            line-height: 1.4
        }

        .wt-demo .elog {
            display: none;
            flex-direction: column;
            gap: 0
        }

        .wt-demo .elog.on {
            display: flex
        }

        .wt-demo .le {
            display: flex;
            gap: 9px;
            padding: 5px 0;
            opacity: 0;
            transform: translateX(8px);
            transition: opacity .3s, transform .3s
        }

        .wt-demo .le.vis {
            opacity: 1;
            transform: translateX(0)
        }

        .wt-demo .le-t {
            font-family: var(--mono);
            font-size: .58rem;
            color: rgba(255, 255, 255, .2);
            white-space: nowrap;
            padding-top: 1px;
            min-width: 48px
        }

        .wt-demo .le-c {
            flex: 1;
            min-width: 0
        }

        .wt-demo .le-l {
            font-size: .66rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 1px;
            display: flex;
            align-items: center;
            gap: 5px;
            flex-wrap: wrap
        }

        .wt-demo .le-l .tg {
            font-size: .54rem;
            padding: 1px 5px;
            border-radius: 3px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .04em;
            flex-shrink: 0
        }

        .wt-demo .tg-api {
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .45)
        }

        .wt-demo .tg-net {
            background: rgba(66, 133, 196, .2);
            color: var(--blue-lt)
        }

        .wt-demo .tg-k8s {
            background: rgba(155, 89, 218, .2);
            color: #B68AE8
        }

        .wt-demo .tg-pcap {
            background: rgba(155, 89, 218, .15);
            color: #C49EF0
        }

        .wt-demo .tg-dom {
            background: rgba(212, 147, 13, .2);
            color: #F0C040
        }

        .wt-demo .tg-act {
            background: rgba(46, 166, 111, .2);
            color: #5EDC9E
        }

        .wt-demo .tg-xml {
            background: rgba(232, 84, 84, .2);
            color: #F08080
        }

        .wt-demo .le-v {
            font-family: var(--mono);
            font-size: .6rem;
            color: rgba(255, 255, 255, .32);
            word-break: break-all;
            line-height: 1.4
        }

        .wt-demo .le-v .h {
            color: var(--blue-lt)
        }

        .wt-demo .le-v .g {
            color: #5EDC9E
        }

        .wt-demo .le-v .a {
            color: #F0C040
        }

        .wt-demo .le-v .p {
            color: #C49EF0
        }

        .wt-demo .le-v .r {
            color: #F08080
        }

        .wt-demo .ldiv {
            height: 1px;
            background: rgba(255, 255, 255, .04);
            margin: 3px 0
        }

        .wt-demo .sn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
            font-size: .5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .35);
            flex-shrink: 0;
            margin-right: 1px
        }

        .wt-demo .rf {
            padding: 11px 18px;
            border-top: 1px solid rgba(255, 255, 255, .06);
            position: relative;
            z-index: 1;
            flex-shrink: 0
        }

        .wt-demo .prow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px
        }

        .wt-demo .plbl {
            font-size: .6rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .3);
            text-transform: uppercase;
            letter-spacing: .08em
        }

        .wt-demo .ppct {
            font-family: var(--mono);
            font-size: .62rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .4);
            transition: color .3s
        }

        .wt-demo .ptrk {
            height: 3px;
            background: rgba(255, 255, 255, .06);
            border-radius: 4px;
            overflow: hidden
        }

        .wt-demo .pfill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--blue), var(--blue-lt));
            border-radius: 4px;
            transition: width .6s cubic-bezier(.22, 1, .36, 1)
        }

        .wt-demo .pfill.done {
            background: linear-gradient(90deg, #2EA66F, #5EDC9E)
        }

        .wt-demo .rov {
            position: absolute;
            inset: 0;
            background: var(--navy);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 28px 24px;
            opacity: 0;
            pointer-events: none;
            transition: opacity .6s
        }

        .wt-demo .rov.on {
            opacity: 1;
            pointer-events: all
        }

        .wt-demo .rov-sh {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(46, 166, 111, .12);
            border: 2px solid rgba(46, 166, 111, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            animation: wt-shpop .6s cubic-bezier(.34, 1.56, .64, 1) .2s both
        }

        @keyframes wt-shpop {
            0% {
                transform: scale(0);
                opacity: 0
            }

            100% {
                transform: scale(1);
                opacity: 1
            }
        }

        .wt-demo .rov-sh svg {
            width: 26px;
            height: 26px;
            color: #5EDC9E
        }

        .wt-demo .rov h3 {
            font-family: 'Source Serif 4', serif;
            font-size: 1.05rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 5px;
            animation: wt-fiu .5s ease .4s both
        }

        .wt-demo .rov>p {
            font-size: .76rem;
            color: rgba(255, 255, 255, .5);
            max-width: 250px;
            line-height: 1.4;
            margin-bottom: 20px;
            animation: wt-fiu .5s ease .5s both
        }

        @keyframes wt-fiu {
            0% {
                opacity: 0;
                transform: translateY(8px)
            }

            100% {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .wt-demo .rstats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px;
            width: 100%;
            max-width: 270px;
            animation: wt-fiu .5s ease .6s both
        }

        .wt-demo .rst {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 7px;
            padding: 10px 9px
        }

        .wt-demo .rst .n {
            font-family: var(--mono);
            font-size: .82rem;
            font-weight: 600;
            color: var(--blue-lt);
            margin-bottom: 1px
        }

        .wt-demo .rst .l {
            font-size: .58rem;
            color: rgba(255, 255, 255, .35);
            text-transform: uppercase;
            letter-spacing: .05em
        }

        .wt-demo .rbtn {
            margin-top: 16px;
            padding: 8px 18px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 6px;
            color: rgba(255, 255, 255, .6);
            font-family: 'DM Sans', sans-serif;
            font-size: .74rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            animation: wt-fiu .5s ease .75s both
        }

        .wt-demo .rbtn:hover {
            background: rgba(255, 255, 255, .12);
            color: #fff
        }

        @media(max-width:768px) {
            .wt-demo .stage {
                grid-template-columns: 1fr;
                height: auto
            }

            .wt-demo .fpan::after {
                display: none
            }

            .wt-demo .fpan {
                border-bottom: 1px solid var(--border-lt)
            }

            .wt-demo .rpan {
                min-height: 400px
            }

            .wt-demo .plabels {
                grid-template-columns: 1fr
            }

            .wt-demo .plab.lb {
                display: none
            }

            .wt-demo .frow {
                grid-template-columns: 1fr
            }
        }
