
        /* ===== DESIGN SYSTEM — ISPIRATO A BOOTSTRAP ITALIA ===== */
        :root {
            --primary: #0066CC;
            --primary-dark: #004080;
            --primary-light: #E6F0FA;
            --white: #FFFFFF;
            --gray-bg: #F8F9FA;
            --gray-100: #F0F2F5;
            --gray-200: #E0E0E0;
            --gray-300: #C8D0DA;
            --gray-500: #6C757D;
            --gray-700: #2D3A4A;
            --text: #1A1A1A;
            --text-muted: #5A6B7C;
            --success: #008758;
            --warning: #A66300;
            --danger: #D9364F;
            --font: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --radius: 8px;
            --radius-sm: 4px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --transition: 0.25s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--white);
            color: var(--text);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

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

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: 1.5px solid transparent;
            letter-spacing: 0.01em;
            text-align: center;
        }
        .btn-primary {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--white);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        .btn-sm {
            padding: 8px 20px;
            font-size: 0.85rem;
        }
        .btn-block {
            width: 100%;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .logo .tm {
            font-size: 0.6rem;
            font-weight: 400;
            color: var(--gray-500);
            vertical-align: super;
            margin-left: 2px;
        }
        .logo .badge {
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.55rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 40px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        .nav-links a {
            color: var(--gray-700);
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--gray-700);
            border-radius: 4px;
            transition: var(--transition);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 130px 0 70px;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 102, 204, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .hero-content .sub {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            color: var(--gray-700);
        }
        .hero-content h1 .highlight {
            color: var(--primary);
        }
        .hero-content .tagline {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 520px;
            margin: 0 0 32px;
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
        }
        .hero-stats div {
            display: flex;
            flex-direction: column;
        }
        .hero-stats .num {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
        }
        .hero-stats .label {
            font-size: 0.75rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-visual {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hero-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow-sm);
        }
        .hero-card .flow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 6px 4px;
        }
        .hero-card .flow-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 0.7rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-weight: 600;
        }
        .hero-card .flow-item .icon {
            font-size: 1.3rem;
            color: var(--primary);
        }
        .hero-card .flow-arrow {
            color: var(--gray-300);
            font-size: 1rem;
        }
        .hero-card .flow-result {
            background: var(--success);
            color: var(--white);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 16px;
            border-radius: 40px;
            letter-spacing: 0.03em;
        }
        .hero-badge-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .hero-badge-row span {
            background: var(--gray-100);
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.7rem;
            color: var(--gray-700);
            border: 1px solid var(--gray-200);
            font-weight: 500;
        }

        /* ===== SEZIONI COMUNI ===== */
        section {
            padding: 72px 0;
        }
        .section-label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 16px;
            border-radius: 40px;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--gray-700);
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 640px;
            line-height: 1.7;
        }
        .text-center {
            text-align: center;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== WHAT PAR DOES ===== */
        .what-section {
            background: var(--gray-bg);
        }
        .what-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .what-card {
            background: var(--white);
            padding: 28px 24px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }
        .what-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-3px);
        }
        .what-card .icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .what-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--gray-700);
        }
        .what-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== HOW PAR WORKS ===== */
        .how-section {
            background: var(--white);
        }
        .how-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px 64px;
            margin-top: 40px;
        }
        .how-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }
        .how-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .how-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--gray-700);
            line-height: 1.5;
        }
        .how-col ul li .check {
            color: var(--success);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .how-col.does-not ul li .check {
            color: var(--danger);
        }

        /* ===== SOLUTIONS ===== */
        .solutions-section {
            background: var(--gray-bg);
        }
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .solution-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            border-left: 4px solid var(--primary);
            border-top: 1px solid var(--gray-200);
            border-right: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
            transition: var(--transition);
        }
        .solution-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .solution-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--gray-700);
        }
        .solution-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .solution-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 14px;
        }
        .solution-card .tags span {
            background: var(--gray-100);
            font-size: 0.7rem;
            padding: 2px 12px;
            border-radius: 40px;
            color: var(--gray-700);
            border: 1px solid var(--gray-200);
        }

        /* ===== VERIFY ===== */
        .verify-section {
            background: var(--white);
        }
        .verify-box {
            max-width: 720px;
            margin: 40px auto 0;
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 48px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
        }
        .verify-box label {
            display: block;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 8px;
            color: var(--gray-700);
        }
        .verify-box .input-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .verify-box .input-row input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--gray-300);
            font-size: 0.95rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--white);
            color: var(--text);
        }
        .verify-box .input-row input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }
        .verify-result {
            margin-top: 28px;
            padding: 24px 28px;
            background: var(--gray-bg);
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            display: none;
        }
        .verify-result.show {
            display: block;
            animation: fadeUp 0.4s ease;
        }
        .verify-result .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #D4EDDA;
            color: var(--success);
            padding: 4px 16px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .verify-result .status-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            display: inline-block;
        }
        .verify-result .meta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 24px;
            margin-top: 16px;
        }
        .verify-result .meta-grid .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--gray-500);
            font-weight: 600;
        }
        .verify-result .meta-grid .value {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--gray-700);
        }
        .verify-note {
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-top: 14px;
            text-align: center;
        }

        /* ===== REGISTER ===== */
        .register-section {
            background: var(--gray-bg);
        }
        .register-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 40px;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
        }
        .register-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            border: 2px solid var(--gray-200);
            transition: var(--transition);
        }
        .register-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-4px);
        }
        .register-card .icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
        .register-card h4 {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--gray-700);
        }
        .register-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 6px 0 18px;
            line-height: 1.5;
        }

        /* ===== TRUST CENTER ===== */
        .trust-section {
            background: var(--white);
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 16px;
            margin-top: 40px;
        }
        .trust-item {
            background: var(--gray-bg);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
        }
        .trust-item:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .trust-item .icon {
            font-size: 1.6rem;
            margin-bottom: 6px;
        }
        .trust-item h5 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray-700);
        }

        /* ===== DEVELOPERS ===== */
        .dev-section {
            background: var(--gray-bg);
        }
        .dev-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 14px;
            margin-top: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .dev-grid span {
            background: var(--white);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            color: var(--gray-700);
        }
        .dev-grid span:hover {
            border-color: var(--primary);
            background: var(--primary-light);
            color: var(--primary);
        }


        /* ===== PAR EXPANDED CONTENT ===== */
        .content-intro {
            max-width: 920px;
            margin: 34px auto 0;
            padding: 26px 30px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .content-intro p {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.75;
        }
        .content-intro strong { color: var(--gray-700); }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
            gap: 18px;
            margin-top: 28px;
        }
        .feature-panel {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 24px;
        }
        .feature-panel h4 {
            color: var(--gray-700);
            margin-bottom: 8px;
            font-size: 1rem;
        }
        .feature-panel p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.6;
        }
        .architecture-strip {
            margin-top: 28px;
            padding: 22px 26px;
            border-radius: var(--radius);
            background: #17324D;
            color: rgba(255,255,255,.82);
        }
        .architecture-strip strong { color: #fff; }
        .architecture-strip .items {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        .architecture-strip .items span {
            border: 1px solid rgba(255,255,255,.18);
            background: rgba(255,255,255,.07);
            border-radius: 40px;
            padding: 5px 13px;
            font-size: .76rem;
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin-top: 34px;
        }
        .process-step {
            position: relative;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 20px 16px;
            background: var(--gray-bg);
        }
        .process-step .step-no {
            display: inline-flex;
            width: 28px;
            height: 28px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: .76rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .process-step h5 {
            color: var(--gray-700);
            font-size: .9rem;
            margin-bottom: 5px;
        }
        .process-step p {
            color: var(--text-muted);
            font-size: .78rem;
            line-height: 1.5;
        }
        .trust-principles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
            margin-top: 30px;
        }
        .trust-principle {
            border-left: 3px solid var(--primary);
            padding: 6px 0 6px 18px;
        }
        .trust-principle h4 {
            color: var(--gray-700);
            font-size: .98rem;
            margin-bottom: 5px;
        }
        .trust-principle p {
            color: var(--text-muted);
            font-size: .86rem;
            line-height: 1.55;
        }
        .dev-callout {
            max-width: 900px;
            margin: 30px auto 0;
            padding: 26px 30px;
            background: #17324D;
            border-radius: var(--radius);
            color: rgba(255,255,255,.8);
        }
        .dev-callout h4 { color:#fff; margin-bottom:8px; }
        .dev-callout p { font-size:.9rem; line-height:1.65; }
        @media (max-width: 900px) {
            .process-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 520px) {
            .process-grid { grid-template-columns: 1fr; }
            .content-intro, .dev-callout { padding: 22px 20px; }
        }


        /* ===== INSTITUTIONAL PORTAL ADAPTATION ===== */
        :root {
            --institutional-navy: #17324D;
            --institutional-blue: #0066CC;
            --institutional-soft: #EAF3FB;
            --institutional-border: #D9E2EC;
        }

        body { background:#fff; }

        /* Top institutional utility bar */
        .institutional-topbar {
            background: var(--institutional-navy);
            color: rgba(255,255,255,.92);
            font-size: .78rem;
        }
        .institutional-topbar .container {
            min-height: 34px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:20px;
        }
        .institutional-topbar .top-links {
            display:flex;
            gap:18px;
        }
        .institutional-topbar a { color:#fff; }

        /* Header becomes a two-level public-service header */
        .header {
            top:34px;
            box-shadow:none;
            border-bottom:1px solid var(--institutional-border);
        }
        .header .container {
            height:auto;
            min-height:88px;
            flex-wrap:wrap;
            padding-top:12px;
        }
        .logo {
            font-size:1.42rem;
            color:var(--gray-700);
        }
        .logo::before {
            content:"PAR";
            width:46px;
            height:46px;
            display:grid;
            place-items:center;
            background:var(--primary);
            color:#fff;
            border-radius:3px;
            font-size:.92rem;
            font-weight:700;
            margin-right:2px;
        }
        .logo > .tm { color:var(--gray-500); }
        .logo .badge {
            border-radius:3px;
            font-size:.58rem;
        }
        .nav-links {
            order:3;
            width:100%;
            gap:0;
            border-top:1px solid var(--institutional-border);
            margin-top:10px;
        }
        .nav-links li { flex:0 0 auto; }
        .nav-links a {
            display:block;
            padding:13px 16px 11px;
            border-bottom:3px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color:var(--primary);
        }

        /* Hero inspired by institutional service landing pages */
        .hero {
            padding:190px 0 64px;
            background:var(--institutional-soft);
            border-bottom:1px solid #CFE1F3;
        }
        .hero::before { display:none; }
        .hero-content .sub {
            font-size:.78rem;
            font-weight:700;
        }
        .hero-content h1 {
            font-size:3rem;
            color:var(--gray-700);
        }
        .hero-content .tagline {
            font-size:1.18rem;
            max-width:620px;
        }
        .hero-card {
            border-radius:3px;
            border-left:5px solid var(--primary);
            box-shadow:0 4px 18px rgba(23,50,77,.07);
        }
        .hero-badge-row span { border-radius:3px; }

        /* Institutional section treatment */
        section { padding:68px 0; }
        .section-label {
            background:transparent;
            padding:0;
            border-radius:0;
            margin-bottom:8px;
            font-size:.76rem;
        }
        .section-title { font-size:2.25rem; }
        .section-desc { max-width:760px; }

        .content-intro,
        .feature-panel,
        .what-card,
        .solution-card,
        .verify-box,
        .register-card,
        .trust-item,
        .process-step {
            border-radius:3px;
            box-shadow:none;
        }
        .content-intro {
            border-left:4px solid var(--primary);
            max-width:100%;
        }
        .feature-panel:hover,
        .what-card:hover,
        .solution-card:hover,
        .register-card:hover {
            transform:none;
            box-shadow:0 3px 12px rgba(23,50,77,.05);
        }

        .what-section, .solutions-section, .register-section, .dev-section {
            background:#F5F7FA;
        }
        .architecture-strip, .dev-callout {
            border-radius:3px;
            background:var(--institutional-navy);
        }
        .architecture-strip .items span { border-radius:3px; }

        /* Add visual service-navigation cards */
        .service-navigation {
            padding:52px 0;
            background:#fff;
            border-bottom:1px solid var(--gray-200);
        }
        .service-navigation .service-grid {
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:18px;
            margin-top:28px;
        }
        .service-link-card {
            display:block;
            color:var(--gray-700);
            border:1px solid var(--institutional-border);
            border-top:4px solid var(--primary);
            padding:24px;
            min-height:150px;
            background:#fff;
        }
        .service-link-card:hover {
            color:var(--gray-700);
            box-shadow:0 4px 14px rgba(23,50,77,.06);
        }
        .service-link-card h3 {
            font-size:1.1rem;
            margin-bottom:7px;
        }
        .service-link-card p {
            color:var(--text-muted);
            font-size:.9rem;
        }
        .service-link-card .arrow {
            display:block;
            margin-top:14px;
            color:var(--primary);
            font-weight:700;
        }

        /* Footer more structured */
        .footer { padding:52px 0 34px; }
        .footer .container { align-items:flex-start; }
        .footer .links { max-width:560px; line-height:2; }

        @media (max-width: 768px) {
            .institutional-topbar .top-links { display:none; }
            .header { top:34px; }
            .header .container { min-height:72px; }
            .nav-links {
                position:absolute;
                top:100%;
                margin-top:0;
                padding:20px 24px;
                border-top:1px solid var(--gray-200);
            }
            .hero { padding-top:155px; }
            .hero-content h1 { font-size:2.15rem; }
            .service-navigation .service-grid { grid-template-columns:1fr; }
        }


        /* ===== HERO — SINGLE CENTERED CONTENT ===== */
        .hero .container {
            display: block;
        }
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .hero-content .tagline {
            margin-left: auto;
            margin-right: auto;
        }
        .hero-actions {
            justify-content: center;
        }
        .hero-stats {
            justify-content: center;
        }


        /* ===== MATCH SECTION 2 TITLE TO HERO TITLE ===== */
        .service-main-title {
            font-size: 3rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        @media (max-width: 768px) {
            .service-main-title { font-size: 2.15rem; }
        }


        /* ===== UNIFORM BOX STYLE ACROSS THE PAGE ===== */
        .service-link-card,
        .what-card,
        .feature-panel,
        .solution-card,
        .process-step,
        .trust-item,
        .register-card,
        .verify-box,
        .content-intro {
            background: #FFFFFF;
            border: 1px solid #D9E2EC;
            border-top: 4px solid #0066CC;
            border-radius: 0;
            box-shadow: none;
            transition: 0.22s ease;
        }

        .service-link-card,
        .what-card,
        .feature-panel,
        .solution-card,
        .process-step,
        .trust-item,
        .register-card {
            padding: 28px 24px;
        }

        .service-link-card:hover,
        .what-card:hover,
        .feature-panel:hover,
        .solution-card:hover,
        .process-step:hover,
        .trust-item:hover,
        .register-card:hover {
            border-color: #B8CBE0;
            border-top-color: #0066CC;
            box-shadow: 0 4px 14px rgba(23, 50, 77, 0.06);
            transform: none;
            background: #FFFFFF;
        }

        .service-link-card h3,
        .what-card h4,
        .feature-panel h4,
        .solution-card h4,
        .process-step h5,
        .trust-item h5,
        .register-card h4 {
            color: #2D3A4A;
            font-weight: 700;
        }

        .service-link-card p,
        .what-card p,
        .feature-panel p,
        .solution-card p,
        .process-step p,
        .trust-item p,
        .register-card p {
            color: #5A6B7C;
        }

        /* Remove previous left-accent treatments where the new global card style applies */
        .solution-card {
            border-left: 1px solid #D9E2EC;
            border-right: 1px solid #D9E2EC;
            border-bottom: 1px solid #D9E2EC;
        }

        .content-intro {
            border-left: 1px solid #D9E2EC;
            padding: 28px 30px;
        }

        .verify-box {
            padding: 40px 48px;
        }

        /* Trust principle blocks adapted to the same card language */
        .trust-principle {
            background: #FFFFFF;
            border: 1px solid #D9E2EC;
            border-top: 4px solid #0066CC;
            border-left: 1px solid #D9E2EC;
            padding: 24px;
            transition: 0.22s ease;
        }
        .trust-principle:hover {
            box-shadow: 0 4px 14px rgba(23, 50, 77, 0.06);
        }

        /* Developer labels also use the same visual system */
        .dev-grid span {
            background: #FFFFFF;
            border: 1px solid #D9E2EC;
            border-top: 4px solid #0066CC;
            border-radius: 0;
            padding: 16px;
        }
        .dev-grid span:hover {
            background: #FFFFFF;
            border-color: #B8CBE0;
            border-top-color: #0066CC;
            box-shadow: 0 4px 14px rgba(23, 50, 77, 0.05);
        }

        /* Tags become square institutional chips */
        .solution-card .tags span,
        .hero-badge-row span,
        .architecture-strip .items span {
            border-radius: 0;
        }

        /* Keep card grids visually aligned */
        .what-grid,
        .feature-grid,
        .solutions-grid,
        .service-navigation .service-grid,
        .trust-grid,
        .register-cards {
            align-items: stretch;
        }


        /* ===== BOX ACCENT: TOP + LEFT BLUE LINES ===== */
        .service-link-card,
        .what-card,
        .feature-panel,
        .solution-card,
        .process-step,
        .trust-item,
        .register-card,
        .verify-box,
        .content-intro,
        .trust-principle,
        .dev-grid span {
            border-top: 4px solid #0066CC;
            border-left: 4px solid #0066CC;
            border-right: 1px solid #D9E2EC;
            border-bottom: 1px solid #D9E2EC;
        }

        .service-link-card:hover,
        .what-card:hover,
        .feature-panel:hover,
        .solution-card:hover,
        .process-step:hover,
        .trust-item:hover,
        .register-card:hover,
        .trust-principle:hover,
        .dev-grid span:hover {
            border-top-color: #004080;
            border-left-color: #004080;
            border-right-color: #B8CBE0;
            border-bottom-color: #B8CBE0;
        }


        /* ===== ALTERNATING SECTION BOX ACCENTS ===== */
        /* Tipo A: linea SOLO SOPRA */
        .service-link-card,
        .what-card,
        .solution-card,
        .register-card,
        .dev-grid span {
            border-top: 4px solid #0066CC !important;
            border-left: 1px solid #D9E2EC !important;
            border-right: 1px solid #D9E2EC !important;
            border-bottom: 1px solid #D9E2EC !important;
        }

        /* Tipo B: linea SOLO A SINISTRA */
        .content-intro,
        .feature-panel,
        .process-step,
        .trust-principle,
        .trust-item,
        .verify-box {
            border-top: 1px solid #D9E2EC !important;
            border-left: 4px solid #0066CC !important;
            border-right: 1px solid #D9E2EC !important;
            border-bottom: 1px solid #D9E2EC !important;
        }

        /* Hover coerente senza aggiungere una seconda linea blu */
        .service-link-card:hover,
        .what-card:hover,
        .solution-card:hover,
        .register-card:hover,
        .dev-grid span:hover {
            border-top-color: #004080 !important;
            border-left-color: #B8CBE0 !important;
        }

        .content-intro:hover,
        .feature-panel:hover,
        .process-step:hover,
        .trust-principle:hover,
        .trust-item:hover,
        .verify-box:hover {
            border-left-color: #004080 !important;
            border-top-color: #B8CBE0 !important;
        }


        /* ===== CONTENT INTRO ACCENTS: TOP / BOTTOM ===== */
        /* Primo box descrittivo: linea blu SOLO SOPRA */
        #platform .content-intro {
            border-top: 4px solid #0066CC !important;
            border-left: 1px solid #D9E2EC !important;
            border-right: 1px solid #D9E2EC !important;
            border-bottom: 1px solid #D9E2EC !important;
        }

        /* Secondo box descrittivo: linea blu SOLO SOTTO */
        #how .content-intro {
            border-top: 1px solid #D9E2EC !important;
            border-left: 1px solid #D9E2EC !important;
            border-right: 1px solid #D9E2EC !important;
            border-bottom: 4px solid #0066CC !important;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #17324D;
            color: rgba(255, 255, 255, 0.65);
            padding: 48px 0 32px;
            font-size: 0.85rem;
        }
        .footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }
        .footer .copy {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .footer .copy .brand {
            color: var(--white);
            font-weight: 700;
        }
        .footer .links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .footer .links a {
            color: rgba(255, 255, 255, 0.65);
            transition: var(--transition);
        }
        .footer .links a:hover {
            color: var(--white);
        }

        /* ===== ANIMAZIONI ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-content h1 {
                font-size: 2.3rem;
            }
            .how-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 24px 32px;
                gap: 16px;
                border-bottom: 1px solid var(--gray-200);
                box-shadow: var(--shadow-sm);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                color: var(--gray-700);
            }
            .hamburger {
                display: flex;
            }
            .nav-actions .btn-outline {
                display: none;
            }

            .hero {
                padding: 110px 0 50px;
            }
            .hero-content h1 {
                font-size: 1.9rem;
            }
            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .section-title {
                font-size: 1.8rem;
            }
            .verify-box {
                padding: 24px 20px;
            }
            .verify-box .input-row {
                flex-direction: column;
            }
            .verify-result .meta-grid {
                grid-template-columns: 1fr;
            }

            .register-cards {
                grid-template-columns: 1fr;
            }
            .footer .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .what-grid {
                grid-template-columns: 1fr;
            }
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            .trust-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
    

/* ===== MULTI-PAGE PAR INSTITUTIONAL SYSTEM ===== */
body.inner-page { padding-top:0; }
.page-top-space { height:150px; }
.page-breadcrumbs { background:#fff; border-bottom:1px solid var(--gray-200); }
.page-breadcrumbs .container { padding-top:16px; padding-bottom:16px; font-size:.86rem; color:var(--text-muted); }
.page-breadcrumbs a { font-weight:600; }

.page-hero {
    background:var(--primary-light);
    border-bottom:1px solid #CFE1F3;
    padding:52px 0 56px;
}
.page-hero .eyebrow {
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:.1em;
    font-size:.76rem;
    font-weight:700;
    margin-bottom:8px;
}
.page-hero h1 {
    font-size:2.8rem;
    line-height:1.12;
    letter-spacing:-.025em;
    color:var(--gray-700);
    max-width:900px;
}
.page-hero .lead {
    max-width:850px;
    margin-top:16px;
    font-size:1.12rem;
    color:var(--text-muted);
    line-height:1.7;
}
.page-layout {
    display:grid;
    grid-template-columns:250px minmax(0,1fr);
    gap:46px;
    padding-top:54px;
    padding-bottom:72px;
}
.page-side {
    position:sticky;
    top:160px;
    align-self:start;
    border-top:4px solid var(--primary);
}
.page-side a {
    display:block;
    color:var(--gray-700);
    padding:11px 12px;
    border-left:1px solid var(--gray-200);
    border-right:1px solid var(--gray-200);
    border-bottom:1px solid var(--gray-200);
    font-size:.9rem;
    font-weight:600;
}
.page-side a:hover { background:var(--primary-light); color:var(--primary); }
.page-content > section { padding:0 0 58px; }
.page-content > section + section { padding-top:4px; }
.page-content h2 {
    font-size:2rem;
    color:var(--gray-700);
    line-height:1.2;
    margin-bottom:14px;
}
.page-content h3 { color:var(--gray-700); margin-bottom:7px; }
.page-content p, .page-content li {
    color:var(--text-muted);
    font-size:1rem;
    line-height:1.72;
}
.page-content ul { padding-left:20px; }
.page-content .intro-line {
    border-top:4px solid var(--primary);
    border-left:1px solid var(--gray-200);
    border-right:1px solid var(--gray-200);
    border-bottom:1px solid var(--gray-200);
    padding:24px 26px;
    background:#fff;
    margin:22px 0;
}
.page-content .bottom-line {
    border-bottom:4px solid var(--primary);
    border-left:1px solid var(--gray-200);
    border-right:1px solid var(--gray-200);
    border-top:1px solid var(--gray-200);
    padding:24px 26px;
    background:#fff;
    margin:22px 0;
}
.info-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin-top:24px;
}
.info-grid.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.info-card {
    background:#fff;
    border:1px solid var(--gray-200);
    border-top:4px solid var(--primary);
    padding:24px;
}
.info-card.left { border-top:1px solid var(--gray-200); border-left:4px solid var(--primary); }
.info-card h3 { font-size:1.05rem; }
.info-card p { font-size:.92rem; }
.pill-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.pill-row span { border:1px solid var(--gray-200); background:var(--gray-bg); padding:5px 10px; font-size:.78rem; color:var(--gray-700); }
.page-cta {
    background:#17324D;
    color:#fff;
    padding:36px;
    margin-top:18px;
}
.page-cta h2, .page-cta p { color:#fff; }
.page-cta p { opacity:.8; }
.page-cta .btn-outline { color:#fff; border-color:#fff; }
.page-cta .btn-outline:hover { background:#fff; color:#17324D; }
.data-table { width:100%; border-collapse:collapse; margin-top:20px; }
.data-table th, .data-table td { padding:13px 14px; border:1px solid var(--gray-200); text-align:left; vertical-align:top; }
.data-table th { background:var(--gray-bg); color:var(--gray-700); }
.faq details { border-bottom:1px solid var(--gray-200); padding:16px 0; }
.faq summary { cursor:pointer; font-weight:700; color:var(--gray-700); }
.form-shell { max-width:760px; }
.form-row { margin-bottom:18px; }
.form-row label { display:block; font-weight:700; color:var(--gray-700); margin-bottom:6px; }
.form-row input, .form-row textarea, .form-row select {
    width:100%; padding:12px 14px; border:1.5px solid var(--gray-300); font:inherit; background:#fff;
}
.form-row textarea { min-height:140px; resize:vertical; }
.legal-note { background:#FFF8E6; border-left:4px solid var(--warning); padding:18px 20px; margin:22px 0; color:var(--gray-700); }
.footer-multi .container { align-items:flex-start; }
.footer-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.footer-cols strong { color:#fff; display:block; margin-bottom:8px; }
.footer-cols a { display:block; margin-bottom:6px; }

@media(max-width:900px){
  .page-layout{grid-template-columns:1fr}
  .page-side{position:static;display:none}
  .info-grid,.info-grid.three{grid-template-columns:1fr}
  .page-hero h1{font-size:2.2rem}
  .footer-cols{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .page-top-space{height:132px}
  .page-hero{padding:38px 0 42px}
  .page-hero h1{font-size:1.9rem}
  .footer-cols{grid-template-columns:1fr}
}
