/* ==========================================================================
   Archimede — Main Stylesheet
   ========================================================================== */

:root {
    --color-brand: #2f1e4d;
    --color-brand-light: #4a3570;
    --color-accent: #006ba1;
    --color-accent-dark: #005299;
    --color-text: #1a1a1a;
    --color-text-muted: #545352;
    --color-text-inverse: #f5f7fa;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7fa;
    --color-bg-dark: #1e1530;
    --color-border: #e2e6ea;
    --color-focus: #006ba1;

    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: clamp(2.75rem, 5vw, 4rem);
    --space-2xl: clamp(4rem, 7vw, 6rem);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --header-height: 68px;
    --transition: 0.25s ease;
    --container-max: 1200px;
    --container-wide: 1320px;
    --prose-max: 38rem;
}

/* Reset & base */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

/* Skip link */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    z-index: 200;
    padding: 0.75rem 1.25rem;
    background: var(--color-brand);
    color: var(--color-text-inverse);
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-dark);
}

a:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

.lead,
.section-header p,
.hero-lead,
.about-text p,
.technical-intro p {
    max-width: var(--prose-max);
}

p {
    margin: 0 0 var(--space-sm);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

address {
    font-style: normal;
}

/* Container */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 1440px) {
    .container {
        max-width: var(--container-wide);
        padding: 0 var(--space-lg);
    }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
    min-height: 44px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--color-brand);
    color: var(--color-text-inverse);
    border-color: var(--color-brand);
}

.btn-primary:hover {
    background: var(--color-brand-light);
    border-color: var(--color-brand-light);
    color: var(--color-text-inverse);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    color: inherit;
    border-color: currentColor;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-text-inverse);
    border-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: var(--color-text-inverse);
    color: var(--color-text-inverse);
}

.section-dark .btn-outline {
    color: var(--color-text-inverse);
    border-color: rgba(255, 255, 255, 0.5);
}

.section-dark .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text-inverse);
}

.benefits .btn-outline,
.about .btn-outline,
.downloads .btn-outline {
    color: var(--color-brand);
    border-color: var(--color-brand);
}

.benefits .btn-outline:hover,
.about .btn-outline:hover,
.downloads .btn-outline:hover {
    background: var(--color-brand);
    color: var(--color-text-inverse);
}

@media (max-width: 479px) {
    .btn-lg {
        white-space: normal;
        text-align: center;
        max-width: 100%;
    }
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
}

/* Sections */

.section {
    padding: var(--space-xl) 0;
}

.section + .section-alt,
.section-alt + .section,
.section + .section-dark,
.section-dark + .section {
    border-top: 1px solid transparent;
}

.benefits {
    padding-bottom: var(--space-2xl);
}

.applications {
    padding-top: var(--space-2xl);
}

.system {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
}

.gallery {
    padding-top: var(--space-2xl);
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-text-inverse);
}

.section-dark p {
    color: rgba(245, 247, 250, 0.85);
}

.section-header {
    max-width: var(--prose-max);
    margin-bottom: var(--space-lg);
}

.section-header p {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
}

.section-dark .section-header p {
    color: rgba(245, 247, 250, 0.75);
}

/* Reveal animation — visible by default, enhanced with JS */

.reveal {
    opacity: 1;
    transform: none;
}

.js-ready .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(16px);
}

.js-ready .reveal {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .js-ready .reveal {
        transition-duration: 0.3s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js-ready .reveal,
    .js-ready .reveal:not(.is-visible) {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .benefit-item:hover,
    .download-card:hover,
    .app-card:hover img,
    .gallery-item:hover img {
        transform: none;
    }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    overflow-x: clip;
    z-index: 100;
    height: var(--header-height);
    transition: background var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--color-border);
    backdrop-filter: blur(8px);
}

.site-header.is-scrolled .nav-list a {
    color: var(--color-text);
}

.site-header.is-scrolled .nav-list a:hover {
    color: var(--color-brand);
}

.site-header.is-scrolled .header-logo img {
    filter: none;
}

.site-header:not(.is-scrolled) .nav-list a {
    color: var(--color-text-inverse);
}

.site-header:not(.is-scrolled) .nav-list a:hover {
    color: var(--color-text-inverse);
}

.site-header:not(.is-scrolled) .menu-toggle-bar {
    background: var(--color-text-inverse);
}

.site-header:not(.is-scrolled) .header-logo img {
    filter: brightness(0) invert(1);
}

.site-header:not(.is-scrolled) .header-cta {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

.site-header:not(.is-scrolled) .header-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-brand);
    border-color: rgba(255, 255, 255, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-md);
    box-sizing: border-box;
    min-width: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-brand);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--color-brand);
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.menu-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-brand);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(30, 21, 48, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1023px) {
    .header-nav.is-open {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        z-index: 95;
        background: var(--color-bg);
        padding: var(--space-md) var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 12px 32px rgba(30, 21, 48, 0.12);
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
    }

    .header-nav.is-open .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .header-nav.is-open .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .header-nav.is-open .nav-list li:last-child {
        border-bottom: none;
    }

    .header-nav.is-open .nav-list a {
        font-size: 1.125rem;
        display: block;
        padding: var(--space-md) var(--space-xs);
        color: var(--color-text);
    }

    .header-nav.is-open .nav-list a::after {
        display: none;
    }

    .header-nav.is-open .nav-list a:hover,
    .header-nav.is-open .nav-list a:focus-visible {
        color: var(--color-brand);
        background: var(--color-bg-alt);
    }
}

@media (min-width: 1024px) {
    .header-nav {
        display: block;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: clamp(540px, 88vh, 760px);
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        118deg,
        rgba(30, 21, 48, 0.94) 0%,
        rgba(47, 30, 77, 0.82) 42%,
        rgba(30, 21, 48, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-md);
    align-items: center;
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
}

.hero-text {
    color: var(--color-text-inverse);
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 247, 250, 0.75);
    margin-bottom: var(--space-xs);
}

.hero h1 {
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}

.hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.1875rem);
    line-height: 1.55;
    color: rgba(245, 247, 250, 0.92);
    margin-bottom: var(--space-md);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    order: -1;
}

.hero-product-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(100%, 340px);
    margin: 0 auto;
}

.hero-product-wrap::after {
    content: "";
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 72%);
    pointer-events: none;
}

.hero-product-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.05fr 0.95fr;
        gap: var(--space-lg);
        padding-top: var(--space-lg);
        padding-bottom: var(--space-xl);
    }

    .hero-visual {
        order: 0;
    }

    .hero-product-wrap {
        width: min(100%, 420px);
    }

    .hero-product-wrap img {
        max-height: 400px;
    }
}

@media (min-width: 1024px) {
    .hero-product-wrap {
        width: min(100%, 480px);
    }

    .hero-product-wrap img {
        max-height: 460px;
    }
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits-grid {
    display: grid;
    gap: var(--space-sm);
}

.benefit-item {
    padding: var(--space-md) var(--space-md) var(--space-lg);
    border-left: 3px solid var(--color-brand);
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #eef1f5 100%);
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 30, 77, 0.08);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    color: var(--color-brand);
    margin-bottom: var(--space-xs);
}

.benefit-item p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefit-item {
        border-left: none;
        border-top: 3px solid var(--color-brand);
        padding-top: var(--space-lg);
    }
}

/* ==========================================================================
   Applications mosaic
   ========================================================================== */

.applications-mosaic {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr;
}

.app-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 220px;
    aspect-ratio: 4 / 3;
}

.app-card--large {
    aspect-ratio: auto;
    min-height: 280px;
}

.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.app-card--guaine img { object-position: center 45%; }
.app-card--incapsulamento img { object-position: center 30%; }
.app-card--pavimentazioni img { object-position: center center; }
.app-card--anticarbonatazione img { object-position: center 40%; }
.app-card--broof img { object-position: center 35%; }

.app-card:hover img {
    transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .app-card:hover img {
        transform: none;
    }
}

.app-card-content {
    position: relative;
    z-index: 1;
    padding: var(--space-md) var(--space-md) var(--space-sm);
    background: linear-gradient(to top, rgba(20, 14, 32, 0.96) 0%, rgba(20, 14, 32, 0.55) 55%, transparent 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
}

.app-card-content h3 {
    color: var(--color-text-inverse);
    margin-bottom: 0.35rem;
    font-size: 1.125rem;
}

.app-card-content p {
    color: rgba(245, 247, 250, 0.88);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    max-width: 42ch;
}

@media (min-width: 768px) {
    .applications-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .app-card {
        min-height: 240px;
    }

    .app-card--large {
        grid-row: span 2;
        min-height: 100%;
        aspect-ratio: auto;
    }
}

@media (min-width: 1024px) {
    .applications-mosaic {
        grid-template-columns: 1.15fr 1fr 1fr;
        grid-template-rows: repeat(2, minmax(220px, 1fr));
        gap: var(--space-sm);
    }

    .app-card--large {
        grid-row: span 2;
    }

    .app-card-content {
        padding: var(--space-lg) var(--space-md) var(--space-md);
    }
}

/* ==========================================================================
   System
   ========================================================================== */

.system-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.system-hero {
    display: grid;
    gap: 0;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-brand);
    box-shadow: 0 12px 40px rgba(47, 30, 77, 0.1);
}

.system-hero-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 40%;
}

.system-hero-content {
    padding: var(--space-md) var(--space-md) var(--space-lg);
}

.system-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    background: rgba(0, 107, 161, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.system-hero-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-brand);
}

.system-hero-content p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.system-complementary {
    display: grid;
    gap: var(--space-sm);
}

.system-card {
    padding: var(--space-md);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.system-card:hover {
    border-color: rgba(47, 30, 77, 0.25);
    box-shadow: 0 4px 16px rgba(47, 30, 77, 0.06);
    transform: translateY(-1px);
}

.product-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.product-img-wrap img {
    width: auto;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transform: scale(1.15);
}

.system-card h4 {
    color: var(--color-brand);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.system-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: var(--space-sm);
}

.system-card-link {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.system-card-link:hover {
    color: var(--color-brand);
}

@media (min-width: 768px) {
    .system-hero {
        grid-template-columns: 1.15fr 1fr;
    }

    .system-hero-image img {
        height: 100%;
        min-height: 340px;
    }

    .system-hero-content {
        padding: var(--space-lg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .system-complementary {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
}

@media (min-width: 1024px) {
    .system-hero-image img {
        min-height: 380px;
    }

    .product-img-wrap {
        height: 140px;
    }

    .product-img-wrap img {
        max-height: 130px;
    }
}

/* ==========================================================================
   Technical
   ========================================================================== */

.technical-layout {
    display: grid;
    gap: var(--space-lg);
}

.technical-intro p {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.0625rem);
    margin-bottom: var(--space-md);
}

.cert-badges {
    display: grid;
    gap: var(--space-sm);
}

.cert-badge {
    padding: var(--space-md);
    background: var(--color-bg);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: 0 2px 8px rgba(47, 30, 77, 0.04);
}

.cert-badge strong {
    display: block;
    color: var(--color-brand);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cert-badge span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.specs-list {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.spec-item dt {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.spec-item dd {
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .technical-layout {
        grid-template-columns: 0.95fr 1.05fr;
        align-items: start;
        gap: var(--space-xl);
    }

    .specs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .spec-item {
        padding: var(--space-md) var(--space-md) var(--space-md) var(--space-md);
    }
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item--tetto img { object-position: center 40%; height: 240px; }
.gallery-item--terrazza img { object-position: center 35%; }
.gallery-item--facciata img { object-position: center 30%; }
.gallery-item--raccordi img { object-position: center center; }
.gallery-item--balconi img { object-position: center 45%; height: 260px; }

.gallery-item:hover img {
    transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item:hover img {
        transform: none;
    }
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(to top, rgba(20, 14, 32, 0.92) 0%, transparent 100%);
    color: var(--color-text-inverse);
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item img {
        height: 260px;
    }

    .gallery-item--tetto img,
    .gallery-item--balconi img {
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: var(--space-sm);
    }

    .gallery-item {
        grid-column: span 4;
    }

    .gallery-item--wide {
        grid-column: span 8;
    }

    .gallery-item--terrazza {
        grid-column: span 4;
    }

    .gallery-item--facciata {
        grid-column: span 4;
    }

    .gallery-item--raccordi {
        grid-column: span 4;
    }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-layout {
    display: grid;
    gap: var(--space-lg);
}

.about-header h2 {
    color: var(--color-brand);
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: minmax(200px, 260px) 1fr;
        gap: var(--space-xl);
        align-items: start;
    }

    .about-text p {
        max-width: none;
    }
}

/* ==========================================================================
   Downloads
   ========================================================================== */

.downloads-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
}

.download-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.download-card:hover {
    border-color: var(--color-brand);
    background: var(--color-bg);
    color: var(--color-text);
    transform: translateY(-2px);
}

.download-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}

.download-icon svg {
    width: 100%;
    height: 100%;
}

.download-label {
    flex: 1;
    font-weight: 600;
    color: var(--color-brand);
    min-width: 0;
    overflow-wrap: anywhere;
}

.download-meta {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .downloads-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .download-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
}

/* ==========================================================================
   Site pre-footer — global CTA (all public pages)
   ========================================================================== */

.site-prefooter {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: clamp(2.5rem, 4.25vw, 4.25rem) 0;
    margin: 0;
}

.site-prefooter__inner {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    align-items: end;
}

.site-prefooter__content {
    min-width: 0;
}

.site-prefooter__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text-inverse);
}

.site-prefooter__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(245, 247, 250, 0.82);
    max-width: none;
}

.site-prefooter__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.site-prefooter .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

.site-prefooter .btn-primary:hover {
    background: #e8ecf2;
    border-color: #e8ecf2;
    color: var(--color-brand);
}

.site-prefooter .btn-primary:focus-visible {
    outline: 2px solid var(--color-text-inverse);
    outline-offset: 3px;
}

.site-prefooter__phone {
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 247, 250, 0.4);
}

.site-prefooter__phone:hover {
    border-bottom-color: var(--color-text-inverse);
    color: var(--color-text-inverse);
}

.site-prefooter__phone:focus-visible {
    outline: 2px solid var(--color-text-inverse);
    outline-offset: 3px;
}

.site-prefooter + .site-footer {
    margin-top: 0;
}

@media (min-width: 768px) {
    .site-prefooter__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3rem);
    }

    .site-prefooter__actions {
        justify-self: end;
        align-self: end;
    }
}

@media (max-width: 767px) {
    .site-prefooter__actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .site-prefooter__actions .btn-primary {
        width: 100%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--color-brand);
    color: rgba(245, 247, 250, 0.85);
    padding-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.footer-brand img {
    margin-bottom: var(--space-sm);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.875rem;
    margin: 0;
}

.footer-nav h3,
.footer-products h3,
.footer-contact h3 {
    color: var(--color-text-inverse);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.footer-nav a,
.footer-products a,
.footer-contact a {
    color: rgba(245, 247, 250, 0.75);
    font-size: 0.9375rem;
}

.footer-nav a:hover,
.footer-products a:hover,
.footer-contact a:hover {
    color: var(--color-text-inverse);
}

.footer-nav li,
.footer-products li {
    margin-bottom: 0.5rem;
}

.footer-contact address p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-md) 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin: 0;
    color: rgba(245, 247, 250, 0.6);
    overflow-wrap: anywhere;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(245, 247, 250, 0.6);
}

.footer-legal a:hover {
    color: var(--color-text-inverse);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   Internal pages — shared
   ========================================================================== */

body.page-internal {
    padding-top: 0;
}

body.page-internal .site-header,
body.page-internal .site-header:not(.is-scrolled) {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--color-border);
    backdrop-filter: blur(8px);
}

body.page-internal .site-header .nav-list a,
body.page-internal .site-header:not(.is-scrolled) .nav-list a {
    color: var(--color-text);
}

body.page-internal .site-header .nav-list a:hover,
body.page-internal .site-header:not(.is-scrolled) .nav-list a:hover {
    color: var(--color-brand);
}

body.page-internal .site-header .header-logo img,
body.page-internal .site-header:not(.is-scrolled) .header-logo img {
    filter: none;
}

body.page-internal .site-header .menu-toggle-bar,
body.page-internal .site-header:not(.is-scrolled) .menu-toggle-bar {
    background: var(--color-brand);
}

body.page-internal .site-header .header-cta,
body.page-internal .site-header:not(.is-scrolled) .header-cta {
    background: var(--color-brand);
    color: var(--color-text-inverse);
    border-color: var(--color-brand);
}

body.page-internal .site-header .header-cta:hover,
body.page-internal .site-header:not(.is-scrolled) .header-cta:hover {
    background: var(--color-brand-light);
    border-color: var(--color-brand-light);
    color: var(--color-text-inverse);
}

.container--narrow {
    max-width: var(--prose-max);
}

.prose p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-brand);
    border-color: var(--color-brand);
}

.btn-outline-dark:hover {
    background: var(--color-brand);
    color: var(--color-text-inverse);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 40px;
}

/* Breadcrumb */

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    list-style: none;
    margin: 0 0 var(--space-sm);
    padding: 0;
    font-size: 0.8125rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    color: var(--color-border);
    margin-left: 0.35rem;
}

.breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-brand);
    text-decoration: underline;
}

.breadcrumb li span[aria-current="page"] {
    color: var(--color-text);
    font-weight: 500;
}

.breadcrumb--light ol,
.breadcrumb--light li {
    color: rgba(245, 247, 250, 0.75);
}

.breadcrumb--light a {
    color: rgba(245, 247, 250, 0.9);
}

.breadcrumb--light li span[aria-current="page"] {
    color: var(--color-text-inverse);
}

.breadcrumb--light li:not(:last-child)::after {
    color: rgba(245, 247, 250, 0.4);
}

.nav-list a[aria-current="page"] {
    color: var(--color-brand);
    font-weight: 600;
}

/* ==========================================================================
   Prodotti page
   ========================================================================== */

.page-hero {
    padding-top: calc(var(--header-height) + var(--space-md));
    padding-bottom: var(--space-xl);
    background: linear-gradient(160deg, var(--color-bg-alt) 0%, #e8ecf2 55%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-hero-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    min-width: 0;
}

.page-hero-text,
.page-hero-visual {
    min-width: 0;
    max-width: 100%;
}

.page-hero-visual--products {
    overflow: clip;
}

.page-hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
    overflow-wrap: anywhere;
}

.page-hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    max-width: 38rem;
}

.product-cluster {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 1 / 0.85;
    overflow: clip;
}

.product-cluster-main {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 58%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(47, 30, 77, 0.15));
}

.product-cluster-item {
    position: absolute;
    width: 28%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(47, 30, 77, 0.1));
}

.product-cluster-item--1 { top: 8%; left: 4%; }
.product-cluster-item--2 { top: 4%; right: 2%; }
.product-cluster-item--3 { bottom: 22%; right: 6%; }

.cycle-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-sm);
    min-width: 0;
}

.cycle-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-brand);
    min-width: 0;
}

.cycle-step > div {
    min-width: 0;
}

.cycle-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--color-brand);
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.cycle-step h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.35rem;
    color: var(--color-brand);
    overflow-wrap: anywhere;
}

.cycle-step p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.cycle-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 107, 161, 0.06);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.product-featured {
    display: grid;
    gap: 0;
    background: var(--color-bg);
    border: 2px solid var(--color-brand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(47, 30, 77, 0.08);
    margin-bottom: var(--space-lg);
}

.product-featured-visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 40%;
}

.product-featured-content {
    padding: var(--space-md) var(--space-md) var(--space-lg);
}

.product-featured-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-brand);
    margin-bottom: var(--space-sm);
}

.product-featured-content > p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.product-benefits {
    list-style: none;
    margin: 0 0 var(--space-md);
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.product-benefits li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.product-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.product-benefits--compact {
    margin-bottom: var(--space-sm);
}

.product-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.product-editorial-list {
    display: grid;
    gap: var(--space-md);
}

.product-editorial {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.product-editorial-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
}

.product-editorial-media img {
    max-width: 180px;
    max-height: 140px;
    object-fit: contain;
}

.product-editorial-body h3 {
    color: var(--color-brand);
    margin-bottom: var(--space-xs);
}

.product-editorial-body > p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: var(--space-sm);
}

.product-facts {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 var(--space-sm);
}

.product-facts div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.15rem;
    font-size: 0.875rem;
}

.product-facts dt {
    font-weight: 600;
    color: var(--color-brand);
    margin: 0;
}

.product-facts dd {
    margin: 0;
    color: var(--color-text-muted);
}

.orientation-guide {
    display: grid;
    gap: var(--space-sm);
}

.orientation-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    align-items: start;
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.orientation-label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.orientation-arrow {
    display: none;
}

.orientation-product {
    font-weight: 600;
    color: var(--color-brand);
    text-align: left;
}

.orientation-item--highlight {
    border-color: var(--color-brand);
    background: rgba(47, 30, 77, 0.04);
}

@media (min-width: 768px) {
    .page-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .cycle-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .product-featured {
        grid-template-columns: 1.1fr 1fr;
    }

    .product-featured-visual img {
        height: 100%;
        min-height: 360px;
    }

    .product-featured-content {
        padding: var(--space-lg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-editorial {
        grid-template-columns: 220px 1fr;
        align-items: center;
        padding: var(--space-lg);
    }

    .product-editorial--reverse {
        grid-template-columns: 1fr 220px;
    }

    .product-editorial--reverse .product-editorial-media {
        order: 2;
    }

    .product-editorial--reverse .product-editorial-body {
        order: 1;
    }

    .orientation-item {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: var(--space-sm);
    }

    .orientation-arrow {
        display: block;
        color: var(--color-accent);
        font-weight: 700;
    }

    .orientation-product {
        text-align: right;
    }

    .product-facts div {
        grid-template-columns: 7rem 1fr;
    }
}

@media (min-width: 1024px) {
    .cycle-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Sea Flex product page
   ========================================================================== */

.sf-hero {
    position: relative;
    padding-top: calc(var(--header-height) + var(--space-md));
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

.sf-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-bg-dark) 0%,
        var(--color-brand) 45%,
        rgba(0, 107, 161, 0.35) 100%
    );
    z-index: 0;
}

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

.sf-hero-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.sf-hero-text {
    color: var(--color-text-inverse);
}

.sf-hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 247, 250, 0.75);
    margin-bottom: var(--space-xs);
}

.sf-hero h1 {
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}

.sf-hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.9);
    margin-bottom: var(--space-md);
    max-width: 36rem;
}

.sf-hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sf-hero-visual {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr 1fr;
    align-items: end;
}

.sf-hero-product {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.sf-hero-product img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.sf-hero-application {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.sf-hero-application img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center 40%;
}

.feature-clusters {
    display: grid;
    gap: var(--space-md);
}

.feature-cluster {
    padding: var(--space-md) var(--space-md) var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--color-brand);
}

.feature-cluster-icon {
    width: 44px;
    height: 44px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.feature-cluster-icon svg {
    width: 100%;
    height: 100%;
}

.feature-cluster h3 {
    color: var(--color-brand);
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
}

.feature-cluster ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.feature-cluster li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.feature-cluster li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.applications-mosaic--sf {
    grid-template-columns: 1fr;
}

.usage-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: usage;
    display: grid;
    gap: var(--space-sm);
}

.usage-steps li {
    counter-increment: usage;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 3.25rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.usage-steps li::before {
    content: counter(usage);
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 50%;
}

.faq-accordion {
    display: grid;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg);
}

.faq-item h3 {
    margin: 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand);
    text-align: left;
    cursor: pointer;
    line-height: 1.4;
}

.faq-trigger::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.faq-trigger[aria-expanded="true"]::after {
    content: "−";
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: -2px;
}

.faq-panel {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-panel[hidden] {
    display: none;
}

.faq-panel p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.complementary-strip {
    display: grid;
    gap: var(--space-md);
}

.complementary-card {
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.complementary-card img {
    max-width: 140px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: var(--space-sm);
}

.complementary-card h3 {
    font-size: 1rem;
    color: var(--color-brand);
    margin-bottom: 0.35rem;
}

.complementary-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

@media (min-width: 480px) {
    .sf-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .sf-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .sf-hero-product img {
        max-height: 280px;
    }

    .feature-clusters {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .applications-mosaic--sf {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-mosaic--sf .app-card--large {
        grid-column: span 2;
    }

    .complementary-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .applications-mosaic--sf {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto auto;
    }

    .applications-mosaic--sf .app-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Product detail pages — differentiated heroes
   ========================================================================== */

.pd-hero {
    position: relative;
    padding-top: calc(var(--header-height) + var(--space-md));
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

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

.pd-hero-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    min-width: 0;
}

.pd-hero-text,
.pd-hero-visual {
    min-width: 0;
    max-width: 100%;
}

.pd-hero-visual {
    overflow: clip;
}

.pd-hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.pd-hero h1 {
    margin-bottom: var(--space-sm);
    overflow-wrap: anywhere;
}

.pd-hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    max-width: 36rem;
}

.pd-hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pd-hero-product {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.pd-hero-product img {
    width: auto;
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(47, 30, 77, 0.12));
}

.pd-hero-context {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.pd-hero-context img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
}

.pd-hero--prep {
    background: linear-gradient(165deg, #eef4f8 0%, var(--color-bg-alt) 55%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--color-border);
}

.pd-hero--prep .pd-hero-eyebrow {
    color: var(--color-accent);
}

.pd-hero--prep h1 {
    color: var(--color-brand);
}

.pd-hero--prep .pd-hero-lead {
    color: var(--color-text-muted);
}

.pd-hero--seal {
    color: var(--color-text-inverse);
}

.pd-hero--seal .pd-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(128deg, #1a2838 0%, var(--color-brand) 55%, rgba(0, 107, 161, 0.45) 100%);
    z-index: 0;
}

.pd-hero--seal h1,
.pd-hero--seal .pd-hero-eyebrow {
    color: var(--color-text-inverse);
}

.pd-hero--seal .pd-hero-eyebrow {
    color: rgba(245, 247, 250, 0.75);
}

.pd-hero--seal .pd-hero-lead {
    color: rgba(245, 247, 250, 0.9);
}

.pd-hero--seal .pd-hero-product {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.pd-hero--seal .pd-hero-product img {
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.pd-hero--seal .pd-hero-context {
    border-color: rgba(255, 255, 255, 0.2);
}

.pd-hero--mesh .pd-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--color-bg-dark) 0%, var(--color-brand-light) 100%);
    z-index: 0;
}

.pd-hero--mesh {
    color: var(--color-text-inverse);
}

.pd-hero--mesh h1 {
    color: var(--color-text-inverse);
}

.pd-hero--mesh .pd-hero-eyebrow {
    color: rgba(245, 247, 250, 0.75);
}

.pd-hero--mesh .pd-hero-lead {
    color: rgba(245, 247, 250, 0.9);
}

.pd-hero--mesh .pd-hero-visual {
    display: grid;
    gap: var(--space-sm);
}

.pd-hero--mesh .pd-hero-product {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
}

.pd-hero--mesh .pd-hero-product img {
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.3));
}

.pd-spec-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 107, 161, 0.06);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.pd-verified-grid {
    display: grid;
    gap: var(--space-sm);
}

.pd-verified-item {
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
}

.pd-verified-item dt {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.pd-verified-item dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand);
    line-height: 1.45;
}

.feature-rows {
    display: grid;
    gap: var(--space-md);
}

.feature-row {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.feature-row h3 {
    color: var(--color-brand);
    font-size: 1.0625rem;
    margin: 0 0 var(--space-xs);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.feature-row ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.feature-row li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.feature-row li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

@media (min-width: 480px) {
    .pd-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .pd-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .pd-hero--mesh .pd-hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .pd-hero--mesh .pd-hero-visual {
        order: -1;
    }

    .pd-hero-product img {
        max-height: 320px;
    }

    .pd-verified-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-rows {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
}

/* ==========================================================================
   Institutional pages — Chi siamo, Campi d'impiego, Contatti
   ========================================================================== */

.page-hero--compact {
    padding-bottom: var(--space-lg);
}

.page-hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.page-hero-visual img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

/* Timeline */

.inst-timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 40rem;
}

.inst-timeline::before {
    content: "";
    position: absolute;
    left: 0.65rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--color-border);
}

.inst-timeline-item {
    position: relative;
    padding: 0 0 var(--space-md) 2rem;
    min-width: 0;
}

.inst-timeline-item:last-child {
    padding-bottom: 0;
}

.inst-timeline-marker {
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--color-brand);
    border: 3px solid var(--color-bg);
    box-shadow: 0 0 0 2px var(--color-brand);
}

.inst-timeline-year {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.inst-timeline-item h3 {
    font-size: 1.0625rem;
    color: var(--color-brand);
    margin: 0 0 0.35rem;
}

.inst-timeline-item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* Approach pillars */

.approach-grid {
    display: grid;
    gap: var(--space-md);
}

.approach-item {
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--color-accent);
    min-width: 0;
}

.approach-item h3 {
    font-size: 1rem;
    color: var(--color-brand);
    margin: 0 0 0.5rem;
}

.approach-item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* System overview strip */

.system-overview {
    display: grid;
    gap: var(--space-sm);
}

.system-overview-card {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.system-overview-card img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.system-overview-card h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-brand);
}

.system-overview-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Campi editorial blocks */

.campi-intro-note {
    padding: var(--space-md);
    background: rgba(0, 107, 161, 0.06);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.campi-intro-note p {
    margin: 0;
}

.campi-block {
    display: grid;
    gap: var(--space-md);
    align-items: center;
    min-width: 0;
}

.campi-block-media {
    min-width: 0;
    overflow: clip;
    border-radius: var(--radius-md);
}

.campi-block-media img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.campi-block-body h3 {
    color: var(--color-brand);
    margin: 0 0 var(--space-xs);
}

.campi-block-body p {
    margin: 0 0 var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.campi-block-body ul {
    margin: 0 0 var(--space-sm);
    padding-left: 1.1rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.campi-block-body ul li + li {
    margin-top: 0.25rem;
}

.campi-block--reverse .campi-block-media {
    order: -1;
}

.campi-highlight {
    padding: var(--space-lg);
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    border-radius: var(--radius-md);
    min-width: 0;
}

.campi-highlight h3 {
    color: var(--color-text-inverse);
    margin: 0 0 var(--space-xs);
}

.campi-highlight p,
.campi-highlight li {
    color: rgba(245, 247, 250, 0.88);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.campi-highlight ul {
    margin: var(--space-sm) 0 0;
    padding-left: 1.1rem;
}

.campi-highlight .campi-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.campi-product-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    color: var(--color-text-inverse);
    text-decoration: none;
}

.campi-product-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-inverse);
}

.campi-stack {
    display: grid;
    gap: var(--space-sm);
}

.campi-stack-item {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.campi-stack-item h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-brand);
}

.campi-stack-item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.campi-stack-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.campi-orientation {
    display: grid;
    gap: var(--space-sm);
}

.campi-orientation-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-width: 0;
    overflow-wrap: anywhere;
}

.campi-orientation-item strong {
    color: var(--color-brand);
    font-size: 0.9375rem;
}

.campi-orientation-item span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    flex: 1 1 12rem;
    min-width: 0;
}

@media (min-width: 480px) {
    .page-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .page-hero:not(.page-hero--products) .page-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .inst-timeline {
        max-width: none;
    }

    .inst-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .inst-timeline-item {
        width: 50%;
        padding: 0 var(--space-lg) var(--space-lg);
    }

    .inst-timeline-item:nth-child(odd) {
        margin-left: 0;
        padding-right: calc(var(--space-lg) + 1rem);
        text-align: right;
    }

    .inst-timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: calc(var(--space-lg) + 1rem);
    }

    .inst-timeline-marker {
        left: auto;
        right: -0.675rem;
    }

    .inst-timeline-item:nth-child(even) .inst-timeline-marker {
        right: auto;
        left: -0.675rem;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .system-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .campi-block {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .campi-block--reverse .campi-block-media {
        order: 2;
    }

    .campi-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .system-overview {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Home Refresh 2.0 — scoped to body.page-home only
   ========================================================================== */

body.page-home {
    --home-surface: #f3f1f6;
    --home-surface-2: #ebe7f0;
    --home-line: rgba(47, 30, 77, 0.12);
}

body.page-home .header-logo {
    min-width: 0;
    flex-shrink: 1;
}

body.page-home .header-logo img {
    height: 44px;
    width: auto;
    max-width: 100%;
}

body.page-home .header-inner {
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    body.page-home {
        --header-height: 76px;
    }

    body.page-home .nav-list {
        gap: 2rem;
    }

    body.page-home .nav-list a {
        font-size: 0.96875rem;
        letter-spacing: 0.01em;
    }
}

/* Shared home section chrome */

body.page-home .home-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-home .home-section-head {
    max-width: 40rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

body.page-home .home-section-head h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
    max-width: 100%;
}

body.page-home .home-section-lead {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 36rem;
}

body.page-home .home-section-head--inverse .home-kicker {
    color: rgba(245, 247, 250, 0.7);
}

body.page-home .home-section-head--inverse h2 {
    color: var(--color-text-inverse);
}

body.page-home .home-section-head--inverse .home-section-lead {
    color: rgba(245, 247, 250, 0.8);
}

body.page-home .home-section-head--inverse a {
    color: #9ed0ea;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

body.page-home .home-section-head--inverse a:hover {
    color: var(--color-text-inverse);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

body.page-home .home-hero {
    position: relative;
    min-height: min(100vh, 920px);
    color: var(--color-text-inverse);
    overflow: clip;
    background: var(--color-bg-dark);
}

body.page-home .home-hero-stage {
    position: relative;
    min-height: inherit;
    display: grid;
}

body.page-home .home-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.page-home .home-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

body.page-home .home-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(20, 12, 36, 0.94) 0%, rgba(30, 21, 48, 0.78) 42%, rgba(30, 21, 48, 0.35) 68%, rgba(30, 21, 48, 0.55) 100%),
        linear-gradient(to top, rgba(20, 12, 36, 0.55) 0%, transparent 42%);
}

body.page-home .home-hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: inherit;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

body.page-home .home-hero-inner {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
    width: 100%;
    min-width: 0;
}

body.page-home .home-hero-copy {
    min-width: 0;
    max-width: 34rem;
    padding-bottom: 0.5rem;
}

body.page-home .home-hero-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.72);
}

body.page-home .home-hero h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(3.4rem, 10vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--color-text-inverse);
    overflow-wrap: anywhere;
}

body.page-home .home-hero-lead {
    margin: 0 0 1.5rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.55;
    color: rgba(245, 247, 250, 0.88);
    max-width: 28rem;
}

body.page-home .home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.35rem;
    margin-bottom: 1.5rem;
}

body.page-home .home-hero-actions .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

body.page-home .home-hero-actions .btn-primary:hover {
    background: #e8ecf2;
    border-color: #e8ecf2;
    color: var(--color-brand);
}

body.page-home .home-hero-link {
    color: rgba(245, 247, 250, 0.92);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 247, 250, 0.45);
    padding-bottom: 0.15rem;
}

body.page-home .home-hero-link:hover {
    color: var(--color-text-inverse);
    border-bottom-color: var(--color-text-inverse);
}

body.page-home .home-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.62);
}

body.page-home .home-hero-meta li {
    position: relative;
    padding-left: 0.9rem;
}

body.page-home .home-hero-meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--color-accent);
}

body.page-home .home-hero-product {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

body.page-home .home-hero-product-frame {
    position: relative;
    width: min(100%, 360px);
    padding: 1.25rem 1rem 0;
}

body.page-home .home-hero-product-plinth {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 8%;
    height: 28%;
    border-radius: 50% / 40%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
    filter: blur(2px);
    z-index: 0;
}

body.page-home .home-hero-product-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
}

body.page-home .home-hero-product-label {
    position: absolute;
    right: -0.25rem;
    top: 18%;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.55);
}

@media (min-width: 900px) {
    body.page-home .home-hero-inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
        gap: 2rem 3rem;
    }

    body.page-home .home-hero-product {
        justify-content: flex-end;
        padding-right: 1rem;
    }

    body.page-home .home-hero-product-frame {
        width: min(100%, 440px);
    }
}

@media (min-width: 1200px) {
    body.page-home .home-hero-photo {
        clip-path: polygon(28% 0, 100% 0, 100% 100%, 18% 100%);
    }

    body.page-home .home-hero-veil {
        background:
            linear-gradient(100deg, rgba(20, 12, 36, 0.97) 0%, rgba(20, 12, 36, 0.92) 34%, rgba(30, 21, 48, 0.35) 58%, rgba(30, 21, 48, 0.2) 100%),
            linear-gradient(to top, rgba(20, 12, 36, 0.4) 0%, transparent 35%);
    }

    body.page-home .home-hero-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

/* --------------------------------------------------------------------------
   Benefits rail
   -------------------------------------------------------------------------- */

body.page-home .home-benefits {
    background: var(--home-surface);
    border-bottom: 1px solid var(--home-line);
}

body.page-home .home-benefits-rail {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--home-line);
}

body.page-home .home-benefit {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--home-line);
    min-width: 0;
}

body.page-home .home-benefit-num {
    grid-row: 1 / span 2;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    padding-top: 0.2rem;
}

body.page-home .home-benefit h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    letter-spacing: -0.02em;
    color: var(--color-brand);
}

body.page-home .home-benefit p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

body.page-home .home-benefit--accent h3 {
    color: var(--color-accent-dark);
}

@media (min-width: 900px) {
    body.page-home .home-benefits-rail {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-top: none;
        gap: 0;
    }

    body.page-home .home-benefit {
        grid-template-columns: 1fr;
        padding: 0 1.25rem 0 0;
        border-bottom: none;
        border-right: 1px solid var(--home-line);
        min-height: 11rem;
    }

    body.page-home .home-benefit:last-child {
        border-right: none;
        padding-right: 0;
    }

    body.page-home .home-benefit-num {
        grid-row: auto;
        margin-bottom: 1.25rem;
        font-size: 0.875rem;
    }

    body.page-home .home-benefit h3 {
        margin-bottom: 0.65rem;
        font-size: clamp(1.35rem, 1.8vw, 1.75rem);
        max-width: 8.5ch;
    }
}

/* --------------------------------------------------------------------------
   Applications refine
   -------------------------------------------------------------------------- */

body.page-home .home-applications {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

body.page-home .home-applications-mosaic {
    margin-top: 0.5rem;
    min-width: 0;
    max-width: 100%;
    overflow: clip;
}

body.page-home .home-applications .app-card {
    min-width: 0;
    max-width: 100%;
}

body.page-home .home-applications .app-card-content {
    min-width: 0;
    max-width: 100%;
}

body.page-home .home-applications .app-card-content h3,
body.page-home .home-applications .app-card-content p {
    overflow-wrap: anywhere;
}

body.page-home .home-applications .app-card-content h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

body.page-home .home-applications .app-card--large .app-card-content h3 {
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

@media (min-width: 1024px) {
    body.page-home .home-applications .container {
        max-width: var(--container-wide);
    }
}

/* --------------------------------------------------------------------------
   System as process
   -------------------------------------------------------------------------- */

body.page-home .home-system {
    background: var(--color-bg);
}

body.page-home .home-system-process {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    min-width: 0;
}

body.page-home .home-process-label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-home .home-process-product {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: var(--radius-md);
    color: inherit;
    text-decoration: none;
    min-width: 0;
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

body.page-home .home-process-product:hover {
    border-color: var(--color-brand);
    background: #fff;
    color: inherit;
    transform: translateY(-2px);
}

body.page-home .home-process-product img {
    width: 5.5rem;
    height: 5.5rem;
    object-fit: contain;
}

body.page-home .home-process-product strong {
    display: block;
    color: var(--color-brand);
    font-size: 1.0625rem;
    margin-bottom: 0.2rem;
}

body.page-home .home-process-product em {
    display: block;
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

body.page-home .home-process-pair {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
}

body.page-home .home-process-main {
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    min-width: 0;
}

body.page-home .home-process-main-media {
    min-width: 0;
    overflow: clip;
}

body.page-home .home-process-main-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 40%;
}

body.page-home .home-process-main-body {
    padding: 1.5rem 1.35rem 1.75rem;
}

body.page-home .home-process-main-body h3 {
    margin: 0 0 0.65rem;
    color: var(--color-text-inverse);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

body.page-home .home-process-main-body p {
    margin: 0 0 1.25rem;
    color: rgba(245, 247, 250, 0.82);
    line-height: 1.6;
}

body.page-home .home-process-main-body .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

body.page-home .home-process-main-body .btn-primary:hover {
    background: #e8ecf2;
    border-color: #e8ecf2;
}

@media (min-width: 768px) {
    body.page-home .home-process-pair {
        grid-template-columns: 1fr 1fr;
    }

    body.page-home .home-process-main {
        grid-template-columns: 1.15fr 1fr;
        align-items: stretch;
    }

    body.page-home .home-process-main-media img {
        height: 100%;
        min-height: 280px;
    }

    body.page-home .home-process-main-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 1.75rem;
    }
}

@media (min-width: 1100px) {
    body.page-home .home-system-process {
        grid-template-columns: 0.85fr 1.15fr 1.35fr;
        align-items: stretch;
        gap: 1.25rem;
    }

    body.page-home .home-process-step {
        position: relative;
        min-width: 0;
    }

    body.page-home .home-process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 2.6rem;
        right: -0.75rem;
        width: 0.75rem;
        height: 1px;
        background: var(--color-accent);
        opacity: 0.55;
    }

    body.page-home .home-process-pair {
        grid-template-columns: 1fr;
    }

    body.page-home .home-process-product {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.25rem 1rem 1.35rem;
    }

    body.page-home .home-process-product img {
        width: 7.5rem;
        height: 7.5rem;
        margin: 0 auto 0.35rem;
    }

    body.page-home .home-process-main {
        grid-template-columns: 1fr;
        height: 100%;
    }

    body.page-home .home-process-main-media img {
        min-height: 200px;
        height: 210px;
    }
}

/* --------------------------------------------------------------------------
   Proof points
   -------------------------------------------------------------------------- */

body.page-home .home-proof {
    background: var(--home-surface-2);
}

body.page-home .home-proof-layout {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    min-width: 0;
}

body.page-home .home-proof-certs {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

body.page-home .home-proof-cert {
    padding: 1.35rem 1.25rem 1.5rem;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    border-radius: var(--radius-md);
    min-width: 0;
}

body.page-home .home-proof-cert-name {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 700;
}

body.page-home .home-proof-cert-code {
    margin: 0.15rem 0 0.85rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    color: #9ed0ea;
    letter-spacing: -0.02em;
}

body.page-home .home-proof-cert-note {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(245, 247, 250, 0.75);
    max-width: 22rem;
}

body.page-home .home-proof-specs {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--home-line);
    min-width: 0;
}

body.page-home .home-proof-specs > div {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--home-line);
    min-width: 0;
}

body.page-home .home-proof-specs dt {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-home .home-proof-specs dd {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--color-brand);
    line-height: 1.4;
}

body.page-home .home-proof-value {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-brand);
}

@media (min-width: 768px) {
    body.page-home .home-proof-certs {
        grid-template-columns: 1fr 1fr;
    }

    body.page-home .home-proof-specs {
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }
}

@media (min-width: 1024px) {
    body.page-home .home-proof-layout {
        grid-template-columns: 0.95fr 1.05fr;
        align-items: start;
        gap: 3rem;
    }

    body.page-home .home-proof-certs {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    body.page-home .home-proof-cert {
        padding: 1.75rem 1.6rem 1.9rem;
    }
}

/* --------------------------------------------------------------------------
   Gallery mosaic
   -------------------------------------------------------------------------- */

body.page-home .home-gallery {
    background: var(--color-bg);
}

body.page-home .home-gallery-mosaic {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
}

body.page-home .home-gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-dark);
    min-width: 0;
}

body.page-home .home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

body.page-home .home-gallery-item:hover img {
    transform: scale(1.03);
}

body.page-home .home-gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.75rem 0.85rem 0.75rem;
    background: linear-gradient(to top, rgba(20, 12, 36, 0.85) 0%, transparent 100%);
    color: var(--color-text-inverse);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

body.page-home .home-gallery-item--hero {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

body.page-home .home-gallery-item--tall {
    aspect-ratio: 3 / 4;
}

body.page-home .home-gallery-item:not(.home-gallery-item--hero):not(.home-gallery-item--tall):not(.home-gallery-item--wide) {
    aspect-ratio: 4 / 3;
}

body.page-home .home-gallery-item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
}

@media (min-width: 768px) {
    body.page-home .home-gallery-mosaic {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: 12rem;
        gap: 0.85rem;
    }

    body.page-home .home-gallery-item--hero {
        grid-column: 1 / span 7;
        grid-row: 1 / span 2;
        aspect-ratio: auto;
    }

    body.page-home .home-gallery-item--tall {
        grid-column: 8 / span 5;
        grid-row: 1 / span 2;
        aspect-ratio: auto;
    }

    body.page-home .home-gallery-item:nth-child(3) {
        grid-column: 1 / span 4;
        grid-row: 3 / span 1;
        aspect-ratio: auto;
    }

    body.page-home .home-gallery-item:nth-child(4) {
        grid-column: 5 / span 4;
        grid-row: 3 / span 1;
        aspect-ratio: auto;
    }

    body.page-home .home-gallery-item--wide {
        grid-column: 9 / span 4;
        grid-row: 3 / span 1;
        aspect-ratio: auto;
    }
}

@media (min-width: 1100px) {
    body.page-home .home-gallery .container {
        max-width: var(--container-wide);
    }

    body.page-home .home-gallery-mosaic {
        grid-auto-rows: 14rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-home .home-gallery-item:hover img {
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   About editorial
   -------------------------------------------------------------------------- */

body.page-home .home-about {
    background: var(--home-surface);
}

body.page-home .home-about-layout {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    min-width: 0;
}

body.page-home .home-about-visual {
    position: relative;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

body.page-home .home-about-visual > img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 40%;
}

body.page-home .home-about-timeline {
    list-style: none;
    margin: 0;
    padding: 1rem 1.1rem 1.15rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

body.page-home .home-about-timeline li {
    font-size: 0.875rem;
    line-height: 1.35;
    color: rgba(245, 247, 250, 0.82);
    min-width: 0;
}

body.page-home .home-about-timeline span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ed0ea;
    margin-bottom: 0.2rem;
}

body.page-home .home-about-copy {
    min-width: 0;
    max-width: 34rem;
}

body.page-home .home-about-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    letter-spacing: -0.03em;
}

body.page-home .home-about-copy p:not(.home-kicker) {
    margin: 0 0 1.35rem;
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

@media (min-width: 900px) {
    body.page-home .home-about-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }

    body.page-home .home-about-visual > img {
        height: 340px;
    }

    body.page-home .home-about-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 1.15rem 1.25rem;
    }
}

/* --------------------------------------------------------------------------
   Downloads / CTA polish
   -------------------------------------------------------------------------- */

body.page-home .home-downloads {
    background: var(--color-bg);
}

body.page-home .home-downloads-grid .download-card {
    padding: 1.15rem 1.25rem;
}

body.page-home .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Mobile CTA / hero refinements */

@media (max-width: 479px) {
    body.page-home .header-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.page-home .header-logo img {
        height: 38px;
    }

    body.page-home .home-hero h1 {
        font-size: clamp(3rem, 16vw, 3.75rem);
    }

    body.page-home .home-hero-product-frame {
        width: min(100%, 280px);
    }

    body.page-home .home-hero-product-label {
        display: none;
    }
}

/* ==========================================================================
   Home Final Polish — scoped overrides (body.page-home only)
   ========================================================================== */

/* Header: slightly stronger logo presence */
body.page-home .header-logo img {
    height: 46px;
}

@media (min-width: 900px) {
    body.page-home .header-logo img {
        height: 52px;
    }

    body.page-home .header-inner {
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }

    body.page-home .nav-list a {
        font-size: 0.9375rem;
        letter-spacing: 0.01em;
    }
}

/* Rhythm: varied section breathing */
body.page-home .home-benefits.section {
    padding-top: clamp(2.5rem, 4.5vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

body.page-home .home-system.section {
    padding-top: clamp(3.25rem, 7vw, 5.25rem);
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

body.page-home .home-proof.section {
    padding-top: clamp(3rem, 6vw, 4.75rem);
    padding-bottom: clamp(3.25rem, 6.5vw, 5rem);
}

body.page-home .home-gallery.section {
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

body.page-home .home-about.section {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3.25rem, 6vw, 5rem);
}

body.page-home .home-downloads.section {
    padding-top: clamp(2.5rem, 4.5vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
}

body.page-home .home-section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    max-width: 40rem;
}

body.page-home .home-gallery .home-section-head,
body.page-home .home-applications .home-section-head {
    max-width: 36rem;
}

/* --------------------------------------------------------------------------
   Hero — grounded product, calmer copy stack
   -------------------------------------------------------------------------- */

body.page-home .home-hero-copy {
    padding-bottom: 0.25rem;
}

body.page-home .home-hero-eyebrow {
    margin-bottom: 0.85rem;
    letter-spacing: 0.18em;
}

body.page-home .home-hero h1 {
    margin-bottom: 0.85rem;
    line-height: 0.9;
}

body.page-home .home-hero-lead {
    max-width: 28rem;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.55;
}

body.page-home .home-hero-actions {
    margin-bottom: 1.5rem;
    gap: 0.85rem 1.35rem;
}

body.page-home .home-hero-meta {
    gap: 0.65rem 1.35rem;
    padding-top: 0.15rem;
    border-top: none;
}

body.page-home .home-hero-meta li {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.78);
}

body.page-home .home-hero-meta li::before {
    width: 0.35rem;
    height: 0.35rem;
    background: var(--color-accent);
    opacity: 0.9;
}

body.page-home .home-hero-product {
    align-items: flex-end;
    margin-bottom: -0.75rem;
}

body.page-home .home-hero-product-frame {
    width: min(100%, 340px);
    padding: 0.25rem 0.35rem 0;
}

body.page-home .home-hero-product-plinth {
    left: 16%;
    right: 16%;
    bottom: 1.5%;
    height: 14%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(8, 4, 18, 0.72) 0%, rgba(8, 4, 18, 0.28) 45%, transparent 70%);
    filter: blur(8px);
    opacity: 1;
    z-index: 0;
}

body.page-home .home-hero-product-frame::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 3%;
    height: 7%;
    border-radius: 50%;
    background: rgba(8, 4, 18, 0.35);
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

body.page-home .home-hero-product-frame img {
    filter: drop-shadow(0 10px 18px rgba(8, 4, 18, 0.28));
    transform: translateY(0.85rem);
}

body.page-home .home-hero-product-label {
    right: 0.15rem;
    top: auto;
    bottom: 22%;
    font-size: 0.625rem;
    letter-spacing: 0.28em;
    color: rgba(245, 247, 250, 0.42);
}

@media (min-width: 900px) {
    body.page-home .home-hero-inner {
        align-items: end;
        padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
    }

    body.page-home .home-hero-copy {
        padding-bottom: 1.5rem;
    }

    body.page-home .home-hero-product {
        justify-content: flex-end;
        padding-right: 0;
        margin-bottom: -2.25rem;
        transform: translateX(0.75rem);
    }

    body.page-home .home-hero-product-frame {
        width: min(100%, 480px);
    }

    body.page-home .home-hero-product-frame img {
        transform: translateY(1.15rem);
    }
}

@media (min-width: 1200px) {
    body.page-home .home-hero-photo {
        clip-path: polygon(26% 0, 100% 0, 100% 100%, 14% 100%);
    }

    body.page-home .home-hero-veil {
        background:
            linear-gradient(100deg, rgba(20, 12, 36, 0.97) 0%, rgba(20, 12, 36, 0.92) 34%, rgba(30, 21, 48, 0.32) 58%, rgba(30, 21, 48, 0.18) 100%),
            linear-gradient(to top, rgba(20, 12, 36, 0.55) 0%, transparent 38%),
            radial-gradient(ellipse 42% 28% at 78% 94%, rgba(12, 8, 24, 0.55) 0%, transparent 70%);
    }

    body.page-home .home-hero-product-frame {
        width: min(100%, 500px);
    }

    body.page-home .home-hero-product {
        margin-bottom: -2.75rem;
        transform: translateX(1.25rem);
    }
}

@media (min-width: 1440px) {
    body.page-home .home-hero .container {
        max-width: var(--container-wide);
    }
}

/* --------------------------------------------------------------------------
   Benefits — technical datasheet rail
   -------------------------------------------------------------------------- */

body.page-home .home-benefits-rail {
    border-top: 2px solid var(--color-brand);
}

body.page-home .home-benefit {
    padding: 1.1rem 0;
    column-gap: 0.75rem;
}

body.page-home .home-benefit-num {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-brand);
    opacity: 0.55;
    padding-top: 0.15rem;
}

body.page-home .home-benefit h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    font-weight: 700;
}

body.page-home .home-benefit p {
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 28ch;
}

body.page-home .home-benefit--accent .home-benefit-num,
body.page-home .home-benefit--accent h3 {
    color: var(--color-accent-dark);
}

body.page-home .home-benefit--accent .home-benefit-num {
    opacity: 0.7;
}

@media (min-width: 900px) {
    body.page-home .home-benefits-rail {
        border-top: 2px solid var(--color-brand);
        padding-top: 1.75rem;
        gap: 0;
    }

    body.page-home .home-benefit {
        padding: 0 1.5rem 0 0;
        min-height: 12.5rem;
        border-right: 1px solid var(--home-line);
    }

    body.page-home .home-benefit:last-child {
        padding-right: 0;
    }

    body.page-home .home-benefit-num {
        margin-bottom: 1.5rem;
        font-size: clamp(1.65rem, 2.2vw, 2.15rem);
        letter-spacing: -0.02em;
        opacity: 0.4;
    }

    body.page-home .home-benefit h3 {
        margin-bottom: 0.75rem;
        font-size: clamp(1.4rem, 1.9vw, 1.85rem);
        max-width: 9ch;
        line-height: 1.15;
    }

    body.page-home .home-benefit p {
        font-size: 0.9375rem;
        max-width: 22ch;
    }
}

@media (max-width: 899px) {
    body.page-home .home-benefit {
        padding: 0.9rem 0;
        grid-template-columns: 2.75rem 1fr;
    }

    body.page-home .home-benefit-num {
        font-size: 1rem;
        opacity: 0.45;
    }

    body.page-home .home-benefit h3 {
        font-size: 1.05rem;
    }

    body.page-home .home-benefit p {
        font-size: 0.8125rem;
        line-height: 1.45;
    }
}

/* --------------------------------------------------------------------------
   Applications — micro only
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
    body.page-home .home-applications .app-card--large img {
        min-height: 100%;
        object-position: center 35%;
    }

    body.page-home .home-applications-mosaic {
        gap: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   System — one process, less card chrome
   -------------------------------------------------------------------------- */

body.page-home .home-process-label {
    margin-bottom: 0.65rem;
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
}

body.page-home .home-process-product {
    padding: 0.85rem 0.95rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--home-line);
    border-radius: 0;
}

body.page-home .home-process-product:hover {
    border-color: transparent;
    border-bottom-color: var(--color-brand);
    background: transparent;
    transform: none;
}

body.page-home .home-process-product img {
    width: 4.75rem;
    height: 4.75rem;
}

body.page-home .home-process-main {
    border-radius: 0;
    border: none;
    box-shadow: none;
}

body.page-home .home-hero-meta {
    gap: 0.55rem 1.1rem;
    padding-top: 0.15rem;
    border-top: none;
    max-width: 28rem;
}

@media (max-width: 479px) {
    body.page-home .home-hero-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    body.page-home .home-hero-actions {
        margin-bottom: 1.1rem;
    }

    body.page-home .home-hero-lead {
        margin-bottom: 1.2rem;
    }
}

body.page-home .home-process-main-body {
    padding: 1.35rem 1.25rem 1.5rem;
}

body.page-home .home-process-main-body h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.03em;
}

body.page-home .home-process-main-body p {
    margin-bottom: 1.1rem;
    font-size: 0.9375rem;
    max-width: 34ch;
}

@media (min-width: 1100px) {
    body.page-home .home-system-process {
        gap: 0;
        column-gap: 0;
        border-top: 1px solid var(--home-line);
        padding-top: 1.75rem;
    }

    body.page-home .home-process-step {
        padding-right: 1.35rem;
        border-right: 1px solid var(--home-line);
    }

    body.page-home .home-process-step:last-child {
        padding-right: 0;
        border-right: none;
        padding-left: 1.35rem;
    }

    body.page-home .home-process-step:not(:last-child)::after {
        top: 0.55rem;
        right: -0.4rem;
        width: 0.8rem;
        height: 2px;
        background: var(--color-accent);
        opacity: 0.7;
    }

    body.page-home .home-process-product {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0.85rem 0 1.1rem;
        border-bottom: 1px solid var(--home-line);
    }

    body.page-home .home-process-product img {
        width: 6.25rem;
        height: 6.25rem;
        margin: 0 0 0.5rem;
    }

    body.page-home .home-process-pair .home-process-product:last-child {
        border-bottom: none;
    }

    body.page-home .home-process-main-media img {
        min-height: 220px;
        height: 230px;
        object-position: center 30%;
    }

    body.page-home .home-process-main-body {
        padding: 1.5rem 1.35rem 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   Proof — technical markers, not cards
   -------------------------------------------------------------------------- */

body.page-home .home-proof-cert {
    padding: 1.5rem 0 1.35rem;
    background: transparent;
    color: var(--color-brand);
    border-radius: 0;
    border-top: 3px solid var(--color-brand);
}

body.page-home .home-proof-cert-name {
    font-size: clamp(2.85rem, 7vw, 4.25rem);
    letter-spacing: -0.05em;
    color: var(--color-brand);
}

body.page-home .home-proof-cert-code {
    color: var(--color-accent-dark);
    font-size: clamp(1.45rem, 3.2vw, 2rem);
}

body.page-home .home-proof-cert-note {
    color: var(--color-text-muted);
    max-width: 18rem;
    font-size: 0.875rem;
}

body.page-home .home-proof-specs > div {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.2rem;
    padding: 0.95rem 0;
}

body.page-home .home-proof-specs dt {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
}

body.page-home .home-proof-specs dd {
    font-size: 1.05rem;
    color: var(--color-brand);
    line-height: 1.35;
}

body.page-home .home-proof-value {
    display: block;
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    line-height: 1.05;
}

@media (min-width: 1024px) {
    body.page-home .home-proof .container {
        max-width: var(--container-wide);
    }

    body.page-home .home-proof-layout {
        gap: 4rem;
        align-items: stretch;
    }

    body.page-home .home-proof-certs {
        gap: 0;
    }

    body.page-home .home-proof-cert {
        padding: 2rem 0 1.75rem;
        border-top-width: 4px;
    }

    body.page-home .home-proof-cert + .home-proof-cert {
        margin-top: 0.5rem;
    }
}

/* --------------------------------------------------------------------------
   Gallery — editorial reportage
   -------------------------------------------------------------------------- */

body.page-home .home-gallery-mosaic {
    gap: 0.5rem;
}

body.page-home .home-gallery-item {
    border-radius: 0;
}

body.page-home .home-gallery-item figcaption {
    padding: 1.25rem 0.65rem 0.55rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(to top, rgba(20, 12, 36, 0.72) 0%, transparent 100%);
}

body.page-home .home-gallery-item:hover img {
    transform: scale(1.015);
    transition-duration: 0.35s;
}

@media (min-width: 768px) {
    body.page-home .home-gallery-mosaic {
        grid-auto-rows: 11.5rem;
        gap: 0.7rem;
    }

    body.page-home .home-gallery-item--hero {
        grid-column: 1 / span 8;
        grid-row: 1 / span 2;
    }

    body.page-home .home-gallery-item--tall {
        grid-column: 9 / span 4;
        grid-row: 1 / span 2;
    }

    body.page-home .home-gallery-item:nth-child(3) {
        grid-column: 1 / span 3;
        grid-row: 3 / span 1;
    }

    body.page-home .home-gallery-item:nth-child(4) {
        grid-column: 4 / span 4;
        grid-row: 3 / span 1;
    }

    body.page-home .home-gallery-item--wide {
        grid-column: 8 / span 5;
        grid-row: 3 / span 1;
    }
}

@media (min-width: 1100px) {
    body.page-home .home-gallery-mosaic {
        grid-auto-rows: 15rem;
        gap: 0.85rem;
    }
}

@media (max-width: 767px) {
    body.page-home .home-gallery-mosaic {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 0.4rem;
    }

    body.page-home .home-gallery-item--hero {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 11;
    }

    body.page-home .home-gallery-item--tall {
        aspect-ratio: 3 / 4;
    }

    body.page-home .home-gallery-item:nth-child(3) {
        aspect-ratio: 1 / 1;
    }

    body.page-home .home-gallery-item:nth-child(4) {
        grid-column: 1 / -1;
        aspect-ratio: 21 / 10;
    }

    body.page-home .home-gallery-item--wide {
        grid-column: 1 / -1;
        aspect-ratio: 2.2 / 1;
    }
}

/* --------------------------------------------------------------------------
   About — editorial 60/40, timeline as secondary strip
   -------------------------------------------------------------------------- */

body.page-home .home-about-container {
    max-width: var(--container-wide);
}

body.page-home .home-about-visual {
    border-radius: 0;
}

body.page-home .home-about-visual > img {
    height: 240px;
    object-position: center 45%;
}

body.page-home .home-about-timeline {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 0.85rem 0;
    background: transparent;
    color: inherit;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    -webkit-overflow-scrolling: touch;
}

body.page-home .home-about-timeline li {
    flex: 1 1 0;
    min-width: 4.5rem;
    padding: 0 0.75rem;
    border-right: 1px solid var(--home-line);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

body.page-home .home-about-timeline li:first-child {
    padding-left: 0;
}

body.page-home .home-about-timeline li:last-child {
    border-right: none;
    padding-right: 0;
}

body.page-home .home-about-timeline span {
    color: var(--color-brand);
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}

body.page-home .home-about-copy {
    max-width: 28rem;
}

body.page-home .home-about-copy h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

body.page-home .home-about-copy p:not(.home-kicker) {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 900px) {
    body.page-home .home-about-layout {
        grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: end;
    }

    body.page-home .home-about-visual > img {
        height: clamp(360px, 38vw, 480px);
    }

    body.page-home .home-about-timeline {
        margin-top: 0.85rem;
        padding: 1rem 0;
    }

    body.page-home .home-about-timeline li {
        font-size: 0.8125rem;
        padding: 0 1rem;
    }

    body.page-home .home-about-timeline span {
        font-size: 0.9375rem;
    }

    body.page-home .home-about-copy {
        padding-bottom: 0.35rem;
    }
}

/* --------------------------------------------------------------------------
   Downloads — document rows
   -------------------------------------------------------------------------- */

body.page-home .home-docs-list {
    max-width: 40rem;
    border-top: 1px solid var(--home-line);
}

body.page-home .home-doc-row {
    display: grid;
    grid-template-columns: 1.75rem 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--home-line);
    color: inherit;
    text-decoration: none;
    min-width: 0;
    transition: color var(--transition), border-color var(--transition);
}

body.page-home .home-doc-row:hover {
    color: var(--color-brand);
    border-bottom-color: var(--color-brand);
}

body.page-home .home-doc-icon {
    display: flex;
    width: 1.35rem;
    height: 1.35rem;
    color: var(--color-accent);
}

body.page-home .home-doc-icon svg {
    width: 100%;
    height: 100%;
}

body.page-home .home-doc-title {
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--color-brand);
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-home .home-doc-type {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-home .home-doc-row:hover .home-doc-type {
    color: var(--color-accent-dark);
}

/* Animations: keep subtle */
body.page-home .reveal.is-visible,
body.page-home .reveal {
    transition-duration: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
    body.page-home .home-gallery-item:hover img,
    body.page-home .home-hero-product-frame img {
        transform: none;
    }
}

@media (max-width: 479px) {
    body.page-home .header-logo img {
        height: 40px;
    }

    body.page-home .home-hero-product-frame {
        width: min(100%, 270px);
    }

    body.page-home .home-hero-product {
        margin-bottom: -0.25rem;
    }

    body.page-home .home-hero-product-label {
        display: none;
    }

    body.page-home .home-about-visual > img {
        height: 200px;
    }
}

/* ==========================================================================
   Home Spacing Fix — vertical rhythm & compact sections (body.page-home)
   ========================================================================== */

body.page-home {
    --home-space-xs: 0.5rem;    /* 8 */
    --home-space-sm: 0.75rem;   /* 12 */
    --home-space-md: 1.25rem;   /* 20 */
    --home-space-lg: 1.75rem;   /* 28 */
    --home-space-xl: 2.5rem;    /* 40 */
    --home-space-2xl: 3.5rem;   /* 56 */
    --home-space-3xl: 4.5rem;   /* 72 */
    --home-space-section: 4.75rem; /* 76 desktop section pad */
    --home-space-section-sm: 3.25rem; /* 52 denser sections */
}

@media (max-width: 767px) {
    body.page-home {
        --home-space-section: 3rem;      /* 48 */
        --home-space-section-sm: 2.5rem; /* 40 */
        --home-space-3xl: 3rem;
        --home-space-2xl: 2.5rem;
    }
}

/* Neutralize oversized .section / legacy paddings on home only */
body.page-home .section {
    padding-top: var(--home-space-section);
    padding-bottom: var(--home-space-section);
}

body.page-home .home-benefits.section,
body.page-home .home-benefits {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}

body.page-home .home-applications.section,
body.page-home .home-applications {
    padding-top: var(--home-space-section);
    padding-bottom: var(--home-space-section);
}

body.page-home .home-system.section,
body.page-home .home-system {
    padding-top: var(--home-space-section);
    padding-bottom: var(--home-space-section);
}

body.page-home .home-proof.section,
body.page-home .home-proof {
    padding-top: var(--home-space-section);
    padding-bottom: var(--home-space-section);
}

body.page-home .home-gallery.section,
body.page-home .home-gallery {
    padding-top: var(--home-space-section);
    padding-bottom: var(--home-space-2xl);
}

body.page-home .home-about.section,
body.page-home .home-about {
    padding-top: var(--home-space-section);
    padding-bottom: var(--home-space-section);
}

body.page-home .home-downloads.section,
body.page-home .home-downloads {
    padding-top: var(--home-space-section-sm);
    padding-bottom: var(--home-space-section-sm);
}

/* Shared section head rhythm */
body.page-home .home-section-head {
    margin-bottom: var(--home-space-lg);
    max-width: 38rem;
}

body.page-home .home-section-head .home-kicker {
    margin-bottom: var(--home-space-xs);
}

body.page-home .home-section-head h2 {
    margin-bottom: 0;
}

body.page-home .home-section-lead {
    margin-top: var(--home-space-sm);
    margin-bottom: 0;
}

body.page-home .home-gallery .home-section-head,
body.page-home .home-applications .home-section-head,
body.page-home .home-downloads .home-section-head {
    margin-bottom: var(--home-space-md);
}

/* Container alignment: standard vs wide (photo only) */
body.page-home .container {
    max-width: var(--container-max);
}

@media (min-width: 1440px) {
    body.page-home .container {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

body.page-home .home-applications .container,
body.page-home .home-gallery .container,
body.page-home .home-about-container,
body.page-home .home-proof .container,
body.page-home .home-hero .container {
    max-width: var(--container-wide);
}

/* --------------------------------------------------------------------------
   Benefits — compact datasheet
   -------------------------------------------------------------------------- */

body.page-home .home-benefits-rail {
    padding-top: var(--home-space-sm);
    border-top-width: 2px;
}

@media (min-width: 900px) {
    body.page-home .home-benefits .home-section-head {
        margin-bottom: var(--home-space-md);
    }

    body.page-home .home-benefits-rail {
        padding-top: var(--home-space-md);
    }

    body.page-home .home-benefit {
        min-height: 0;
        padding: 0 var(--home-space-md) 0 0;
    }

    body.page-home .home-benefit:last-child {
        padding-right: 0;
    }

    body.page-home .home-benefit-num {
        margin-bottom: 0.5rem;
        font-size: 1.35rem;
    }

    body.page-home .home-benefit h3 {
        margin-bottom: 0.4rem;
        min-height: 2.75em;
        font-size: clamp(1.2rem, 1.5vw, 1.45rem);
        max-width: 12ch;
    }

    body.page-home .home-benefit p {
        font-size: 0.875rem;
        line-height: 1.4;
        max-width: 24ch;
    }
}

@media (max-width: 899px) {
    body.page-home .home-benefit {
        padding: 0.75rem 0;
        min-height: 0;
    }
}

/* --------------------------------------------------------------------------
   Applications — tighter intro → mosaic
   -------------------------------------------------------------------------- */

body.page-home .home-applications-mosaic {
    margin-top: 0;
}

/* --------------------------------------------------------------------------
   System — no stretch columns, compact products
   -------------------------------------------------------------------------- */

body.page-home .home-system-process {
    gap: var(--home-space-lg);
    align-items: start;
}

body.page-home .home-process-label {
    margin-bottom: var(--home-space-sm);
}

body.page-home .home-process-product {
    padding: var(--home-space-sm) 0;
    gap: var(--home-space-sm);
    align-items: center;
}

body.page-home .home-process-product img {
    width: 5.5rem;
    height: 5.5rem;
}

body.page-home .home-process-pair {
    gap: 0;
}

body.page-home .home-process-main {
    height: auto;
}

body.page-home .home-process-main-media img {
    height: 180px;
    min-height: 0;
}

body.page-home .home-process-main-body {
    padding: var(--home-space-md) var(--home-space-md) var(--home-space-lg);
}

body.page-home .home-process-main-body h3 {
    margin-bottom: var(--home-space-xs);
}

body.page-home .home-process-main-body p {
    margin-bottom: var(--home-space-md);
}

@media (min-width: 768px) {
    body.page-home .home-process-main {
        align-items: start;
    }

    body.page-home .home-process-main-media img {
        height: 200px;
        min-height: 0;
    }

    body.page-home .home-process-main-body {
        justify-content: flex-start;
        padding: var(--home-space-lg);
    }
}

@media (min-width: 1100px) {
    body.page-home .home-system-process {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.25fr);
        align-items: start;
        gap: 0;
        column-gap: 0;
        padding-top: var(--home-space-md);
        border-top: 1px solid var(--home-line);
    }

    body.page-home .home-process-step {
        padding-right: var(--home-space-md);
        border-right: none;
        height: auto;
        align-self: start;
    }

    body.page-home .home-process-step:not(:last-child) {
        box-shadow: inset -1px 0 0 var(--home-line);
    }

    body.page-home .home-process-step:last-child {
        padding-left: 2.5rem;
        padding-right: 0;
        border-right: none;
        box-shadow: none;
    }

    body.page-home .home-process-step:not(:last-child)::after {
        top: 0.45rem;
        right: -0.35rem;
        width: 0.7rem;
        height: 2px;
    }

    body.page-home .home-process-product {
        grid-template-columns: 5.5rem 1fr;
        text-align: left;
        padding: 0.55rem 0;
        gap: 0.75rem;
        border-bottom: 1px solid var(--home-line);
    }

    body.page-home .home-process-product img {
        width: 5.5rem;
        height: 5.5rem;
        margin: 0;
    }

    body.page-home .home-process-pair .home-process-product:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    body.page-home .home-process-main {
        grid-template-columns: 1fr;
        height: auto;
    }

    body.page-home .home-process-main-media img {
        height: 132px;
        min-height: 0;
    }

    body.page-home .home-process-main-body {
        padding: var(--home-space-md);
    }

    body.page-home .home-process-main-body p {
        margin-bottom: var(--home-space-sm);
        font-size: 0.875rem;
        line-height: 1.45;
    }
}

/* --------------------------------------------------------------------------
   Proof — less box padding
   -------------------------------------------------------------------------- */

body.page-home .home-proof-layout {
    gap: var(--home-space-2xl);
}

body.page-home .home-proof-cert {
    padding: var(--home-space-md) 0 var(--home-space-sm);
}

body.page-home .home-proof-cert + .home-proof-cert {
    margin-top: 0;
}

body.page-home .home-proof-specs > div {
    padding: 0.7rem 0;
}

@media (min-width: 1024px) {
    body.page-home .home-proof-layout {
        gap: var(--home-space-2xl);
        align-items: start;
    }

    body.page-home .home-proof-cert {
        padding: var(--home-space-lg) 0 var(--home-space-md);
    }
}

/* --------------------------------------------------------------------------
   Gallery — tighter mosaic + head
   -------------------------------------------------------------------------- */

body.page-home .home-gallery-mosaic {
    gap: 0.5rem;
}

@media (min-width: 768px) {
    body.page-home .home-gallery-mosaic {
        gap: 0.65rem;
        grid-auto-rows: 10.5rem;
    }
}

@media (min-width: 1100px) {
    body.page-home .home-gallery-mosaic {
        gap: 0.7rem;
        grid-auto-rows: 13rem;
    }
}

/* --------------------------------------------------------------------------
   About — top-aligned editorial, compact timeline
   -------------------------------------------------------------------------- */

body.page-home .home-about-layout {
    align-items: start;
    gap: var(--home-space-xl);
}

body.page-home .home-about-visual > img {
    height: 220px;
}

body.page-home .home-about-timeline {
    margin-top: var(--home-space-sm);
    padding: 0.65rem 0;
}

body.page-home .home-about-copy h2 {
    margin-bottom: var(--home-space-sm);
}

body.page-home .home-about-copy p:not(.home-kicker) {
    margin-bottom: var(--home-space-md);
}

@media (min-width: 900px) {
    body.page-home .home-about-layout {
        align-items: start;
        gap: var(--home-space-2xl);
    }

    body.page-home .home-about-visual > img {
        height: 340px;
    }

    body.page-home .home-about-timeline {
        margin-top: var(--home-space-sm);
        padding: 0.75rem 0;
    }

    body.page-home .home-about-timeline li {
        padding: 0 0.75rem;
    }

    body.page-home .home-about-copy {
        padding-top: 0.15rem;
        padding-bottom: 0;
    }
}

/* --------------------------------------------------------------------------
   Downloads — compact list
   -------------------------------------------------------------------------- */

body.page-home .home-doc-row {
    padding: 0.7rem 0;
    gap: 0.7rem;
}

body.page-home .site-footer {
    margin-top: 0;
    padding-top: 2.75rem;
}

body.page-home .site-footer .footer-grid {
    gap: var(--home-space-lg);
}

body.page-home .site-footer .footer-bottom {
    margin-top: var(--home-space-md);
    padding-top: var(--home-space-sm);
}

/* Mobile: keep readable density */
@media (max-width: 767px) {
    body.page-home .home-section-head {
        margin-bottom: var(--home-space-md);
    }

    body.page-home .home-process-product {
        grid-template-columns: 4.25rem 1fr;
        padding: 0.55rem 0;
    }

    body.page-home .home-process-product img {
        width: 4.25rem;
        height: 4.25rem;
    }

    body.page-home .home-process-main-media img {
        height: 160px;
    }
}

/* ==========================================================================
   Home — cell gutters: benefits rail + system process
   ========================================================================== */

@media (min-width: 900px) {
    body.page-home .home-benefits-rail {
        padding-top: 1.5rem;
    }

    body.page-home .home-benefit {
        padding: 0 2.5rem;
        border-right: 1px solid var(--home-line);
    }

    body.page-home .home-benefit:first-child {
        padding-left: 0;
    }

    body.page-home .home-benefit:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-home .home-benefit-num {
        margin-bottom: 0.65rem;
    }

    body.page-home .home-benefit h3 {
        margin-bottom: 0.55rem;
        max-width: 14ch;
    }
}

@media (min-width: 1100px) {
    body.page-home .home-system-process {
        column-gap: 0;
        padding-top: 1.5rem;
    }

    body.page-home .home-process-step {
        padding: 0 2.5rem;
        box-shadow: none;
        border-right: 1px solid var(--home-line);
    }

    body.page-home .home-process-step:first-child {
        padding-left: 0;
        padding-right: 2.5rem;
    }

    body.page-home .home-process-step:last-child {
        padding-left: 2.5rem;
        padding-right: 0;
        border-right: none;
        box-shadow: none;
    }

    body.page-home .home-process-step:not(:last-child) {
        box-shadow: none;
    }

    body.page-home .home-process-step:not(:last-child)::after {
        right: -0.15rem;
    }

    body.page-home .home-process-label {
        margin-bottom: 1.1rem;
    }

    body.page-home .home-process-step:first-child .home-process-product {
        border-bottom: none;
    }

    body.page-home .home-process-product {
        padding: 0.9rem 0;
        gap: 1.1rem;
    }

    body.page-home .home-process-pair {
        display: grid;
        gap: 0;
    }

    body.page-home .home-process-pair .home-process-product:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    body.page-home .home-process-main-body {
        padding: 1.25rem 1.5rem 1.4rem;
    }
}

/* ==========================================================================
   Internal Refresh 2.0 — Prodotti + Sea Flex (scoped)
   body.page-products / body.page-sea-flex only
   ========================================================================== */

body.page-products,
body.page-sea-flex {
    --pr-space-xs: 0.5rem;
    --pr-space-sm: 0.75rem;
    --pr-space-md: 1.25rem;
    --pr-space-lg: 1.75rem;
    --pr-space-xl: 2.5rem;
    --pr-space-2xl: 3.5rem;
    --pr-section: 4.75rem;
    --pr-line: rgba(47, 30, 77, 0.12);
    --pr-surface: #f3f1f6;
}

@media (max-width: 767px) {
    body.page-products,
    body.page-sea-flex {
        --pr-section: 3rem;
        --pr-space-2xl: 2.5rem;
    }
}

body.page-products .pr-kicker,
body.page-sea-flex .sf2-kicker {
    margin: 0 0 var(--pr-space-xs);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-sea-flex .sf2-kicker--dark {
    color: var(--color-accent);
}

body.page-products .pr-section-head,
body.page-sea-flex .sf2-section-head {
    margin-bottom: var(--pr-space-lg);
    max-width: 38rem;
}

body.page-products .pr-section-head h2,
body.page-sea-flex .sf2-section-head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    letter-spacing: -0.03em;
    color: var(--color-brand);
}

body.page-products .pr-section-lead,
body.page-sea-flex .sf2-section-lead {
    margin: var(--pr-space-sm) 0 0;
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.55;
}

body.page-sea-flex .sf2-section-head--inverse h2 {
    color: var(--color-text-inverse);
}

body.page-sea-flex .sf2-section-head--inverse p:not(.sf2-kicker) {
    color: rgba(245, 247, 250, 0.78);
}

body.page-products .pr-text-link,
body.page-sea-flex .sf2-hero-link {
    color: var(--color-brand);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 30, 77, 0.35);
}

body.page-products .pr-text-link:hover,
body.page-sea-flex .sf2-hero-link:hover {
    border-bottom-color: var(--color-brand);
}

/* --------------------------------------------------------------------------
   Prodotti — hero
   -------------------------------------------------------------------------- */

body.page-products .pr-hero {
    background: var(--pr-surface);
    padding: calc(var(--header-height) + 1.25rem) 0 var(--pr-space-2xl);
    border-bottom: 1px solid var(--pr-line);
}

body.page-products .pr-hero-inner {
    max-width: var(--container-wide);
}

body.page-products .pr-hero .breadcrumb {
    margin-bottom: var(--pr-space-lg);
}

body.page-products .pr-hero-grid {
    display: grid;
    gap: var(--pr-space-xl);
    align-items: end;
    min-width: 0;
    max-width: 100%;
}

body.page-products .pr-hero-copy {
    max-width: 34rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-products .pr-hero h1 {
    margin: 0 0 var(--pr-space-md);
    font-size: clamp(2.1rem, 4.5vw, 3.25rem);
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--color-brand);
    overflow-wrap: anywhere;
}

body.page-products .pr-hero-lead {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

body.page-products .pr-hero-system {
    min-width: 0;
}

body.page-products .pr-hero-stage {
    border-top: 2px solid var(--color-brand);
    padding-top: var(--pr-space-md);
}

body.page-products .pr-hero-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-bottom: var(--pr-space-md);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-products .pr-hero-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--pr-space-sm);
    min-width: 0;
}

body.page-products .pr-hero-main {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(20, 12, 36, 0.18));
}

body.page-products .pr-hero-caption {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
}

@media (min-width: 900px) {
    body.page-products .pr-hero {
        padding-bottom: 3.25rem;
        min-height: 0;
    }

    body.page-products .pr-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
        align-items: center;
    }

    body.page-products .pr-hero-products {
        align-items: center;
    }

    body.page-products .pr-hero-main {
        max-width: 380px;
    }

    body.page-products .pr-hero-flow {
        justify-content: center;
        width: 100%;
    }

    body.page-products .pr-hero-stage {
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --------------------------------------------------------------------------
   Prodotti — process rail
   -------------------------------------------------------------------------- */

body.page-products .pr-process.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
}

body.page-products .pr-process-rail {
    list-style: none;
    margin: 0;
    padding: var(--pr-space-lg) 0 0;
    display: grid;
    gap: 0;
    border-top: 2px solid var(--color-brand);
}

body.page-products .pr-process-step {
    padding: var(--pr-space-md) 0;
    border-bottom: 1px solid var(--pr-line);
    min-width: 0;
}

body.page-products .pr-process-num {
    display: block;
    margin-bottom: var(--pr-space-sm);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-brand);
    opacity: 0.4;
}

body.page-products .pr-process-step h3 {
    margin: 0 0 var(--pr-space-xs);
    font-size: 1.25rem;
    color: var(--color-brand);
}

body.page-products .pr-process-step p {
    margin: 0 0 var(--pr-space-sm);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    max-width: 32ch;
}

body.page-products .pr-process-step a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 107, 161, 0.35);
}

body.page-products .pr-process-step--main h3 {
    color: var(--color-accent-dark);
}

body.page-products .pr-process-note {
    margin: var(--pr-space-lg) 0 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    max-width: 40rem;
}

@media (min-width: 900px) {
    body.page-products .pr-process-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        padding-top: var(--pr-space-xl);
    }

    body.page-products .pr-process-step {
        padding: 0 2rem 0 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-products .pr-process-step:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-products .pr-process-step:not(:first-child) {
        padding-left: 2rem;
    }

    body.page-products .pr-process-num {
        font-size: 1.75rem;
        margin-bottom: var(--pr-space-md);
    }

    body.page-products .pr-process-step h3 {
        font-size: 1.45rem;
        margin-bottom: var(--pr-space-sm);
    }
}

/* --------------------------------------------------------------------------
   Prodotti — showcase Sea Flex + complements
   -------------------------------------------------------------------------- */

body.page-products .pr-showcase.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
    background: var(--pr-surface);
}

body.page-products .pr-sea {
    display: grid;
    gap: var(--pr-space-xl);
    margin-bottom: var(--pr-space-2xl);
    min-width: 0;
}

body.page-products .pr-sea-media {
    min-width: 0;
    overflow: clip;
}

body.page-products .pr-sea-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 40%;
}

body.page-products .pr-role {
    margin: 0 0 var(--pr-space-xs);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-products .pr-sea-body h3 {
    margin: 0 0 var(--pr-space-sm);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.03em;
    color: var(--color-brand);
}

body.page-products .pr-sea-body > p {
    margin: 0 0 var(--pr-space-md);
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 36rem;
}

body.page-products .pr-points {
    margin: 0 0 var(--pr-space-lg);
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--pr-line);
}

body.page-products .pr-points li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--pr-line);
    font-size: 0.9375rem;
    color: var(--color-brand);
}

body.page-products .pr-sea-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.5rem;
}

body.page-products .pr-complements {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--pr-line);
}

body.page-products .pr-comp {
    display: grid;
    grid-template-columns: 5rem 1fr;
    column-gap: var(--pr-space-md);
    row-gap: 0.35rem;
    padding: var(--pr-space-lg) 0;
    border-bottom: 1px solid var(--pr-line);
    min-width: 0;
}

body.page-products .pr-comp .pr-role {
    grid-column: 1 / -1;
}

body.page-products .pr-comp img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    grid-row: 2 / span 4;
}

body.page-products .pr-comp h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-brand);
}

body.page-products .pr-comp-role {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent-dark);
}

body.page-products .pr-comp > p:not(.pr-role):not(.pr-comp-role) {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

body.page-products .pr-comp .pr-text-link {
    justify-self: start;
    margin-top: 0.35rem;
}

@media (min-width: 900px) {
    body.page-products .pr-sea {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 3rem;
        align-items: center;
    }

    body.page-products .pr-sea-media img {
        height: 380px;
    }

    body.page-products .pr-complements {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid var(--pr-line);
    }

    body.page-products .pr-comp {
        grid-template-columns: 1fr;
        padding: var(--pr-space-xl) 2rem var(--pr-space-xl) 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-products .pr-comp:not(:first-child) {
        padding-left: 2rem;
    }

    body.page-products .pr-comp:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-products .pr-comp img {
        grid-row: auto;
        width: 6.5rem;
        height: 6.5rem;
        margin-bottom: var(--pr-space-sm);
    }
}

/* --------------------------------------------------------------------------
   Prodotti — guide + CTA
   -------------------------------------------------------------------------- */

body.page-products .pr-guide.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
}

body.page-products .pr-guide-rail {
    border-top: 1px solid var(--pr-line);
    max-width: 44rem;
}

body.page-products .pr-guide-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1fr);
    gap: 0.75rem 1rem;
    align-items: baseline;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--pr-line);
    min-width: 0;
}

body.page-products .pr-guide-need {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-products .pr-guide-arrow {
    color: var(--color-accent);
    font-weight: 700;
}

body.page-products .pr-guide-prod {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-brand);
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 479px) {
    body.page-products .pr-guide-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    body.page-products .pr-guide-arrow {
        display: none;
    }
}

body.page-products .pr-guide-row--accent .pr-guide-prod {
    color: var(--color-accent-dark);
}

/* ==========================================================================
   Sea Flex page
   ========================================================================== */

body.page-sea-flex .sf2-hero {
    position: relative;
    overflow: clip;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: calc(var(--header-height) + 1rem) 0 2.5rem;
    min-height: 0;
}

body.page-sea-flex .sf2-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.page-sea-flex .sf2-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

body.page-sea-flex .sf2-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(20, 12, 36, 0.96) 0%, rgba(20, 12, 36, 0.88) 42%, rgba(30, 21, 48, 0.45) 72%, rgba(30, 21, 48, 0.55) 100%),
        linear-gradient(to top, rgba(20, 12, 36, 0.5) 0%, transparent 40%);
}

body.page-sea-flex .sf2-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-wide);
}

body.page-sea-flex .sf2-hero .breadcrumb {
    margin-bottom: var(--pr-space-lg);
}

body.page-sea-flex .sf2-hero-grid {
    display: grid;
    gap: var(--pr-space-xl);
    align-items: end;
}

body.page-sea-flex .sf2-hero-copy {
    max-width: 34rem;
    min-width: 0;
}

body.page-sea-flex .sf2-hero h1 {
    margin: 0 0 var(--pr-space-md);
    font-size: clamp(3rem, 8vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 0.92;
}

body.page-sea-flex .sf2-hero-lead {
    margin: 0 0 var(--pr-space-lg);
    font-size: 1.0625rem;
    line-height: 1.55;
    color: rgba(245, 247, 250, 0.85);
    max-width: 30rem;
}

body.page-sea-flex .sf2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.35rem;
    margin-bottom: var(--pr-space-lg);
}

body.page-sea-flex .sf2-hero-actions .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

body.page-sea-flex .sf2-hero-link {
    color: var(--color-text-inverse);
    border-bottom-color: rgba(245, 247, 250, 0.45);
}

body.page-sea-flex .sf2-hero-link:hover {
    border-bottom-color: var(--color-text-inverse);
}

body.page-sea-flex .sf2-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-sea-flex .sf2-hero-meta li {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.78);
}

body.page-sea-flex .sf2-hero-product {
    display: flex;
    justify-content: center;
    min-width: 0;
}

body.page-sea-flex .sf2-hero-product-frame {
    position: relative;
    width: min(100%, 280px);
}

body.page-sea-flex .sf2-hero-plinth {
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 2%;
    height: 14%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
    filter: blur(7px);
    z-index: 0;
}

body.page-sea-flex .sf2-hero-product-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

@media (min-width: 900px) {
    body.page-sea-flex .sf2-hero {
        padding-bottom: 3rem;
    }

    body.page-sea-flex .sf2-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        gap: 2.5rem;
        align-items: end;
    }

    body.page-sea-flex .sf2-hero-product {
        justify-content: flex-end;
        margin-bottom: -0.5rem;
    }

    body.page-sea-flex .sf2-hero-product-frame {
        width: min(100%, 360px);
    }

    body.page-sea-flex .sf2-hero-veil {
        background:
            linear-gradient(100deg, rgba(20, 12, 36, 0.97) 0%, rgba(20, 12, 36, 0.9) 38%, rgba(30, 21, 48, 0.35) 65%, rgba(30, 21, 48, 0.25) 100%),
            linear-gradient(to top, rgba(20, 12, 36, 0.45) 0%, transparent 35%);
    }
}

/* Description claim */
body.page-sea-flex .sf2-desc.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
}

body.page-sea-flex .sf2-desc-layout {
    display: grid;
    gap: var(--pr-space-lg);
    max-width: var(--container-max);
}

body.page-sea-flex .sf2-claim {
    margin: 0;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-brand);
    max-width: 16ch;
}

body.page-sea-flex .sf2-desc-copy p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 36rem;
}

@media (min-width: 900px) {
    body.page-sea-flex .sf2-desc-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 3rem;
        align-items: start;
    }
}

/* Features rail */
body.page-sea-flex .sf2-features.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
    background: var(--pr-surface);
}

body.page-sea-flex .sf2-feature-rail {
    display: grid;
    gap: 0;
    border-top: 2px solid var(--color-brand);
}

body.page-sea-flex .sf2-feature {
    padding: var(--pr-space-lg) 0;
    border-bottom: 1px solid var(--pr-line);
    min-width: 0;
}

body.page-sea-flex .sf2-feature-num {
    display: block;
    margin-bottom: var(--pr-space-sm);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-brand);
    opacity: 0.4;
}

body.page-sea-flex .sf2-feature h3 {
    margin: 0 0 var(--pr-space-md);
    font-size: 1.25rem;
    color: var(--color-brand);
}

body.page-sea-flex .sf2-feature ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-sea-flex .sf2-feature li {
    padding: 0.45rem 0;
    border-top: 1px solid var(--pr-line);
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

@media (min-width: 900px) {
    body.page-sea-flex .sf2-feature-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: var(--pr-space-xl);
    }

    body.page-sea-flex .sf2-feature {
        padding: 0 2rem 0 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-sea-flex .sf2-feature:not(:first-child) {
        padding-left: 2rem;
    }

    body.page-sea-flex .sf2-feature:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-sea-flex .sf2-feature-num {
        font-size: 1.65rem;
        margin-bottom: var(--pr-space-md);
    }

    body.page-sea-flex .sf2-feature h3 {
        font-size: 1.35rem;
        min-height: 2.6em;
    }
}

/* Applications mosaic */
body.page-sea-flex .sf2-apps.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
}

body.page-sea-flex .sf2-apps-container {
    max-width: var(--container-wide);
}

body.page-sea-flex .sf2-mosaic {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
}

body.page-sea-flex .sf2-mosaic-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #140c24;
    min-width: 0;
    min-height: 0;
}

body.page-sea-flex .sf2-mosaic-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

body.page-sea-flex .sf2-mosaic-item--hero img {
    object-position: center 40%;
}

body.page-sea-flex .sf2-mosaic-item--tall img {
    object-position: center 28%;
}

body.page-sea-flex .sf2-mosaic-item:nth-child(3) img {
    object-position: center 45%;
}

body.page-sea-flex .sf2-mosaic-item:nth-child(7) img {
    object-position: center 35%;
}

body.page-sea-flex .sf2-mosaic-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 0.65rem 0.55rem;
    background: linear-gradient(to top, rgba(20, 12, 36, 0.78) 0%, transparent 100%);
    color: var(--color-text-inverse);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-sea-flex .sf2-mosaic-item--hero {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

body.page-sea-flex .sf2-mosaic-item--tall {
    aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
    body.page-sea-flex .sf2-mosaic {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: minmax(0, 11.5rem);
        gap: 0.65rem;
    }

    body.page-sea-flex .sf2-mosaic-item,
    body.page-sea-flex .sf2-mosaic-item:not(.sf2-mosaic-item--hero):not(.sf2-mosaic-item--tall) {
        height: 100%;
        aspect-ratio: auto;
    }

    body.page-sea-flex .sf2-mosaic-item--hero {
        grid-column: 1 / span 8;
        grid-row: 1 / span 2;
        aspect-ratio: auto;
    }

    body.page-sea-flex .sf2-mosaic-item--tall {
        grid-column: 9 / span 4;
        grid-row: 1 / span 2;
        aspect-ratio: auto;
    }

    body.page-sea-flex .sf2-mosaic-item:nth-child(3) {
        grid-column: 1 / span 4;
        grid-row: 3;
    }

    body.page-sea-flex .sf2-mosaic-item:nth-child(4) {
        grid-column: 5 / span 4;
        grid-row: 3;
    }

    body.page-sea-flex .sf2-mosaic-item:nth-child(5) {
        grid-column: 9 / span 4;
        grid-row: 3;
    }

    body.page-sea-flex .sf2-mosaic-item:nth-child(6) {
        grid-column: 1 / span 6;
        grid-row: 4;
    }

    body.page-sea-flex .sf2-mosaic-item:nth-child(7) {
        grid-column: 7 / span 6;
        grid-row: 4;
    }
}

@media (min-width: 1100px) {
    body.page-sea-flex .sf2-mosaic {
        grid-auto-rows: minmax(0, 13rem);
    }
}

@media (max-width: 767px) {
    body.page-sea-flex .sf2-mosaic-item:not(.sf2-mosaic-item--hero):not(.sf2-mosaic-item--tall) {
        aspect-ratio: 4 / 3;
    }

    body.page-sea-flex .sf2-mosaic-item:nth-child(6),
    body.page-sea-flex .sf2-mosaic-item:nth-child(7) {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
    }
}

/* Proof / specs */
body.page-sea-flex .sf2-proof.section {
    padding-top: var(--pr-section);
    padding-bottom: var(--pr-section);
    background: var(--pr-surface);
}

body.page-sea-flex .sf2-proof-layout {
    display: grid;
    gap: var(--pr-space-2xl);
    max-width: var(--container-wide);
}

body.page-sea-flex .sf2-cert {
    padding: var(--pr-space-md) 0;
    border-top: 3px solid var(--color-brand);
}

body.page-sea-flex .sf2-cert-name {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: var(--color-brand);
}

body.page-sea-flex .sf2-cert-code {
    margin: 0.15rem 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    color: var(--color-accent-dark);
}

body.page-sea-flex .sf2-cert-note {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    max-width: 20rem;
}

body.page-sea-flex .sf2-specs {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--pr-line);
}

body.page-sea-flex .sf2-specs > div {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.2rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--pr-line);
}

body.page-sea-flex .sf2-specs dt {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-sea-flex .sf2-specs dd {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-brand);
    line-height: 1.35;
}

body.page-sea-flex .sf2-spec-value {
    display: block;
    font-size: clamp(1.45rem, 2.8vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

@media (min-width: 1024px) {
    body.page-sea-flex .sf2-proof-layout {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Usage rail */
body.page-sea-flex .sf2-usage.section {
    padding-top: clamp(3rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

body.page-sea-flex .sf2-usage .sf2-section-head {
    max-width: none;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.page-sea-flex .sf2-usage-rail {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--pr-line);
}

body.page-sea-flex .sf2-usage-rail li {
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--pr-line);
}

body.page-sea-flex .sf2-usage-rail span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-brand);
    opacity: 0.45;
    letter-spacing: 0.02em;
}

body.page-sea-flex .sf2-usage-rail p {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--color-brand);
    max-width: none;
}

@media (min-width: 900px) {
    body.page-sea-flex .sf2-usage-rail {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        border-top: 2px solid var(--color-brand);
        padding-top: clamp(1.5rem, 2.5vw, 2rem);
    }

    body.page-sea-flex .sf2-usage-rail li {
        display: block;
        padding: 0 clamp(1rem, 1.8vw, 1.75rem) 0 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-sea-flex .sf2-usage-rail li:not(:first-child) {
        padding-left: clamp(1rem, 1.8vw, 1.75rem);
    }

    body.page-sea-flex .sf2-usage-rail li:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-sea-flex .sf2-usage-rail span {
        display: block;
        margin-bottom: 0.875rem;
        font-size: clamp(1.625rem, 2.2vw, 2rem);
        opacity: 0.5;
    }

    body.page-sea-flex .sf2-usage-rail p {
        font-size: clamp(1rem, 1.2vw, 1.125rem);
        line-height: 1.4;
        max-width: none;
    }
}

/* Support chapter — FAQ + docs */
body.page-sea-flex .sf2-section-head--wide {
    max-width: none;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.page-sea-flex .sf2-support.section {
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    background: var(--pr-surface);
}

body.page-sea-flex .sf2-support-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

body.page-sea-flex .sf2-support-subhead {
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    letter-spacing: -0.02em;
    color: var(--color-brand);
}

body.page-sea-flex .sf2-faq-list {
    border-top: 1px solid var(--pr-line);
}

body.page-sea-flex .sf2-faq-item {
    border-bottom: 1px solid var(--pr-line);
}

body.page-sea-flex .sf2-faq-item h3 {
    margin: 0;
}

body.page-sea-flex .sf2-faq-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    column-gap: 0.75rem;
    align-items: center;
    min-height: 3.75rem;
    padding: 0.85rem 2rem 0.85rem 0;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    color: var(--color-brand);
    cursor: pointer;
    position: relative;
}

body.page-sea-flex .sf2-faq-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

body.page-sea-flex .sf2-faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
}

body.page-sea-flex .sf2-faq-trigger::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-accent);
}

body.page-sea-flex .sf2-faq-trigger[aria-expanded="true"]::after {
    content: "−";
}

body.page-sea-flex .sf2-faq-panel {
    padding: 0 0 1.15rem 3rem;
}

body.page-sea-flex .sf2-faq-panel p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-size: 1rem;
    max-width: none;
}

body.page-sea-flex .sf2-docs-list {
    border-top: 1px solid var(--pr-line);
    max-width: none;
}

body.page-sea-flex .sf2-doc-row {
    display: grid;
    grid-template-columns: 1.75rem 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--pr-line);
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

body.page-sea-flex .sf2-doc-row:hover {
    border-bottom-color: var(--color-brand);
}

body.page-sea-flex .sf2-doc-icon {
    display: flex;
    width: 1.35rem;
    height: 1.35rem;
    color: var(--color-accent);
}

body.page-sea-flex .sf2-doc-icon svg {
    width: 100%;
    height: 100%;
}

body.page-sea-flex .sf2-doc-title {
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--color-brand);
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-sea-flex .sf2-doc-type {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

@media (min-width: 900px) {
    body.page-sea-flex .sf2-support-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: clamp(2.5rem, 5vw, 4rem);
        align-items: start;
    }
}

/* Complementary — system narrative */
body.page-sea-flex .sf2-comp.section {
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(2rem, 3.5vw, 3rem);
    background: var(--color-bg);
}

body.page-sea-flex .sf2-system-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
    padding-bottom: clamp(1rem, 2vw, 1.25rem);
    border-bottom: 1px solid var(--pr-line);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-sea-flex .sf2-system-arrow {
    color: var(--color-accent);
    font-weight: 400;
    opacity: 0.7;
}

body.page-sea-flex .sf2-system-dest {
    color: var(--color-brand);
}

body.page-sea-flex .sf2-comp-rail {
    display: grid;
    gap: 0;
    border-top: 2px solid var(--color-brand);
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.page-sea-flex .sf2-comp-item {
    display: grid;
    grid-template-columns: auto 5rem 1fr;
    grid-template-rows: auto auto auto;
    column-gap: var(--pr-space-md);
    row-gap: 0.25rem;
    padding: var(--pr-space-md) 0;
    border-bottom: 1px solid var(--pr-line);
    color: inherit;
    text-decoration: none;
    min-width: 0;
    align-items: center;
}

body.page-sea-flex .sf2-comp-num {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    padding-top: 0.15rem;
}

body.page-sea-flex .sf2-comp-item img {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

body.page-sea-flex .sf2-comp-role {
    grid-column: 3;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-sea-flex .sf2-comp-item strong {
    grid-column: 3;
    color: var(--color-brand);
    font-size: 1.125rem;
}

body.page-sea-flex .sf2-comp-item em {
    grid-column: 3;
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

body.page-sea-flex .sf2-comp-item:hover strong {
    color: var(--color-accent-dark);
}

@media (min-width: 900px) {
    body.page-sea-flex .sf2-comp-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    body.page-sea-flex .sf2-comp-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 clamp(1.25rem, 2vw, 2rem) 0 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-sea-flex .sf2-comp-item:not(:first-child) {
        padding-left: clamp(1.25rem, 2vw, 2rem);
    }

    body.page-sea-flex .sf2-comp-item:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-sea-flex .sf2-comp-num {
        margin-bottom: 0.5rem;
        padding-top: 0;
    }

    body.page-sea-flex .sf2-comp-item img {
        width: clamp(6.5rem, 8vw, 8.5rem);
        height: clamp(6.5rem, 8vw, 8.5rem);
        margin-bottom: var(--pr-space-sm);
    }

    body.page-sea-flex .sf2-comp-item strong {
        font-size: 1.1875rem;
    }
}

@media (max-width: 479px) {
    body.page-products .pr-hero-main {
        max-width: 260px;
    }

    body.page-sea-flex .sf2-hero h1 {
        font-size: clamp(2.75rem, 14vw, 3.5rem);
    }

    body.page-sea-flex .sf2-hero-product-frame {
        width: min(100%, 240px);
    }
}

/* ==========================================================================
   Internal Refresh 2.0 — Complementary products (scoped)
   body.page-consolidante / body.page-butilegp / body.page-rinfo55
   ========================================================================== */

body.page-consolidante,
body.page-butilegp,
body.page-rinfo55 {
    --pr-space-xs: 0.5rem;
    --pr-space-sm: 0.75rem;
    --pr-space-md: 1.25rem;
    --pr-space-lg: 1.75rem;
    --pr-space-xl: 2.5rem;
    --pr-space-2xl: 3.5rem;
    --pr-section: 4.75rem;
    --pr-line: rgba(47, 30, 77, 0.12);
    --pr-surface: #f3f1f6;
}

@media (max-width: 767px) {
    body.page-consolidante,
    body.page-butilegp,
    body.page-rinfo55 {
        --pr-section: 3rem;
        --pr-space-2xl: 2.5rem;
    }
}

/* ---- Shared tokens / type ---- */
body.page-consolidante .cp-kicker,
body.page-butilegp .cp-kicker,
body.page-rinfo55 .cp-kicker {
    margin: 0 0 var(--pr-space-xs);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-consolidante .cp-kicker--light,
body.page-butilegp .cp-kicker--light,
body.page-rinfo55 .cp-kicker--light {
    color: rgba(0, 180, 230, 0.95);
}

body.page-consolidante .cp-section-head,
body.page-butilegp .cp-section-head,
body.page-rinfo55 .cp-section-head {
    margin-bottom: var(--pr-space-lg);
}

body.page-consolidante .cp-section-head h2,
body.page-butilegp .cp-section-head h2,
body.page-rinfo55 .cp-section-head h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-brand);
}

body.page-consolidante .cp-section-lead,
body.page-butilegp .cp-section-lead,
body.page-rinfo55 .cp-section-lead {
    margin: var(--pr-space-sm) 0 0;
    max-width: 36rem;
    color: var(--color-text-muted);
    font-size: 0.975rem;
    line-height: 1.55;
}

body.page-consolidante .cp-highlight,
body.page-butilegp .cp-highlight,
body.page-rinfo55 .cp-highlight {
    color: var(--color-brand);
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: -0.02em;
}

body.page-consolidante .cp-hero-link,
body.page-butilegp .cp-hero-link,
body.page-rinfo55 .cp-hero-link {
    color: var(--color-brand);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 30, 77, 0.25);
}

body.page-consolidante .cp-hero-link:hover,
body.page-butilegp .cp-hero-link:hover,
body.page-rinfo55 .cp-hero-link:hover {
    border-bottom-color: var(--color-brand);
}

body.page-butilegp .cp-hero--photo .cp-hero-link,
body.page-rinfo55 .cp-hero--mesh .cp-hero-link {
    color: var(--color-text-inverse);
    border-bottom-color: rgba(245, 247, 250, 0.45);
}

body.page-butilegp .cp-hero--photo .cp-hero-link:hover,
body.page-rinfo55 .cp-hero--mesh .cp-hero-link:hover {
    border-bottom-color: var(--color-text-inverse);
}

/* ---- Hero shared ---- */
body.page-consolidante .cp-hero,
body.page-butilegp .cp-hero,
body.page-rinfo55 .cp-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

body.page-consolidante .cp-hero-inner,
body.page-butilegp .cp-hero-inner,
body.page-rinfo55 .cp-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: var(--pr-space-xl);
}

body.page-consolidante .cp-hero .breadcrumb,
body.page-butilegp .cp-hero .breadcrumb,
body.page-rinfo55 .cp-hero .breadcrumb {
    margin-bottom: var(--pr-space-md);
}

body.page-consolidante .cp-hero-grid,
body.page-butilegp .cp-hero-grid,
body.page-rinfo55 .cp-hero-grid {
    display: grid;
    gap: var(--pr-space-lg);
    align-items: end;
}

body.page-consolidante .cp-hero-copy,
body.page-butilegp .cp-hero-copy,
body.page-rinfo55 .cp-hero-copy {
    min-width: 0;
    max-width: 34rem;
}

body.page-consolidante .cp-hero h1,
body.page-butilegp .cp-hero h1,
body.page-rinfo55 .cp-hero h1 {
    margin: 0 0 var(--pr-space-sm);
    font-size: clamp(2.6rem, 7vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    color: var(--color-brand);
}

body.page-butilegp .cp-hero h1,
body.page-rinfo55 .cp-hero h1 {
    color: var(--color-text-inverse);
}

body.page-consolidante .cp-hero-lead,
body.page-butilegp .cp-hero-lead,
body.page-rinfo55 .cp-hero-lead {
    margin: 0 0 var(--pr-space-md);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    max-width: 32rem;
}

body.page-butilegp .cp-hero-lead,
body.page-rinfo55 .cp-hero-lead {
    color: rgba(245, 247, 250, 0.88);
}

body.page-consolidante .cp-hero-actions,
body.page-butilegp .cp-hero-actions,
body.page-rinfo55 .cp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.5rem;
}

body.page-consolidante .cp-hero-product,
body.page-butilegp .cp-hero-product,
body.page-rinfo55 .cp-hero-product {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
}

body.page-consolidante .cp-hero-product img,
body.page-butilegp .cp-hero-product img,
body.page-rinfo55 .cp-hero-product img {
    width: min(100%, 280px);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(20, 12, 40, 0.22));
}

@media (min-width: 900px) {
    body.page-consolidante .cp-hero-inner,
    body.page-butilegp .cp-hero-inner,
    body.page-rinfo55 .cp-hero-inner {
        padding-top: calc(var(--header-height) + 1.15rem);
        padding-bottom: 2.75rem;
    }

    body.page-consolidante .cp-hero-grid,
    body.page-butilegp .cp-hero-grid,
    body.page-rinfo55 .cp-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem;
        align-items: center;
        min-height: 0;
    }

    body.page-consolidante .cp-hero-product img,
    body.page-butilegp .cp-hero-product img,
    body.page-rinfo55 .cp-hero-product img {
        width: min(100%, 340px);
    }

    body.page-rinfo55 .cp-hero-product--large img {
        width: min(100%, 400px);
    }
}

@media (max-width: 899px) {
    body.page-consolidante .cp-hero-inner,
    body.page-butilegp .cp-hero-inner,
    body.page-rinfo55 .cp-hero-inner {
        padding-bottom: var(--pr-space-lg);
    }

    body.page-consolidante .cp-hero-grid,
    body.page-butilegp .cp-hero-grid,
    body.page-rinfo55 .cp-hero-grid {
        gap: var(--pr-space-md);
    }

    body.page-consolidante .cp-hero-lead,
    body.page-butilegp .cp-hero-lead,
    body.page-rinfo55 .cp-hero-lead {
        margin-bottom: var(--pr-space-sm);
        font-size: 0.975rem;
    }

    body.page-consolidante .cp-hero-product,
    body.page-butilegp .cp-hero-product,
    body.page-rinfo55 .cp-hero-product {
        margin-top: 0.25rem;
    }
}

@media (max-width: 479px) {
    body.page-consolidante .cp-hero h1,
    body.page-butilegp .cp-hero h1,
    body.page-rinfo55 .cp-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.1rem);
    }

    body.page-consolidante .cp-hero-product img,
    body.page-butilegp .cp-hero-product img,
    body.page-rinfo55 .cp-hero-product img {
        width: min(100%, 236px);
    }
}

/* ---- Hero: Consolidante (light / prepare) ---- */
body.page-consolidante .cp-hero--light {
    background:
        linear-gradient(135deg, rgba(0, 107, 161, 0.07) 0%, transparent 42%),
        linear-gradient(180deg, #f7f5fa 0%, #efeaf6 55%, #e8eef4 100%);
    border-bottom: 1px solid var(--pr-line);
    overflow: visible;
}

/* ---- Hero: ButileGP (photo / seal) ---- */
body.page-butilegp .cp-hero--photo {
    color: var(--color-text-inverse);
    min-height: 0;
}

body.page-butilegp .cp-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.page-butilegp .cp-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

body.page-butilegp .cp-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(24, 14, 42, 0.88) 0%, rgba(24, 14, 42, 0.62) 48%, rgba(24, 14, 42, 0.4) 100%),
        linear-gradient(0deg, rgba(24, 14, 42, 0.55) 0%, transparent 40%);
}

body.page-butilegp .cp-hero--photo .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

body.page-butilegp .cp-hero--photo .btn-primary:hover {
    background: #e8ecf2;
    border-color: #e8ecf2;
}

body.page-butilegp .cp-hero-product img {
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}

/* ---- Hero: Rinfo55 (mesh / reinforce) ---- */
body.page-rinfo55 .cp-hero--mesh {
    background: linear-gradient(145deg, #2a1848 0%, #3a255f 48%, #1f3a55 100%);
    color: var(--color-text-inverse);
}

body.page-rinfo55 .cp-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/assets/images/rinfo55.png");
    background-repeat: no-repeat;
    background-position: 115% 55%;
    background-size: min(70vw, 640px);
    opacity: 0.14;
    filter: contrast(1.15) brightness(1.2);
    pointer-events: none;
}

body.page-rinfo55 .cp-hero--mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 11px,
            rgba(245, 247, 250, 0.035) 11px,
            rgba(245, 247, 250, 0.035) 12px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 11px,
            rgba(245, 247, 250, 0.035) 11px,
            rgba(245, 247, 250, 0.035) 12px
        );
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}

body.page-rinfo55 .cp-hero--mesh .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-brand);
    border-color: var(--color-text-inverse);
}

body.page-rinfo55 .cp-hero--mesh .btn-primary:hover {
    background: #e8ecf2;
    border-color: #e8ecf2;
}

body.page-rinfo55 .cp-hero-product img {
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.4));
}

@media (max-width: 899px) {
    body.page-rinfo55 .cp-hero-mesh {
        background-position: 90% 20%;
        background-size: min(90vw, 420px);
        opacity: 0.1;
    }
}

/* ---- Description / claim ---- */
body.page-consolidante .cp-desc,
body.page-butilegp .cp-desc,
body.page-rinfo55 .cp-desc {
    padding-top: 3.75rem;
    padding-bottom: 3.25rem;
    background: #fff;
}

body.page-consolidante .cp-desc-layout,
body.page-butilegp .cp-desc-layout,
body.page-rinfo55 .cp-desc-layout {
    display: grid;
    gap: var(--pr-space-xl);
    max-width: var(--container-wide);
}

body.page-consolidante .cp-claim,
body.page-butilegp .cp-claim,
body.page-rinfo55 .cp-claim {
    margin: 0 0 var(--pr-space-md);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--color-brand);
}

body.page-consolidante .cp-keywords,
body.page-butilegp .cp-keywords,
body.page-rinfo55 .cp-keywords {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.35rem;
}

body.page-consolidante .cp-keywords li,
body.page-butilegp .cp-keywords li,
body.page-rinfo55 .cp-keywords li {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(0, 107, 161, 0.35);
}

body.page-consolidante .cp-desc-copy p,
body.page-butilegp .cp-desc-copy p,
body.page-rinfo55 .cp-desc-copy p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 34rem;
}

@media (min-width: 900px) {
    body.page-consolidante .cp-desc-layout,
    body.page-butilegp .cp-desc-layout,
    body.page-rinfo55 .cp-desc-layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.5rem;
        align-items: end;
    }
}

@media (max-width: 767px) {
    body.page-consolidante .cp-desc,
    body.page-butilegp .cp-desc,
    body.page-rinfo55 .cp-desc {
        padding-top: 2.5rem;
        padding-bottom: 2.25rem;
    }
}

/* ---- Chapters (rhythm polish) ---- */
body.page-consolidante .section,
body.page-butilegp .section,
body.page-rinfo55 .section {
    padding: 0;
}

body.page-consolidante .cp-chapter,
body.page-butilegp .cp-chapter,
body.page-rinfo55 .cp-chapter {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

body.page-consolidante .cp-chapter--process,
body.page-butilegp .cp-chapter--process,
body.page-rinfo55 .cp-chapter--process {
    background: var(--pr-surface);
}

body.page-consolidante .cp-chapter--data {
    background: #eef1f5;
}

body.page-butilegp .cp-chapter--data-dark {
    background: #231733;
    color: var(--color-text-inverse);
}

body.page-rinfo55 .cp-chapter--mesh {
    position: relative;
    isolation: isolate;
    background: #f0eef4;
}

body.page-rinfo55 .cp-chapter--mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/assets/images/rinfo55.png");
    background-repeat: no-repeat;
    background-position: 108% 18%;
    background-size: min(52vw, 520px);
    opacity: 0.045;
    pointer-events: none;
}

body.page-rinfo55 .cp-chapter--mesh > .container {
    position: relative;
    z-index: 1;
}

body.page-consolidante .cp-block + .cp-block,
body.page-butilegp .cp-block + .cp-block,
body.page-rinfo55 .cp-block + .cp-block {
    margin-top: 2.75rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--pr-line);
}

body.page-butilegp .cp-chapter--data-dark .cp-block + .cp-block {
    border-top-color: rgba(245, 247, 250, 0.14);
}

body.page-consolidante .cp-section-head,
body.page-butilegp .cp-section-head,
body.page-rinfo55 .cp-section-head {
    margin-bottom: 1.25rem;
}

body.page-consolidante .cp-section-head--compact,
body.page-butilegp .cp-section-head--compact,
body.page-rinfo55 .cp-section-head--compact {
    margin-bottom: 1rem;
}

body.page-butilegp .cp-chapter--data-dark .cp-section-head h2,
body.page-butilegp .cp-chapter--data-dark .cp-support-head h2,
body.page-butilegp .cp-chapter--data-dark .cp-specs-intro h2 {
    color: var(--color-text-inverse);
}

body.page-butilegp .cp-chapter--data-dark .cp-section-lead,
body.page-butilegp .cp-chapter--data-dark .cp-kicker {
    color: rgba(0, 180, 230, 0.95);
}

body.page-butilegp .cp-chapter--data-dark .cp-section-lead {
    color: rgba(245, 247, 250, 0.72);
}

@media (max-width: 767px) {
    body.page-consolidante .cp-chapter,
    body.page-butilegp .cp-chapter,
    body.page-rinfo55 .cp-chapter {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    body.page-consolidante .cp-block + .cp-block,
    body.page-butilegp .cp-block + .cp-block,
    body.page-rinfo55 .cp-block + .cp-block {
        margin-top: 2rem;
        padding-top: 1.75rem;
    }
}

/* Visual break — complementary product pages */
body.page-consolidante .cp-visual-break,
body.page-butilegp .cp-visual-break,
body.page-rinfo55 .cp-visual-break {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

body.page-consolidante .cp-visual-break {
    background: #fff;
}

body.page-butilegp .cp-visual-break--wide {
    padding: 0;
    background: #1a1228;
}

body.page-rinfo55 .cp-visual-break--material {
    background: #e8e4ee;
}

body.page-consolidante .cp-visual-break-inner,
body.page-rinfo55 .cp-visual-break-inner {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

body.page-consolidante .cp-visual-break-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

body.page-rinfo55 .cp-visual-break-inner--material {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

body.page-consolidante .cp-visual-break-media,
body.page-rinfo55 .cp-visual-break-media {
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
}

body.page-consolidante .cp-visual-break-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 42%;
}

body.page-butilegp .cp-visual-break-figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

body.page-butilegp .cp-visual-break-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    max-height: clamp(14rem, 34vw, 22rem);
    object-fit: cover;
    object-position: center 38%;
    filter: brightness(0.78) contrast(1.04);
}

body.page-butilegp .cp-visual-break-caption {
    position: absolute;
    inset: auto 0 0 0;
    margin: 0;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 4vw, 2.5rem);
    background: linear-gradient(to top, rgba(26, 18, 40, 0.92) 0%, rgba(26, 18, 40, 0.45) 70%, transparent 100%);
    color: var(--color-text-inverse);
}

body.page-butilegp .cp-visual-break-caption .cp-kicker {
    margin: 0 0 0.35rem;
    color: rgba(245, 247, 250, 0.72);
}

body.page-butilegp .cp-visual-break-caption p:last-child {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

body.page-rinfo55 .cp-visual-break-media--mesh {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(12rem, 28vw, 18rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(145deg, #f7f5fa 0%, #ddd6e8 100%);
}

body.page-rinfo55 .cp-visual-break-media--mesh img {
    display: block;
    width: min(100%, 28rem);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
}

body.page-consolidante .cp-visual-break-copy h2,
body.page-rinfo55 .cp-visual-break-copy h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    letter-spacing: -0.03em;
    color: var(--color-brand);
    line-height: 1.15;
}

body.page-consolidante .cp-visual-break-copy p,
body.page-rinfo55 .cp-visual-break-copy p {
    margin: 0;
    font-size: 0.975rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

body.page-consolidante .cp-visual-break-copy p + p {
    margin-top: 1rem;
}

body.page-consolidante .cp-visual-break-link {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(35, 23, 51, 0.25);
    transition: border-color 0.2s ease, color 0.2s ease;
}

body.page-consolidante .cp-visual-break-link:hover {
    color: var(--color-brand-dark, #1a1228);
    border-bottom-color: currentColor;
}

@media (max-width: 767px) {
    body.page-consolidante .cp-visual-break-inner,
    body.page-rinfo55 .cp-visual-break-inner--material {
        grid-template-columns: minmax(0, 1fr);
    }

    body.page-consolidante .cp-visual-break-media img {
        aspect-ratio: 16 / 9;
        max-height: 14rem;
    }

    body.page-butilegp .cp-visual-break-figure img {
        aspect-ratio: 16 / 9;
        max-height: 12rem;
    }

    body.page-rinfo55 .cp-visual-break-inner--material {
        gap: 1.25rem;
    }

    body.page-rinfo55 .cp-visual-break-media--mesh {
        min-height: 10rem;
        padding: 0.75rem;
    }

    body.page-rinfo55 .cp-visual-break-media--mesh img {
        width: min(100%, 16rem);
    }
}

@media (min-width: 768px) {
    body.page-consolidante .cp-visual-break-inner,
    body.page-rinfo55 .cp-visual-break-inner--material {
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

/* Photo break — ButileGP only (legacy, replaced by cp-visual-break) */
body.page-butilegp .cp-photo-break {
    position: relative;
    height: clamp(7rem, 14vw, 11rem);
    overflow: hidden;
}

body.page-butilegp .cp-photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    filter: brightness(0.72) contrast(1.05);
}

body.page-butilegp .cp-photo-break::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 23, 51, 0.55), rgba(35, 23, 51, 0.2));
}

/* ---- Feature rail ---- */
body.page-consolidante .cp-feature-rail,
body.page-butilegp .cp-feature-rail,
body.page-rinfo55 .cp-feature-rail {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--pr-line);
}

body.page-consolidante .cp-feature,
body.page-butilegp .cp-feature,
body.page-rinfo55 .cp-feature {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--pr-line);
    min-width: 0;
}

body.page-consolidante .cp-feature-num,
body.page-butilegp .cp-feature-num,
body.page-rinfo55 .cp-feature-num {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-brand);
    opacity: 0.35;
}

body.page-consolidante .cp-feature h3,
body.page-butilegp .cp-feature h3,
body.page-rinfo55 .cp-feature h3 {
    margin: 0 0 0.45rem;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: var(--color-brand);
}

body.page-consolidante .cp-feature ul,
body.page-butilegp .cp-feature ul,
body.page-rinfo55 .cp-feature ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.page-consolidante .cp-feature li,
body.page-butilegp .cp-feature li,
body.page-rinfo55 .cp-feature li {
    position: relative;
    padding-left: 0.95rem;
    margin: 0 0 0.25rem;
    font-size: 0.925rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

body.page-consolidante .cp-feature li::before,
body.page-butilegp .cp-feature li::before,
body.page-rinfo55 .cp-feature li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35rem;
    height: 1px;
    background: var(--color-accent);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-feature-rail,
    body.page-butilegp .cp-feature-rail,
    body.page-rinfo55 .cp-feature-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-top: 2px solid var(--color-brand);
        padding-top: 1.25rem;
    }

    body.page-consolidante .cp-feature,
    body.page-butilegp .cp-feature,
    body.page-rinfo55 .cp-feature {
        padding: 0 1.25rem 0 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-consolidante .cp-feature:not(:first-child),
    body.page-butilegp .cp-feature:not(:first-child),
    body.page-rinfo55 .cp-feature:not(:first-child) {
        padding-left: 1.25rem;
    }

    body.page-consolidante .cp-feature:last-child,
    body.page-butilegp .cp-feature:last-child,
    body.page-rinfo55 .cp-feature:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-consolidante .cp-feature-num,
    body.page-butilegp .cp-feature-num,
    body.page-rinfo55 .cp-feature-num {
        font-size: 1.3rem;
        margin-bottom: 0.65rem;
    }
}

/* ---- Specs: wide editorial layout ---- */
body.page-consolidante .cp-specs-layout,
body.page-butilegp .cp-specs-layout,
body.page-rinfo55 .cp-specs-layout {
    display: grid;
    gap: 1.75rem;
}

body.page-consolidante .cp-specs-intro,
body.page-butilegp .cp-specs-intro,
body.page-rinfo55 .cp-specs-intro {
    max-width: 26rem;
}

body.page-consolidante .cp-specs-list,
body.page-butilegp .cp-specs-list,
body.page-rinfo55 .cp-specs-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--pr-line);
    display: grid;
    gap: 0;
    width: 100%;
    max-width: none;
}

body.page-butilegp .cp-chapter--data-dark .cp-specs-list {
    border-top-color: rgba(245, 247, 250, 0.18);
}

body.page-consolidante .cp-specs-list > div,
body.page-butilegp .cp-specs-list > div,
body.page-rinfo55 .cp-specs-list > div {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--pr-line);
}

body.page-butilegp .cp-chapter--data-dark .cp-specs-list > div {
    border-bottom-color: rgba(245, 247, 250, 0.14);
}

body.page-consolidante .cp-specs-list dt,
body.page-butilegp .cp-specs-list dt,
body.page-rinfo55 .cp-specs-list dt {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-butilegp .cp-chapter--data-dark .cp-specs-list dt {
    color: rgba(245, 247, 250, 0.55);
}

body.page-consolidante .cp-specs-list dd,
body.page-butilegp .cp-specs-list dd,
body.page-rinfo55 .cp-specs-list dd {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-brand);
    line-height: 1.3;
}

body.page-butilegp .cp-chapter--data-dark .cp-specs-list dd {
    color: var(--color-text-inverse);
}

body.page-consolidante .cp-spec-value,
body.page-butilegp .cp-spec-value,
body.page-rinfo55 .cp-spec-value {
    display: block;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

@media (min-width: 900px) {
    body.page-consolidante .cp-specs-layout,
    body.page-butilegp .cp-specs-layout,
    body.page-rinfo55 .cp-specs-layout {
        grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.35fr);
        gap: 3rem;
        align-items: start;
    }

    body.page-consolidante .cp-specs-list,
    body.page-butilegp .cp-specs-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2rem;
    }

    body.page-rinfo55 .cp-specs-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2rem;
    }

    body.page-butilegp .cp-specs-list {
        max-width: none;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    body.page-consolidante .cp-specs-list,
    body.page-butilegp .cp-specs-list,
    body.page-rinfo55 .cp-specs-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.5rem;
    }
}

/* ---- Usage ---- */
body.page-consolidante .cp-usage-rail,
body.page-butilegp .cp-usage-rail,
body.page-rinfo55 .cp-usage-rail {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--pr-line);
}

body.page-consolidante .cp-usage-rail li,
body.page-butilegp .cp-usage-rail li,
body.page-rinfo55 .cp-usage-rail li {
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    gap: 0.85rem;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--pr-line);
}

body.page-consolidante .cp-usage-rail span,
body.page-butilegp .cp-usage-rail span,
body.page-rinfo55 .cp-usage-rail span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-brand);
    opacity: 0.4;
}

body.page-consolidante .cp-usage-rail p,
body.page-butilegp .cp-usage-rail p,
body.page-rinfo55 .cp-usage-rail p {
    margin: 0;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--color-brand);
    line-height: 1.3;
}

@media (min-width: 900px) {
    body.page-consolidante .cp-usage-rail,
    body.page-butilegp .cp-usage-rail {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        border-top: 2px solid var(--color-brand);
        padding-top: 1.15rem;
    }

    body.page-rinfo55 .cp-usage-rail--6 {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0;
        border-top: 2px solid var(--color-brand);
        padding-top: 1.15rem;
    }

    body.page-consolidante .cp-usage-rail li,
    body.page-butilegp .cp-usage-rail li,
    body.page-rinfo55 .cp-usage-rail--6 li {
        display: block;
        padding: 0 0.9rem 0 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
    }

    body.page-consolidante .cp-usage-rail li:not(:first-child),
    body.page-butilegp .cp-usage-rail li:not(:first-child),
    body.page-rinfo55 .cp-usage-rail--6 li:not(:first-child) {
        padding-left: 0.9rem;
    }

    body.page-consolidante .cp-usage-rail li:last-child,
    body.page-butilegp .cp-usage-rail li:last-child,
    body.page-rinfo55 .cp-usage-rail--6 li:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-consolidante .cp-usage-rail span,
    body.page-butilegp .cp-usage-rail span,
    body.page-rinfo55 .cp-usage-rail--6 span {
        display: block;
        margin-bottom: 0.65rem;
        font-size: 1.25rem;
    }

    body.page-consolidante .cp-usage-rail p,
    body.page-butilegp .cp-usage-rail p,
    body.page-rinfo55 .cp-usage-rail--6 p {
        font-size: 0.9rem;
        max-width: 13ch;
    }
}

/* ---- Support: FAQ + Docs ---- */
body.page-consolidante .cp-support,
body.page-butilegp .cp-support,
body.page-rinfo55 .cp-support {
    display: grid;
    gap: 2rem;
    margin-top: 2.15rem;
    padding-top: 1.85rem;
    border-top: 1px solid var(--pr-line);
}

body.page-butilegp .cp-chapter--data-dark .cp-support {
    border-top-color: rgba(245, 247, 250, 0.14);
}

body.page-consolidante .cp-support-head,
body.page-butilegp .cp-support-head,
body.page-rinfo55 .cp-support-head {
    margin-bottom: 0.85rem;
}

body.page-consolidante .cp-support-head h2,
body.page-butilegp .cp-support-head h2,
body.page-rinfo55 .cp-support-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-brand);
}

body.page-consolidante .cp-faq-list,
body.page-butilegp .cp-faq-list,
body.page-rinfo55 .cp-faq-list {
    border-top: 1px solid var(--pr-line);
}

body.page-butilegp .cp-chapter--data-dark .cp-faq-list {
    border-top-color: rgba(245, 247, 250, 0.18);
}

body.page-consolidante .cp-faq-item,
body.page-butilegp .cp-faq-item,
body.page-rinfo55 .cp-faq-item {
    border-bottom: 1px solid var(--pr-line);
}

body.page-butilegp .cp-chapter--data-dark .cp-faq-item {
    border-bottom-color: rgba(245, 247, 250, 0.14);
}

body.page-consolidante .cp-faq-item h3,
body.page-butilegp .cp-faq-item h3,
body.page-rinfo55 .cp-faq-item h3 {
    margin: 0;
}

body.page-consolidante .cp-faq-trigger.faq-trigger,
body.page-butilegp .cp-faq-trigger.faq-trigger,
body.page-rinfo55 .cp-faq-trigger.faq-trigger,
body.page-consolidante .cp-faq-trigger,
body.page-butilegp .cp-faq-trigger,
body.page-rinfo55 .cp-faq-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    column-gap: 0.75rem;
    align-items: center;
    min-height: 3.75rem;
    padding: 0.85rem 2rem 0.85rem 0;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    color: var(--color-brand);
    cursor: pointer;
    position: relative;
}

body.page-butilegp .cp-chapter--data-dark .cp-faq-trigger {
    color: var(--color-text-inverse);
}

body.page-consolidante .cp-faq-num,
body.page-butilegp .cp-faq-num,
body.page-rinfo55 .cp-faq-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

body.page-consolidante .cp-faq-q,
body.page-butilegp .cp-faq-q,
body.page-rinfo55 .cp-faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
}

body.page-consolidante .cp-faq-trigger::after,
body.page-butilegp .cp-faq-trigger::after,
body.page-rinfo55 .cp-faq-trigger::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-accent);
}

body.page-consolidante .cp-faq-trigger[aria-expanded="true"]::after,
body.page-butilegp .cp-faq-trigger[aria-expanded="true"]::after,
body.page-rinfo55 .cp-faq-trigger[aria-expanded="true"]::after {
    content: "−";
}

body.page-consolidante .cp-faq-panel,
body.page-butilegp .cp-faq-panel,
body.page-rinfo55 .cp-faq-panel {
    padding: 0 0 1rem 3rem;
}

body.page-consolidante .cp-faq-panel p,
body.page-butilegp .cp-faq-panel p,
body.page-rinfo55 .cp-faq-panel p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
    font-size: 0.95rem;
    max-width: 42rem;
}

body.page-butilegp .cp-chapter--data-dark .cp-faq-panel p {
    color: rgba(245, 247, 250, 0.72);
}

body.page-consolidante .cp-docs-list,
body.page-butilegp .cp-docs-list,
body.page-rinfo55 .cp-docs-list {
    max-width: none;
    border-top: 1px solid var(--pr-line);
}

body.page-butilegp .cp-chapter--data-dark .cp-docs-list {
    border-top-color: rgba(245, 247, 250, 0.18);
}

body.page-consolidante .cp-doc-row,
body.page-butilegp .cp-doc-row,
body.page-rinfo55 .cp-doc-row {
    display: grid;
    grid-template-columns: 1.5rem 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--pr-line);
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-row {
    border-bottom-color: rgba(245, 247, 250, 0.14);
}

body.page-consolidante .cp-doc-row:hover,
body.page-butilegp .cp-doc-row:hover,
body.page-rinfo55 .cp-doc-row:hover {
    border-bottom-color: var(--color-brand);
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-row:hover {
    border-bottom-color: rgba(245, 247, 250, 0.7);
}

body.page-consolidante .cp-doc-icon,
body.page-butilegp .cp-doc-icon,
body.page-rinfo55 .cp-doc-icon {
    display: flex;
    width: 1.2rem;
    height: 1.2rem;
    color: var(--color-accent);
}

body.page-consolidante .cp-doc-icon svg,
body.page-butilegp .cp-doc-icon svg,
body.page-rinfo55 .cp-doc-icon svg {
    width: 100%;
    height: 100%;
}

body.page-consolidante .cp-doc-title,
body.page-butilegp .cp-doc-title,
body.page-rinfo55 .cp-doc-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-brand);
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-title {
    color: var(--color-text-inverse);
}

body.page-consolidante .cp-doc-type,
body.page-butilegp .cp-doc-type,
body.page-rinfo55 .cp-doc-type {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-type {
    color: rgba(245, 247, 250, 0.55);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-support,
    body.page-butilegp .cp-support,
    body.page-rinfo55 .cp-support {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
        gap: 3rem;
        align-items: start;
    }
}

@media (max-width: 479px) {
    body.page-consolidante .cp-faq-panel,
    body.page-butilegp .cp-faq-panel,
    body.page-rinfo55 .cp-faq-panel {
        padding-left: 0;
    }
}

/* ---- Outro / System → CTA ---- */
body.page-consolidante .cp-outro,
body.page-butilegp .cp-outro,
body.page-rinfo55 .cp-outro {
    padding-top: 2.75rem;
    padding-bottom: 2rem;
    background: #fff;
    border-top: 1px solid var(--pr-line);
}

body.page-consolidante .cp-system-rail,
body.page-butilegp .cp-system-rail,
body.page-rinfo55 .cp-system-rail {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--pr-line);
}

body.page-consolidante .cp-system-item,
body.page-butilegp .cp-system-item,
body.page-rinfo55 .cp-system-item {
    display: grid;
    grid-template-columns: 5.25rem 1fr;
    column-gap: var(--pr-space-md);
    row-gap: 0.1rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--pr-line);
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

body.page-consolidante .cp-system-item img,
body.page-butilegp .cp-system-item img,
body.page-rinfo55 .cp-system-item img {
    width: 5.25rem;
    height: 5.25rem;
    object-fit: contain;
    grid-row: 1 / span 2;
}

body.page-consolidante .cp-system-step,
body.page-butilegp .cp-system-step,
body.page-rinfo55 .cp-system-step {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

body.page-consolidante .cp-system-item strong,
body.page-butilegp .cp-system-item strong,
body.page-rinfo55 .cp-system-item strong {
    color: var(--color-brand);
    font-size: 1rem;
}

body.page-consolidante .cp-system-item.is-current,
body.page-butilegp .cp-system-item.is-current,
body.page-rinfo55 .cp-system-item.is-current {
    box-shadow: inset 3px 0 0 var(--color-accent);
}

body.page-consolidante .cp-system-item.is-current strong,
body.page-butilegp .cp-system-item.is-current strong,
body.page-rinfo55 .cp-system-item.is-current strong {
    color: var(--color-accent-dark);
}

body.page-consolidante .cp-system-item:hover strong,
body.page-butilegp .cp-system-item:hover strong,
body.page-rinfo55 .cp-system-item:hover strong {
    color: var(--color-accent-dark);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-system-rail,
    body.page-butilegp .cp-system-rail,
    body.page-rinfo55 .cp-system-rail {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-top: 2px solid var(--color-brand);
    }

    body.page-consolidante .cp-system-item,
    body.page-butilegp .cp-system-item,
    body.page-rinfo55 .cp-system-item {
        grid-template-columns: 1fr;
        padding: 1.15rem 1rem 1.15rem 0;
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
        align-content: start;
        box-shadow: none;
    }

    body.page-consolidante .cp-system-item:not(:first-child),
    body.page-butilegp .cp-system-item:not(:first-child),
    body.page-rinfo55 .cp-system-item:not(:first-child) {
        padding-left: 1rem;
    }

    body.page-consolidante .cp-system-item:last-child,
    body.page-butilegp .cp-system-item:last-child,
    body.page-rinfo55 .cp-system-item:last-child {
        padding-right: 0;
        border-right: none;
    }

    body.page-consolidante .cp-system-item img,
    body.page-butilegp .cp-system-item img,
    body.page-rinfo55 .cp-system-item img {
        grid-row: auto;
        width: 6rem;
        height: 6rem;
        margin-bottom: 0.55rem;
    }

    body.page-consolidante .cp-system-item.is-current,
    body.page-butilegp .cp-system-item.is-current,
    body.page-rinfo55 .cp-system-item.is-current {
        box-shadow: inset 0 3px 0 var(--color-accent);
    }
}

@media (max-width: 767px) {
    body.page-consolidante .cp-outro,
    body.page-butilegp .cp-outro,
    body.page-rinfo55 .cp-outro {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }
}

/* ==========================================================================
   Chi siamo — compositional balance (scoped to body.page-about)
   ========================================================================== */

body.page-about {
    --about-content-max: 44rem;
}

/* Hero — wider lead, stronger text/image balance */

body.page-about .page-hero {
    padding-bottom: var(--space-xl);
}

body.page-about .page-hero-lead {
    max-width: none;
}

@media (min-width: 768px) {
    body.page-about .page-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: center;
    }

    body.page-about .page-hero-visual img {
        max-height: 420px;
    }
}

/* Section headers use full container width on this page */

body.page-about .section-header {
    max-width: none;
}

body.page-about .about-timeline .section-header,
body.page-about .about-approach .section-header,
body.page-about .about-system .section-header {
    max-width: var(--about-content-max);
}

body.page-about .about-system .section-header {
    max-width: 52rem;
}

/* La nostra storia — editorial 2-column */

body.page-about .about-story-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: start;
}

body.page-about .about-kicker {
    margin: 0 0 var(--space-xs);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

body.page-about .about-story-intro h2 {
    margin: 0;
}

body.page-about .about-story-prose p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    body.page-about .about-story-grid {
        grid-template-columns: minmax(10rem, 22%) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4rem);
    }

    body.page-about .about-story-prose {
        max-width: var(--about-content-max);
    }
}

/* Percorso — vertical editorial timeline, full container */

body.page-about .about-timeline .inst-timeline {
    max-width: none;
    margin: 0;
}

body.page-about .about-timeline .inst-timeline::before {
    left: 0.65rem;
    transform: none;
}

body.page-about .about-timeline .inst-timeline-item {
    width: auto;
    margin-left: 0;
    padding: 0 0 var(--space-md) 2rem;
    text-align: left;
}

body.page-about .about-timeline .inst-timeline-marker {
    left: 0;
    right: auto;
}

@media (min-width: 768px) {
    body.page-about .about-timeline .inst-timeline {
        display: grid;
        gap: 0;
        padding-top: var(--space-xs);
    }

    body.page-about .about-timeline .inst-timeline::before {
        display: none;
    }

    body.page-about .about-timeline .inst-timeline-item {
        display: grid;
        grid-template-columns: 7.5rem minmax(0, 1fr);
        column-gap: clamp(1.5rem, 3vw, 2.5rem);
        row-gap: 0.35rem;
        align-items: start;
        width: 100%;
        margin-left: 0;
        padding: 0 0 var(--space-lg) var(--space-lg);
        border-left: 2px solid var(--color-border);
        text-align: left;
    }

    body.page-about .about-timeline .inst-timeline-item:last-child {
        padding-bottom: 0;
    }

    body.page-about .about-timeline .inst-timeline-marker {
        left: -0.72rem;
        right: auto;
        top: 0.15rem;
        width: 1.25rem;
        height: 1.25rem;
    }

    body.page-about .about-timeline .inst-timeline-year {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        margin-bottom: 0;
        font-size: 1.125rem;
        line-height: 1.2;
    }

    body.page-about .about-timeline .inst-timeline-item h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0.25rem;
        font-size: 1.125rem;
    }

    body.page-about .about-timeline .inst-timeline-item p {
        grid-column: 2;
        grid-row: 2;
        max-width: 46rem;
        font-size: 1rem;
    }
}

/* Approccio e ricerca — fuller 3×2 grid */

body.page-about .about-approach .approach-grid {
    gap: var(--space-lg);
}

body.page-about .about-approach .approach-item {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    box-shadow: none;
}

body.page-about .about-approach .approach-item h3 {
    font-size: 1.0625rem;
}

body.page-about .about-approach .approach-item p {
    font-size: 1rem;
}

@media (min-width: 768px) {
    body.page-about .about-approach .approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    body.page-about .about-approach .approach-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Il sistema Archimede — stronger cards */

body.page-about .about-system .system-overview {
    gap: var(--space-md);
}

body.page-about .about-system .system-overview-card {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    align-content: start;
}

body.page-about .about-system .system-overview-card img {
    width: 96px;
}

body.page-about .about-system .system-overview-card h3 {
    font-size: 1.0625rem;
}

body.page-about .about-system .system-overview-card p {
    font-size: 0.9375rem;
    flex-grow: 1;
}

@media (min-width: 1024px) {
    body.page-about .about-system .system-overview-card {
        min-height: 100%;
    }
}

/* Certificazioni — title left, proof points right */

body.page-about .about-cert-grid {
    display: grid;
    gap: var(--space-lg);
}

body.page-about .about-cert-intro {
    margin-bottom: 0;
}

body.page-about .about-cert-badges {
    gap: var(--space-md);
}

body.page-about .about-cert-badges .cert-badge {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    box-shadow: none;
    border-left-width: 5px;
}

body.page-about .about-cert-badges .cert-badge strong {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

body.page-about .about-cert-badges .cert-badge span {
    font-size: 0.9375rem;
    line-height: 1.55;
}

@media (min-width: 768px) {
    body.page-about .about-cert-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: start;
    }
}

@media (max-width: 767px) {
    body.page-about .about-story-grid,
    body.page-about .about-cert-grid {
        gap: var(--space-md);
    }

    body.page-about .about-timeline .inst-timeline-item {
        padding-bottom: var(--space-md);
    }
}

/* ==========================================================================
   Campi d'impiego — balance & spacing (scoped to body.page-applications)
   ========================================================================== */

body.page-applications {
    --campi-line: rgba(47, 30, 77, 0.08);
}

/* Hero — text/image balance */

body.page-applications .page-hero {
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

body.page-applications .breadcrumb ol {
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

body.page-applications .page-hero-eyebrow {
    margin-bottom: 0.625rem;
}

body.page-applications .page-hero h1 {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

body.page-applications .page-hero-lead {
    max-width: 42rem;
    line-height: 1.65;
}

body.page-applications .page-hero-actions {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 768px) {
    body.page-applications .page-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4.5vw, 4rem);
        align-items: center;
    }

    body.page-applications .page-hero-lead {
        max-width: none;
    }

    body.page-applications .page-hero-visual img {
        max-height: min(480px, 42vh);
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-md);
    }
}

/* Shared kicker */

body.page-applications .campi-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

body.page-applications .campi-kicker--light {
    color: rgba(245, 247, 250, 0.72);
}

/* Intro — editorial split */

body.page-applications .campi-intro {
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-bottom: 1px solid var(--campi-line);
}

body.page-applications .campi-intro-layout {
    display: grid;
    gap: var(--space-md);
    align-items: start;
}

body.page-applications .campi-intro-head h2 {
    margin: 0;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

body.page-applications .campi-intro-copy p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: none;
}

@media (min-width: 768px) {
    body.page-applications .campi-intro-layout {
        grid-template-columns: minmax(10rem, 28%) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4.5rem);
    }
}

/* Chapters — grouped backgrounds */

body.page-applications .campi-chapter {
    padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}

body.page-applications .campi-chapter--surface {
    background: var(--color-bg-alt);
}

body.page-applications .campi-chapter--special {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

body.page-applications .campi-chapter-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
}

body.page-applications .campi-chapter-inner > .campi-block + .campi-block {
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--campi-line);
}

body.page-applications .campi-chapter--surface .campi-chapter-inner > .campi-block + .campi-block {
    border-top-color: rgba(47, 30, 77, 0.06);
}

body.page-applications .campi-chapter--special > .container > .campi-block {
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--campi-line);
}

/* Section heads */

body.page-applications .campi-section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    max-width: none;
}

body.page-applications .campi-section-head h2 {
    margin: 0;
}

/* Blocks — image/text */

body.page-applications .campi-block {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    min-width: 0;
}

body.page-applications .campi-block-media {
    min-width: 0;
}

body.page-applications .campi-block-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

body.page-applications .campi-block--tall .campi-block-media img {
    aspect-ratio: 3 / 4;
    max-height: 520px;
    object-fit: cover;
}

body.page-applications .campi-block-body {
    min-width: 0;
}

body.page-applications .campi-block-body h3 {
    margin: 0 0 0.875rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.25;
}

body.page-applications .campi-block-body .campi-kicker {
    margin-bottom: 0.375rem;
}

body.page-applications .campi-block-body .campi-kicker + h3 {
    margin-top: 0;
}

body.page-applications .campi-block-body p {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    max-width: none;
}

/* Enumerative lists — restore markers hidden by global ul reset */
body.page-applications .applications-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

body.page-applications .applications-list li {
    position: relative;
    padding-left: 1.05rem;
    margin: 0;
}

body.page-applications .applications-list li + li {
    margin-top: 0.5rem;
}

body.page-applications .applications-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 0.5rem;
    height: 1.5px;
    background: var(--color-accent);
}

body.page-applications .campi-highlight .applications-list {
    margin: 0.85rem 0 1rem;
    color: rgba(245, 247, 250, 0.88);
}

body.page-applications .campi-highlight .applications-list li::before {
    background: var(--color-accent);
    opacity: 0.9;
}

body.page-applications .campi-inline-link {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), color var(--transition);
}

body.page-applications .campi-inline-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

body.page-applications .campi-product-refs {
    margin: 0.5rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

body.page-applications .campi-product-refs a {
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 30, 77, 0.2);
}

body.page-applications .campi-product-refs a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

@media (min-width: 768px) {
    body.page-applications .campi-block {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3.5rem);
    }

    body.page-applications .campi-block--reverse .campi-block-media {
        order: 2;
    }

    body.page-applications .campi-block--reverse .campi-block-body {
        order: 1;
    }

    body.page-applications .campi-chapter-inner > .campi-block:first-child {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    }

    body.page-applications .campi-block--split {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
    }

    body.page-applications .campi-block--split .campi-block-body {
        order: 1;
    }

    body.page-applications .campi-block--split .campi-block-media {
        order: 2;
    }

    body.page-applications .campi-block--tall {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        align-items: center;
    }

    body.page-applications .campi-block--broof {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }
}

@media (min-width: 1024px) {
    body.page-applications .campi-block:not(.campi-block--reverse):not(.campi-block--split):not(.campi-block--tall) {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    body.page-applications .campi-block--reverse:not(.campi-block--broof) {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

/* Amianto highlight — full container */

body.page-applications .campi-highlight {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: none;
}

body.page-applications .campi-highlight h3 {
    margin: 0;
    color: var(--color-text-inverse);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

body.page-applications .campi-highlight p,
body.page-applications .campi-highlight li {
    color: rgba(245, 247, 250, 0.88);
    font-size: 1.0625rem;
    line-height: 1.65;
}

body.page-applications .campi-highlight-layout {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 768px) {
    body.page-applications .campi-highlight-layout {
        grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: start;
    }
}

body.page-applications .campi-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

body.page-applications .campi-product-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    background: rgba(245, 247, 250, 0.12);
    border: 1px solid rgba(245, 247, 250, 0.22);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

body.page-applications .campi-product-tag:hover {
    background: rgba(245, 247, 250, 0.2);
    border-color: rgba(245, 247, 250, 0.4);
    color: var(--color-text-inverse);
}

/* Orientation */

body.page-applications .campi-orientation-section {
    padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}

body.page-applications .campi-orientation {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: none;
}

body.page-applications .campi-orientation-item {
    display: grid;
    gap: 0.35rem 1.5rem;
    padding: clamp(1rem, 2vw, 1.25rem) 0;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    align-items: baseline;
}

body.page-applications .campi-orientation-item:not(:last-child) {
    border-bottom: 1px solid rgba(47, 30, 77, 0.06);
}

body.page-applications .campi-orientation-item strong {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

body.page-applications .campi-orientation-item span {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

body.page-applications .campi-orientation-item a {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: none;
    justify-self: start;
    transition: color var(--transition);
}

body.page-applications .campi-orientation-item a::after {
    content: " →";
    font-weight: 400;
    opacity: 0.55;
    transition: opacity var(--transition);
}

body.page-applications .campi-orientation-item a:hover {
    color: var(--color-accent);
}

body.page-applications .campi-orientation-item a:hover::after {
    opacity: 1;
}

@media (min-width: 768px) {
    body.page-applications .campi-orientation {
        display: grid;
        grid-template-columns: minmax(14rem, 0.95fr) minmax(0, 1.15fr) auto;
        column-gap: clamp(2rem, 4vw, 3rem);
        row-gap: 0;
        align-items: baseline;
    }

    body.page-applications .campi-orientation-item {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1 / -1;
        gap: 0;
        padding: clamp(1rem, 2vw, 1.25rem) 0;
    }

    body.page-applications .campi-orientation-item a {
        justify-self: end;
        text-align: right;
        white-space: nowrap;
    }
}

/* Documenti */

body.page-applications .campi-docs {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

body.page-applications .campi-docs-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--campi-line);
}

body.page-applications .campi-doc-row {
    display: grid;
    grid-template-columns: 1.5rem 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--campi-line);
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition);
}

body.page-applications .campi-doc-row:hover {
    border-bottom-color: var(--color-brand);
}

body.page-applications .campi-doc-icon {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
}

body.page-applications .campi-doc-icon svg {
    width: 100%;
    height: 100%;
}

body.page-applications .campi-doc-title {
    font-weight: 600;
    color: var(--color-brand);
    min-width: 0;
}

body.page-applications .campi-doc-type {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 767px) {
    body.page-applications .campi-block-media img {
        aspect-ratio: 16 / 10;
    }

    body.page-applications .campi-highlight {
        border-radius: var(--radius-md);
    }

    body.page-applications .campi-chapter-inner {
        gap: 2rem;
    }

    body.page-applications .campi-chapter-inner > .campi-block + .campi-block {
        padding-top: 2rem;
    }
}

/* ==========================================================================
   Contatti — editorial refresh (scoped to body.page-contact)
   ========================================================================== */

body.page-contact {
    --contact-line: rgba(47, 30, 77, 0.1);
    --contact-pad: clamp(2.75rem, 5.25vw, 5.25rem);
    --contact-pad-sm: clamp(2.5rem, 4.5vw, 4.5rem);
}

/* Hero */
body.page-contact .contact-hero {
    padding-top: calc(var(--header-height) + var(--space-md));
    padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
    background: linear-gradient(160deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--contact-line);
}

body.page-contact .contact-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

body.page-contact .contact-hero-main h1 {
    margin: 0 0 0.75rem;
}

body.page-contact .contact-hero-lead {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-text-muted);
}

body.page-contact .contact-hero-strip {
    display: grid;
    gap: 0;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
    border-top: 1px solid var(--contact-line);
}

body.page-contact .contact-hero-action {
    padding: clamp(0.85rem, 1.5vw, 1.1rem) 0;
    border-bottom: 1px solid var(--contact-line);
    min-width: 0;
}

body.page-contact .contact-hero-action:last-child {
    border-bottom: none;
}

body.page-contact .contact-hero-action-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-contact .contact-hero-action a {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    overflow-wrap: anywhere;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

body.page-contact .contact-hero-action a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

@media (min-width: 768px) {
    body.page-contact .contact-hero-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.5rem, 3vw, 2.5rem);
        border-top: none;
        padding-top: clamp(1.5rem, 2.5vw, 2rem);
    }

    body.page-contact .contact-hero-action {
        padding: 0;
        border-bottom: none;
        border-right: 1px solid var(--contact-line);
    }

    body.page-contact .contact-hero-action:last-child {
        border-right: none;
    }
}

/* Section heads */
body.page-contact .contact-section-head {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: none;
}

body.page-contact .contact-section-head h2 {
    margin: 0;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--color-brand);
}

/* Routing — Come possiamo aiutarti? */
body.page-contact .contact-routing {
    padding: var(--contact-pad) 0;
    background: var(--color-bg);
}

body.page-contact .contact-routing-grid {
    display: grid;
    gap: 0;
    border-top: 2px solid var(--color-brand);
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.page-contact .contact-route {
    display: grid;
    gap: 0.35rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
    border-bottom: 1px solid var(--contact-line);
    min-width: 0;
}

body.page-contact .contact-route:last-child {
    border-bottom: none;
}

body.page-contact .contact-route-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

body.page-contact .contact-route h3 {
    margin: 0;
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    color: var(--color-brand);
}

body.page-contact .contact-route p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    max-width: 36rem;
}

body.page-contact .contact-route-email {
    margin-top: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    overflow-wrap: anywhere;
    border-bottom: 1px solid rgba(47, 30, 77, 0.2);
}

body.page-contact .contact-route-email:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

body.page-contact .contact-route-cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

body.page-contact .contact-route-cta:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

@media (min-width: 768px) {
    body.page-contact .contact-routing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(2rem, 4vw, 3.5rem);
    }

    body.page-contact .contact-route {
        padding: 0 clamp(1.5rem, 2.5vw, 2rem) 0 0;
        border-bottom: none;
        border-right: 1px solid var(--contact-line);
    }

    body.page-contact .contact-route:last-child {
        padding-right: 0;
        padding-left: clamp(1.5rem, 2.5vw, 2rem);
        border-right: none;
    }
}

/* Sede */
body.page-contact .contact-office {
    padding: var(--contact-pad-sm) 0;
    background: var(--color-bg-alt);
}

body.page-contact .contact-office-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

body.page-contact .contact-office-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(220px, 32vw, 320px);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background:
        linear-gradient(135deg, rgba(47, 30, 77, 0.04) 0%, rgba(0, 107, 161, 0.06) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(47, 30, 77, 0.04) 39px, rgba(47, 30, 77, 0.04) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(47, 30, 77, 0.04) 39px, rgba(47, 30, 77, 0.04) 40px);
    border: 1px solid var(--contact-line);
    color: var(--color-brand);
    overflow: hidden;
}

body.page-contact .contact-office-place {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--color-brand);
    opacity: 0.85;
}

body.page-contact .contact-office-address {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

body.page-contact .contact-office-line {
    display: block;
    width: 3rem;
    height: 2px;
    margin: 1rem 0 0.75rem;
    background: var(--color-accent);
}

body.page-contact .contact-office-map-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

body.page-contact .contact-office-map-link:hover {
    text-decoration: underline;
}

body.page-contact .contact-office-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

body.page-contact .contact-office-dl {
    margin: 0;
    display: grid;
    gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

body.page-contact .contact-office-dl div {
    display: grid;
    gap: 0.2rem;
}

body.page-contact .contact-office-dl dt {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

body.page-contact .contact-office-dl dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
}

body.page-contact .contact-office-dl a {
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 30, 77, 0.2);
}

body.page-contact .contact-office-dl a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

body.page-contact .contact-office-cta {
    display: inline-block;
    margin-top: clamp(1.25rem, 2vw, 1.5rem);
    align-self: flex-start;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    border: 1px solid var(--color-brand);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

body.page-contact .contact-office-cta:hover {
    background: var(--color-brand);
    color: var(--color-text-inverse);
}

@media (min-width: 768px) {
    body.page-contact .contact-office-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

/* Form */
body.page-contact .contact-form-section {
    padding: var(--contact-pad) 0;
    background: var(--color-bg);
}

body.page-contact .contact-form-layout {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

body.page-contact .contact-form-intro h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--color-brand);
}

body.page-contact .contact-form-intro p {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: none;
}

body.page-contact .contact-form-alt {
    margin-top: 1rem;
    font-size: 0.9375rem;
}

body.page-contact .contact-form-alt a {
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 30, 77, 0.2);
}

body.page-contact .contact-form-alt a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

body.page-contact .contact-form-fields {
    display: grid;
    gap: clamp(1rem, 2vw, 1.25rem);
}

body.page-contact .contact-field {
    margin: 0;
    min-width: 0;
}

body.page-contact .contact-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

body.page-contact .contact-optional {
    font-weight: 400;
    color: var(--color-text-muted);
}

body.page-contact .contact-field select,
body.page-contact .contact-field textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--color-text);
    background: var(--color-bg);
    border: none;
    border-bottom: 1px solid var(--contact-line);
    border-radius: 0;
    min-width: 0;
    transition: border-color var(--transition);
}

body.page-contact .contact-field select:focus-visible,
body.page-contact .contact-field textarea:focus-visible {
    outline: none;
    border-bottom-color: var(--color-accent);
    box-shadow: 0 1px 0 0 var(--color-accent);
}

body.page-contact .contact-field textarea {
    min-height: 8rem;
    padding-top: 0.5rem;
    resize: vertical;
}

body.page-contact .contact-form-actions {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.page-contact .contact-form-note {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

body.page-contact .contact-form-fallback {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--contact-line);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    body.page-contact .contact-form-layout {
        grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
        gap: clamp(2.5rem, 5vw, 4rem);
        align-items: start;
    }

    body.page-contact .contact-form-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-contact .contact-field--full {
        grid-column: 1 / -1;
    }
}

/* Pre-footer — ensure visibility on contact page */
body.page-contact .site-prefooter {
    margin: 0;
}

body.page-contact .site-prefooter + .site-footer {
    margin-top: 0;
}

@media (max-width: 767px) {
    body.page-contact .contact-hero-action a {
        display: inline-block;
        min-height: 44px;
        padding-top: 0.15rem;
    }

    body.page-contact .contact-route-cta,
    body.page-contact .contact-office-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ==========================================================================
   Consolidante Plus — information hierarchy polish (body.page-consolidante)
   ========================================================================== */

/* Chapter A — Funzione: descriptive columns, lighter density */
body.page-consolidante .cp-block--function .cp-section-head {
    margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

body.page-consolidante .cp-block--function .cp-feature-rail {
    border-top: none;
}

body.page-consolidante .cp-block--function .cp-feature {
    border-bottom: none;
    padding: 0;
}

body.page-consolidante .cp-block--function .cp-feature h3 {
    font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 0.6rem;
}

body.page-consolidante .cp-block--function .cp-feature li {
    font-size: 0.9375rem;
    color: rgba(47, 30, 77, 0.62);
    line-height: 1.45;
}

@media (min-width: 900px) {
    body.page-consolidante .cp-block--function .cp-feature-rail {
        border-top: 1px solid var(--pr-line);
        padding-top: clamp(1.25rem, 2vw, 1.75rem);
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    body.page-consolidante .cp-block--function .cp-feature {
        border-right: none;
        padding: 0;
    }

    body.page-consolidante .cp-block--function .cp-feature:not(:first-child) {
        padding-left: clamp(1.25rem, 2vw, 2rem);
        border-left: 1px solid var(--pr-line);
    }
}

/* Chapter B — Processo: sequenza 01→05 */
body.page-consolidante .cp-block--process {
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
    padding-top: clamp(2rem, 3.5vw, 2.75rem);
    border-top: 2px solid var(--color-brand);
}

body.page-consolidante .cp-block--process .cp-section-head {
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

body.page-consolidante .cp-block--process .cp-usage-rail {
    position: relative;
    border-top: none;
}

body.page-consolidante .cp-block--process .cp-usage-rail li {
    border-bottom-color: rgba(47, 30, 77, 0.08);
}

body.page-consolidante .cp-block--process .cp-usage-rail span {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 700;
    color: var(--color-accent);
    opacity: 1;
    line-height: 1;
}

body.page-consolidante .cp-block--process .cp-usage-rail p {
    font-size: clamp(0.9375rem, 1.4vw, 1rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.35;
}

@media (min-width: 900px) {
    body.page-consolidante .cp-block--process .cp-usage-rail {
        border-top: none;
        padding-top: 0.25rem;
    }

    body.page-consolidante .cp-block--process .cp-usage-rail::before {
        content: "";
        position: absolute;
        top: 0.85rem;
        left: 0.5rem;
        right: 0.5rem;
        height: 2px;
        background: linear-gradient(90deg, var(--color-accent) 0%, rgba(0, 107, 161, 0.25) 100%);
        z-index: 0;
    }

    body.page-consolidante .cp-block--process .cp-usage-rail li {
        position: relative;
        z-index: 1;
        border-right-color: rgba(47, 30, 77, 0.08);
        padding-top: 0.15rem;
    }

    body.page-consolidante .cp-block--process .cp-usage-rail span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.85rem;
        font-size: 1.125rem;
        background: var(--pr-surface);
        border: 2px solid var(--color-accent);
        border-radius: 50%;
    }

    body.page-consolidante .cp-block--process .cp-usage-rail p {
        max-width: none;
        font-weight: 600;
        color: var(--color-brand);
    }
}

@media (max-width: 899px) {
    body.page-consolidante .cp-block--process .cp-usage-rail {
        border-left: 2px solid var(--color-accent);
        margin-left: 0.35rem;
        padding-left: 1rem;
    }

    body.page-consolidante .cp-block--process .cp-usage-rail li {
        grid-template-columns: 2.25rem 1fr;
        gap: 0.75rem;
        padding: 0.85rem 0;
        border-bottom: none;
    }

    body.page-consolidante .cp-block--process .cp-usage-rail li:not(:last-child) {
        border-bottom: 1px solid rgba(47, 30, 77, 0.08);
    }
}

/* Chapter C — Dati e supporto tecnico */
body.page-consolidante .cp-chapter--data {
    background: #eef1f5;
}

body.page-consolidante .cp-block--data {
    margin-top: 0;
}

body.page-consolidante .cp-specs-layout {
    gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-specs-layout {
        grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
        gap: clamp(2.5rem, 4vw, 3.5rem);
    }
}

body.page-consolidante .cp-specs-intro .cp-section-lead {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(47, 30, 77, 0.62);
}

/* Specs — value-first metrics grid */
body.page-consolidante .cp-specs-metrics {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 2px solid var(--color-brand);
}

body.page-consolidante .cp-spec-metric {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: clamp(1rem, 2vw, 1.35rem) clamp(0.75rem, 1.5vw, 1.25rem);
    border-bottom: 1px solid rgba(47, 30, 77, 0.1);
    min-width: 0;
}

body.page-consolidante .cp-spec-metric:nth-child(odd) {
    border-right: 1px solid rgba(47, 30, 77, 0.1);
}

body.page-consolidante .cp-spec-metric dd {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-brand);
}

body.page-consolidante .cp-spec-metric .cp-spec-value {
    font-size: inherit;
    display: inline;
}

body.page-consolidante .cp-spec-metric--text dd {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
}

body.page-consolidante .cp-spec-metric dt {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(47, 30, 77, 0.52);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-specs-metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.page-consolidante .cp-spec-metric {
        border-right: 1px solid rgba(47, 30, 77, 0.1);
        border-bottom: none;
        padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1rem, 1.5vw, 1.25rem);
    }

    body.page-consolidante .cp-spec-metric:nth-child(odd) {
        border-right: 1px solid rgba(47, 30, 77, 0.1);
    }

    body.page-consolidante .cp-spec-metric:last-child {
        border-right: none;
    }
}

@media (max-width: 479px) {
    body.page-consolidante .cp-specs-metrics {
        grid-template-columns: 1fr;
    }

    body.page-consolidante .cp-spec-metric:nth-child(odd) {
        border-right: none;
    }
}

/* Sub kickers — lighter weight for FAQ/docs */
body.page-consolidante .cp-kicker--sub {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

body.page-consolidante .cp-support-head h2 {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 700;
}

/* Support grid — FAQ left, docs right on desktop; docs first on mobile */
body.page-consolidante .cp-support {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    padding-top: clamp(1.5rem, 2.5vw, 2rem);
    border-top: 1px solid rgba(47, 30, 77, 0.12);
    gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-support {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: clamp(2rem, 3.5vw, 3rem);
        align-items: start;
    }

    body.page-consolidante .cp-faq {
        grid-column: 1;
        grid-row: 1;
    }

    body.page-consolidante .cp-docs {
        grid-column: 2;
        grid-row: 1;
    }
}

/* FAQ — secondary */
body.page-consolidante .cp-faq-list {
    border-top: none;
}

body.page-consolidante .cp-faq-item {
    border-bottom-color: rgba(47, 30, 77, 0.1);
}

body.page-consolidante .cp-faq-trigger {
    min-height: 3.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

body.page-consolidante .cp-faq-q {
    font-size: 1rem;
    font-weight: 600;
}

body.page-consolidante .cp-faq-panel p {
    font-size: 0.9375rem;
}

/* Documentation — prominent download area */
body.page-consolidante .cp-docs {
    background: var(--color-bg);
    border-left: 3px solid var(--color-accent);
    padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.5rem);
}

body.page-consolidante .cp-docs-list {
    border-top: none;
}

body.page-consolidante .cp-doc-row {
    grid-template-columns: 1.75rem minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(0.5rem, 1vw, 0.75rem);
    margin: 0 calc(-0.5rem);
    border-bottom: 1px solid rgba(47, 30, 77, 0.1);
    border-radius: 0;
    transition: background var(--transition);
}

body.page-consolidante .cp-doc-row:last-child {
    border-bottom: none;
}

body.page-consolidante .cp-doc-row:hover {
    background: rgba(0, 107, 161, 0.04);
    border-bottom-color: rgba(47, 30, 77, 0.1);
}

body.page-consolidante .cp-doc-row:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

body.page-consolidante .cp-doc-icon {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--color-accent);
}

body.page-consolidante .cp-doc-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

body.page-consolidante .cp-doc-title {
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1.3;
}

body.page-consolidante .cp-doc-desc {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(47, 30, 77, 0.58);
}

body.page-consolidante .cp-doc-type {
    font-size: 0.625rem;
    padding: 0.2rem 0.45rem;
    border: 1px solid rgba(47, 30, 77, 0.15);
    color: var(--color-text-muted);
}

@media (max-width: 899px) {
    body.page-consolidante .cp-docs {
        border-left: none;
        border-top: 3px solid var(--color-accent);
        padding-top: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    body.page-consolidante .cp-doc-row {
        min-height: 56px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Transition to sistema section */
body.page-consolidante .cp-outro {
    padding-top: clamp(2.5rem, 4vw, 3.25rem);
    border-top: none;
}

/* Specs must never be hidden by reveal */
body.page-consolidante .cp-specs-layout.reveal,
body.page-consolidante .cp-specs-layout.reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
}

body.page-consolidante .cp-chapter--data {
    padding-top: clamp(2rem, 3.5vw, 2.75rem);
    padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

body.page-consolidante .cp-block--data + .cp-support {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
    padding-top: clamp(1.25rem, 2vw, 1.5rem);
}

body.page-consolidante .cp-spec-metric dd {
    color: var(--color-brand);
}

@media (min-width: 900px) {
    body.page-consolidante .cp-support {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }
}

/* ==========================================================================
   Product pages — shared download & FAQ grammar
   (Consolidante Plus · ButileGP · Rinfo55)
   ========================================================================== */

body.page-consolidante .cp-kicker--sub,
body.page-butilegp .cp-kicker--sub,
body.page-rinfo55 .cp-kicker--sub {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

body.page-consolidante .cp-support-head h2,
body.page-butilegp .cp-support-head h2,
body.page-rinfo55 .cp-support-head h2 {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 700;
}

/* Shared download row structure */
body.page-consolidante .cp-doc-body,
body.page-butilegp .cp-doc-body,
body.page-rinfo55 .cp-doc-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

body.page-consolidante .cp-doc-desc,
body.page-butilegp .cp-doc-desc,
body.page-rinfo55 .cp-doc-desc {
    font-size: 0.8125rem;
    line-height: 1.4;
}

body.page-consolidante .cp-doc-row,
body.page-butilegp .cp-doc-row,
body.page-rinfo55 .cp-doc-row {
    grid-template-columns: 1.75rem minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    min-height: 56px;
    padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(0.5rem, 1vw, 0.75rem);
    margin: 0 calc(-0.5rem);
    border-radius: 0;
    transition: background var(--transition), border-color var(--transition);
}

body.page-consolidante .cp-doc-row:focus-visible,
body.page-butilegp .cp-doc-row:focus-visible,
body.page-rinfo55 .cp-doc-row:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

body.page-consolidante .cp-doc-icon,
body.page-butilegp .cp-doc-icon,
body.page-rinfo55 .cp-doc-icon {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--color-accent);
}

body.page-consolidante .cp-doc-title,
body.page-butilegp .cp-doc-title,
body.page-rinfo55 .cp-doc-title {
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    font-weight: 700;
    line-height: 1.3;
}

body.page-consolidante .cp-doc-type,
body.page-butilegp .cp-doc-type,
body.page-rinfo55 .cp-doc-type {
    font-size: 0.625rem;
    padding: 0.2rem 0.45rem;
    border: 1px solid rgba(47, 30, 77, 0.15);
}

/* Mobile: docs before FAQ in all three pages */
@media (max-width: 899px) {
    body.page-consolidante .cp-support,
    body.page-butilegp .cp-support,
    body.page-rinfo55 .cp-support {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

/* Specs never hidden by reveal animation */
body.page-butilegp .cp-specs-layout.reveal,
body.page-butilegp .cp-specs-layout.reveal:not(.is-visible),
body.page-rinfo55 .cp-specs-layout.reveal,
body.page-rinfo55 .cp-specs-layout.reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   ButileGP — hierarchy polish (body.page-butilegp)
   ========================================================================== */

body.page-butilegp .cp-chapter--data-dark {
    padding-top: clamp(2rem, 3.5vw, 2.75rem);
    padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

body.page-butilegp .cp-block + .cp-support {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
    padding-top: clamp(1.25rem, 2vw, 1.5rem);
}

@media (min-width: 900px) {
    body.page-butilegp .cp-support {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 3.5vw, 3rem);
    }

    body.page-butilegp .cp-faq {
        grid-column: 1;
        grid-row: 1;
    }

    body.page-butilegp .cp-docs {
        grid-column: 2;
        grid-row: 1;
    }
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-desc {
    color: rgba(245, 247, 250, 0.58);
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-row {
    border-bottom-color: rgba(245, 247, 250, 0.14);
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: rgba(245, 247, 250, 0.14);
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-title {
    color: var(--color-text-inverse);
    font-weight: 700;
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-type {
    border-color: rgba(245, 247, 250, 0.25);
    color: rgba(245, 247, 250, 0.65);
}

body.page-butilegp .cp-chapter--data-dark .cp-doc-row:focus-visible {
    outline-color: var(--color-accent);
}

body.page-butilegp .cp-chapter--data-dark .cp-faq-list {
    border-top: none;
}

body.page-butilegp .cp-outro {
    padding-top: clamp(2.5rem, 4vw, 3.25rem);
}

/* ==========================================================================
   Rinfo55 — hierarchy polish (body.page-rinfo55)
   ========================================================================== */

body.page-rinfo55 .cp-chapter--mesh {
    padding-top: clamp(2rem, 3.5vw, 2.75rem);
    padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

body.page-rinfo55 .cp-block + .cp-support {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
    padding-top: clamp(1.25rem, 2vw, 1.5rem);
}

body.page-rinfo55 .cp-specs-list--hierarchy {
    border-top: 2px solid var(--color-brand);
}

body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: clamp(0.85rem, 1.5vw, 1.1rem) 0;
    border-bottom: 1px solid var(--pr-line);
}

body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric dd {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-brand);
}

body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric .cp-spec-value {
    font-size: inherit;
}

body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric--text dd {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
}

body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric dt {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

@media (min-width: 900px) {
    body.page-rinfo55 .cp-specs-list--hierarchy {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        column-gap: clamp(1rem, 2vw, 1.5rem);
    }

    body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric {
        border-bottom: none;
        border-right: 1px solid var(--pr-line);
        padding: clamp(1rem, 1.5vw, 1.25rem) clamp(0.75rem, 1vw, 1rem);
    }

    body.page-rinfo55 .cp-specs-list--hierarchy .cp-spec-metric:last-child {
        border-right: none;
    }

    body.page-rinfo55 .cp-support {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 3.5vw, 3rem);
    }

    body.page-rinfo55 .cp-faq {
        grid-column: 1;
        grid-row: 1;
    }

    body.page-rinfo55 .cp-docs {
        grid-column: 2;
        grid-row: 1;
    }
}

body.page-rinfo55 .cp-docs {
    background: var(--color-bg);
    border-left: 3px solid var(--color-accent);
    padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.5rem);
}

body.page-rinfo55 .cp-docs-list {
    border-top: none;
}

body.page-rinfo55 .cp-doc-desc {
    color: rgba(47, 30, 77, 0.58);
}

body.page-rinfo55 .cp-doc-row:hover {
    background: rgba(0, 107, 161, 0.04);
}

body.page-rinfo55 .cp-faq-list {
    border-top: none;
}

body.page-rinfo55 .cp-outro {
    padding-top: clamp(2.5rem, 4vw, 3.25rem);
}

@media (max-width: 899px) {
    body.page-rinfo55 .cp-docs {
        border-left: none;
        border-top: 3px solid var(--color-accent);
        padding-top: clamp(1.25rem, 2.5vw, 1.5rem);
    }
}
