/* =========================================================
   TERZOTESTO — FOGLIO STILE UNICO
   Ogni pagina deve avere sul tag <body> la classe del proprio modello.
   ========================================================= */

:root {
    --tt-brick: #A63B2F;
    --tt-brick-dark: #8E2F26;
    --tt-beige: #E8E5DC;
    --tt-beige-light: #F4F2EC;
    --tt-ink: #292525;
    --tt-muted: #6F6864;
    --tt-line: #D4CEC5;
    --tt-white: #FFFFFF;
    --tt-max: 1180px;
    --tt-radius: 3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


/* ==================== HOME ==================== */

        /* DESIGN TOKENS & MASTER STYLE */
        

        body.tt-page-home * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        body.tt-page-home {
            font-family: "Montserrat", Arial, sans-serif;
            color: var(--tt-ink);
            background: var(--tt-white);
            font-size: 16px;
            line-height: 1.42;
            -webkit-font-smoothing: antialiased;
        }

        body.tt-page-home a {
            color: var(--tt-brick);
            text-decoration: underline;
        }

        body.tt-page-home a:hover {
            color: var(--tt-brick-dark);
        }

        body.tt-page-home a.tt-link-ink {
            color: var(--tt-ink);
        }

        body.tt-page-home a.tt-link-ink:hover {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-container {
            width: min(100% - 48px, var(--tt-max));
            margin-inline: auto;
        }

        /* HEADER */
        body.tt-page-home .tt-header {
            background: var(--tt-white);
            padding: 8px 0 6px 0;
        }

        body.tt-page-home .tt-header-grid {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 20px;
        }

        body.tt-page-home .tt-logo-box {
            display: flex;
            align-items: center;
        }

        body.tt-page-home .tt-logo-img {
            max-width: 125px;
            height: auto;
            display: block;
        }

        body.tt-page-home .tt-claim-box {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        body.tt-page-home .tt-claim-text {
            color: var(--tt-brick);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
        }

        body.tt-page-home .tt-sublink-claim {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
        }

        body.tt-page-home .tt-sublink-claim:hover {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-menu-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
        }

        body.tt-page-home .tt-nav {
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }

        body.tt-page-home .tt-nav a, body.tt-page-home .tt-dropdown-trigger {
            color: var(--tt-ink);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        body.tt-page-home .tt-nav a:hover, body.tt-page-home .tt-dropdown-trigger:hover {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-dropdown {
            position: relative;
            display: inline-block;
        }

        body.tt-page-home .tt-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: var(--tt-white);
            min-width: 180px;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
            border: 1px solid var(--tt-line);
            border-radius: var(--tt-radius);
            z-index: 10;
            padding: 6px 0;
        }

        body.tt-page-home .tt-dropdown-content a {
            color: var(--tt-ink);
            padding: 8px 16px;
            text-decoration: none;
            display: block;
            font-size: 13px;
        }

        body.tt-page-home .tt-dropdown-content a:hover {
            background-color: var(--tt-beige-light);
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-dropdown:hover .tt-dropdown-content {
            display: block;
        }

        body.tt-page-home .tt-sublink-right {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
    margin-top: 10px;
}

        body.tt-page-home .tt-sublink-right:hover {
            color: var(--tt-brick);
        }

        /* HERO SECTION */
        body.tt-page-home .tt-hero {
            background: var(--tt-beige);
            padding: 24px 0 30px 0;
            border-top: 1px solid var(--tt-line);
        }

        body.tt-page-home .tt-hero-content {
            max-width: 920px;
            margin: 0 auto;
        }

        body.tt-page-home .tt-hero h1 {
            font-size: 21px;
            font-weight: 700;
            line-height: 1.32;
            margin-bottom: 12px;
            color: var(--tt-ink);
            text-wrap: balance;
        }

        body.tt-page-home .tt-hero h1 span.highlight {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-hero-intro {
            font-size: 15px;
            margin-bottom: 24px;
        }

        body.tt-page-home .tt-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 28px;
        }

        body.tt-page-home .tt-action-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        body.tt-page-home .tt-action-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        body.tt-page-home .tt-action-card p {
            font-size: 14px;
            color: var(--tt-ink);
            margin-bottom: 14px;
        }

        body.tt-page-home .tt-btn {
            display: inline-block;
            min-width: 136px;
            min-height: 38px;
            padding: 9px 22px;
            border: 1px solid var(--tt-brick);
            border-radius: var(--tt-radius);
            font-family: inherit;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .04em;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            width: fit-content;
        }

        body.tt-page-home .tt-btn--primary {
            background: var(--tt-brick);
            color: var(--tt-white);
        }

        body.tt-page-home .tt-btn--primary:hover {
            background: var(--tt-brick-dark);
            border-color: var(--tt-brick-dark);
            color: var(--tt-white);
        }

        body.tt-page-home .tt-btn--secondary {
            background: transparent;
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-btn--secondary:hover {
            border-color: var(--tt-brick-dark);
            color: var(--tt-brick-dark);
        }

        body.tt-page-home .tt-hero-contact {
            font-size: 14px;
            margin-bottom: 24px;
        }

        body.tt-page-home .tt-hero-method h2 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--tt-ink);
        }

        body.tt-page-home .tt-hero-method p {
            font-size: 14px;
        }

        /* OPERATIVE AREAS */
        body.tt-page-home .tt-operative-section {
            padding: 40px 0;
            background: var(--tt-white);
        }

        body.tt-page-home .tt-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 30px 34px;
        }

        body.tt-page-home .tt-card {
            display: flex;
            flex-direction: column;
        }

        body.tt-page-home .tt-card-header {
            background: var(--tt-beige);
            padding: 12px 16px;
            text-align: center;
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 12px;
        }

        body.tt-page-home .tt-card-header .highlight {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-card-body {
            font-size: 14px;
            flex-grow: 1;
            margin-bottom: 12px;
        }

        body.tt-page-home .tt-card-body p {
            margin-bottom: 8px;
        }

        body.tt-page-home .tt-card-links {
            display: flex;
            gap: 18px;
            font-size: 13px;
            font-weight: 600;
        }

        body.tt-page-home .tt-faq-box {
            border: 1px solid #777;
            box-shadow: 0 2px 5px rgba(0,0,0,.16);
            padding: 22px;
            text-align: center;
            background: var(--tt-white);
        }

        body.tt-page-home .tt-faq-box h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        body.tt-page-home .tt-faq-box ul {
            list-style: none;
            text-align: left;
            display: inline-block;
        }

        body.tt-page-home .tt-faq-box li {
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
        }

        body.tt-page-home .tt-faq-box li a {
            color: var(--tt-ink);
            text-decoration: underline;
        }

        body.tt-page-home .tt-faq-box li a:hover {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-prefooter-info {
            background: #F8F7F5;
            padding: 12px 0;
            border-top: 1px solid var(--tt-line);
            font-size: 12px;
            color: var(--tt-muted);
            text-align: center;
        }

        body.tt-page-home .tt-prefooter-info a {
            color: var(--tt-muted);
            text-decoration: underline;
        }

        body.tt-page-home .tt-prefooter-info a:hover {
            color: var(--tt-brick);
        }

        body.tt-page-home .tt-footer {
            background: var(--tt-brick);
            color: var(--tt-white);
            padding: 28px 0 18px 0;
            font-size: 13px;
            text-align: center;
        }

        body.tt-page-home .tt-footer a {
            color: var(--tt-white);
        }

        body.tt-page-home .tt-footer-socials {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            margin-bottom: 16px;
        }

        body.tt-page-home .tt-footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            transition: transform 0.2s;
        }

        body.tt-page-home .tt-footer-socials a:hover {
            transform: translateY(-2px);
        }

        body.tt-page-home .tt-footer-socials svg {
            width: 22px;
            height: 22px;
            fill: #000000;
        }

        body.tt-page-home .tt-footer-row {
            margin-bottom: 10px;
        }

        body.tt-page-home .tt-footer-sub {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 1023px) {
            body.tt-page-home .tt-header-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }
            body.tt-page-home .tt-logo-box, body.tt-page-home .tt-menu-box {
                justify-content: center;
                align-items: center;
            }
            body.tt-page-home .tt-nav {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767px) {
            body.tt-page-home .tt-container { width: min(100% - 24px, var(--tt-max)); }
            body.tt-page-home .tt-hero h1 { font-size: 19px; }
            body.tt-page-home .tt-hero { padding: 18px 0 24px 0; }
            body.tt-page-home .tt-actions, body.tt-page-home .tt-grid { grid-template-columns: 1fr; }
            body.tt-page-home .tt-btn { width: 100%; max-width: 280px; }
        }
    


/* ==================== LANDING / RICHIESTA ==================== */

        /* DESIGN TOKENS & MASTER STYLE */
        

        body.tt-page-landing * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        body.tt-page-landing {
            font-family: "Montserrat", Arial, sans-serif;
            color: var(--tt-ink);
            background: var(--tt-white);
            font-size: 16px;
            line-height: 1.45;
            -webkit-font-smoothing: antialiased;
        }

        body.tt-page-landing a {
            color: var(--tt-brick);
            text-decoration: underline;
        }

        body.tt-page-landing a:hover {
            color: var(--tt-brick-dark);
        }

        body.tt-page-landing .tt-container {
            width: min(100% - 48px, var(--tt-max));
            margin-inline: auto;
        }

        /* HEADER CON BORDINO DI SEPARAZIONE INFERIORE */
        body.tt-page-landing .tt-header {
            background: var(--tt-white);
            padding: 8px 0 6px 0;
            border-bottom: 1px solid var(--tt-line); /* <-- RIGA DI SEPARAZIONE */
        }

        body.tt-page-landing .tt-header-grid {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 20px;
        }

        body.tt-page-landing .tt-logo-box {
            display: flex;
            align-items: center;
        }

        body.tt-page-landing .tt-logo-img {
            max-width: 125px;
            height: auto;
            display: block;
        }

        body.tt-page-landing .tt-claim-box {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        body.tt-page-landing .tt-claim-text {
            color: var(--tt-brick);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
        }

        body.tt-page-landing .tt-sublink-claim {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
        }

        body.tt-page-landing .tt-sublink-claim:hover {
            color: var(--tt-brick);
        }

        body.tt-page-landing .tt-menu-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
        }

        body.tt-page-landing .tt-nav {
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }

        body.tt-page-landing .tt-nav a {
            color: var(--tt-ink);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        body.tt-page-landing .tt-nav a:hover {
            color: var(--tt-brick);
        }

        body.tt-page-landing .tt-nav a.active {
            color: var(--tt-brick);
            font-weight: 500;
        }

        body.tt-page-landing .tt-sublink-right {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
    margin-top: 10px;
}

        /* SEZIONE CENTRALE LANDING PAGE */
        body.tt-page-landing .tt-landing-main {
            padding: 40px 0 60px 0;
            background: var(--tt-white);
            text-align: center;
        }

        body.tt-page-landing .tt-landing-box {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* TITOLI ROSSI CENTRATI */
        body.tt-page-landing .tt-landing-title-1 {
            color: var(--tt-brick);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        body.tt-page-landing .tt-landing-title-2 {
            color: var(--tt-brick);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        /* PARAGRAFI */
        body.tt-page-landing .tt-landing-text {
            font-size: 15px;
            color: var(--tt-ink);
            margin-bottom: 20px;
            max-width: 760px;
        }

        body.tt-page-landing .tt-landing-text b, body.tt-page-landing .tt-landing-text strong {
            font-weight: 700;
        }

        body.tt-page-landing .tt-privacy-note {
            max-width: 720px;
            margin: 0 auto 24px auto;
            font-size: 11px;
            line-height: 1.45;
            text-align: center;
            color: var(--tt-muted);
        }

        body.tt-page-landing .tt-privacy-note a {
            color: var(--tt-brick);
            font-weight: 500;
            text-decoration: underline;
        }

        /* BLOCCO BOTTONI AFFIANCATI ROSSI */
        body.tt-page-landing .tt-cta-row {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 10px 0 10px 0;
            width: 100%;
        }

        body.tt-page-landing .tt-btn-red {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 170px;
            min-height: 44px;
            padding: 10px 28px;
            background-color: var(--tt-brick);
            color: var(--tt-white);
            border: 1px solid var(--tt-brick);
            border-radius: var(--tt-radius);
            font-family: inherit;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        body.tt-page-landing .tt-btn-red:hover {
            background-color: var(--tt-brick-dark);
            border-color: var(--tt-brick-dark);
            color: var(--tt-white);
        }

        /* LISTA SPUNTE (ALLINEATA A SINISTRA MA CENTRATA NEL BLOCCO) */
        body.tt-page-landing .tt-trust-box {
            text-align: left;
            margin-bottom: 24px;
            display: inline-block;
        }

        body.tt-page-landing .tt-trust-line {
            font-size: 14px;
            color: var(--tt-ink);
            margin-bottom: 6px;
        }

        body.tt-page-landing .tt-trust-line.bold {
            font-weight: 700;
        }

        /* PARAGRAFO PREFERISCI PARLARCI A VOCE */
        body.tt-page-landing .tt-voice-text {
            font-size: 15px;
            color: var(--tt-ink);
            margin-bottom: 24px;
        }

        /* DISCLAIMER LEGALE / TRASPARENZA */
        body.tt-page-landing .tt-disclaimer-text {
            font-size: 14px;
            color: var(--tt-ink);
            line-height: 1.45;
            max-width: 780px;
            margin-bottom: 32px;
            text-align: left;
        }

        /* LINK SCOPRI COME FUNZIONA TERZOTESTO */
        body.tt-page-landing .tt-discover-box {
            text-align: left;
            width: 100%;
            max-width: 780px;
        }

        body.tt-page-landing .tt-discover-box a {
            font-size: 15px;
            font-weight: 700;
            color: var(--tt-brick);
            text-decoration: underline;
        }

        /* FOOTER COMPATTO ROSSO */
        body.tt-page-landing .tt-footer-red {
            background: var(--tt-brick);
            color: var(--tt-white);
            padding: 20px 0 16px 0;
            font-size: 13px;
            text-align: center;
        }

        body.tt-page-landing .tt-footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        body.tt-page-landing .tt-footer-top-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        body.tt-page-landing .tt-footer-contacts {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        body.tt-page-landing .tt-footer-contacts a {
            color: var(--tt-white);
            text-decoration: underline;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }

        body.tt-page-landing .tt-footer-socials {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        body.tt-page-landing .tt-footer-socials a {
            color: #000000;
            display: inline-flex;
        }

        body.tt-page-landing .tt-footer-socials svg {
            width: 18px;
            height: 18px;
            fill: #000000;
        }

        body.tt-page-landing .tt-footer-bottom-row {
            display: flex;
            gap: 12px;
            font-size: 12px;
        }

        body.tt-page-landing .tt-footer-bottom-row a {
            color: var(--tt-white);
            text-decoration: underline;
        }

        /* RESPONSIVE MOBILE */
        @media (max-width: 1023px) {
            body.tt-page-landing .tt-header-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }
            body.tt-page-landing .tt-logo-box, body.tt-page-landing .tt-menu-box {
                justify-content: center;
                align-items: center;
            }
            body.tt-page-landing .tt-nav {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767px) {
            body.tt-page-landing .tt-container { width: min(100% - 24px, var(--tt-max)); }
            body.tt-page-landing .tt-landing-title-1, body.tt-page-landing .tt-landing-title-2 { font-size: 19px; }
            body.tt-page-landing .tt-cta-row { flex-direction: column; align-items: center; }
            body.tt-page-landing .tt-btn-red { width: 100%; max-width: 280px; }
            body.tt-page-landing .tt-footer-top-row { flex-direction: column; gap: 12px; }
        }
    


/* ==================== MODALITÀ E COSTI ==================== */

        /* DESIGN TOKENS & MASTER STYLE */
        

        body.tt-page-costi * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        body.tt-page-costi {
            font-family: "Montserrat", Arial, sans-serif;
            color: var(--tt-ink);
            background: var(--tt-white);
            font-size: 15px;
            line-height: 1.45;
            -webkit-font-smoothing: antialiased;
        }

        body.tt-page-costi a {
            color: var(--tt-brick);
            text-decoration: underline;
        }

        body.tt-page-costi a:hover {
            color: var(--tt-brick-dark);
        }

        body.tt-page-costi .tt-container {
            width: min(100% - 48px, var(--tt-max));
            margin-inline: auto;
        }

        /* HEADER CON BORDINO DI SEPARAZIONE */
        body.tt-page-costi .tt-header {
            background: var(--tt-white);
            padding: 8px 0 6px 0;
            border-bottom: 1px solid var(--tt-line);
        }

        body.tt-page-costi .tt-header-grid {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 20px;
        }

        body.tt-page-costi .tt-logo-box {
            display: flex;
            align-items: center;
        }

        body.tt-page-costi .tt-logo-img {
            max-width: 125px;
            height: auto;
            display: block;
        }

        body.tt-page-costi .tt-claim-box {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        body.tt-page-costi .tt-claim-text {
            color: var(--tt-brick);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
        }

        body.tt-page-costi .tt-sublink-claim {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
        }

        body.tt-page-costi .tt-sublink-claim:hover {
            color: var(--tt-brick);
        }

        body.tt-page-costi .tt-menu-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
        }

        body.tt-page-costi .tt-nav {
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }

        body.tt-page-costi .tt-nav a {
            color: var(--tt-ink);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }
        body.tt-page-costi .tt-nav a.active {
            font-weight: 500;
            color: var(--tt-brick);
        }

        body.tt-page-costi .tt-nav a:hover,
        body.tt-page-costi .tt-dropdown-trigger:hover {
            color: var(--tt-brick);
            font-weight: 500;
        }


        body.tt-page-costi .tt-sublink-right {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
    margin-top: 10px;
}

        /* SEZIONE CONTENUTO PRINCIPALE */
        body.tt-page-costi .tt-main {
            padding: 40px 0 60px 0;
            background: var(--tt-white);
        }

        body.tt-page-costi .tt-content-box {
            max-width: 920px;
            margin: 0 auto;
        }

        body.tt-page-costi .tt-title {
            color: var(--tt-ink);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        body.tt-page-costi .tt-text {
            font-size: 15px;
            color: var(--tt-ink);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        /* BLOCCO BOTTONI CTA */
        body.tt-page-costi .tt-cta-row {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 24px 0 20px 0;
        }

        body.tt-page-costi .tt-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            min-height: 40px;
            padding: 8px 24px;
            border: 1px solid var(--tt-brick);
            border-radius: var(--tt-radius);
            font-family: inherit;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            letter-spacing: .04em;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        /* BOTTONE ROSSO (PRIMARY) */
        body.tt-page-costi .tt-btn--primary {
            background-color: var(--tt-brick);
            color: var(--tt-white);
        }

        body.tt-page-costi .tt-btn--primary:hover {
            background-color: var(--tt-brick-dark);
            border-color: var(--tt-brick-dark);
            color: var(--tt-white);
        }

        /* BOTTONE CHIARO / OUTLINE (SECONDARY) */
        body.tt-page-costi .tt-btn--secondary {
            background-color: transparent;
            color: var(--tt-brick);
        }

        body.tt-page-costi .tt-btn--secondary:hover {
            border-color: var(--tt-brick-dark);
            color: var(--tt-brick-dark);
            background-color: rgba(166, 59, 47, 0.05);
        }

        body.tt-page-costi .tt-trust-box {
            text-align: center;
            margin-bottom: 36px;
        }

        body.tt-page-costi .tt-trust-line {
            font-size: 14px;
            color: var(--tt-ink);
            margin-bottom: 4px;
        }

        /* TABELLA COMPARATIVA */
        body.tt-page-costi .tt-table-wrapper {
            width: 100%;
            overflow-x: auto;
            margin: 28px 0 36px 0;
        }

        body.tt-page-costi .tt-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            text-align: left;
        }

        body.tt-page-costi .tt-table th, body.tt-page-costi .tt-table td {
            padding: 12px 14px;
            border: 1px solid var(--tt-line);
            vertical-align: top;
        }

        body.tt-page-costi .tt-table th {
            background-color: var(--tt-beige);
            color: var(--tt-ink);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.03em;
        }

        body.tt-page-costi .tt-table th:nth-child(3) {
            background-color: var(--tt-brick);
            color: var(--tt-white);
        }

        body.tt-page-costi .tt-table td.feature-name {
            font-weight: 700;
            background-color: #FAF9F6;
            width: 18%;
        }

        body.tt-page-costi .tt-table td.highlight-col {
            background-color: #FDFBF7;
            font-weight: 600;
        }

        /* SEZIONE COME FUNZIONA */
        body.tt-page-costi .tt-subtitle {
            font-size: 18px;
            font-weight: 700;
            color: var(--tt-brick);
            margin: 36px 0 16px 0;
        }

        body.tt-page-costi .tt-steps-list {
            list-style: none;
            margin-bottom: 24px;
            padding-left: 0;
        }

        body.tt-page-costi .tt-steps-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
            font-size: 15px;
            color: var(--tt-ink);
        }

        body.tt-page-costi .tt-steps-list li::before {
            content: attr(data-step);
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700;
            color: var(--tt-brick);
        }

        /* FOOTER ROSSO COMPATTO */
        body.tt-page-costi .tt-footer-red {
            background: var(--tt-brick);
            color: var(--tt-white);
            padding: 20px 0 16px 0;
            font-size: 13px;
            text-align: center;
        }

        body.tt-page-costi .tt-footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        body.tt-page-costi .tt-footer-top-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        body.tt-page-costi .tt-footer-contacts {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        body.tt-page-costi .tt-footer-contacts a {
            color: var(--tt-white);
            text-decoration: underline;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }

        body.tt-page-costi .tt-footer-socials {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        body.tt-page-costi .tt-footer-socials a {
            color: #000000;
            display: inline-flex;
        }

        body.tt-page-costi .tt-footer-socials svg {
            width: 18px;
            height: 18px;
            fill: #000000;
        }

        body.tt-page-costi .tt-footer-bottom-row {
            display: flex;
            gap: 12px;
            font-size: 12px;
        }

        body.tt-page-costi .tt-footer-bottom-row a {
            color: var(--tt-white);
            text-decoration: underline;
        }

        /* RESPONSIVE MOBILE */
        @media (max-width: 1023px) {
            body.tt-page-costi .tt-header-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }
            body.tt-page-costi .tt-logo-box, body.tt-page-costi .tt-menu-box {
                justify-content: center;
                align-items: center;
            }
            body.tt-page-costi .tt-nav {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767px) {
            body.tt-page-costi .tt-container { width: min(100% - 24px, var(--tt-max)); }
            body.tt-page-costi .tt-title { font-size: 19px; }
            body.tt-page-costi .tt-cta-row { flex-direction: column; align-items: center; }
            body.tt-page-costi .tt-btn { width: 100%; max-width: 280px; }
            body.tt-page-costi .tt-table { font-size: 12px; }
            body.tt-page-costi .tt-table th, body.tt-page-costi .tt-table td { padding: 8px; }
        }
    


/* ==================== PAGINA EDITORIALE ==================== */

        /* DESIGN TOKENS & MASTER STYLE */
        

        body.tt-page-editoriale * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        body.tt-page-editoriale {
            font-family: "Montserrat", Arial, sans-serif;
            color: var(--tt-ink);
            background: var(--tt-white);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        body.tt-page-editoriale a {
            color: var(--tt-brick);
            text-decoration: underline;
        }

        body.tt-page-editoriale a:hover {
            color: var(--tt-brick-dark);
        }

        body.tt-page-editoriale .tt-container {
            width: min(100% - 48px, var(--tt-max));
            margin-inline: auto;
        }

        /* HEADER */
        body.tt-page-editoriale .tt-header {
            background: var(--tt-white);
            padding: 8px 0 6px 0;
            border-bottom: 1px solid var(--tt-line);
        }

        body.tt-page-editoriale .tt-header-grid {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 20px;
        }

        body.tt-page-editoriale .tt-logo-box {
            display: flex;
            align-items: center;
        }

        body.tt-page-editoriale .tt-logo-img {
            max-width: 125px;
            height: auto;
            display: block;
        }

        body.tt-page-editoriale .tt-claim-box {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        body.tt-page-editoriale .tt-claim-text {
            color: var(--tt-brick);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
        }

        body.tt-page-editoriale .tt-sublink-claim {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
        }

        body.tt-page-editoriale .tt-sublink-claim:hover {
            color: var(--tt-brick);
        }

        body.tt-page-editoriale .tt-menu-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
        }

        body.tt-page-editoriale .tt-nav {
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }

        body.tt-page-editoriale .tt-nav a, body.tt-page-editoriale .tt-dropdown-trigger {
            color: var(--tt-ink);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        body.tt-page-editoriale .tt-nav a:hover, body.tt-page-editoriale .tt-dropdown-trigger:hover {
            color: var(--tt-brick);
        }

        body.tt-page-editoriale .tt-dropdown {
            position: relative;
            display: inline-block;
        }

        body.tt-page-editoriale .tt-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: var(--tt-white);
            min-width: 180px;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
            border: 1px solid var(--tt-line);
            border-radius: var(--tt-radius);
            z-index: 10;
            padding: 6px 0;
        }

        body.tt-page-editoriale .tt-dropdown-content a {
            color: var(--tt-ink);
            padding: 8px 16px;
            text-decoration: none;
            display: block;
            font-size: 13px;
        }

        body.tt-page-editoriale .tt-dropdown-content a:hover {
            background-color: var(--tt-beige-light);
            color: var(--tt-brick);
        }

        body.tt-page-editoriale .tt-dropdown:hover .tt-dropdown-content {
            display: block;
        }

        body.tt-page-editoriale .tt-sublink-right {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
    margin-top: 10px;
}

        body.tt-page-editoriale .tt-sublink-right:hover {
            color: var(--tt-brick);
        }

        /* CONTENUTO PAGINA EDITORIALE */
        body.tt-page-editoriale .tt-page-content {
            padding: 48px 0 60px 0;
            background: var(--tt-white);
        }

        body.tt-page-editoriale .tt-article {
            max-width: 780px;
            margin: 0 auto;
        }

        body.tt-page-editoriale .tt-article h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--tt-ink);
            margin-bottom: 24px;
            line-height: 1.25;
        }

        body.tt-page-editoriale .tt-article p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--tt-ink);
        }

        body.tt-page-editoriale .tt-article strong {
            font-weight: 700;
        }

        body.tt-page-editoriale .tt-highlight-box {
            background: var(--tt-beige-light);
            border-left: 4px solid var(--tt-brick);
            padding: 20px 24px;
            margin: 32px 0;
            font-size: 18px;
            font-weight: 700;
            color: var(--tt-brick-dark);
            line-height: 1.4;
        }

        body.tt-page-editoriale .tt-article-cta {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--tt-line);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.tt-page-editoriale .tt-btn {
            display: inline-block;
            min-width: 136px;
            min-height: 38px;
            padding: 10px 24px;
            border: 1px solid var(--tt-brick);
            border-radius: var(--tt-radius);
            font-family: inherit;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .04em;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            background: var(--tt-brick);
            color: var(--tt-white);
        }

        body.tt-page-editoriale .tt-btn:hover {
            background: var(--tt-brick-dark);
            border-color: var(--tt-brick-dark);
            color: var(--tt-white);
        }

        body.tt-page-editoriale .tt-prefooter-info {
            background: #F8F7F5;
            padding: 12px 0;
            border-top: 1px solid var(--tt-line);
            font-size: 12px;
            color: var(--tt-muted);
            text-align: center;
        }

        body.tt-page-editoriale .tt-prefooter-info a {
            color: var(--tt-muted);
            text-decoration: underline;
        }

        body.tt-page-editoriale .tt-prefooter-info a:hover {
            color: var(--tt-brick);
        }

        body.tt-page-editoriale .tt-footer {
            background: var(--tt-brick);
            color: var(--tt-white);
            padding: 28px 0 18px 0;
            font-size: 13px;
            text-align: center;
        }

        body.tt-page-editoriale .tt-footer a {
            color: var(--tt-white);
        }

        body.tt-page-editoriale .tt-footer-socials {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            margin-bottom: 16px;
        }

        body.tt-page-editoriale .tt-footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            transition: transform 0.2s;
        }

        body.tt-page-editoriale .tt-footer-socials a:hover {
            transform: translateY(-2px);
        }

        body.tt-page-editoriale .tt-footer-socials svg {
            width: 22px;
            height: 22px;
            fill: #000000;
        }

        body.tt-page-editoriale .tt-footer-row {
            margin-bottom: 10px;
        }

        body.tt-page-editoriale .tt-footer-sub {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 1023px) {
            body.tt-page-editoriale .tt-header-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }
            body.tt-page-editoriale .tt-logo-box, body.tt-page-editoriale .tt-menu-box {
                justify-content: center;
                align-items: center;
            }
            body.tt-page-editoriale .tt-nav {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767px) {
            body.tt-page-editoriale .tt-container { width: min(100% - 24px, var(--tt-max)); }
            body.tt-page-editoriale .tt-article h1 { font-size: 22px; }
            body.tt-page-editoriale .tt-page-content { padding: 28px 0 40px 0; }
        }
    


/* ==================== PAGINA SERVIZIO / CLUSTER ==================== */

        /* DESIGN TOKENS & MASTER STYLE */
        

        body.tt-page-cluster * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        body.tt-page-cluster {
            font-family: "Montserrat", Arial, sans-serif;
            color: var(--tt-ink);
            background: var(--tt-white);
            font-size: 16px;
            line-height: 1.45;
            -webkit-font-smoothing: antialiased;
        }

        /* LINK DI DEFAULT: ROSSO MATTONE GRASSETTO */
        body.tt-page-cluster a {
            color: var(--tt-brick);
            font-weight: 700;
            text-decoration: underline;
        }

        body.tt-page-cluster a:hover {
            color: var(--tt-brick-dark);
        }

        body.tt-page-cluster .tt-container {
            width: min(100% - 48px, var(--tt-max));
            margin-inline: auto;
        }

        /* HEADER */
        body.tt-page-cluster .tt-header {
            background: var(--tt-white);
            padding: 8px 0 6px 0;
            border-bottom: 1px solid var(--tt-line);
        }

        body.tt-page-cluster .tt-header-grid {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            gap: 20px;
        }

        body.tt-page-cluster .tt-logo-box {
            display: flex;
            align-items: center;
        }

        body.tt-page-cluster .tt-logo-img {
            max-width: 125px;
            height: auto;
            display: block;
        }

        body.tt-page-cluster .tt-claim-box {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        body.tt-page-cluster .tt-claim-text {
            color: var(--tt-brick);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
        }

        body.tt-page-cluster .tt-sublink-claim {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
        }

        body.tt-page-cluster .tt-sublink-claim:hover {
            color: var(--tt-brick);
        }

        body.tt-page-cluster .tt-menu-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
        }

        body.tt-page-cluster .tt-nav {
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }

        body.tt-page-cluster .tt-nav a, body.tt-page-cluster .tt-dropdown-trigger {
            color: var(--tt-ink);
            font-weight: 500;
            text-decoration: none;
            font-size: 14px;
        }

        body.tt-page-cluster .tt-nav a:hover, body.tt-page-cluster .tt-dropdown-trigger:hover {
            color: var(--tt-brick);
        }

        body.tt-page-cluster .tt-dropdown {
            position: relative;
            display: inline-block;
        }

        body.tt-page-cluster .tt-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: var(--tt-white);
            min-width: 180px;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
            border: 1px solid var(--tt-line);
            border-radius: var(--tt-radius);
            z-index: 10;
            padding: 6px 0;
        }

        body.tt-page-cluster .tt-dropdown-content a {
            color: var(--tt-ink);
            font-weight: 400;
            padding: 8px 16px;
            text-decoration: none;
            display: block;
            font-size: 13px;
        }

        body.tt-page-cluster .tt-dropdown-content a:hover {
            background-color: var(--tt-beige-light);
            color: var(--tt-brick);
        }

        body.tt-page-cluster .tt-dropdown:hover .tt-dropdown-content {
            display: block;
        }

        body.tt-page-cluster .tt-sublink-right {
            font-size: 12px;
            font-weight: 600;
            color: var(--tt-ink);
            text-decoration: underline;
    margin-top: 10px;
}

        body.tt-page-cluster .tt-sublink-right:hover {
            color: var(--tt-brick);
        }

        /* CLUSTER PAGE CONTENT */
        body.tt-page-cluster .tt-page-content {
            padding: 40px 0 60px 0;
            background: var(--tt-white);
        }

        body.tt-page-cluster .tt-cluster-article {
            max-width: 820px;
            margin: 0 auto;
        }

        /* BILANCIAMENTO RIGO TITOLI H1 / H3 */
        body.tt-page-cluster .tt-cluster-article h1 {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--tt-ink);
            margin-bottom: 20px;
            text-wrap: balance; /* Previene le parole orfane a fine rigo */
        }

        body.tt-page-cluster .tt-cluster-article h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--tt-ink);
            margin: 32px 0 14px 0;
            text-wrap: balance;
        }

        body.tt-page-cluster .tt-cluster-article p {
            font-size: 15px;
            line-height: 1.55;
            margin-bottom: 16px;
            color: var(--tt-ink);
        }

        body.tt-page-cluster .tt-cluster-article ul {
            list-style: none;
            margin-bottom: 24px;
            padding-left: 0;
        }

        body.tt-page-cluster .tt-cluster-article li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 1.5;
        }

        body.tt-page-cluster .tt-cluster-article li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--tt-brick);
            font-weight: bold;
        }

        /* BOX CTA GRIGIO RIGOROSO */
        body.tt-page-cluster .tt-cta-box {
            background: var(--tt-beige-light);
            border: 1px solid var(--tt-line);
            padding: 24px;
            margin: 28px 0 20px 0;
            border-radius: var(--tt-radius);
        }

        body.tt-page-cluster .tt-actions-cluster {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        body.tt-page-cluster .tt-action-card-cluster {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        body.tt-page-cluster .tt-action-card-cluster h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--tt-ink);
        }

        body.tt-page-cluster .tt-btn {
            display: inline-block;
            min-width: 140px;
            padding: 9px 20px;
            border: 1px solid var(--tt-brick);
            border-radius: var(--tt-radius);
            font-family: inherit;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: .04em;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            margin-bottom: 6px;
        }

        body.tt-page-cluster .tt-btn--primary {
            background: var(--tt-brick);
            color: var(--tt-white);
        }

        body.tt-page-cluster .tt-btn--primary:hover {
            background: var(--tt-brick-dark);
            border-color: var(--tt-brick-dark);
            color: var(--tt-white);
        }

        body.tt-page-cluster .tt-btn--secondary {
            background: transparent;
            color: var(--tt-brick);
        }

        body.tt-page-cluster .tt-btn--secondary:hover {
            border-color: var(--tt-brick-dark);
            color: var(--tt-brick-dark);
        }

        /* MICROCOPY SOTTO I BOTTONI */
        body.tt-page-cluster .tt-btn-subtext {
            font-size: 12px;
            color: var(--tt-muted);
            font-weight: 500;
        }

        /* TESTO DI APPROFONDIMENTO ESTERNO AL BOX CTA */
        body.tt-page-cluster .tt-cluster-notes {
            margin-bottom: 28px;
            font-size: 14px;
            line-height: 1.5;
        }

        body.tt-page-cluster .tt-cluster-notes p {
            margin-bottom: 8px;
            font-size: 14px;
        }

        /* CITATION / EVIDENZIATORE */
        body.tt-page-cluster .tt-highlight-quote {
            background: var(--tt-beige);
            border-left: 4px solid var(--tt-brick);
            padding: 16px 20px;
            margin: 28px 0;
            font-weight: 600;
            font-size: 15px;
            color: var(--tt-ink);
        }

        body.tt-page-cluster .tt-cluster-footer-nav {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--tt-line);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 14px;
        }

        /* PREFOOTER & FOOTER */
        body.tt-page-cluster .tt-prefooter-info {
            background: #F8F7F5;
            padding: 12px 0;
            border-top: 1px solid var(--tt-line);
            font-size: 12px;
            color: var(--tt-muted);
            text-align: center;
        }

        body.tt-page-cluster .tt-prefooter-info a {
            color: var(--tt-muted);
            font-weight: 600;
            text-decoration: underline;
        }

        body.tt-page-cluster .tt-prefooter-info a:hover {
            color: var(--tt-brick);
        }

        body.tt-page-cluster .tt-footer {
            background: var(--tt-brick);
            color: var(--tt-white);
            padding: 28px 0 18px 0;
            font-size: 13px;
            text-align: center;
        }

        body.tt-page-cluster .tt-footer a {
            color: var(--tt-white);
            font-weight: 400;
        }

        body.tt-page-cluster .tt-footer-socials {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            margin-bottom: 16px;
        }

        body.tt-page-cluster .tt-footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            transition: transform 0.2s;
        }

        body.tt-page-cluster .tt-footer-socials a:hover {
            transform: translateY(-2px);
        }

        body.tt-page-cluster .tt-footer-socials svg {
            width: 22px;
            height: 22px;
            fill: #000000;
        }

        body.tt-page-cluster .tt-footer-row {
            margin-bottom: 10px;
        }

        body.tt-page-cluster .tt-footer-sub {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 1023px) {
            body.tt-page-cluster .tt-header-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }
            body.tt-page-cluster .tt-logo-box, body.tt-page-cluster .tt-menu-box {
                justify-content: center;
                align-items: center;
            }
            body.tt-page-cluster .tt-nav {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767px) {
            body.tt-page-cluster .tt-container { width: min(100% - 24px, var(--tt-max)); }
            body.tt-page-cluster .tt-cluster-article h1 { font-size: 21px; }
            body.tt-page-cluster .tt-actions-cluster { grid-template-columns: 1fr; }
            body.tt-page-cluster .tt-btn { width: 100%; }
        }
/* ==================== MEDIAZIONE DOCUMENTALE ==================== */

body.tt-page-mediazione * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.tt-page-mediazione {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--tt-ink);
    background: var(--tt-white);
    font-size: 15px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

body.tt-page-mediazione a {
    color: var(--tt-brick);
    text-decoration: underline;
}

body.tt-page-mediazione a:hover {
    color: var(--tt-brick-dark);
}

body.tt-page-mediazione .tt-container {
    width: min(100% - 48px, var(--tt-max));
    margin-inline: auto;
}

body.tt-page-mediazione .tt-header {
    background: var(--tt-white);
    padding: 8px 0 6px;
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-mediazione .tt-header-grid {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 20px;
}

body.tt-page-mediazione .tt-logo-box {
    display: flex;
    align-items: center;
}

body.tt-page-mediazione .tt-logo-img {
    max-width: 125px;
    height: auto;
    display: block;
}

body.tt-page-mediazione .tt-claim-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

body.tt-page-mediazione .tt-claim-text {
    color: var(--tt-brick);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

body.tt-page-mediazione .tt-sublink-claim {
    font-size: 12px;
    font-weight: 600;
    color: var(--tt-ink);
    text-decoration: underline;
}

body.tt-page-mediazione .tt-sublink-claim:hover {
    color: var(--tt-brick);
}

body.tt-page-mediazione .tt-menu-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

body.tt-page-mediazione .tt-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

body.tt-page-mediazione .tt-nav a {
    color: var(--tt-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

body.tt-page-mediazione .tt-nav a.active {
    font-weight: 700;
    color: var(--tt-brick);
}

body.tt-page-mediazione .tt-nav a:hover {
    color: var(--tt-brick);
}

body.tt-page-mediazione .tt-sublink-right {
    font-size: 12px;
    font-weight: 600;
    color: var(--tt-ink);
    text-decoration: underline;
    margin-top: 10px;
}

body.tt-page-mediazione .tt-main {
    padding: 40px 0 60px;
    background: var(--tt-white);
}

body.tt-page-mediazione .tt-content-box {
    max-width: 820px;
    margin: 0 auto;
}

body.tt-page-mediazione .tt-title {
    color: var(--tt-ink);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

body.tt-page-mediazione .tt-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--tt-brick);
    margin: 28px 0 12px;
}

body.tt-page-mediazione .tt-text {
    font-size: 15px;
    color: var(--tt-ink);
    margin-bottom: 16px;
    line-height: 1.55;
}

body.tt-page-mediazione .tt-action-box {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--tt-line);
    text-align: center;
}

body.tt-page-mediazione .tt-btn-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tt-brick);
    text-decoration: underline;
    transition: color 0.2s;
}

body.tt-page-mediazione .tt-btn-link:hover {
    color: var(--tt-brick-dark);
}

body.tt-page-mediazione .tt-footer-red {
    background: var(--tt-brick);
    color: var(--tt-white);
    padding: 20px 0 16px;
    font-size: 13px;
    text-align: center;
}

body.tt-page-mediazione .tt-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

body.tt-page-mediazione .tt-footer-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

body.tt-page-mediazione .tt-footer-contacts {
    display: flex;
    align-items: center;
    gap: 18px;
}

body.tt-page-mediazione .tt-footer-contacts a {
    color: var(--tt-white);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

body.tt-page-mediazione .tt-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.tt-page-mediazione .tt-footer-socials a {
    color: #000000;
    display: inline-flex;
}

body.tt-page-mediazione .tt-footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #000000;
}

body.tt-page-mediazione .tt-footer-bottom-row {
    display: flex;
    gap: 12px;
    font-size: 12px;
}

body.tt-page-mediazione .tt-footer-bottom-row a {
    color: var(--tt-white);
    text-decoration: underline;
}

@media (max-width: 1023px) {
    body.tt-page-mediazione .tt-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    body.tt-page-mediazione .tt-logo-box,
    body.tt-page-mediazione .tt-menu-box {
        justify-content: center;
        align-items: center;
    }

    body.tt-page-mediazione .tt-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    body.tt-page-mediazione .tt-container {
        width: min(100% - 24px, var(--tt-max));
    }

    body.tt-page-mediazione .tt-title {
        font-size: 20px;
    }

    body.tt-page-mediazione .tt-subtitle {
        font-size: 16px;
    }
}


/* Dropdown Richiesta comune */
body .tt-dropdown {
    position: relative;
    display: inline-block;
}

body .tt-dropdown-trigger {
    color: var(--tt-ink);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

body .tt-dropdown-trigger:hover {
    color: var(--tt-brick);
}

body .tt-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--tt-white);
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    border: 1px solid var(--tt-line);
    border-radius: var(--tt-radius);
    z-index: 100;
    padding: 6px 0;
}

body .tt-dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: var(--tt-ink);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
}

body .tt-dropdown-content a:hover {
    background: var(--tt-beige-light);
    color: var(--tt-brick);
}

body .tt-dropdown:hover .tt-dropdown-content {
    display: block;
}


/* Modalità e costi: una sola voce rossa alla volta */
body.tt-page-costi .tt-nav:hover a.active {
    color: var(--tt-ink);
}

body.tt-page-costi .tt-nav a.active:hover {
    color: var(--tt-brick);
}

body.tt-page-costi .tt-dropdown:hover .tt-dropdown-trigger {
    color: var(--tt-brick);
}


/* ==================== COOKIE BANNER COMUNE ==================== */
.tt-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    background: var(--tt-beige-light);
    border-top: 1px solid var(--tt-line);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.14);
    padding: 0 16px;
}

.tt-cookie-inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tt-cookie-text {
    margin: 0;
    max-width: 720px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--tt-ink);
}

.tt-cookie-text a {
    color: var(--tt-brick);
    text-decoration: underline;
}

.tt-cookie-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

.tt-cookie-btn {
    min-height: 40px;
    padding: 9px 17px;
    border: 1px solid var(--tt-brick);
    border-radius: var(--tt-radius);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.tt-cookie-btn-primary {
    background: var(--tt-brick);
    color: var(--tt-white);
}

.tt-cookie-btn-primary:hover {
    background: var(--tt-brick-dark);
    border-color: var(--tt-brick-dark);
}

.tt-cookie-btn-secondary {
    background: var(--tt-white);
    color: var(--tt-brick);
}

.tt-cookie-btn-secondary:hover {
    background: var(--tt-white);
    color: var(--tt-brick-dark);
    border-color: var(--tt-brick-dark);
}

@media (max-width: 767px) {
    .tt-cookie-banner {
        padding: 0 14px;
    }

    .tt-cookie-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 0;
        text-align: center;
    }

    .tt-cookie-text {
        max-width: none;
    }

    .tt-cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .tt-cookie-btn {
        width: 100%;
    }
}


/* =========================================================
   FOOTER ROSSO STANDARD — TUTTI I MODELLI
   ========================================================= */
.tt-footer-red {
    background: var(--tt-brick);
    color: var(--tt-white);
    padding: 20px 0 16px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    text-align: center;
}
.tt-footer-red .tt-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.tt-footer-red .tt-footer-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.tt-footer-red .tt-footer-contacts,
.tt-footer-red .tt-footer-socials {
    display: flex;
    align-items: center;
}
.tt-footer-red .tt-footer-contacts { gap: 18px; }
.tt-footer-red .tt-footer-socials { gap: 12px; }
.tt-footer-red a { color: var(--tt-white); text-decoration: underline; }
.tt-footer-red .tt-footer-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.tt-footer-red .tt-footer-socials a {
    color: #000;
    display: inline-flex;
    text-decoration: none;
    transition: transform .2s;
}
.tt-footer-red .tt-footer-socials a:hover { transform: translateY(-2px); }
.tt-footer-red .tt-footer-socials svg { width: 18px; height: 18px; fill: #000; }
.tt-footer-red .tt-footer-bottom-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
}
.tt-footer-red .tt-footer-copyright {
    max-width: 900px;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255,255,255,.82);
}
@media (max-width: 767px) {
    .tt-footer-red .tt-footer-top-row { flex-direction: column; gap: 12px; }
    .tt-footer-red .tt-footer-contacts { flex-wrap: wrap; justify-content: center; }
}


/* === CORREZIONI STANDARD VERIFICA 2 === */
/* Footer rosso forzato e identico in ogni modello di pagina */
body .tt-footer-red {
    background-color: var(--tt-brick) !important;
    color: var(--tt-white) !important;
    padding: 20px 0 16px !important;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    text-align: center;
}
body .tt-footer-red .tt-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
body .tt-footer-red .tt-footer-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
body .tt-footer-red .tt-footer-contacts,
body .tt-footer-red .tt-footer-socials {
    display: flex;
    align-items: center;
}
body .tt-footer-red .tt-footer-contacts { gap: 18px; }
body .tt-footer-red .tt-footer-socials { gap: 12px; }
body .tt-footer-red a { color: var(--tt-white) !important; }
body .tt-footer-red .tt-footer-socials a { color: #000 !important; text-decoration: none; }
body .tt-footer-red .tt-footer-socials svg { fill: #000 !important; }
body .tt-footer-red .tt-footer-bottom-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
}
body .tt-footer-red .tt-footer-copyright {
    max-width: 900px;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255,255,255,.82);
}

/* Mediazione documentale: tipografia allineata alle altre pagine istituzionali */
body.tt-page-mediazione {
    font-size: 15px;
    line-height: 1.45;
}
body.tt-page-mediazione .tt-title {
    font-size: 22px;
    line-height: 1.3;
}
body.tt-page-mediazione .tt-subtitle {
    font-size: 16px;
    line-height: 1.35;
}
body.tt-page-mediazione .tt-text {
    font-size: 15px;
    line-height: 1.55;
}
body.tt-page-mediazione .tt-btn-link {
    font-size: 15px;
}

@media (max-width: 767px) {
    body .tt-footer-red .tt-footer-top-row { flex-direction: column; gap: 12px; }
    body .tt-footer-red .tt-footer-contacts { flex-wrap: wrap; justify-content: center; }
    body.tt-page-mediazione .tt-title { font-size: 20px; }
    body.tt-page-mediazione .tt-subtitle { font-size: 16px; }
}


/* === PAGINE VERIFICA, FAQ E INFORMATIVA === */
body.tt-page-verifica .tt-verifica-box { max-width: 860px; }
body.tt-page-verifica .tt-verifica-price-box {
    width: 100%; max-width: 760px; margin: 4px auto 28px; padding: 20px 24px;
    border: 1px solid var(--tt-line); background: var(--tt-beige-light); text-align: center;
}
body.tt-page-verifica .tt-verifica-price { color: var(--tt-brick); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
body.tt-page-verifica .tt-verifica-price-box p:not(.tt-verifica-price) { font-size: 14px; margin-bottom: 6px; }
body.tt-page-verifica .tt-verifica-section { width: 100%; max-width: 780px; margin: 0 auto 28px; text-align: left; }
body.tt-page-verifica .tt-verifica-section h2 { font-size: 17px; line-height: 1.35; margin-bottom: 12px; color: var(--tt-ink); }
body.tt-page-verifica .tt-verifica-list { padding-left: 20px; font-size: 14px; line-height: 1.55; }
body.tt-page-verifica .tt-verifica-list li { margin-bottom: 8px; }
body.tt-page-verifica .tt-verifica-note { margin-top: 14px; font-size: 13px; color: var(--tt-muted); }
body.tt-page-verifica .tt-verifica-reserved { font-size: 12px; color: var(--tt-muted); margin: -8px 0 28px; }
body.tt-page-verifica .tt-verifica-links p { font-size: 14px; margin-bottom: 8px; }

body.tt-page-faq .tt-faq-article,
body.tt-page-privacy .tt-privacy-article { max-width: 900px; margin: 0 auto; }
body.tt-page-faq .tt-faq-item { margin-bottom: 30px; }
body.tt-page-faq .tt-faq-item h2,
body.tt-page-privacy .tt-privacy-article h2 { font-size: 17px; line-height: 1.4; color: var(--tt-ink); margin: 28px 0 10px; }
body.tt-page-faq .tt-faq-item p,
body.tt-page-privacy .tt-privacy-article p,
body.tt-page-privacy .tt-privacy-article li { font-size: 15px; line-height: 1.58; }
body.tt-page-privacy .tt-privacy-article ul { padding-left: 22px; margin: 10px 0 18px; }
body.tt-page-privacy .tt-privacy-article li { margin-bottom: 7px; }
body.tt-page-privacy .tt-privacy-intro { margin-bottom: 24px; }
body.tt-page-privacy .tt-privacy-table-wrap { overflow-x: auto; margin: 12px 0 24px; }
body.tt-page-privacy .tt-privacy-table { width: 100%; border-collapse: collapse; font-size: 13px; }
body.tt-page-privacy .tt-privacy-table th,
body.tt-page-privacy .tt-privacy-table td { border: 1px solid var(--tt-line); padding: 10px 12px; text-align: left; vertical-align: top; }
body.tt-page-privacy .tt-privacy-table th { background: var(--tt-beige); font-weight: 700; }
body.tt-page-privacy .tt-privacy-closing { margin-top: 28px; font-weight: 600; }

@media (max-width: 767px) {
    body.tt-page-verifica .tt-verifica-price-box { padding: 18px 16px; }
    body.tt-page-verifica .tt-verifica-price { font-size: 20px; }
    body.tt-page-faq .tt-faq-item h2,
    body.tt-page-privacy .tt-privacy-article h2 { font-size: 16px; }
    body.tt-page-privacy .tt-privacy-table { min-width: 660px; }
}

/* === CORREZIONI GRAFICHE 28-07-2026 === */

/* Richiamo finale standard: sempre a sinistra, grassetto, senza sottolineatura */



.tt-final-cta {
    color: var(--tt-brick) !important;
    text-decoration: none !important;
}

/* Spazi più compatti dopo header, prima del footer e su mobile */
body.tt-page-editoriale .tt-page-content,
body.tt-page-cluster .tt-page-content,
body.tt-page-privacy .tt-page-content,
body.tt-page-faq .tt-page-content { padding-top: 26px; padding-bottom: 34px; }
body.tt-page-costi .tt-main,
body.tt-page-mediazione .tt-main { padding-top: 26px; padding-bottom: 34px; }
body.tt-page-landing .tt-landing-main { padding-top: 28px; padding-bottom: 34px; }

/* Mediazione documentale: meno dispersione verticale */
body.tt-page-mediazione .tt-title { margin-bottom: 18px; text-align: left; }
body.tt-page-mediazione .tt-subtitle { margin-top: 22px; margin-bottom: 8px; }
body.tt-page-mediazione .tt-text { margin-bottom: 11px; line-height: 1.5; }
body.tt-page-mediazione .tt-action-box { margin-top: 26px; padding-top: 18px; text-align: left; }
body.tt-page-mediazione .tt-btn-link { text-decoration: none; }

/* Verifica documento: struttura editoriale allineata a sinistra */
body.tt-page-verifica .tt-landing-box,
body.tt-page-verifica .tt-verifica-box {
    align-items: stretch;
    text-align: left;
}
body.tt-page-verifica .tt-landing-title-1 {
    width: 100%;
    text-align: left;
    margin-bottom: 14px;
}
body.tt-page-verifica .tt-landing-text {
    max-width: none;
    text-align: left;
    margin-bottom: 18px;
}
body.tt-page-verifica .tt-verifica-price-box {
    max-width: none;
    margin: 0 0 24px;
    padding: 16px 20px;
    text-align: left;
}
body.tt-page-verifica .tt-verifica-price-line {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.45;
}
body.tt-page-verifica .tt-verifica-price-line strong {
    color: var(--tt-brick);
    font-size: 20px;
}
body.tt-page-verifica .tt-verifica-discount {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}
body.tt-page-verifica .tt-verifica-section {
    max-width: none;
    margin: 0 0 24px;
}
body.tt-page-verifica .tt-verifica-list {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 0;
}
body.tt-page-verifica .tt-verifica-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
body.tt-page-verifica .tt-verifica-list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tt-brick);
    font-weight: 700;
}
body.tt-page-verifica .tt-verifica-list-arrow li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--tt-brick);
    font-weight: 700;
}
body.tt-page-verifica .tt-cta-row { justify-content: flex-start; }
body.tt-page-verifica .tt-privacy-note,
body.tt-page-verifica .tt-verifica-reserved { text-align: left; margin-left: 0; margin-right: 0; }
body.tt-page-verifica .tt-discover-box { text-align: left; max-width: none; }

/* Informativa: finalità e basi giuridiche separate e leggibili */
body.tt-page-privacy .tt-privacy-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 12px 0 30px;
}
body.tt-page-privacy .tt-privacy-legal-card {
    border: 1px solid var(--tt-line);
    background: var(--tt-beige-light);
    padding: 18px 20px;
}
body.tt-page-privacy .tt-privacy-legal-card h3 {
    font-size: 16px;
    line-height: 1.35;
    color: var(--tt-brick);
    margin: 0 0 12px;
}
body.tt-page-privacy .tt-privacy-legal-card ul {
    margin: 0;
    padding-left: 20px;
}
body.tt-page-privacy .tt-privacy-legal-card li { margin-bottom: 9px; }
body.tt-page-privacy .tt-privacy-article > ul {
    margin: 10px 0 28px;
    padding-left: 24px;
}
body.tt-page-privacy .tt-privacy-article > ul li {
    padding-left: 2px;
    margin-bottom: 8px;
}
body.tt-page-privacy .tt-privacy-article h2 { margin-top: 30px; }
body.tt-page-privacy .tt-privacy-article h2 + ul { margin-top: 10px; }

@media (max-width: 767px) {
    body.tt-page-editoriale .tt-page-content,
    body.tt-page-cluster .tt-page-content,
    body.tt-page-privacy .tt-page-content,
    body.tt-page-faq .tt-page-content,
    body.tt-page-costi .tt-main,
    body.tt-page-mediazione .tt-main,
    body.tt-page-landing .tt-landing-main {
        padding-top: 20px;
        padding-bottom: 26px;
    }
    
    body.tt-page-verifica .tt-verifica-price-line strong { display: inline; font-size: 18px; }
    body.tt-page-verifica .tt-cta-row { align-items: flex-start; }
    body.tt-page-privacy .tt-privacy-legal-grid { grid-template-columns: 1fr; gap: 14px; }
    body.tt-page-mediazione .tt-title { margin-bottom: 14px; }
}

/* CTA finale FAQ: pulsante sempre visibile, non dipendente da hover */




/* ==================== ESEMPIO AREA ==================== */
body.tt-page-example .tt-example-article h2 {
    color: var(--tt-ink);
    font-size: 19px;
    line-height: 1.3;
    margin: 30px 0 12px;
}
body.tt-page-example .tt-example-intro {
    margin: 20px 0 24px;
    padding: 18px 20px;
    background: var(--tt-beige-light);
    border-left: 4px solid var(--tt-brick);
}
body.tt-page-example .tt-example-intro p {
    margin: 8px 0 0;
}
body.tt-page-example .tt-example-label {
    color: var(--tt-brick);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}
body.tt-page-example .tt-example-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0;
}
body.tt-page-example .tt-example-list-card {
    border: 1px solid var(--tt-line);
    background: #FAF9F6;
    padding: 20px;
}
body.tt-page-example .tt-example-list-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
}
body.tt-page-example .tt-example-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
body.tt-page-example .tt-example-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 9px;
}
body.tt-page-example .tt-example-list--risks li::before {
    content: "–";
    position: absolute;
    left: 2px;
    color: var(--tt-brick);
    font-weight: 700;
}
body.tt-page-example .tt-example-list--results li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tt-brick);
    font-weight: 700;
}
body.tt-page-example .tt-example-related {
    margin: 28px 0 24px;
    padding-top: 4px;
}
body.tt-page-example .tt-example-related h3 {
    margin-bottom: 12px;
}
body.tt-page-example .tt-example-related ul {
    margin: 0;
    padding-left: 22px;
}
body.tt-page-example .tt-example-related li {
    margin-bottom: 7px;
}
@media (max-width: 767px) {
    body.tt-page-example .tt-example-results-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    body.tt-page-example .tt-example-intro {
        padding: 16px;
    }
}


/* ==================== PAGINA AREA ==================== */
body.tt-page-area .tt-area-article h2 {
    color: var(--tt-ink);
    font-size: 20px;
    line-height: 1.3;
    margin: 30px 0 16px;
}
body.tt-page-area .tt-area-lead {
    font-size: 16px;
    line-height: 1.55;
}
body.tt-page-area .tt-area-cta {
    margin-top: 24px;
}
body.tt-page-area .tt-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 20px 0 30px;
}
body.tt-page-area .tt-area-card {
    border: 1px solid var(--tt-line);
    background: #FAF9F6;
    padding: 20px;
}
body.tt-page-area .tt-area-card h3 {
    color: var(--tt-brick);
    margin: 0 0 8px;
}
body.tt-page-area .tt-area-card p {
    margin-bottom: 12px;
    color: var(--tt-muted);
    font-size: 14px;
}
body.tt-page-area .tt-area-card ul {
    margin: 0;
    padding-left: 20px;
}
body.tt-page-area .tt-area-card li {
    margin-bottom: 8px;
}
body.tt-page-area .tt-area-card a {
    font-weight: 600;
}
body.tt-page-area .tt-area-note {
    margin: 28px 0 24px;
    padding: 18px 20px;
    background: var(--tt-beige-light);
    border-left: 4px solid var(--tt-brick);
}
body.tt-page-area .tt-area-note h3 {
    margin: 0 0 10px;
}
body.tt-page-area .tt-area-note p:last-child {
    margin-bottom: 0;
}
body.tt-page-area .tt-area-bottom-cta {
    margin: 26px 0 10px;
    padding: 20px;
    border-top: 1px solid var(--tt-line);
    border-bottom: 1px solid var(--tt-line);
}
body.tt-page-area .tt-area-bottom-cta p {
    margin-bottom: 14px;
}
@media (max-width: 767px) {
    body.tt-page-area .tt-area-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    body.tt-page-area .tt-area-card,
    body.tt-page-area .tt-area-note,
    body.tt-page-area .tt-area-bottom-cta {
        padding: 16px;
    }
}


/* ==================== CORREZIONI MODELLO AREA E INTERLINK ==================== */

/* Link interni dentro i contenuti: neri e in grassetto.
   Header, footer, pulsanti e richiami finali restano esclusi. */
body .tt-cluster-article > p a,
body .tt-article > p a,
body .tt-content-box > p a,
body .tt-main article p a,
body .tt-main article li a,
body .tt-page-content article p a,
body .tt-page-content article li a {
    color: var(--tt-ink);
    font-weight: 700;
}

/* Mantiene il comportamento grafico specifico di pulsanti e richiami. */


/* MODELLO AREA: spaziatura più compatta */
body.tt-page-area .tt-cluster-article {
    padding-top: 24px;
    padding-bottom: 28px;
}

body.tt-page-area .tt-area-article h1 {
    margin-bottom: 12px;
}

body.tt-page-area .tt-area-lead {
    margin-bottom: 12px;
    line-height: 1.48;
}

body.tt-page-area .tt-area-article > p {
    margin-bottom: 12px;
}

body.tt-page-area .tt-area-cta {
    margin: 18px 0 24px;
}

body.tt-page-area .tt-area-article h2 {
    margin: 22px 0 12px;
}

body.tt-page-area .tt-area-grid {
    gap: 14px 16px;
    margin: 14px 0 22px;
}

body.tt-page-area .tt-area-card {
    padding: 16px 18px;
}

body.tt-page-area .tt-area-card h3 {
    margin-bottom: 5px;
    font-size: 17px;
}

body.tt-page-area .tt-area-card p {
    margin-bottom: 8px;
    line-height: 1.4;
}

body.tt-page-area .tt-area-card ul {
    list-style: none;
    padding-left: 0;
}

body.tt-page-area .tt-area-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    line-height: 1.38;
}

body.tt-page-area .tt-area-card li::before {
    content: "›";
    position: absolute;
    left: 1px;
    top: 0;
    color: var(--tt-brick);
    font-weight: 700;
}

/* Nella pagina AREA i link restano neri e non in grassetto. */


body.tt-page-area .tt-area-card a:hover,
body.tt-page-area .tt-area-article > p a:hover {
    color: var(--tt-brick);
}

body.tt-page-area .tt-area-note {
    margin: 20px 0 18px;
    padding: 15px 18px;
}

body.tt-page-area .tt-area-bottom-cta {
    margin: 20px 0 8px;
    padding: 16px 18px;
}



@media (max-width: 767px) {
    body.tt-page-area .tt-cluster-article {
        padding-top: 18px;
        padding-bottom: 22px;
    }

    body.tt-page-area .tt-area-grid {
        gap: 10px;
        margin-top: 12px;
    }

    body.tt-page-area .tt-area-card,
    body.tt-page-area .tt-area-note,
    body.tt-page-area .tt-area-bottom-cta {
        padding: 14px;
    }

    body.tt-page-area .tt-area-card li {
        margin-bottom: 5px;
    }
}


/* ==================== CORREZIONE DEFINITIVA LINK E MODELLO AREA ==================== */

/* LINK DI CONTENUTO:
   neri e in grassetto in tutte le pagine.
   Restano esclusi menu, claim, footer, pulsanti, social e richiamo finale. */


/* Eccezione modello AREA:
   link neri ma non in grassetto. */


/* Hover dei link di contenuto: resta nero, senza cambio al rosso. */


/* Titoli dei box AREA:
   neri e visivamente subordinati a "Trova il tuo caso". */
body.tt-page-area .tt-area-card h3 {
    color: var(--tt-ink) !important;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

/* Elenco AREA più discreto. */
body.tt-page-area .tt-area-card li::before {
    content: "›";
    color: var(--tt-muted);
    font-weight: 600;
}

/* Elimina la doppia riga prima del richiamo finale. */
body.tt-page-area .tt-area-bottom-cta {
    border-bottom: 0;
}




/* ==================== REGOLA DEFINITIVA LINK NERI ==================== */

/*
   Tutti i link presenti nei contenuti delle pagine:
   - colore nero;
   - grassetto;
   - restano neri anche al passaggio del mouse.
*/




/*
   Eccezione per tutte le pagine AREA:
   link neri ma non in grassetto.
*/


/* Pulsanti e richiamo finale mantengono la propria grafica. */
body a.tt-btn,
body a.tt-btn-red {
    font-weight: 700 !important;
}



/* Footer e header mantengono i colori previsti dal modello. */
body .tt-footer-red a {
    color: var(--tt-white) !important;
}

body .tt-footer-socials a {
    color: #000000 !important;
}

body .tt-header a {
    font-weight: inherit;
}

/* Mediazione documentale: tutti i titoli interni neri. */
body.tt-page-mediazione .tt-subtitle,
body.tt-page-mediazione h2,
body.tt-page-mediazione h3 {
    color: var(--tt-ink) !important;
}


/* ==================== CLUSTER TRASVERSALE ==================== */
body.tt-page-transversale .tt-transversale-article h2 {
    color: var(--tt-ink);
    font-size: 20px;
    line-height: 1.3;
    margin: 30px 0 14px;
}
body.tt-page-transversale .tt-transversale-lead {
    font-size: 16px;
    line-height: 1.55;
}
body.tt-page-transversale .tt-transversale-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 22px 0 28px;
}
body.tt-page-transversale .tt-transversale-paths section {
    border: 1px solid var(--tt-line);
    background: #FAF9F6;
    padding: 17px;
}
body.tt-page-transversale .tt-transversale-paths h3 {
    color: var(--tt-ink);
    font-size: 16px;
    margin: 0 0 8px;
}
body.tt-page-transversale .tt-transversale-paths p {
    margin-bottom: 9px;
}
body.tt-page-transversale .tt-transversale-cases {
    columns: 2;
    column-gap: 34px;
}
body.tt-page-transversale .tt-transversale-cases li {
    break-inside: avoid;
}
body.tt-page-transversale .tt-transversale-note {
    margin: 24px 0;
    padding: 18px 20px;
    background: var(--tt-beige-light);
    border-left: 4px solid var(--tt-brick);
}
body.tt-page-transversale .tt-transversale-note h3 {
    margin: 0 0 9px;
    color: var(--tt-ink);
}
body.tt-page-transversale .tt-transversale-note p:last-child {
    margin-bottom: 0;
}
body.tt-page-transversale .tt-transversale-risks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin: 20px 0 28px;
}
body.tt-page-transversale .tt-transversale-risks section {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    border: 1px solid var(--tt-line);
    padding: 16px;
}
body.tt-page-transversale .tt-transversale-risks span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--tt-brick);
    color: var(--tt-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
body.tt-page-transversale .tt-transversale-risks h3 {
    margin: 1px 0 6px;
    color: var(--tt-ink);
    font-size: 16px;
}
body.tt-page-transversale .tt-transversale-risks p {
    margin-bottom: 0;
}
body.tt-page-transversale .tt-transversale-faq section {
    padding: 14px 0;
    border-bottom: 1px solid var(--tt-line);
}
body.tt-page-transversale .tt-transversale-faq h3 {
    margin: 0 0 7px;
    color: var(--tt-ink);
    font-size: 16px;
}
body.tt-page-transversale .tt-transversale-faq p {
    margin-bottom: 0;
}
body.tt-page-transversale .tt-transversale-related {
    margin: 24px 0 10px;
}
body.tt-page-transversale .tt-transversale-related h3 {
    margin-bottom: 10px;
}
body.tt-page-transversale .tt-transversale-related ul {
    margin: 0;
    padding-left: 20px;
}
body.tt-page-transversale .tt-transversale-related li {
    margin-bottom: 7px;
}
@media (max-width: 767px) {
    body.tt-page-transversale .tt-transversale-paths,
    body.tt-page-transversale .tt-transversale-risks {
        grid-template-columns: 1fr;
    }
    body.tt-page-transversale .tt-transversale-cases {
        columns: 1;
    }
    body.tt-page-transversale .tt-transversale-paths section,
    body.tt-page-transversale .tt-transversale-risks section,
    body.tt-page-transversale .tt-transversale-note {
        padding: 14px;
    }
}


/* ==================== REVISIONE HUB TRASVERSALE ==================== */

body.tt-page-transversale .tt-transversale-article {
    max-width: 900px;
}

body.tt-page-transversale .tt-transversale-article h1 {
    font-size: 27px;
    line-height: 1.24;
    margin-bottom: 16px;
}

body.tt-page-transversale .tt-transversale-article h2 {
    color: var(--tt-ink);
    font-size: 21px;
    line-height: 1.3;
    margin: 30px 0 12px;
}

body.tt-page-transversale .tt-transversale-article h3 {
    color: var(--tt-ink);
    font-size: 16px;
    line-height: 1.35;
}

body.tt-page-transversale .tt-transversale-article p {
    margin-bottom: 13px;
    line-height: 1.52;
}

body.tt-page-transversale .tt-transversale-lead {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 14px;
}

body.tt-page-transversale .tt-transversale-key {
    margin: 20px 0 4px;
}

body.tt-page-transversale .tt-cluster-notes {
    margin-bottom: 18px;
}

body.tt-page-transversale .tt-action-card-cluster h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

body.tt-page-transversale .tt-transversale-list {
    list-style: none;
    margin: 8px 0 18px;
    padding-left: 0;
}

body.tt-page-transversale .tt-transversale-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 7px;
    line-height: 1.45;
}

body.tt-page-transversale .tt-transversale-list li::before {
    content: "›";
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--tt-muted);
    font-weight: 700;
}

body.tt-page-transversale .tt-transversale-list--columns {
    columns: 2;
    column-gap: 34px;
}

body.tt-page-transversale .tt-transversale-list--columns li {
    break-inside: avoid;
}

body.tt-page-transversale .tt-transversale-numbered {
    list-style: none;
    counter-reset: tt-step;
    margin: 12px 0 24px;
    padding-left: 0;
}

body.tt-page-transversale .tt-transversale-numbered > li {
    counter-increment: tt-step;
    position: relative;
    padding: 2px 0 15px 42px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-transversale .tt-transversale-numbered > li::before {
    content: counter(tt-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--tt-brick);
    color: var(--tt-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

body.tt-page-transversale .tt-transversale-example-links {
    margin-top: 5px;
    font-size: 14px;
}

body.tt-page-transversale .tt-transversale-note {
    margin: 22px 0 24px;
    padding: 17px 19px;
}

body.tt-page-transversale .tt-transversale-note h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

body.tt-page-transversale .tt-transversale-risk-list {
    list-style: none;
    counter-reset: tt-risk;
    margin: 14px 0 26px;
    padding-left: 0;
}

body.tt-page-transversale .tt-transversale-risk-list > li {
    counter-increment: tt-risk;
    position: relative;
    padding: 16px 18px 14px 56px;
    margin-bottom: 10px;
    border: 1px solid var(--tt-line);
    background: #FAF9F6;
}

body.tt-page-transversale .tt-transversale-risk-list > li::before {
    content: counter(tt-risk);
    position: absolute;
    left: 17px;
    top: 16px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--tt-brick);
    color: var(--tt-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

body.tt-page-transversale .tt-transversale-risk-list h3 {
    margin: 0 0 5px;
}

body.tt-page-transversale .tt-transversale-risk-list p {
    margin-bottom: 0;
}

body.tt-page-transversale .tt-transversale-faq-section {
    margin: 32px 0 26px;
    padding: 22px 24px 8px;
    background: var(--tt-beige-light);
    border-top: 4px solid var(--tt-brick);
}

body.tt-page-transversale .tt-transversale-faq-section > h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

body.tt-page-transversale .tt-transversale-faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

body.tt-page-transversale .tt-faq-item {
    padding: 13px 0 14px;
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-transversale .tt-faq-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

body.tt-page-transversale .tt-faq-item p {
    margin-bottom: 0;
    font-size: 14px;
}

body.tt-page-transversale .tt-transversale-related {
    margin: 24px 0 10px;
}

body.tt-page-transversale .tt-transversale-related h2 {
    font-size: 19px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    body.tt-page-transversale .tt-transversale-article h1 {
        font-size: 22px;
    }

    body.tt-page-transversale .tt-transversale-article h2 {
        font-size: 19px;
        margin-top: 24px;
    }

    body.tt-page-transversale .tt-transversale-list--columns {
        columns: 1;
    }

    body.tt-page-transversale .tt-transversale-faq {
        grid-template-columns: 1fr;
    }

    body.tt-page-transversale .tt-transversale-faq-section {
        padding: 18px 16px 6px;
    }

    body.tt-page-transversale .tt-transversale-risk-list > li {
        padding: 14px 14px 13px 50px;
    }

    body.tt-page-transversale .tt-transversale-risk-list > li::before {
        left: 14px;
        top: 14px;
    }
}


/* ==================== RICHIAMO AI CAMPIONE ==================== */
body.tt-page-transversale .tt-ai-sample {
    margin: 18px 0 12px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--tt-muted);
}

body.tt-page-transversale .tt-ai-sample p {
    margin-bottom: 3px;
}

body.tt-page-transversale .tt-ai-sample-kicker {
    font-style: italic;
}

body.tt-page-transversale .tt-ai-sample a {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
    font-style: italic;
}

body.tt-page-transversale .tt-ai-sample a:hover {
    color: var(--tt-ink) !important;
}


/* ==================== PAGINA PILLAR ==================== */
body.tt-page-pillar .tt-pillar-article {
    max-width: 940px;
}

body.tt-page-pillar .tt-pillar-article h1 {
    font-size: 28px;
    line-height: 1.24;
    margin-bottom: 14px;
}

body.tt-page-pillar .tt-pillar-subtitle {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 22px;
}

body.tt-page-pillar .tt-pillar-intro {
    margin: 18px 0 20px;
    padding: 20px 22px;
    background: var(--tt-beige-light);
    border-left: 4px solid var(--tt-brick);
}

body.tt-page-pillar .tt-pillar-intro p:last-child {
    margin-bottom: 0;
}

body.tt-page-pillar .tt-pillar-sections {
    margin: 28px 0 30px;
}

body.tt-page-pillar .tt-pillar-section {
    padding: 20px 0 18px;
    border-top: 1px solid var(--tt-line);
}

body.tt-page-pillar .tt-pillar-section:last-child {
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-pillar .tt-pillar-section h2,
body.tt-page-pillar .tt-pillar-cases h2,
body.tt-page-pillar .tt-pillar-related h2 {
    color: var(--tt-ink);
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px;
}

body.tt-page-pillar .tt-pillar-section p {
    margin-bottom: 11px;
}

body.tt-page-pillar .tt-pillar-cases {
    margin: 28px 0 30px;
}

body.tt-page-pillar .tt-pillar-cases > p {
    margin-bottom: 14px;
}

body.tt-page-pillar .tt-pillar-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

body.tt-page-pillar .tt-pillar-cases-grid a {
    position: relative;
    display: block;
    padding: 12px 14px 12px 32px;
    border: 1px solid var(--tt-line);
    background: #FAF9F6;
    color: var(--tt-ink) !important;
    font-weight: 700 !important;
    text-decoration: none;
    line-height: 1.4;
}

body.tt-page-pillar .tt-pillar-cases-grid a::before {
    content: "›";
    position: absolute;
    left: 14px;
    top: 11px;
    color: var(--tt-muted);
    font-weight: 700;
}

body.tt-page-pillar .tt-pillar-cases-grid a:hover {
    background: var(--tt-beige-light);
    color: var(--tt-ink) !important;
}

body.tt-page-pillar .tt-pillar-related {
    margin: 26px 0 20px;
}

body.tt-page-pillar .tt-pillar-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

body.tt-page-pillar .tt-pillar-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
}

body.tt-page-pillar .tt-pillar-list li::before {
    content: "›";
    position: absolute;
    left: 2px;
    color: var(--tt-muted);
    font-weight: 700;
}

body.tt-page-pillar .tt-pillar-cta {
    margin: 24px 0 12px;
    padding: 20px;
    border-top: 1px solid var(--tt-line);
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-pillar .tt-pillar-cta p {
    margin-bottom: 14px;
}

body.tt-page-pillar .tt-pillar-cta .tt-btn-subtext {
    display: block;
    margin-top: 5px;
}

@media (max-width: 767px) {
    body.tt-page-pillar .tt-pillar-article h1 {
        font-size: 22px;
    }

    body.tt-page-pillar .tt-pillar-subtitle {
        font-size: 15px;
    }

    body.tt-page-pillar .tt-pillar-cases-grid {
        grid-template-columns: 1fr;
    }

    body.tt-page-pillar .tt-pillar-intro,
    body.tt-page-pillar .tt-pillar-cta {
        padding: 16px;
    }
}


/* ==================== REVISIONE PILLAR DA PDF ==================== */

/* Gerarchia tipografica progressiva */
body.tt-page-pillar .tt-pillar-article h1 {
    font-size: 26px;
    line-height: 1.26;
    margin-bottom: 10px;
    color: var(--tt-ink);
}

body.tt-page-pillar .tt-pillar-subtitle {
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--tt-ink);
}

body.tt-page-pillar .tt-pillar-section h2,
body.tt-page-pillar .tt-pillar-cases h2,
body.tt-page-pillar .tt-pillar-related h2 {
    font-size: 19px;
    line-height: 1.32;
    margin: 0 0 9px;
    color: var(--tt-ink);
}

body.tt-page-pillar .tt-pillar-article h3 {
    font-size: 16px;
    line-height: 1.35;
    color: var(--tt-ink);
}

/* Ritmo verticale più compatto e simile al contenuto originario */
body.tt-page-pillar .tt-pillar-article p {
    line-height: 1.5;
    margin-bottom: 10px;
}

body.tt-page-pillar .tt-pillar-intro {
    margin: 14px 0 16px;
    padding: 16px 18px;
    background: var(--tt-beige-light);
    border-left: 3px solid var(--tt-brick);
}

body.tt-page-pillar .tt-pillar-definition {
    margin-bottom: 8px;
}

body.tt-page-pillar .tt-pillar-sections {
    margin: 20px 0 22px;
}

body.tt-page-pillar .tt-pillar-section {
    padding: 15px 0 13px;
    border-top: 1px solid var(--tt-line);
}

body.tt-page-pillar .tt-pillar-section:last-child {
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-pillar .tt-pillar-section p:last-child {
    margin-bottom: 0;
}

/* Trova il tuo caso: elenco verticale come nel PDF, con simbolo più elegante */
body.tt-page-pillar .tt-pillar-cases {
    margin: 22px 0 24px;
}

body.tt-page-pillar .tt-pillar-cases > p {
    margin-bottom: 9px;
}

body.tt-page-pillar .tt-pillar-case-list,
body.tt-page-pillar .tt-pillar-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

body.tt-page-pillar .tt-pillar-case-list li,
body.tt-page-pillar .tt-pillar-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
    line-height: 1.42;
}

body.tt-page-pillar .tt-pillar-case-list li::before,
body.tt-page-pillar .tt-pillar-list li::before {
    content: "›";
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--tt-muted);
    font-weight: 700;
}

body.tt-page-pillar .tt-pillar-case-list a,
body.tt-page-pillar .tt-pillar-list a {
    color: var(--tt-ink) !important;
    font-weight: 700 !important;
    text-decoration: underline;
}

body.tt-page-pillar .tt-pillar-case-list a:hover,
body.tt-page-pillar .tt-pillar-list a:hover {
    color: var(--tt-ink) !important;
}

/* Sezioni finali distinte ma leggere */
body.tt-page-pillar .tt-cluster-footer-nav {
    margin: 22px 0 18px;
    padding: 14px 0;
    border-top: 1px solid var(--tt-line);
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-pillar .tt-pillar-related {
    margin: 18px 0 18px;
}

body.tt-page-pillar .tt-pillar-cta {
    margin: 20px 0 10px;
    padding: 16px 0;
    border-top: 1px solid var(--tt-line);
    border-bottom: 0;
}

body.tt-page-pillar .tt-pillar-cta p {
    margin-bottom: 11px;
}



/* Mobile */
@media (max-width: 767px) {
    body.tt-page-pillar .tt-pillar-article h1 {
        font-size: 22px;
    }

    body.tt-page-pillar .tt-pillar-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    body.tt-page-pillar .tt-pillar-section h2,
    body.tt-page-pillar .tt-pillar-cases h2,
    body.tt-page-pillar .tt-pillar-related h2 {
        font-size: 18px;
    }

    body.tt-page-pillar .tt-pillar-intro {
        padding: 14px;
    }

    body.tt-page-pillar .tt-pillar-section {
        padding: 13px 0 11px;
    }

    body.tt-page-pillar .tt-pillar-case-list li,
    body.tt-page-pillar .tt-pillar-list li {
        margin-bottom: 6px;
    }
}


/* ==================== PILLAR GRUPPI CASI ==================== */
body.tt-page-pillar .tt-pillar-case-group {
    margin: 14px 0 18px;
}

body.tt-page-pillar .tt-pillar-case-group h3 {
    margin: 0 0 7px;
    font-size: 16px;
    color: var(--tt-ink);
}

body.tt-page-pillar .tt-pillar-case-group:last-child {
    margin-bottom: 0;
}


/* ==================== PILLAR TESTI NON GRASSETTO ==================== */
/* Nei PILLAR gli elenchi devono restare leggeri. */
body.tt-page-pillar .tt-pillar-case-list a,
body.tt-page-pillar .tt-pillar-list a {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
}

body.tt-page-pillar .tt-pillar-case-list a:hover,
body.tt-page-pillar .tt-pillar-list a:hover {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
}

/* Titoli dei gruppi prima degli elenchi: neri ma non in grassetto. */
body.tt-page-pillar .tt-pillar-case-group h3 {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
}

/* Frase prima della CTA finale: peso normale anche se contiene <strong>. */
body.tt-page-pillar .tt-pillar-cta p,
body.tt-page-pillar .tt-pillar-cta p strong {
    font-weight: 400 !important;
}


/* ==================== PILLAR SEZIONI LEGGERE DEFINITIVE ==================== */
/* Trova il tuo caso e approfondimenti: blocchi appena evidenziati,
   senza effetto elenco pesante o cascata di grassetti. */
body.tt-page-pillar .tt-pillar-cases,
body.tt-page-pillar .tt-pillar-related {
    background: #FAF9F6;
    border: 0;
    padding: 18px 20px;
}

body.tt-page-pillar .tt-pillar-cases {
    margin: 22px 0 20px;
}

body.tt-page-pillar .tt-pillar-related {
    margin: 18px 0;
}

body.tt-page-pillar .tt-pillar-cases h2,
body.tt-page-pillar .tt-pillar-related h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

body.tt-page-pillar .tt-pillar-case-group {
    margin: 12px 0 15px;
}

body.tt-page-pillar .tt-pillar-case-group h3 {
    font-size: 15px;
    font-weight: 400 !important;
    margin: 0 0 6px;
    color: var(--tt-ink) !important;
}

body.tt-page-pillar .tt-pillar-case-list,
body.tt-page-pillar .tt-pillar-list {
    margin: 0;
}

body.tt-page-pillar .tt-pillar-case-list li,
body.tt-page-pillar .tt-pillar-list li {
    padding-left: 17px;
    margin-bottom: 6px;
    line-height: 1.42;
}

body.tt-page-pillar .tt-pillar-case-list li::before,
body.tt-page-pillar .tt-pillar-list li::before {
    content: "›";
    left: 1px;
    color: #8A837E;
    font-weight: 400;
}

body.tt-page-pillar .tt-pillar-case-list a,
body.tt-page-pillar .tt-pillar-list a,
body.tt-page-pillar .tt-cluster-footer-nav a {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
    text-decoration: none;
}

body.tt-page-pillar .tt-pillar-case-list a:hover,
body.tt-page-pillar .tt-pillar-list a:hover,
body.tt-page-pillar .tt-cluster-footer-nav a:hover,
body.tt-page-pillar .tt-pillar-case-list a:focus-visible,
body.tt-page-pillar .tt-pillar-list a:focus-visible,
body.tt-page-pillar .tt-cluster-footer-nav a:focus-visible {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
    text-decoration: underline;
}

/* Anche il collegamento all'area resta leggero. */
body.tt-page-pillar .tt-cluster-footer-nav {
    background: transparent;
    padding: 13px 0;
    margin: 18px 0 14px;
}

/* Frase sopra la CTA senza grassetto. */
body.tt-page-pillar .tt-pillar-cta p,
body.tt-page-pillar .tt-pillar-cta p strong {
    font-weight: 400 !important;
}

@media (max-width: 767px) {
    body.tt-page-pillar .tt-pillar-cases,
    body.tt-page-pillar .tt-pillar-related {
        padding: 15px 14px;
    }
}


/* ==================== PILLAR ESEMPI NON LINKATI ==================== */
body.tt-page-pillar .tt-pillar-example-list {
    list-style: none;
    margin: 8px 0 16px;
    padding-left: 0;
}

body.tt-page-pillar .tt-pillar-example-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    line-height: 1.42;
    font-weight: 400;
}

body.tt-page-pillar .tt-pillar-example-list li::before {
    content: "›";
    position: absolute;
    left: 2px;
    color: var(--tt-muted);
    font-weight: 500;
}


/* ==================== CORREZIONE FINALE PILLAR H1 E RIGHE ==================== */

/* H1 PILLAR più compatto per evitare ritorni a capo isolati */
body.tt-page-pillar .tt-pillar-article h1 {
    font-size: 23px !important;
    line-height: 1.24;
}

/* Rimuove tutte le linee intermedie nella parte finale */
body.tt-page-pillar .tt-cluster-footer-nav {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

body.tt-page-pillar .tt-pillar-cta {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

/* Mantiene una sola riga sopra il richiamo finale */


/* Mobile invariato */
@media (max-width: 767px) {
    body.tt-page-pillar .tt-pillar-article h1 {
        font-size: 22px !important;
    }
}


/* ==================== CORREZIONE DEFINITIVA H1 PILLAR ==================== */
body.tt-page-pillar .tt-pillar-article h1 {
    font-size: 21px !important;
    line-height: 1.24;
}

@media (max-width: 767px) {
    body.tt-page-pillar .tt-pillar-article h1 {
        font-size: 20px !important;
    }
}


/* ==================== SPAZIO INIZIALE PAGINE AREA ==================== */
/* Uniforma la distanza tra header e H1 delle pagine AREA */
body.tt-page-area .tt-page-content {
    padding-top: 24px !important;
}

body.tt-page-area .tt-cluster-article {
    padding-top: 0 !important;
}

body.tt-page-area .tt-area-article h1 {
    margin-top: 0 !important;
}

@media (max-width: 767px) {
    body.tt-page-area .tt-page-content {
        padding-top: 18px !important;
    }
}


/* ==================== AREA LINEARE CON FAQ ==================== */
/* Variante condivisa per le aree con contenuto descrittivo, elenco operativo e FAQ visibili. */
body.tt-page-area-linear .tt-area-linear-subtitle {
    margin: -5px 0 18px;
    color: var(--tt-ink);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

body.tt-page-area-linear .tt-area-linear-intro p,
body.tt-page-area-linear .tt-area-linear-closing {
    margin-bottom: 12px;
}

body.tt-page-area-linear .tt-area-linear-section {
    margin: 24px 0 22px;
}

body.tt-page-area-linear .tt-area-linear-section h2,
body.tt-page-area-linear .tt-area-faq h2 {
    margin: 0 0 14px;
    color: var(--tt-ink);
    font-size: 19px;
    line-height: 1.35;
}

body.tt-page-area-linear .tt-area-linear-list {
    list-style: none;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid var(--tt-line);
    background: #FAF9F6;
}

body.tt-page-area-linear .tt-area-linear-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
    line-height: 1.45;
}

body.tt-page-area-linear .tt-area-linear-list li:last-child {
    margin-bottom: 0;
}

body.tt-page-area-linear .tt-area-linear-list li::before {
    content: "›";
    position: absolute;
    left: 1px;
    top: 0;
    color: var(--tt-muted);
    font-weight: 600;
}

body.tt-page-area-linear .tt-area-faq {
    margin: 28px 0 22px;
}

body.tt-page-area-linear .tt-area-faq-item {
    padding: 16px 0;
    border-top: 1px solid var(--tt-line);
}

body.tt-page-area-linear .tt-area-faq-item:last-child {
    border-bottom: 1px solid var(--tt-line);
}

body.tt-page-area-linear .tt-area-faq-item h3 {
    margin: 0 0 7px;
    color: var(--tt-ink);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

body.tt-page-area-linear .tt-area-faq-item p {
    margin: 0;
    line-height: 1.5;
}

body.tt-page-area-linear .tt-area-bottom-cta {
    margin-top: 24px;
}

body.tt-page-area-linear .tt-area-related {
    margin: 20px 0 0;
}

@media (max-width: 767px) {
    body.tt-page-area-linear .tt-area-linear-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    body.tt-page-area-linear .tt-area-linear-list {
        padding: 14px;
    }

    body.tt-page-area-linear .tt-area-faq-item {
        padding: 14px 0;
    }
}

/* =========================================================
   CORREZIONI FINALI ESEMPIO AREA + SPAZIO FOOTER AREA
   30-07-2026
   ========================================================= */

/* ESEMPIO AREA: compatta le sezioni testuali. */
body.tt-page-example .tt-example-article > h2 {
    margin: 22px 0 5px !important;
}

body.tt-page-example .tt-example-article > h3 {
    margin: 22px 0 5px !important;
}

body.tt-page-example .tt-example-article > h2 + p,
body.tt-page-example .tt-example-article > h3 + p {
    margin-top: 0 !important;
}

/* Nota WhatsApp: meno spazio sotto. */
body.tt-page-example .tt-cluster-notes {
    margin-bottom: 18px !important;
}

body.tt-page-example .tt-cluster-notes p {
    margin: 0 !important;
}

/* Parte finale ESEMPIO: una sola riga, sopra "Scopri come funziona". */
body.tt-page-example .tt-cluster-footer-nav {
    margin: 20px 0 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}



/* Riduce lo spazio bianco tra richiamo finale e footer. */
body.tt-page-example .tt-page-content,
body.tt-page-area .tt-page-content {
    padding-bottom: 18px !important;
}

body.tt-page-example .tt-example-article,
body.tt-page-area .tt-area-article {
    padding-bottom: 0 !important;
}

/* AREA: stesso avvicinamento del richiamo finale al footer. */


@media (max-width: 767px) {
    body.tt-page-example .tt-page-content,
    body.tt-page-area .tt-page-content {
        padding-bottom: 14px !important;
    }

    body.tt-page-example .tt-example-article > h2,
    body.tt-page-example .tt-example-article > h3 {
        margin-top: 18px !important;
        margin-bottom: 4px !important;
    }
}

/* CORREZIONE SPAZIO CTA FINALE / APPROFONDIMENTO ESEMPIO */
body.tt-page-example .tt-cta-box + .tt-example-related {
    margin-top: 18px !important;
}

/* ==================== TABELLA COMPARATIVA TRASVERSALE ==================== */
body.tt-page-transversale .tt-transversale-comparison {
    margin: 26px 0 22px;
}

body.tt-page-transversale .tt-transversale-comparison > h2 {
    margin-bottom: 12px;
}

body.tt-page-transversale .tt-transversale-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--tt-line);
    background: var(--tt-white);
}

body.tt-page-transversale .tt-transversale-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.4;
}

body.tt-page-transversale .tt-transversale-table th,
body.tt-page-transversale .tt-transversale-table td {
    padding: 11px 12px;
    border-right: 1px solid var(--tt-line);
    border-bottom: 1px solid var(--tt-line);
    text-align: left;
    vertical-align: top;
}

body.tt-page-transversale .tt-transversale-table tr:last-child th,
body.tt-page-transversale .tt-transversale-table tr:last-child td {
    border-bottom: 0;
}

body.tt-page-transversale .tt-transversale-table th:last-child,
body.tt-page-transversale .tt-transversale-table td:last-child {
    border-right: 0;
}

body.tt-page-transversale .tt-transversale-table thead th {
    background: var(--tt-beige-light);
    color: var(--tt-ink);
    font-weight: 700;
}

body.tt-page-transversale .tt-transversale-table tbody th {
    width: 22%;
    background: #FAF9F6;
    color: var(--tt-ink);
    font-weight: 700;
}

body.tt-page-transversale .tt-transversale-table thead th:nth-child(3) {
    background: var(--tt-brick);
    color: var(--tt-white);
}

body.tt-page-transversale .tt-transversale-table tbody td:nth-child(3) {
    background: #FDFBF7;
    font-weight: 600;
}

@media (max-width: 767px) {
    body.tt-page-transversale .tt-transversale-table {
        min-width: 700px;
        font-size: 12px;
    }

    body.tt-page-transversale .tt-transversale-table th,
    body.tt-page-transversale .tt-transversale-table td {
        padding: 9px 10px;
    }
}

/* CORREZIONE COMPATTEZZA CTA TRASVERSALI */
body.tt-page-transversale .tt-cta-box {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

body.tt-page-transversale .tt-action-card-cluster h3 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

body.tt-page-transversale .tt-actions-cluster {
    align-items: start;
}

/* =========================================================
   REGOLA UNIVERSALE LINK DI CONTENUTO E CHIUSURA PAGINA
   30-07-2026
   ========================================================= */

/* Tutti i link nel contenuto sono neri e NON in grassetto.
   Restano esclusi pulsanti e richiamo finale. */




/* Pulsanti e richiamo finale conservano la grafica stabilita. */
body a.tt-btn,
body a.tt-btn-red {
    font-weight: 700 !important;
}



/* Chiusura universale:
   una sola riga, sempre immediatamente prima del richiamo finale. */


/* Nessuna seconda riga nei blocchi che precedono la chiusura. */
body .tt-cluster-footer-nav,
body .tt-transversale-related,
body .tt-pillar-cta,
body .tt-area-bottom-cta,
body .tt-example-related,
body .tt-ai-sample {
    border-bottom: 0 !important;
}

/* Se questi blocchi sono nella zona finale, non devono introdurre
   una riga concorrente immediatamente prima del richiamo. */
body .tt-cluster-footer-nav,
body .tt-pillar-cta,
body .tt-area-bottom-cta,
body .tt-ai-sample {
    border-top: 0 !important;
}

/* Elimina lo spazio aggiuntivo del contenitore dopo il richiamo finale:
   lo spazio inferiore è già gestito dalla chiusura universale. */


@media (max-width: 767px) {
    
}

/* =========================================================
   COMPATTEZZA GENERALE + CTA FINALI + CONTROLLO A CAPO
   30-07-2026
   ========================================================= */

body main p,
body main li {
    text-wrap: pretty;
}

body main h1,
body main h2,
body main h3,
body main h4 {
    text-wrap: balance;
}

body.tt-page-transversale .tt-transversale-article > p {
    margin-top: 0;
    margin-bottom: 12px;
}

body.tt-page-transversale .tt-transversale-article > h2 {
    margin-top: 26px;
    margin-bottom: 9px;
}

body.tt-page-transversale .tt-transversale-article > h3 {
    margin-top: 22px;
    margin-bottom: 8px;
}

body.tt-page-transversale .tt-transversale-list {
    margin-top: 7px;
    margin-bottom: 14px;
}

body.tt-page-transversale .tt-cluster-notes,
body.tt-page-transversale .tt-transversale-note,
body.tt-page-transversale .tt-transversale-key {
    margin-top: 14px;
    margin-bottom: 16px;
}

body.tt-page-transversale .tt-cta-box--final {
    margin-top: 24px;
    margin-bottom: 22px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

body.tt-page-transversale .tt-cta-box--final + .tt-transversale-related {
    margin-top: 0 !important;
}

body.tt-page-transversale .tt-cta-box--final .tt-action-card-cluster h3 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

@media (max-width: 767px) {
    body.tt-page-transversale .tt-transversale-article > h2 {
        margin-top: 22px;
    }

    body.tt-page-transversale .tt-cta-box--final {
        margin-top: 20px;
        margin-bottom: 18px;
    }
}

/* =========================================================
   USCITA UNIVERSALE, RITMO VERTICALE E TESTO RESPONSIVE
   Regola consolidata - 30-07-2026
   ========================================================= */

/* Riduce le righe con una sola parola senza forzare il contenuto. */
body main p,
body main li,
body main blockquote {
    text-wrap: pretty;
}

body main h1,
body main h2,
body main h3,
body main h4 {
    text-wrap: balance;
}

/* Ritmo verticale compatto ma leggibile nelle pagine interne. */
body:not(.tt-page-home) main p {
    margin-top: 0;
    margin-bottom: 0.78rem;
}

body:not(.tt-page-home) main h2 {
    margin-top: 1.65rem;
    margin-bottom: 0.58rem;
}

body:not(.tt-page-home) main h3 {
    margin-top: 1.3rem;
    margin-bottom: 0.5rem;
}

body:not(.tt-page-home) main ul,
body:not(.tt-page-home) main ol {
    margin-top: 0.42rem;
    margin-bottom: 0.9rem;
}

/* Unica uscita ammessa: riga, spazio, richiamo, spazio, footer. */
body a.tt-final-discover {
    color: var(--tt-brick) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body a.tt-final-discover:hover,
body a.tt-final-discover:focus-visible {
    color: var(--tt-brick-dark) !important;
    text-decoration: none !important;
}

body .tt-final-actions {
    width: 100%;
    margin: 1.1rem 0 0;
    padding: 0.9rem 0 1rem;
    border: 0;
    border-top: 1px solid var(--tt-line);
    display: block;
    text-align: left;
}

/* Il contenitore non deve aggiungere altro vuoto sotto l'uscita. */
body .tt-page-content:has(.tt-final-actions) {
    padding-bottom: 0;
}

/* Nessuna riga concorrente nei blocchi immediatamente precedenti. */
body .tt-cluster-footer-nav,
body .tt-transversale-related,
body .tt-pillar-cta,
body .tt-area-bottom-cta,
body .tt-example-related,
body .tt-ai-sample {
    border-bottom: 0 !important;
}

@media (max-width: 767px) {
    body:not(.tt-page-home) main h2 {
        margin-top: 1.35rem;
        margin-bottom: 0.5rem;
    }

    body:not(.tt-page-home) main h3 {
        margin-top: 1.1rem;
    }

    body:not(.tt-page-home) main p {
        margin-bottom: 0.7rem;
    }

    body .tt-final-actions {
        margin-top: 0.95rem;
        padding-top: 0.78rem;
        padding-bottom: 0.9rem;
    }
}

/* FASE 3 CONSOLIDATA — LINK, CTA, SPAZIATURE E CORREZIONI VISIVE — 31-07-2026
   Blocco unico finale: sostituisce le precedenti sovrascritture della Fase 3. */

/* Link di contenuto: scuri e regolari; rosso soltanto al passaggio. */
body main a:not(.tt-btn):not(.tt-final-discover) {
    color: var(--tt-ink) !important;
    font-weight: 400 !important;
    text-decoration-color: currentColor;
}

body main a:not(.tt-btn):not(.tt-final-discover):hover,
body main a:not(.tt-btn):not(.tt-final-discover):focus-visible {
    color: var(--tt-brick) !important;
}

/* Richiamo finale: nero a riposo, rosso al passaggio. */
body a.tt-final-discover {
    color: var(--tt-ink) !important;
    font-weight: 700 !important;
}

body a.tt-final-discover:hover,
body a.tt-final-discover:focus-visible {
    color: var(--tt-brick) !important;
}

/* Home: link UX rossi; “Vedi un esempio” grigio scuro; nessun cambio colore al passaggio. */
body.tt-page-home main .tt-card-links a:first-child,
body.tt-page-home main a.tt-home-link-accent,
body.tt-page-home main .tt-card-links a:first-child:hover,
body.tt-page-home main .tt-card-links a:first-child:focus-visible,
body.tt-page-home main a.tt-home-link-accent:hover,
body.tt-page-home main a.tt-home-link-accent:focus-visible {
    color: var(--tt-brick) !important;
    font-weight: 700 !important;
}

body.tt-page-home main a.tt-home-link-example,
body.tt-page-home main a.tt-home-link-example:hover,
body.tt-page-home main a.tt-home-link-example:focus-visible {
    color: #4a4a4a !important;
    font-weight: 400 !important;
}

/* CTA Mail / WhatsApp: testo bianco anche dopo la regola generale sui link. */
body.tt-page-landing main a.tt-btn-red,
body.tt-page-verifica main a.tt-btn-red,
body.tt-page-landing main a.tt-btn-red:hover,
body.tt-page-landing main a.tt-btn-red:focus-visible,
body.tt-page-verifica main a.tt-btn-red:hover,
body.tt-page-verifica main a.tt-btn-red:focus-visible {
    color: var(--tt-white) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* Verifica documento: il prezzo resta nero. */
body.tt-page-verifica .tt-verifica-price-line strong {
    color: var(--tt-ink) !important;
}

/* Testi sotto i pulsanti sempre visibili e coerenti. */
body main .tt-btn-subtext {
    display: block;
    margin-top: 0.42rem;
    line-height: 1.3;
    font-weight: 400;
}

/* CTA: Richiesta a sinistra, Verifica a destra; HTML già normalizzato. */
body main .tt-actions-cluster {
    align-items: start;
}

/* Ritmo verticale compatto nelle pagine interne. */
body:not(.tt-page-home) main ul,
body:not(.tt-page-home) main ol {
    margin-top: 0.32rem;
    margin-bottom: 0.72rem;
}

body:not(.tt-page-home) main li {
    margin-bottom: 0.22rem;
    line-height: 1.48;
}

body:not(.tt-page-home) main li:last-child {
    margin-bottom: 0;
}

body:not(.tt-page-home) main p {
    margin-bottom: 0.68rem;
    line-height: 1.56;
}

/* Una sola unità di spazio tra uscita finale e footer, anche in Landing e Verifica. */
body .tt-final-actions {
    margin: 0.95rem 0 0;
    padding: 0.8rem 0;
}

body .tt-page-content:has(.tt-final-actions),
body.tt-page-landing .tt-page-content:has(.tt-final-actions),
body.tt-page-verifica .tt-page-content:has(.tt-final-actions) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.tt-page-landing main > .tt-container,
body.tt-page-verifica main > .tt-container {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    body:not(.tt-page-home) main p {
        margin-bottom: 0.62rem;
        line-height: 1.52;
    }

    body:not(.tt-page-home) main li {
        margin-bottom: 0.18rem;
        line-height: 1.44;
    }

    body .tt-final-actions {
        margin-top: 0.82rem;
        padding-top: 0.72rem;
        padding-bottom: 0.72rem;
    }
}


/* FASE 4 — MENU DIRETTO, GERARCHIA E LISTE — 31-07-2026 */
/* Menu senza dropdown: cinque destinazioni visibili e accessibili. */
body .tt-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
    white-space: normal;
}
body .tt-nav > a {
    color: var(--tt-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}
body .tt-nav > a:hover,
body .tt-nav > a:focus-visible,
body .tt-nav > a.active {
    color: var(--tt-brick);
}
/* Il vecchio componente dropdown non è più usato nell’HTML. */
body .tt-dropdown,
body .tt-dropdown-content { display: none !important; }

/* Liste ordinarie di contenuto: spunta nera sobria, senza toccare liste con classi dedicate. */
body main ul:not([class]) {
    list-style: none;
    padding-left: 1.45rem;
}
body main ul:not([class]) > li {
    position: relative;
}
body main ul:not([class]) > li::before {
    content: "✓";
    position: absolute;
    left: -1.35rem;
    top: 0;
    color: var(--tt-ink);
    font-weight: 700;
}

/* Titoli di sezione promossi semanticamente da h3 a h2: aspetto coerente col modello cluster. */
body.tt-page-cluster:not(.tt-page-transversale):not(.tt-page-example):not(.tt-page-area):not(.tt-page-pillar) .tt-cluster-article > h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 1.65rem;
    margin-bottom: 0.58rem;
    color: var(--tt-ink);
}

@media (max-width: 1023px) {
    body .tt-nav { justify-content: center; }
}
@media (max-width: 767px) {
    body .tt-nav { gap: 8px 14px; }
    body .tt-nav > a { font-size: 13px; }
    body.tt-page-cluster:not(.tt-page-transversale):not(.tt-page-example):not(.tt-page-area):not(.tt-page-pillar) .tt-cluster-article > h2 {
        font-size: 18px;
        margin-top: 1.35rem;
    }
}


/* =========================================================
   PILOTA HOME — NUOVA INTESTAZIONE A DUE LIVELLI — 31-07-2026
   Limitata a body.tt-page-home per non modificare le altre pagine.
   ========================================================= */
body .tt-header-pilot {
    background: var(--tt-white);
    padding: 0;
    border-bottom: 1px solid var(--tt-line);
}

body .tt-header-pilot .tt-header-identity {
    min-height: 82px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 120px;
    align-items: center;
    gap: 22px;
    padding: 5px 0;
}

body .tt-header-pilot .tt-logo-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

body .tt-header-pilot .tt-logo-img {
    width: 82px;
    max-width: 100%;
    height: auto;
    display: block;
}

body .tt-header-pilot .tt-claim-box {
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

body .tt-header-pilot .tt-claim-text {
    color: var(--tt-brick);
    font-size: clamp(19px, 1.65vw, 24px);
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    letter-spacing: -0.015em;
}

body .tt-header-pilot .tt-sublink-claim {
    color: var(--tt-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body .tt-header-pilot .tt-sublink-claim:hover,
body .tt-header-pilot .tt-sublink-claim:focus-visible {
    color: var(--tt-brick);
}

body .tt-header-pilot .tt-menu-toggle {
    display: none;
}

body .tt-header-pilot .tt-header-navigation {
    border-top: 1px solid var(--tt-line);
    background: var(--tt-white);
}

body .tt-header-pilot .tt-header-navigation-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

body .tt-header-pilot .tt-nav {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 34px;
    white-space: nowrap;
}

body .tt-header-pilot .tt-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    color: var(--tt-ink);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
}

body .tt-header-pilot .tt-nav > a:hover,
body .tt-header-pilot .tt-nav > a:focus-visible {
    color: var(--tt-brick);
}

body .tt-header-pilot .tt-nav > a.active {
    color: var(--tt-brick);
    font-weight: 600;
}

body .tt-header-pilot .tt-nav > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    height: 2px;
    background: var(--tt-brick);
}

body .tt-header-pilot .tt-case-finder {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 40px;
    padding: 0 22px;
    border: 1.5px solid var(--tt-brick);
    border-radius: 5px;
    color: var(--tt-brick);
    background: var(--tt-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

body .tt-header-pilot .tt-case-finder:hover,
body .tt-header-pilot .tt-case-finder:focus-visible {
    color: var(--tt-white);
    background: var(--tt-brick);
}

@media (max-width: 1100px) {
    body .tt-header-pilot .tt-header-identity {
        grid-template-columns: 104px minmax(0, 1fr) 104px;
        gap: 16px;
    }
    body .tt-header-pilot .tt-claim-text {
        font-size: 19px;
    }
    body .tt-header-pilot .tt-nav {
        gap: 24px;
    }
}

@media (max-width: 860px) {
    body .tt-header-pilot .tt-header-identity {
        min-height: 80px;
        grid-template-columns: 78px minmax(0, 1fr) 44px;
        gap: 12px;
        padding: 5px 0;
    }

    body .tt-header-pilot .tt-logo-img {
        width: 70px;
    }

    body .tt-header-pilot .tt-claim-text {
        font-size: clamp(15px, 3vw, 19px);
        white-space: normal;
        text-wrap: balance;
    }

    body .tt-header-pilot .tt-sublink-claim {
        font-size: 12px;
    }

    body .tt-header-pilot .tt-menu-toggle {
        width: 44px;
        height: 44px;
        border: 0;
        padding: 8px;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    body .tt-header-pilot .tt-menu-toggle span {
        display: block;
        height: 3px;
        border-radius: 2px;
        background: var(--tt-brick);
    }

    body .tt-header-pilot .tt-header-navigation {
        display: none;
    }

    body .tt-header-pilot .tt-header-navigation.is-open {
        display: block;
    }

    body .tt-header-pilot .tt-header-navigation-inner {
        min-height: 0;
        display: block;
        padding-top: 8px;
        padding-bottom: 14px;
    }

    body .tt-header-pilot .tt-nav {
        display: block;
        white-space: normal;
    }

    body .tt-header-pilot .tt-nav > a {
        min-height: 46px;
        width: 100%;
        border-bottom: 1px solid var(--tt-line);
        padding: 0 4px;
        font-size: 15px;
    }

    body .tt-header-pilot .tt-nav > a.active::after {
        display: none;
    }

    body .tt-header-pilot .tt-case-finder {
        width: 100%;
        min-height: 46px;
        margin-top: 10px;
        justify-content: space-between;
        padding-inline: 16px;
        box-sizing: border-box;
    }
}

@media (max-width: 520px) {
    body .tt-header-pilot .tt-header-identity {
        grid-template-columns: 66px minmax(0, 1fr) 38px;
        gap: 8px;
        min-height: 72px;
    }
    body .tt-header-pilot .tt-logo-img {
        width: 60px;
    }
    body .tt-header-pilot .tt-claim-box {
        gap: 5px;
    }
    body .tt-header-pilot .tt-claim-text {
        font-size: 14px;
        line-height: 1.2;
    }
    body .tt-header-pilot .tt-menu-toggle {
        width: 38px;
        height: 38px;
        padding: 7px 4px;
    }
}


/* ==========================================================
   PILOTA HOME — MICRO-AGGIUSTAMENTI HEADER — 01-08-2026
   - Richiesta evidenziata senza trasformarla in secondo bottone
   - protezione responsive claim/logo/hamburger sotto 380 px
   ========================================================== */
body .tt-header-pilot .tt-nav > a.tt-nav-request {
    color: var(--tt-brick);
    font-weight: 700;
}

body .tt-header-pilot .tt-nav > a.tt-nav-request:hover,
body .tt-header-pilot .tt-nav > a.tt-nav-request:focus-visible {
    color: var(--tt-brick);
    background: transparent;
}

body .tt-header-pilot .tt-nav-mobile-about {
    display: none;
}

@media (max-width: 860px) {
    body .tt-header-pilot .tt-nav > a.tt-nav-request {
        font-weight: 700;
    }
    body .tt-header-pilot .tt-nav > a.tt-nav-request:hover,
    body .tt-header-pilot .tt-nav > a.tt-nav-request:focus-visible {
        background: transparent;
    }
}

@media (max-width: 379px) {
    body .tt-header-pilot .tt-header-identity {
        grid-template-columns: 58px minmax(0, 1fr) 34px;
        gap: 6px;
        min-height: 66px;
        padding: 4px 0;
    }

    body .tt-header-pilot .tt-logo-img {
        width: 54px;
    }

    body .tt-header-pilot .tt-claim-box {
        gap: 0;
    }

    body .tt-header-pilot .tt-claim-text {
        font-size: 12px;
        line-height: 1.18;
        letter-spacing: -0.01em;
        text-wrap: balance;
    }

    body .tt-header-pilot .tt-sublink-claim {
        display: none;
    }

    body .tt-header-pilot .tt-menu-toggle {
        width: 34px;
        height: 34px;
        padding: 7px 3px;
        flex: 0 0 auto;
    }

    body .tt-header-pilot .tt-nav-mobile-about {
        display: inline-flex;
    }
}


/* ==========================================================
   FASE 5 — HEADER DEFINITIVO E LISTE CLUSTER — 01-08-2026
   ========================================================== */
/* Gli elenchi del modello cluster standard usano spunte nere.
   Sono esclusi Area, Pillar, Esempio e Trasversali, che conservano
   le proprie soluzioni grafiche dedicate. */
body.tt-page-cluster:not(.tt-page-transversale):not(.tt-page-example):not(.tt-page-area):not(.tt-page-pillar)
.tt-cluster-article ul:not([class]) > li::before {
    content: "✓";
    color: var(--tt-ink);
    font-weight: 700;
}

/* Hover del menu: solo cambio colore, senza evidenziatore di fondo. */
body .tt-header-pilot .tt-nav > a:hover,
body .tt-header-pilot .tt-nav > a:focus-visible,
body .tt-header-pilot .tt-nav > a.tt-nav-request:hover,
body .tt-header-pilot .tt-nav > a.tt-nav-request:focus-visible {
    color: var(--tt-brick);
    background: transparent;
}


/* ==========================================================
   FASE 6 — HEADER COMPATTO DEFINITIVO — 01-08-2026
   Claim puro; “Chi c’è dietro” resta nel menu principale.
   ========================================================== */
body .tt-header-pilot .tt-sublink-claim { display: none !important; }


/* FASE PRODUZIONE DF02–DF03 — tabelle cluster e CTA singola */
body.tt-page-cluster .tt-cluster-article h2 { font-size:19px; font-weight:700; color:var(--tt-ink); margin:32px 0 14px; text-wrap:balance; }
body.tt-page-cluster .tt-actions-cluster-single { grid-template-columns:1fr; }
body.tt-page-cluster .tt-cluster-table-wrap { width:100%; overflow-x:auto; margin:22px 0 26px; }
body.tt-page-cluster .tt-cluster-table { width:100%; border-collapse:collapse; font-size:12px; line-height:1.35; }
body.tt-page-cluster .tt-cluster-table th, body.tt-page-cluster .tt-cluster-table td { border:1px solid var(--tt-line); padding:9px 10px; vertical-align:top; text-align:left; }
body.tt-page-cluster .tt-cluster-table th { background:var(--tt-beige); font-weight:700; }
@media (max-width:767px){ body.tt-page-cluster .tt-cluster-table { min-width:680px; } }

/* ==========================================================
   PAGINA RECLAMO FORMALE — BLOCCHI DEDICATI
   ========================================================== */

body.tt-page-reclamo .tt-reclamo-filter {
    margin: 28px 0 32px;
    padding: 18px 20px;
    background: var(--tt-beige-light);
    border-left: 4px solid var(--tt-brick);
}

body.tt-page-reclamo .tt-reclamo-filter h2 {
    margin-top: 0;
}

body.tt-page-reclamo .tt-reclamo-filter p {
    margin-bottom: 0;
}

body.tt-page-reclamo .tt-reclamo-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 32px 0;
}

body.tt-page-reclamo .tt-reclamo-audience-card {
    padding: 22px;
    background: var(--tt-beige-light);
    border: 1px solid var(--tt-line);
}

body.tt-page-reclamo .tt-reclamo-audience-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

body.tt-page-reclamo .tt-reclamo-audience-card p:last-child {
    margin-bottom: 0;
}

body.tt-page-reclamo .tt-reclamo-closing {
    margin: 32px 0 28px;
    padding: 22px;
    background: var(--tt-beige-light);
    border-left: 4px solid var(--tt-brick);
}

body.tt-page-reclamo .tt-reclamo-closing h2 {
    margin-top: 0;
}

body.tt-page-reclamo .tt-reclamo-closing p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    body.tt-page-reclamo .tt-reclamo-audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================
   CAMPIONE MOBILE V7 — MICRORIGA FUORI DAL MENU
   04-08-2026
   ========================================================== */
body .tt-header-pilot .tt-case-finder-mobile-row {
    display: none;
}

body .tt-header-pilot .tt-claim-mobile-break {
    display: none;
}

@media (max-width: 860px) {
    /* Nasconde il richiamo desktop originale nel menu mobile */
    body .tt-header-pilot .tt-case-finder {
        display: none !important;
    }

    /* Micro-riga tra testata e menu: non entra nell'elenco hamburger */
    body .tt-header-pilot .tt-case-finder-mobile-row {
        display: block;
        width: 100%;
        min-height: 29px;
        background: var(--tt-white);
        border-bottom: 1px solid var(--tt-line);
    }

    body .tt-header-pilot .tt-case-finder-mobile-row .tt-container {
        min-height: 29px;
        display: flex;
        align-items: center;
    }

    body .tt-header-pilot .tt-case-finder-mobile-link {
        display: inline-flex;
        align-items: center;
        min-height: 29px;
        padding: 0;
        color: var(--tt-brick);
        background: transparent;
        font-size: 12.5px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
    }

    body .tt-header-pilot .tt-case-finder-mobile-link:hover,
    body .tt-header-pilot .tt-case-finder-mobile-link:focus-visible {
        color: var(--tt-brick-dark);
        text-decoration: underline;
    }

    body .tt-header-pilot .tt-claim-mobile-break {
        display: block !important;
    }
}


/* =========================================================
   CITAZIONI ORIENTATE ALLE IA — FORMATO SECONDARIO
   Approvato su campione 05-08-2026
   ========================================================= */
body .tt-transversale-article .tt-ai-sample {
  margin-top: 18px;
  color: #666;
}

body .tt-transversale-article .tt-ai-sample p {
  margin: 0 0 6px;
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: #666 !important;
}

body .tt-transversale-article .tt-ai-sample .tt-ai-sample-kicker {
  font-size: 11px !important;
  line-height: 1.35 !important;
  font-style: italic;
  color: #777 !important;
}

body .tt-transversale-article .tt-ai-sample a,
body .tt-transversale-article .tt-ai-sample strong {
  font-size: inherit !important;
}
