/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

:root {
    /* Colors from Synaptix brand */
    --primary-color: #00828c; /* Updated to your requested color */
    --primary-dark: #006b75;
    --primary-light: #00a8b5;
    --secondary-color: #1a1a1a;
    --background-dark: #0a0a0a;
    --surface-dark: #1e1e1e;
    --surface-light: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #606060;
    
    /* Wave animation variables */
    --mouse-x: 0.5;
    --mouse-y: 0.5;
    --wave-intensity: 1;
    
    /* Typography */
    --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-subtle: 0 4px 12px rgba(0, 212, 215, 0.08);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: #050c0c;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default !important;
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding-top: 76px;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Animated dotted wave background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, #00bfff 1.2px, transparent 1.2px),
                radial-gradient(circle at 80% 50%, #00bfff 1.2px, transparent 1.2px);
    background-size: 60px 60px, 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.32;
    z-index: -2;
    animation: waveFlow 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 10% 20%, #00bfff 0.7px, transparent 0.7px),
        radial-gradient(circle at 60% 30%, #00bfff 1px, transparent 1px),
        radial-gradient(circle at 90% 70%, #00bfff 0.8px, transparent 0.8px),
        radial-gradient(circle at 30% 80%, #00bfff 0.9px, transparent 0.9px);
    background-size: 40px 40px, 70px 70px, 50px 50px, 90px 90px;
    background-position: 0 0, 20px 20px, 60px 10px, 80px 50px;
    opacity: 0.42;
    z-index: -1;
    animation: waveFlow2 25s ease-in-out infinite reverse;
}

@keyframes waveFlow {
    0%, 100% {
        transform: translateX(calc(var(--mouse-x) * 10px)) translateY(calc(var(--mouse-y) * 10px)) scale(var(--wave-intensity));
        opacity: calc(0.32 * var(--wave-intensity));
    }
    25% {
        transform: translateX(calc(20px + var(--mouse-x) * 15px)) translateY(calc(-10px + var(--mouse-y) * 15px)) scale(calc(1.1 * var(--wave-intensity)));
        opacity: calc(0.38 * var(--wave-intensity));
    }
    50% {
        transform: translateX(calc(-15px + var(--mouse-x) * 20px)) translateY(calc(20px + var(--mouse-y) * 10px)) scale(calc(0.9 * var(--wave-intensity)));
        opacity: calc(0.34 * var(--wave-intensity));
    }
    75% {
        transform: translateX(calc(30px + var(--mouse-x) * 12px)) translateY(calc(-5px + var(--mouse-y) * 18px)) scale(calc(1.05 * var(--wave-intensity)));
        opacity: calc(0.36 * var(--wave-intensity));
    }
}

@keyframes waveFlow2 {
    0%, 100% {
        transform: translateX(calc(var(--mouse-x) * -15px)) translateY(calc(var(--mouse-y) * -10px)) rotate(0deg);
        opacity: calc(0.42 * var(--wave-intensity));
    }
    33% {
        transform: translateX(calc(-25px + var(--mouse-x) * -20px)) translateY(calc(15px + var(--mouse-y) * -15px)) rotate(1deg);
        opacity: calc(0.5 * var(--wave-intensity));
    }
    66% {
        transform: translateX(calc(35px + var(--mouse-x) * -25px)) translateY(calc(-20px + var(--mouse-y) * -12px)) rotate(-1deg);
        opacity: calc(0.36 * var(--wave-intensity));
    }
}

/* Rimuovi cursore pointer da tutti gli elementi */
*, *:hover, *:focus {
    cursor: default !important;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-6);
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1400;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    gap: var(--space-8);
}

.nav-logo .logo {
    height: 32px;
    width: auto;
}

.nav-logo .logo-full {
    height: 32px;
    max-width: 210px;
    object-fit: contain;
}

/* Badges */
.product-badge.pre-release {
    background: linear-gradient(135deg, #ff8a00, #ff3d00);
    color: #fff;
    font-size: var(--font-size-xs);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

.roadmap-disclaimer {
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    line-height: 1.4;
}

/* Settori Target */
.use-cases-grid.sectors {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
}
@media (max-width: 1100px) {
    .use-cases-grid.sectors { grid-template-columns: repeat(2, 1fr); }
    .use-cases-grid.sectors .use-case-card {
        min-height: 260px; /* Altezza ridotta per tablet */
    }
}
@media (max-width: 680px) {
    .use-cases-grid.sectors { grid-template-columns: 1fr; }
    .use-cases-grid.sectors .use-case-card {
        min-height: 240px; /* Altezza ridotta per mobile */
    }
}
.use-cases-grid.sectors .use-case-card h4 {
    font-size: var(--font-size-lg);
}
.use-cases-grid.sectors .use-case-card li {
    font-size: var(--font-size-sm);
}

/* Fix per mantenere altezza uniforme nei riquadri Per Investitori */
.use-cases-grid.sectors .use-case-card {
    display: flex;
    flex-direction: column;
    min-height: 280px; /* Altezza minima uniforme */
    align-items: stretch;
}

.use-cases-grid.sectors .use-case-card ul {
    flex: 1; /* La lista occupa lo spazio rimanente */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Architettura & Moduli (data-aos-delay="260") - 8 celle su 3 colonne con ultime 2 centrate */
.use-cases[data-aos-delay="260"] .use-cases-grid.sectors {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
}
.use-cases[data-aos-delay="260"] .use-cases-grid.sectors .use-case-card {
    grid-column: span 2;
}
.use-cases[data-aos-delay="260"] .use-cases-grid.sectors .use-case-card:nth-child(7) {
    grid-column: 2 / span 2;
}
.use-cases[data-aos-delay="260"] .use-cases-grid.sectors .use-case-card:nth-child(8) {
    grid-column: 4 / span 2;
}
@media (max-width: 1100px) {
    .use-cases[data-aos-delay="260"] .use-cases-grid.sectors {
        grid-template-columns: repeat(2, 1fr);
    }
    .use-cases[data-aos-delay="260"] .use-cases-grid.sectors .use-case-card {
        grid-column: span 1;
    }
    .use-cases[data-aos-delay="260"] .use-cases-grid.sectors .use-case-card:nth-child(7),
    .use-cases[data-aos-delay="260"] .use-cases-grid.sectors .use-case-card:nth-child(8) {
        grid-column: span 1;
    }
}
@media (max-width: 680px) {
    .use-cases[data-aos-delay="260"] .use-cases-grid.sectors {
        grid-template-columns: 1fr;
    }
}

/* Settori Target (data-aos-delay="300") - 6 celle su 3 colonne */
.use-cases[data-aos-delay="300"] .use-cases-grid.sectors {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}
@media (max-width: 1100px) {
    .use-cases[data-aos-delay="300"] .use-cases-grid.sectors {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .use-cases[data-aos-delay="300"] .use-cases-grid.sectors {
        grid-template-columns: 1fr;
    }
}

/* Caso d'uso: test dinamico su veicolo (data-aos-delay="520") - 3 celle su 3 colonne */
.use-cases[data-aos-delay="520"] .use-cases-grid.sectors {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}
@media (max-width: 1100px) {
    .use-cases[data-aos-delay="520"] .use-cases-grid.sectors {
        grid-template-columns: repeat(4, 1fr);
    }
    .use-cases[data-aos-delay="520"] .use-cases-grid.sectors .use-case-card {
        grid-column: span 2;
    }
    /* Centra l'ultima cella (la terza) */
    .use-cases[data-aos-delay="520"] .use-cases-grid.sectors .use-case-card:nth-child(3) {
        grid-column: 2 / span 2;
    }
}
@media (max-width: 680px) {
    .use-cases[data-aos-delay="520"] .use-cases-grid.sectors {
        grid-template-columns: 1fr !important;
    }
    .use-cases[data-aos-delay="520"] .use-cases-grid.sectors .use-case-card {
        grid-column: 1 / 2 !important;
    }
}

/* Vantaggi per i team (data-aos-delay="548") - 3 celle su 3 colonne */
.use-cases[data-aos-delay="548"] .use-cases-grid.sectors {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}
@media (max-width: 1100px) {
    .use-cases[data-aos-delay="548"] .use-cases-grid.sectors {
        grid-template-columns: repeat(4, 1fr);
    }
    .use-cases[data-aos-delay="548"] .use-cases-grid.sectors .use-case-card {
        grid-column: span 2;
    }
    /* Centra l'ultima cella (la terza) */
    .use-cases[data-aos-delay="548"] .use-cases-grid.sectors .use-case-card:nth-child(3) {
        grid-column: 2 / span 2;
    }
}
@media (max-width: 680px) {
    .use-cases[data-aos-delay="548"] .use-cases-grid.sectors {
        grid-template-columns: 1fr !important;
    }
    .use-cases[data-aos-delay="548"] .use-cases-grid.sectors .use-case-card {
        grid-column: 1 / 2 !important;
    }
}

/* Per Clienti (data-aos-delay="552") - 3 celle su 3 colonne */
.use-cases[data-aos-delay="552"] .use-cases-grid.sectors {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}
@media (max-width: 1100px) {
    .use-cases[data-aos-delay="552"] .use-cases-grid.sectors {
        grid-template-columns: repeat(4, 1fr);
    }
    .use-cases[data-aos-delay="552"] .use-cases-grid.sectors .use-case-card {
        grid-column: span 2;
    }
    /* Centra l'ultima cella (la terza) */
    .use-cases[data-aos-delay="552"] .use-cases-grid.sectors .use-case-card:nth-child(3) {
        grid-column: 2 / span 2;
    }
}
@media (max-width: 680px) {
    .use-cases[data-aos-delay="552"] .use-cases-grid.sectors {
        grid-template-columns: 1fr !important;
    }
    .use-cases[data-aos-delay="552"] .use-cases-grid.sectors .use-case-card {
        grid-column: 1 / 2 !important;
    }
}

.sector-disclaimers {
    margin-top: var(--space-12);
    display: grid;
    gap: var(--space-6);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.disclaimer-block {
    background: var(--surface-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
}
.disclaimer-block h4 {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xl);
    background: linear-gradient(135deg, var(--primary-color), #2fb3c7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.disclaimer-block ul.compact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: var(--font-size-sm);
}
.disclaimer-block ul.compact li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 6px;
}
.disclaimer-block.secondary {
    background: linear-gradient(135deg, #141414, #1e1e1e);
}
.disclaimer-block.secondary p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Synet Hero Redesign (dark simplified) */
.canlink-hero { display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr)); gap:var(--space-12); align-items:stretch; background:#101010; border:1px solid rgba(255,255,255,0.05); border-radius:var(--radius-xl); padding:var(--space-12) var(--space-10); position:relative; overflow:hidden; }
.canlink-hero::after {
        content: '';
        position: absolute;
        top: -40%;
        right: -20%;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(0,212,215,0.12), transparent 70%);
        filter: blur(40px);
        opacity: 0.35;
        pointer-events: none;
}
.canlink-col.text { display:flex; flex-direction:column; gap: var(--space-6); }
.section-label { font-size: var(--font-size-sm); letter-spacing:1px; font-weight:600; color: var(--primary-color); text-transform:uppercase; }
.canlink-title { font-size: clamp(2.8rem,6vw,4.5rem); line-height:0.95; font-weight:700; display:flex; flex-direction:column; }
.canlink-title span { background: linear-gradient(135deg,#b0ffff,#75f6f8); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.canlink-tagline { font-size: var(--font-size-lg); max-width: 560px; color: var(--text-secondary); }
.canlink-meta { display:flex; gap: var(--space-3); align-items:center; }
.meta-chip { background: rgba(255,255,255,0.06); padding:4px 10px; border-radius:999px; font-size: var(--font-size-xs); text-transform:uppercase; letter-spacing:.5px; }
.meta-chip.emphasis { background: linear-gradient(135deg,#003f40,#005e60); color:#aef9fa; }
.feature-grid { list-style:none; margin:0; padding:0; display:grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.feature-item { display:flex; gap:var(--space-4); background:#141414; border:1px solid rgba(255,255,255,0.05); padding:var(--space-4); border-radius:var(--radius-lg); align-items:flex-start; position:relative; }
.feature-item .icon { width:38px; height:38px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: linear-gradient(135deg,rgba(0,212,215,0.15),rgba(0,168,171,0.05)); font-size:16px; color: var(--primary-color); }
.feature-item h4 { font-size: var(--font-size-base); margin:0 0 4px; font-weight:600; }
.feature-item p { font-size: var(--font-size-sm); color: var(--text-secondary); margin:0; }
.cta-inline { margin-top: var(--space-6); }
.mini-disclaimer { margin-top: var(--space-4); font-size: var(--font-size-xs); color: var(--text-muted); max-width:520px; line-height:1.4; }
.canlink-col.visual { display:flex; align-items:center; justify-content:center; position:relative; }
.device-frame { position:relative; width:100%; max-width:420px; border-radius:28px; padding: var(--space-6); background: linear-gradient(145deg,#12181b,#0b0d0e); border:1px solid rgba(255,255,255,0.05); box-shadow:0 10px 40px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03); }
.device-frame img { width:100%; border-radius:18px; display:block; filter: saturate(1.05); }
.glow-ring { position:absolute; inset:-2px; border-radius:30px; background: linear-gradient(120deg,rgba(0,212,215,0.3),transparent,rgba(0,168,171,0.25)); mix-blend-mode:color-dodge; opacity:0.25; pointer-events:none; }

@media (max-width: 820px) {
    .canlink-hero { padding: var(--space-10) var(--space-6); }
    .canlink-title { font-size: clamp(2.4rem,9vw,3.6rem); }
    .feature-grid { grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); }
}

@media (max-width: 560px) {
    .canlink-hero { grid-template-columns:1fr; }
    .device-frame { max-width:320px; margin:0 auto; }
}

.footer-logo .logo-icon {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: var(--space-1);
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero { 
    min-height:100vh; 
    display:flex; 
    align-items:center; 
    position:relative; 
    background:#0a0a0a; 
    overflow:hidden; 
}

/* Enhanced dotted wave effect for hero section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, #00828c 1.2px, transparent 1.2px),
        radial-gradient(circle at 75% 75%, #00828c 0.8px, transparent 0.8px),
        radial-gradient(circle at 50% 10%, #00828c 1px, transparent 1px),
        radial-gradient(circle at 20% 90%, #00828c 1.5px, transparent 1.5px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px;
    background-position: 0 0, 50px 50px, 30px 20px, 70px 80px;
    opacity: 0.35;
    z-index: 1;
    animation: heroWaves 30s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(ellipse at 60% 40%, rgba(0, 130, 140, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 130, 140, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 130, 140, 0.06) 0%, transparent 70%);
    opacity: 1.0;
    z-index: 0;
    animation: heroGlow 20s ease-in-out infinite alternate;
    transition: opacity 0.3s ease;
}

/* Interactive enhancement on scroll */
.hero.enhanced::before {
    opacity: 0.45;
}

.hero.enhanced::after {
    opacity: 1.0;
}

@keyframes heroWaves {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.35;
    }
    20% {
        transform: translateX(15px) translateY(-20px) scale(1.05);
        opacity: 0.42;
    }
    40% {
        transform: translateX(-10px) translateY(25px) scale(0.95);
        opacity: 0.32;
    }
    60% {
        transform: translateX(25px) translateY(-15px) scale(1.08);
        opacity: 0.40;
    }
    80% {
        transform: translateX(-20px) translateY(10px) scale(0.98);
        opacity: 0.34;
    }
}

@keyframes heroGlow {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.9) rotate(-1deg);
        opacity: 0.5;
    }
}

/* Rendi trasparente solo la versione con Spline */
.hero-with-spline { background: transparent !important; }

/* New left-aligned hero with interactive Spline on top */
/* Centered variant with Spline */
.hero-centered-spline { text-align:center; justify-content:center; min-height: 100svh; }
.hero-centered-spline .hero-content-overlay { align-items:center; }
.synet-product-hero {
    min-height: clamp(260px, 34svh, 420px);
}
.synet-product-hero .hero-inline-logo {
    margin-bottom: 0;
}
.hero-title-centered-spline { font-size: clamp(1.45rem,2.55vw,2.25rem); margin-bottom:1.5rem; }
.hero-title-centered-spline,
.hero-title-centered-spline .title-line {
    font-family: 'Inter', var(--font-family);
    font-weight: 300;
    letter-spacing: 0;
}

.hero .hero-title.hero-title-centered-spline,
.hero .hero-title.hero-title-centered-spline .title-line {
    font-weight: 300;
}
.hero-description-centered-spline { max-width:760px; margin:0 auto; font-size:1.15rem; line-height:1.55; }
/* Rimuovi overlay/vignetta per mostrare solo la scena Spline */
.hero-centered-spline .hero-content-overlay::before { content:none !important; }
.hero-spline-front::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 24vh;
    min-height: 150px;
    background: linear-gradient(180deg, rgba(5, 12, 12, 0) 0%, rgba(5, 12, 12, 0.68) 56%, #071010 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-spline-front { position:absolute; inset:0; width:100%; height:100%; z-index:2; }
#threejs-container { display: none !important; }
#threejs-container canvas { opacity:0; transition:opacity 1s ease; }
#threejs-container.ready canvas { opacity:1; }
.hero-content-overlay { position:relative; z-index:3; width:100%; max-width:1200px; margin:0 auto; padding:0 4rem; display:flex; flex-direction:column; justify-content:center; height:100%; pointer-events:auto; }
.hero-inline-logo { width:320px; max-width:46vw; margin:0 0 2.2rem 0; filter:drop-shadow(0 4px 18px rgba(0,0,0,0.55)); pointer-events:none; }
.hero-brand-inline {
    pointer-events: none;
    position: relative;
    isolation: isolate;
}

.hero-brand-inline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(420px, 60vw);
    height: min(220px, 28vw);
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 215, 0.16) 0%, rgba(0, 130, 140, 0.07) 42%, rgba(0, 130, 140, 0) 72%);
    filter: blur(18px);
    opacity: 0.55;
    z-index: -1;
    animation: sxLogoGlow 5.5s ease-in-out infinite;
}

@keyframes sxLogoGlow {
    0%, 100% {
        opacity: 0.42;
        transform: translate(-50%, -50%) scale(0.96);
    }
    50% {
        opacity: 0.68;
        transform: translate(-50%, -50%) scale(1.04);
    }
}
.hero-title-left .title-line { background: linear-gradient(135deg,#ffffff,#b6fcfd); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* Ensure text clickable if needed (add class .interactive to allow) */
.hero-content-overlay.interactive { pointer-events:auto; }

@media (max-width: 900px){
    .hero-content-overlay { padding:0 2rem; }
    .hero-inline-logo { width:260px; }
    .hero-title-centered-spline { font-size: clamp(1.45rem,5vw,2.2rem); }
}
@media (max-width: 600px){
    .hero-inline-logo { width:220px; margin-bottom:1.4rem; }
    .hero-title-centered-spline { font-size: clamp(1.25rem,6vw,1.85rem); }
    .hero-description-centered-spline { font-size:1rem; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Centered variant */
/* Old centered hero styles commented out after Spline redesign */
/* .hero.hero-centered { text-align:center; display:flex; justify-content:center; } */
/* .hero-center-wrapper { max-width:880px; padding:0 var(--space-6); margin:0 auto; position:relative; z-index:3; } */
/* .hero-logo-wrap { display:flex; justify-content:center; margin-bottom:var(--space-8); } */
/* .hero-logo { max-width:340px; width:100%; filter:drop-shadow(0 10px 25px rgba(0,0,0,0.4)); animation: logoFade 1.2s ease forwards; opacity:0; } */
/* @keyframes logoFade { from { transform:translateY(40px) scale(.9); opacity:0; } to { transform:translateY(0) scale(1); opacity:1; } } */
/* .hero-title-centered { margin-bottom:var(--space-6); font-size: clamp(2rem, 4vw, 3rem); } */
/* .hero-description-centered { max-width:760px; margin:0 auto var(--space-8); } */
/* .hero-buttons-centered { justify-content:center; } */
/* .hero-chips.minimal { justify-content:center; } */

@media (max-width: 640px){
    .hero-logo { max-width:260px; }
    .hero-description-centered { font-size: var(--font-size-base); }
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

/* Animated Text Styles */
.animated-text {
    opacity: 0;
    transform: translateY(50px);
}

.animated-text.animate {
    opacity: 1;
    /* (Removed hero-chips styles - no longer used) */
    background: linear-gradient(135deg, var(--primary-color), #00a8ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.title-subtitle {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: var(--space-2);
}

/* New coordinated title animation */
.title-animated, .subtitle-animated {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.title-animated.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.subtitle-animated.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

/* Coordinated entrance effect */
.hero-title.entrance-effect {
    position: relative;
}

.hero-title.entrance-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: titleRevealLine 0.8s ease-out forwards;
    z-index: -1;
}

.hero-title.entrance-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 215, 0.1), transparent 70%);
    animation: titleRevealGlow 1.5s ease-out 0.3s forwards;
    z-index: -1;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    opacity: 1;
    transform: translateY(0);
}

.hero-description.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
}

.hero-buttons .btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons .btn.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

/* Scroll indicator rimosso */
.scroll-indicator {
    display: none !important;
}

.scroll-arrow {
    display: none !important;
}

/* Buttons */
/* New minimal button system */
.btn {
    --btn-bg: rgba(255,255,255,0.04);
    --btn-border: rgba(255,255,255,0.12);
    --btn-color: var(--text-primary);
    --btn-hover-bg: rgba(255,255,255,0.08);
    --btn-hover-border: var(--primary-color);
    --btn-active-bg: rgba(0,212,215,0.15);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    padding:.95rem 1.9rem;
    font-size:var(--font-size-base);
    font-weight:500;
    line-height:1;
    border-radius:38px;
    border:1px solid var(--btn-border);
    background:var(--btn-bg);
    color:var(--btn-color);
    cursor:pointer;
    position:relative;
    text-decoration:none;
    transition:background .25s ease, border-color .25s ease, color .25s ease, transform .15s ease;
    -webkit-tap-highlight-color:transparent;
}

.btn:focus-visible { outline:none; box-shadow:0 0 0 3px rgba(0,212,215,0.4); }
.btn:hover { background:var(--btn-hover-bg); border-color:var(--btn-hover-border); }
.btn:active { background:var(--btn-active-bg); transform:translateY(1px); }

/* Primary (filled) */
.btn-primary { --btn-bg: var(--primary-color); --btn-hover-bg: #09ebef; --btn-active-bg:#06c3c6; --btn-color:#002224; --btn-border: var(--primary-color); --btn-hover-border:#09ebef; }
.btn-primary:hover { box-shadow:0 0 0 4px rgba(0,212,215,0.15); }
.btn-primary:active { box-shadow:0 0 0 2px rgba(0,212,215,0.2) inset; }

/* Ghost (secondary) */
.btn-secondary { --btn-bg: rgba(255,255,255,0.03); --btn-border: rgba(255,255,255,0.14); --btn-hover-bg: rgba(255,255,255,0.08); --btn-hover-border: var(--primary-color); }

/* Outline style variant */
.btn-outline { background:transparent; --btn-color:var(--primary-color); border:1px solid var(--primary-color); }
.btn-outline:hover { background:rgba(0,212,215,0.1); }

/* Section Styles */
section {
    padding: var(--space-20) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(30px);
}

.section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Text Animation Classes */
.animated-text[data-animation="slideInLeft"] {
    transform: translateX(-100px);
    opacity: 0;
}

.animated-text[data-animation="slideInLeft"].animate {
    transform: translateX(0);
    opacity: 1;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-text[data-animation="slideInRight"] {
    transform: translateX(100px);
    opacity: 0;
}

.animated-text[data-animation="slideInRight"].animate {
    transform: translateX(0);
    opacity: 1;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-text[data-animation="slideInUp"] {
    transform: translateY(50px);
    opacity: 0;
}

.animated-text[data-animation="slideInUp"].animate {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-text[data-animation="fadeInUp"] {
    transform: translateY(30px);
    opacity: 0;
}

.animated-text[data-animation="fadeInUp"].animate {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-text[data-animation="scaleIn"] {
    transform: scale(0.8);
    opacity: 0;
}

.animated-text[data-animation="scaleIn"].animate {
    transform: scale(1);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Services Section */
.services {
    background:
        radial-gradient(circle at 12% 18%, rgba(0,212,215,0.06), transparent 40%),
        radial-gradient(circle at 85% 8%, rgba(0,212,215,0.05), transparent 38%),
        linear-gradient(135deg, var(--background-dark) 0%, #0b1012 100%);
}

.services .section-title {
    font-family: 'Inter', var(--font-family);
    font-weight: 700;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.services .section-subtitle {
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: var(--space-5);
    max-width: 980px;
    margin: var(--space-10) auto 0;
    align-items: stretch;
}

.service-card {
    background: #121212;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-3);
    min-height: 0;
    height: 100%;
}

.service-card:has(.service-icon) {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-areas:
        "icon title"
        "icon text";
    column-gap: var(--space-5);
    row-gap: var(--space-1);
    align-items: start;
    min-height: 158px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 215, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    border-color: rgba(0, 212, 215, 0.45);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    grid-area: icon;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(0, 212, 215, 0.12);
    border: 1px solid rgba(0, 212, 215, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: var(--font-size-xl);
    color: #ffffff;
}

.service-card h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 var(--space-2);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
    position: relative;
    z-index: 2;
}

.service-card:has(.service-icon) h3 {
    grid-area: title;
}

.service-card:has(.service-icon) p {
    grid-area: text;
}

.service-card:not(:has(.service-icon)):not(:has(p)) {
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 112px;
}

.service-card:not(:has(.service-icon)):not(:has(p)) h3 {
    margin: 0;
    text-align: center;
}

.service-card-title-only {
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 112px;
}

.service-card-title-only h3 {
    margin: 0;
    text-align: center;
}

.service-card-balanced {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.service-card::before {
    pointer-events: none;
}

/* Featured Product Section */
.featured-product {
    background: linear-gradient(135deg, var(--background-dark), var(--surface-dark));
    overflow: hidden;
    position: relative;
}

/* Minimal featured product variant */
.featured-product.minimal {
    background: var(--background-dark);
    padding: var(--space-12) 0 var(--space-4);
}

.product-showcase.compact {
    display: block;
    position: relative;
    border: 1px solid rgba(0,212,215,0.25);
    border-radius: 34px;
    padding: 4.8rem 5rem 3.6rem;
    background: rgba(18, 18, 18, 0.94);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 28px 90px rgba(0,0,0,0.42), 0 0 34px rgba(0,212,215,0.13);
    overflow: hidden;
    animation: synetBoxPulse 5.6s ease-in-out infinite;
    max-width: 1080px;
    margin: 0 auto;
}

.product-showcase.compact::after {
    content: '';
    position: absolute;
    inset: -48%;
    background: linear-gradient(135deg,
        transparent 39%,
        rgba(255, 255, 255, 0.035) 46%,
        rgba(255, 255, 255, 0.17) 50%,
        rgba(0, 212, 215, 0.08) 54%,
        transparent 62%);
    opacity: 0;
    transform: translate3d(-38%, -32%, 0);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.product-showcase.compact.sheen-forward::after {
    animation: synetSheenForward var(--synet-sheen-duration, 1800ms) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-showcase.compact.sheen-reverse::after {
    animation: synetSheenReverse var(--synet-sheen-duration, 1800ms) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-showcase.compact > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 1100px) {
    .product-showcase.compact { grid-template-columns: 1fr; text-align: left; }
}

.product-badge.static {
    display: none;
}

.product-badge.pre-release {
    position: absolute;
    top: 1.9rem;
    right: 2rem;
    z-index: 2;
    margin: 0;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.synet-brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin: 0 auto 2.6rem;
    padding-right: 0;
}

.synet-wordmark {
    height: 82px;
    width: auto;
    max-width: min(390px, 42vw);
    object-fit: contain;
}

.synet-symbol {
    height: 115px;
    width: auto;
    max-width: min(170px, 18vw);
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(0, 212, 215, 0.18));
}

.featured-product.minimal .product-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: var(--space-4);
    line-height: 1.05;
}

.product-description.concise {
    max-width: 860px;
    font-size: clamp(1.12rem, 1.55vw, 1.28rem);
    color: var(--text-secondary);
    margin: 0 auto 2.25rem;
    text-align: center;
    line-height: 1.68;
}

.product-features.clean {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: var(--space-3) var(--space-8);
    margin-bottom: var(--space-8);
    padding: 0;
    list-style: none;
}

.product-features.clean li {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.product-features.clean i {
    color: var(--primary-color);
    margin-top: 4px;
}

.product-contact .btn-primary {
    background: linear-gradient(90deg, var(--primary-color), #00f0ff);
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    padding: 1.28rem 3.35rem;
    border-radius: 22px;
    min-width: 330px;
    box-shadow: 0 12px 36px rgba(0, 212, 215, 0.22);
}

.product-contact {
    display: flex;
    justify-content: center;
}

.product-contact .btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.product-mockup.subdued {
    background: radial-gradient(circle at 60% 40%, rgba(0,212,215,0.15), transparent 60%);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 32px;
    padding: var(--space-12) var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.product-mockup.subdued .device-image { max-width: 70%; opacity: 0.9; }

@media (max-width: 768px) {
    .product-features.clean { grid-template-columns: 1fr; }
    .product-showcase.compact { padding: var(--space-10) var(--space-8); border-radius: 32px; }
    .product-badge.pre-release { position: static; display: inline-block; margin-bottom: var(--space-6); }
    .synet-brand-lockup { flex-direction: column; gap: var(--space-4); padding-right: 0; }
    .synet-wordmark { height: auto; width: min(300px, 78vw); }
    .synet-symbol { height: auto; width: min(130px, 42vw); }
    .product-mockup.subdued { min-height: 260px; padding: var(--space-8); }
}

@keyframes synetBoxPulse {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 28px 90px rgba(0,0,0,0.42), 0 0 34px rgba(0,212,215,0.13);
    }
    45% {
        box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 30px 98px rgba(0,0,0,0.44), 0 0 68px rgba(0,212,215,0.26);
    }
}

@keyframes synetSheenForward {
    0% {
        opacity: 0;
        transform: translate3d(-38%, -32%, 0);
    }
    22% {
        opacity: 0.54;
    }
    100% {
        opacity: 0;
        transform: translate3d(38%, 32%, 0);
    }
}

@keyframes synetSheenReverse {
    0% {
        opacity: 0;
        transform: translate3d(38%, 32%, 0);
    }
    22% {
        opacity: 0.46;
    }
    100% {
        opacity: 0;
        transform: translate3d(-38%, -32%, 0);
    }
}

.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 215, 0.05), transparent);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.product-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--background-dark);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
}

.product-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, var(--primary-color), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.product-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.product-features i {
    color: var(--primary-color);
    margin-right: var(--space-3);
}

.product-buttons {
    display: flex;
    gap: var(--space-4);
}

.product-visual {
    position: relative;
    height: 500px;
}

.product-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 212, 215, 0.2), transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Professional Products Section */
.products.professional {
    background: var(--background-dark);
    padding: var(--space-20) 0;
}

/* Featured Product Showcase */
.featured-product {
    margin-bottom: var(--space-20);
}

.product-showcase {
    background: linear-gradient(135deg, var(--surface-dark) 0%, rgba(13, 17, 23, 0.8) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 215, 0.2);
    overflow: hidden;
    position: relative;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    padding: var(--space-12);
    align-items: center;
}

.product-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-badges {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.badge {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.professional {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.badge.ai-powered {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.product-hero-content {
    padding: var(--space-6);
}

.product-category {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.product-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-tagline {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.key-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(0, 212, 215, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 212, 215, 0.1);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.product-pricing-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.price-structure {
    display: flex;
    flex-direction: column;
}

.price-tier {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.price-label {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.price-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

.price-includes {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-width: 280px;
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-xl);
    font-weight: 700;
    min-width: 320px;
}

/* Technical Specifications */
.technical-specs {
    background: var(--surface-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    margin-bottom: var(--space-16);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.specs-header h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.specs-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.specs-grid {
        display: grid;
        gap: var(--space-8);
        align-items: stretch;
}

/* SEZIONE 1: Specifiche Tecniche (data-aos-delay="200") - 5 celle su 3 colonne */
.technical-specs[data-aos-delay="200"] .specs-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-6);
}
.technical-specs[data-aos-delay="200"] .specs-grid .spec-category {
    grid-column: span 2;
}
.technical-specs[data-aos-delay="200"] .specs-grid .spec-category:nth-child(7) { 
    grid-column: 2 / span 2;
}
.technical-specs[data-aos-delay="200"] .specs-grid .spec-category:nth-child(8) { 
    grid-column: 4 / span 2;
}

/* SEZIONE 2: Benchmark sintetici (data-aos-delay="540") - 2 celle centrate */
.technical-specs[data-aos-delay="540"] .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: var(--space-8);
}

/* SEZIONE 3: Compatibilità & Integrazione (data-aos-delay="545") - 4 celle su 2x2 */
.technical-specs[data-aos-delay="545"] .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

/* SEZIONE 4: Altre sezioni (data-aos-delay="550") - layout standard 3 colonne */
.technical-specs[data-aos-delay="550"] .specs-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Per sezioni con 5 celle: centra le celle 4 e 5 su grid a 6 colonne */
.specs-grid .spec-category:nth-last-child(2):nth-child(4) {
    grid-column: 2 / span 2;
}
.specs-grid .spec-category:nth-last-child(1):nth-child(5) {
    grid-column: 4 / span 2;
}

/* Centrare le note SOLO nella sezione Benchmark */
.technical-specs[data-aos-delay="540"] .section-subtitle {
    text-align: center;
    margin: var(--space-4) auto;
}

/* Media queries specifiche per le sezioni speciali */
@media (max-width: 780px) {
    /* Benchmark sintetici su mobile: stack verticale */
    .technical-specs[data-aos-delay="540"] .specs-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        gap: var(--space-4);
    }
    
    .technical-specs[data-aos-delay="540"] .specs-grid .spec-category {
        width: 100%;
        flex: 1 0 auto;
    }
    
    /* Compatibility & Integration su mobile: stack verticale */
    .technical-specs[data-aos-delay="545"] .specs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-4);
        max-width: 100%;
    }
}

/* Media queries specifiche per ogni sezione */
@media (max-width: 1199px) {
    /* Specifiche Tecniche: passa a 2 colonne con ultima centrata */
    .technical-specs[data-aos-delay="200"] .specs-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: var(--space-6);
    }
    
    .technical-specs[data-aos-delay="200"] .specs-grid .spec-category {
        grid-column: span 2 !important;
    }
    
    /* Centra l'ultima cella (la quinta) */
    .technical-specs[data-aos-delay="200"] .specs-grid .spec-category:nth-child(5):last-child {
        grid-column: 2 / span 2 !important;
    }
    
    /* Benchmark sintetici: rimane 2 colonne */
    .technical-specs[data-aos-delay="540"] .specs-grid {
        max-width: 100%;
    }
    
    /* Compatibility & Integration: rimane 2x2 */
    .technical-specs[data-aos-delay="545"] .specs-grid {
        gap: var(--space-4);
        max-width: 100%;
    }
    
    /* Altre sezioni: 2 colonne */
    .technical-specs[data-aos-delay="550"] .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Forza 2 colonne nel range problematico */
@media (min-width: 901px) and (max-width: 1199px) {
    .technical-specs[data-aos-delay="200"] .specs-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .technical-specs[data-aos-delay="200"] .specs-grid .spec-category {
        grid-column: span 2 !important;
    }
    
    .technical-specs[data-aos-delay="200"] .specs-grid .spec-category:nth-child(5):last-child {
        grid-column: 2 / span 2 !important;
    }
}

@media (max-width: 780px) {
    /* Tutte le sezioni: 1 colonna su mobile */
    .technical-specs[data-aos-delay="200"] .specs-grid,
    .technical-specs[data-aos-delay="540"] .specs-grid,
    .technical-specs[data-aos-delay="545"] .specs-grid,
    .technical-specs[data-aos-delay="550"] .specs-grid {
        grid-template-columns: 1fr !important;
        max-width: 100%;
    }
    
    /* Reset TUTTE le celle su mobile - ogni cella occupa 1 colonna */
    .technical-specs[data-aos-delay="200"] .specs-grid .spec-category,
    .technical-specs[data-aos-delay="200"] .specs-grid .spec-category:nth-child(5):last-child {
        grid-column: 1 / 2 !important;
        margin: 0 !important;
        width: 100% !important;
    }
}

.spec-category { 
    background:#121212; 
    border-radius:var(--radius-lg); 
    padding:var(--space-6); 
    border:1px solid rgba(255,255,255,0.06); 
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spec-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.spec-category-header i {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
}

.spec-category-header h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.spec-list li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li strong {
    color: var(--primary-color);
}

/* Use Cases Section */
.use-cases {
    margin-bottom: var(--space-16);
}

.use-cases-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.use-cases-header h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.use-cases-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch; /* Allinea tutti gli elementi alla stessa altezza */
    justify-items: center;
}

.use-case-card {
    background: var(--surface-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    width: 100%;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.use-case-icon i {
    color: var(--background-dark);
    font-size: var(--font-size-xl);
}

.use-case-card h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card ul li {
    color: var(--text-secondary);
    padding: var(--space-1) 0;
    position: relative;
    padding-left: var(--space-4);
}

.use-case-card ul li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Compatibility Section */
.compatibility-section {
    background: var(--surface-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    margin-bottom: var(--space-16);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compatibility-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.compatibility-header h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.compatibility-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

/* New compatibility matrix */
.compat-matrix { 
    display:grid; 
    gap: var(--space-8); 
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}
.compat-col { 
    background: var(--background-dark); 
    border:1px solid rgba(255,255,255,0.06); 
    border-radius: var(--radius-lg); 
    padding: var(--space-6); 
    position:relative; 
    overflow:hidden; 
}
.compat-col::after { 
    content:''; 
    position:absolute; 
    inset:0; 
    background:radial-gradient(circle at 85% 15%, rgba(0,212,215,0.15), transparent 70%); 
    opacity:0.25; 
    pointer-events:none;
}
.compat-title { 
    display:flex; 
    align-items:center; 
    gap: var(--space-3); 
    font-weight:600; 
    margin-bottom: var(--space-4); 
    font-size: var(--font-size-lg);
}
.compat-title i { color: var(--primary-color); }
.compat-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.compat-list li { display:flex; justify-content:space-between; gap:var(--space-4); font-size:var(--font-size-sm); background:#121212; padding:8px 12px; border-radius:10px; border:1px solid rgba(255,255,255,0.06); }
.compat-list li strong { color: var(--text-primary); font-weight:600; }
.compat-list li .note { color: var(--primary-color); opacity:0.85; font-size: 0.75rem; letter-spacing:.5px; text-transform:uppercase; }
.compat-list li:hover { border-color: var(--primary-color); background: rgba(0,212,215,0.07); }

@media (max-width: 760px) {
  .compat-matrix { grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); }
  .compat-list li { flex-direction:column; align-items:flex-start; }
  .compat-list li .note { margin-top:2px; }
}

.compat-group h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.compat-group h4 i {
    color: var(--primary-color);
}

.compat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.compat-tag {
    padding: var(--space-2) var(--space-3);
    background: rgba(0, 212, 215, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 212, 215, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition-fast);
}

.compat-tag:hover {
    background: rgba(0, 212, 215, 0.2);
    transform: translateY(-2px);
}

/* Additional Products */
.additional-products {
    margin-bottom: var(--space-16);
}

.additional-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.additional-header h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.additional-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
}

.additional-product {
    background: var(--surface-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.additional-product:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.additional-image {
    height: 200px;
    overflow: hidden;
}

.additional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.additional-product:hover .additional-image img {
    transform: scale(1.05);
}

.additional-content {
    padding: var(--space-6);
}

/* Hardware variants */
.hardware-variants .variant.standard { border:1px solid rgba(0,212,215,0.25); }
.hardware-variants .variant.enterprise { border:1px solid rgba(255,180,0,0.25); }
.hardware-variants .variant.enterprise:hover { border-color:#ffb400; }
.hardware-variants .variant.standard:hover { border-color: var(--primary-color); }
.hw-specs { list-style:none; margin: var(--space-4) 0 var(--space-2); padding:0; display:flex; flex-direction:column; gap:6px; }
.hw-specs li { font-size: var(--font-size-sm); padding:6px 10px; background: rgba(255,255,255,0.04); border-radius:8px; border:1px solid rgba(255,255,255,0.05); }
.variant.enterprise .hw-specs li { background: rgba(255,180,0,0.08); border-color: rgba(255,180,0,0.15); }
.variant.standard .hw-specs li { background: rgba(0,212,215,0.08); border-color: rgba(0,212,215,0.15); }
.variant.enterprise h4 { background: linear-gradient(135deg,#ffd37a,#ff9d00); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.variant.standard h4 { background: linear-gradient(135deg,var(--primary-color),#35f1f3); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

.additional-content h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.additional-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.additional-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.additional-specs span {
    padding: var(--space-1) var(--space-2);
    background: rgba(0, 212, 215, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.additional-price {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Product CTA Section */
.product-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    text-align: center;
    color: var(--background-dark);
}

.cta-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--background-dark);
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    color: rgba(13, 17, 23, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.cta-content .cta-buttons .btn-primary {
    background: var(--background-dark) !important;
    color: var(--text-primary) !important;
}

.cta-content .cta-buttons .btn-secondary {
    background: transparent !important;
    color: var(--background-dark) !important;
    border: 2px solid var(--background-dark) !important;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.guarantee i {
    color: var(--background-dark);
    font-size: var(--font-size-lg);
}

.guarantee span {
    color: rgba(13, 17, 23, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-pricing-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: var(--space-4);
    }
}
    
    .team-grid-detailed {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .member-photo {
        height: 200px;
    }
    
    .testimonials-wrapper {
        height: auto;
        min-height: 300px;
    }
    
    .testimonial-card {
        position: static;
        transform: none;
        opacity: 1;
        margin-bottom: var(--space-6);
    }
    
    .testimonial-card:not(.active) {
        display: none;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        right: -10px;
    }
    
    .faq-question {
        padding: var(--space-4);
    }
    
    .faq-answer p {
        padding: 0 var(--space-4) var(--space-4);
    }

.product-details p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.product-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
}

/* About Section */
.about {
    background:
        radial-gradient(circle at 10% 15%, rgba(0,212,215,0.05), transparent 38%),
        radial-gradient(circle at 88% 10%, rgba(0,212,215,0.04), transparent 34%),
        linear-gradient(135deg, var(--background-dark) 0%, #0b1012 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.stat-label {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-visual {
    position: relative;
    height: auto; /* allow content-driven height instead of fixed */
}

.team-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: flex-start;
    justify-content: center; /* center rows when last row has fewer items */
}

.team-card {
    position: static; /* no absolute positioning */
    flex: 0 1 160px; /* fixed card width for consistent grid packing */
    width: 160px;
    background: transparent; /* remove gradient box */
    border-radius: var(--radius-md);
    overflow: hidden;
    border: none;
    box-shadow: none;
    display: block;
}

.team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* keep square thumbs */
    object-fit: cover;
    display: block;
}

/* Removed rotation: static grid now */

/* nth-child transforms removed: no rotation/positioning per item */

/* Contact Section */
.contact-content {
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-8);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-4);
}

.contact-icon i {
    font-size: var(--font-size-xl);
    color: #ffffff;
}

.contact-details h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.contact-details p {
    color: var(--text-secondary);
}

/* Horizontal Contact Layout */
.contact-info.horizontal {
    display: flex !important;
    justify-content: space-around !important;
    align-items: flex-start !important;
    gap: var(--space-6) !important;
    flex-wrap: nowrap !important;
}

.contact-info.horizontal .contact-item {
    flex: 1 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.contact-info.horizontal .contact-item .contact-icon {
    margin-right: 0 !important;
    margin-bottom: var(--space-3) !important;
    align-self: center !important;
}

/* Mobile responsive for contact section */
@media (max-width: 768px) {
    .contact-info.horizontal {
        flex-direction: column !important;
        align-items: center !important;
        gap: var(--space-8) !important;
        max-width: 100% !important;
        padding: 0 var(--space-4) !important;
    }
    
    .contact-info.horizontal .contact-item {
        width: 100% !important;
        max-width: 280px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-info.horizontal .contact-item .contact-icon {
        margin: 0 auto var(--space-3) auto !important;
    }
    
    .contact-info.horizontal .contact-item .contact-details {
        width: 100% !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .contact-info.horizontal {
        gap: var(--space-6) !important;
        padding: 0 var(--space-2) !important;
    }
    
    .contact-info.horizontal .contact-item {
        max-width: 240px !important;
    }
}

/* Contact Links Styles */
.contact-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: var(--transition-standard) !important;
    padding: var(--space-2) !important;
    border-radius: var(--radius-xl) !important;
    width: 100% !important;
    position: relative !important;
}

.contact-link:hover {
    transform: translateY(-4px) !important;
}

.contact-link:hover .contact-icon {
    box-shadow: 0 48px 160px rgba(0, 130, 140, 0.35), 0 20px 80px rgba(0, 130, 140, 0.28), 0 8px 32px rgba(0, 130, 140, 0.22) !important;
}

.contact-link:hover .contact-icon i {
    transform: scale(1.05) !important;
}

.contact-link:hover .contact-details h4 {
    color: var(--primary-color) !important;
}

.contact-link:active {
    transform: translateY(-2px) !important;
}



/* Form Styles */
.contact-form {
    background: var(--surface-dark);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-6);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    background: var(--background-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 215, 0.1);
}

.form-group label {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    color: var(--text-muted);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    background: var(--surface-dark);
    padding: 0 var(--space-2);
}

/* Footer */
.footer {
    background: var(--background-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    align-items: start;
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-2);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* Uniforma i colori nel footer */
.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul li {
    color: var(--text-secondary);
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-4);
}

.footer-section:first-child p {
    text-align: center;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* One-time shimmer effect after reveal */
@keyframes titleRevealLine {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 100%;
        opacity: 1;
    }
    100% {
        height: 0;
        opacity: 0;
    }
}

@keyframes titleRevealGlow {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    50% {
        width: 300px;
        height: 150px;
        opacity: 0.3;
    }
    100% {
        width: 0;
        height: 0;
        opacity: 0;
    }
}

/* Typewriter effect for subtitle */
.subtitle-animated.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    width: 0;
    animation: typewriter 2s steps(40, end) forwards, blinkCursor 0.8s infinite;
}

.subtitle-animated.typewriter.finished {
    border-right: none;
    animation: none;
    width: 100%;
}

@keyframes typewriter {
    from { 
        width: 0; 
    }
    to { 
        width: 100%; 
    }
}

@keyframes blinkCursor {
    from, to { 
        border-color: transparent; 
    }
    50% { 
        border-color: var(--primary-color); 
    }
}

/* Preloader (spinner) */
.preloader-content { text-align:center; width:min(340px,90vw); padding:1.5rem 1rem; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.25rem; }
.preloader-logo img {
    height: clamp(38px, 10vw, 60px);
    width: auto;
    max-width: min(260px, 82vw);
    display: block;
    margin: 0 auto;
    object-fit: contain;
    aspect-ratio: auto;
}
.preloader-spinner { display:flex; justify-content:center; }
/* Minimal spinner without glow */
.spinner { width:52px; height:52px; border:4px solid rgba(255,255,255,0.08); border-top-color:var(--primary-color); border-radius:50%; animation:spin .9s linear infinite; }

@media (max-width: 480px) {
    .preloader-logo img {
        height: clamp(28px, 8vw, 44px);
        width: auto;
    }
}
@keyframes spin { to { transform:rotate(360deg); } }

/* Float and pulse animations for visual elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Mouse parallax effect */
.hero-background.mouse-active .shape {
    transition: transform 0.3s ease-out;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive adjustments for wave background */
@media (max-width: 768px) {
    body::before {
        background-size: 40px 40px, 60px 60px;
        opacity: 0.14;
    }
    
    body::after {
        background-size: 30px 30px, 50px 50px, 35px 35px, 65px 65px;
        opacity: 0.20;
    }
    
    .hero::before {
        background-size: 70px 70px, 55px 55px, 85px 85px, 65px 65px;
        opacity: 0.28;
    }
    
    .hero::after {
        opacity: 0.95;
    }
}

@media (max-width: 480px) {
    body::before {
        background-size: 30px 30px, 45px 45px;
        opacity: 0.12;
    }
    
    body::after {
        background-size: 25px 25px, 40px 40px, 30px 30px, 50px 50px;
        opacity: 0.17;
    }
    
    .hero::before {
        background-size: 50px 50px, 40px 40px, 60px 60px, 45px 45px;
        opacity: 0.24;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    body::before,
    body::after,
    .hero::before,
    .hero::after {
        animation: none;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team {
    background: var(--surface-dark);
    padding: var(--space-20) 0;
}

.team-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.team-member {
    background: var(--background-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.member-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.member-info {
    padding: var(--space-6);
}

.member-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.skill-tag {
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 212, 215, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: var(--background-dark);
    padding: var(--space-20) 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: var(--surface-dark);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    margin-bottom: var(--space-6);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
}

.testimonial-content p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    padding-left: var(--space-12);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.author-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
}

.rating {
    display: flex;
    gap: 2px;
}

.rating .star {
    color: #ffd700;
    font-size: var(--font-size-sm);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

/* Dots rimossi - nascosti */
.dot {
    display: none !important;
}

.dot.active {
    display: none !important;
}

/* Partners Section */
.partners {
    background: var(--surface-dark);
    padding: var(--space-16) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
}

.partner-item {
    background: var(--background-dark);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.partner-item img {
    height: 60px;
    object-fit: contain;
    margin-bottom: var(--space-4);
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.partner-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Blog Section */
.blog {
    background: var(--background-dark);
    padding: var(--space-20) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.blog-post.featured {
    grid-column: 1 / -1;
}

.blog-post {
    background: var(--surface-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--primary-color);
    color: var(--background-dark);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.post-date {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.post-content {
    padding: var(--space-6);
}

.post-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.blog-post.featured .post-content h3 {
    font-size: var(--font-size-2xl);
}

.post-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.read-time {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-dark);
}

.blog-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    background:
        radial-gradient(circle at 16% 18%, rgba(0,212,215,0.05), transparent 40%),
        radial-gradient(circle at 84% 12%, rgba(0,212,215,0.04), transparent 36%),
        linear-gradient(135deg, var(--background-dark) 0%, #0b1012 100%);
    padding: var(--space-20) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-dark);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    background: var(--primary-color);
    padding: var(--space-16) 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--background-dark);
    margin-bottom: var(--space-2);
}

.newsletter-text p {
    color: rgba(13, 17, 23, 0.8);
    font-size: var(--font-size-lg);
}

.newsletter-form {
    flex: 1;
}

.input-group {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    outline: none;
}

.newsletter-form .btn {
    white-space: nowrap;
    background: var(--background-dark) !important;
    color: var(--text-primary) !important;
}

.newsletter-form .btn:hover {
    background: var(--surface-dark) !important;
}

.privacy-notice {
    color: rgba(13, 17, 23, 0.7);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 212, 215, 0.3);
    transition: var(--transition-fast);
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 212, 215, 0.4);
}

.chat-button i {
    font-size: var(--font-size-xl);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--surface-dark);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.chat-window.active {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--background-dark);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.chat-agent img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    font-size: var(--font-size-sm);
}

.status {
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.status.online {
    color: #4ade80;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: var(--font-size-xl);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.chat-messages {
    flex: 1;
    padding: var(--space-4);
    overflow-y: auto;
}

.message {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.message-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: var(--background-dark);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    margin: 0 0 var(--space-1);
    color: var(--text-primary);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content p {
    background: var(--primary-color);
    color: var(--background-dark);
}

.message-time {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.quick-actions {
    padding: var(--space-4);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action {
    padding: var(--space-2) var(--space-3);
    background: var(--background-dark);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-action:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    border-color: var(--primary-color);
}

.chat-input {
    display: flex;
    padding: var(--space-4);
    gap: var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: var(--space-3);
    background: var(--background-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    outline: none;
    font-size: var(--font-size-sm);
}

.chat-input input:focus {
    border-color: var(--primary-color);
}

.send-button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--primary-color);
    color: var(--background-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.send-button:hover {
    background: var(--primary-dark);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .newsletter-content {
        text-align: left;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .hamburger {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        max-width: 560px;
    }
    
    .nav-container {
        padding: var(--space-2) var(--space-4);
    }
    
    .nav-logo .logo-full {
        height: 32px;
        max-width: 200px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 56px;
        flex-direction: column;
        background-color: var(--background-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--space-6) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        max-width: 350px;
    }

    .service-card:has(.service-icon) {
        grid-template-columns: 46px 1fr;
        column-gap: var(--space-4);
        padding: var(--space-5);
    }

    .service-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .product-title {
        font-size: var(--font-size-4xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* RIMOZIONE COMPLETA CURSORE POINTER - REGOLA FINALE GLOBALE */
* {
    cursor: default !important;
}

*:hover {
    cursor: default !important;
}

*:focus {
    cursor: default !important;
}

*:active {
    cursor: default !important;
}

a, button, .btn, .hamburger, .nav-link, .faq-question, .contact-item, .service-card, .service-icon {
    cursor: default !important;
}

/* Organic hero background: no tiled dot patterns */
body::before,
body::after,
.hero::before {
    content: none !important;
    display: none !important;
    background: none !important;
    animation: none !important;
    opacity: 0 !important;
}

.hero-random-field {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.page-random-field {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

section,
footer {
    position: relative;
}

section,
footer {
    z-index: 1;
}

.hero,
.services,
.featured-product.minimal,
.about,
.contact {
    background: transparent !important;
}

/* FINAL background reset: one continuous page canvas, no hero/services seam */
.hero,
.hero-spline-front,
.services,
.featured-product,
.featured-product.minimal,
.about,
.contact {
    background: transparent !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

.services .section-subtitle {
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary) !important;
    background: none !important;
}

.hero::before,
.hero::after,
.hero-spline-front::before,
.hero-spline-front::after,
.services::before,
.services::after,
.featured-product::before,
.featured-product::after,
.featured-product.minimal::before,
.featured-product.minimal::after,
.about::before,
.about::after,
.contact::before,
.contact::after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Keep the page background continuous: no section separator bands */
.services::before,
.services::after,
.hero-spline-front::after,
.featured-product::before,
.featured-product::after,
.featured-product.minimal::after,
.about::after,
.faq::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.services,
.featured-product,
.featured-product.minimal,
.about,
.contact {
    background: transparent !important;
}

.footer {
    background: rgba(18, 18, 18, 0.92) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Inter typography system */
body,
p,
a,
li,
span,
button,
input,
textarea,
label,
.section-subtitle,
.service-card p,
.product-description,
.about-text p,
.contact-details p,
.footer-section p,
.footer-section li {
    font-family: 'Inter', var(--font-family);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.service-card h3,
.product-title,
.contact-details h4,
.footer-section h4 {
    font-family: 'Inter', var(--font-family);
    font-weight: 700;
}

.hero .hero-title.hero-title-centered-spline,
.hero .hero-title.hero-title-centered-spline .title-line {
    font-family: 'Inter', var(--font-family);
    font-weight: 300;
}

/* Unified sober scroll reveal */
.reveal-unified,
[data-aos="fade-up"] {
    opacity: 0 !important;
    transform: translateY(22px) !important;
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms) !important;
    will-change: opacity, transform;
}

.reveal-unified.is-visible,
[data-aos="fade-up"].aos-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.section-title.animate,
.section-subtitle.animate,
.animated-text.animate,
.animated-text[data-animation].animate {
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms) !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-unified,
    [data-aos="fade-up"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Synet real UI embedded demo */
.synet-demo-section {
    padding: var(--space-20) 0;
    background: var(--bg-primary);
}

.synet-demo-section .section-header.compact {
    max-width: 760px;
    margin: 0 auto var(--space-8);
}

.synet-real-app-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: #05070b;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.real-app-topbar {
    min-height: 48px;
    padding: 0 var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-weight: 600;
}

.real-app-topbar i {
    color: #4ade80;
    font-size: 0.65rem;
}

.real-app-topbar a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.synet-real-app-frame iframe {
    display: block;
    width: 100%;
    height: min(760px, 78vh);
    min-height: 520px;
    border: 0;
    background: #06080d;
}

.synet-launch-section,
.synet-hardware-section {
    position: relative;
    padding: var(--space-16) 0;
    background: transparent;
}

.synet-launch-kicker,
.synet-hardware-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 var(--space-4);
    border-radius: 999px;
    background: rgba(0, 132, 142, 0.22);
    border: 1px solid rgba(0, 212, 215, 0.28);
    color: var(--primary-color);
    font-family: 'Inter', var(--font-family);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.synet-launch-grid,
.synet-hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.1rem, 4vw, 4.25rem);
    max-width: 1160px;
    margin: var(--space-10) auto 0;
    align-items: stretch;
}

.synet-launch-grid {
    max-width: 1040px;
    gap: clamp(1.35rem, 2.4vw, 2.25rem);
}

.synet-interest-card,
.synet-hardware-card {
    background: rgba(18, 18, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.28),
        0 0 44px rgba(0, 212, 215, 0.08);
}

.synet-interest-card {
    min-height: 292px;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 34%),
        rgba(18, 18, 18, 0.94);
}

.synet-interest-head {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.synet-interest-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 132, 142, 0.3);
    border: 1px solid rgba(0, 212, 215, 0.26);
    color: #ffffff;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.synet-interest-card h3,
.synet-hardware-card h3 {
    font-family: 'Inter', var(--font-family);
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.synet-interest-card p,
.synet-hardware-card p,
.synet-hardware-card li {
    font-family: 'Inter', var(--font-family);
    color: var(--text-secondary);
    line-height: 1.65;
}

.synet-interest-card p {
    min-height: 0;
    max-width: 96%;
    margin: 0 0 var(--space-5);
}

.synet-interest-card label {
    display: block;
    margin: auto 0 var(--space-2);
    color: var(--text-primary);
    font-family: 'Inter', var(--font-family);
    font-weight: 700;
}

.synet-form-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.18);
}

.synet-form-row input {
    min-width: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--text-primary);
    padding: 0.85rem 0.9rem;
    outline: none;
}

.synet-form-row input:focus {
    border-color: rgba(0, 212, 215, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 212, 215, 0.1);
}

.synet-form-row button {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--primary-color), #00f0ff);
    color: #ffffff;
    font-weight: 800;
    padding: 0 1.25rem;
    min-height: 44px;
    white-space: nowrap;
}

.synet-private-demo-card {
    display: flex;
    flex-direction: column;
}

.synet-private-demo-card .btn {
    width: fit-content;
    margin-top: auto;
    color: #ffffff;
}

.synet-demo-gate {
    min-height: 100vh;
    padding: 8rem 0 3rem;
    display: flex;
    align-items: center;
}

.synet-demo-gate-card {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: var(--space-9);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background: rgba(18, 18, 18, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), 0 0 55px rgba(0, 212, 215, 0.1);
}

.synet-demo-gate-card img {
    display: block;
    height: 44px;
    width: auto;
    margin: 0 auto var(--space-7);
}

.synet-demo-gate-card h1,
.synet-demo-gate-card p {
    text-align: center;
}

.synet-demo-gate-card h1 {
    margin-bottom: var(--space-3);
    font-family: 'Inter', var(--font-family);
}

.synet-demo-gate-form {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-7);
}

.synet-demo-gate-form input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--text-primary);
    padding: 1rem 1.05rem;
    outline: none;
}

.synet-demo-gate-form button {
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--primary-color), #00f0ff);
    color: #ffffff;
    font-weight: 800;
}

.synet-demo-error {
    min-height: 1.4em;
    color: #ff8a8a;
    font-size: 0.95rem;
    text-align: center;
}

.synet-private-demo-shell {
    display: none;
    min-height: 100vh;
    padding: 5rem 1.5rem 2rem;
}

.synet-private-demo-shell.is-unlocked {
    display: block;
}

.synet-private-demo-shell .synet-real-app-frame {
    max-width: 1480px;
    margin: 0 auto;
}

.synet-snapshot-section {
    padding: var(--space-16) 0 var(--space-18);
    background: transparent;
}

.synet-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-5);
    max-width: 1180px;
    margin: var(--space-10) auto 0;
}

.synet-snapshot-card {
    min-height: 100%;
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(18, 18, 18, 0.94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.synet-snapshot-card h3 {
    margin: 0 0 var(--space-3);
    color: var(--text-primary);
    font-family: 'Inter', var(--font-family);
    font-weight: 700;
}

.synet-snapshot-card p,
.synet-snapshot-card li {
    color: var(--text-secondary);
    font-family: 'Inter', var(--font-family);
    line-height: 1.62;
}

.synet-snapshot-card ul {
    margin: var(--space-5) 0 0;
    padding: 0;
    list-style: none;
}

.synet-snapshot-card li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: var(--space-2);
}

.synet-snapshot-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

.product-cta-section.compact {
    margin-top: var(--space-10);
}

@media (max-width: 1100px) {
    .synet-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.synet-hardware-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    isolation: isolate;
}

.synet-hardware-render {
    position: relative;
    min-height: 320px;
    background:
        radial-gradient(circle at 50% 54%, rgba(0, 212, 215, 0.18), transparent 43%),
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(0,0,0,0.14));
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.synet-hardware-render::after {
    content: '';
    position: absolute;
    inset: auto 11% 24px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 215, 0.22), rgba(0, 0, 0, 0));
    filter: blur(12px);
    opacity: 0.72;
    pointer-events: none;
    z-index: 0;
}

.synet-model-stage {
    position: absolute;
    inset: 8px 10px 0;
    z-index: 1;
}

.synet-model-stage canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.synet-hardware-render img {
    display: block;
    width: min(92%, 500px);
    max-height: 294px;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.36));
    position: relative;
    z-index: 1;
}

.synet-enterprise-render {
    background:
        radial-gradient(circle at 50% 54%, rgba(0, 212, 215, 0.14), transparent 44%),
        linear-gradient(135deg, rgba(255,255,255,0.025), rgba(0,0,0,0.16));
}

.synet-enterprise-render img {
    width: min(76%, 430px);
    max-height: 270px;
    padding: 0;
    border-radius: 22px;
    background: transparent;
    mix-blend-mode: screen;
    opacity: 0.84;
    filter:
        blur(4px)
        brightness(1.12)
        contrast(0.96)
        saturate(0.18)
        grayscale(0.38)
        drop-shadow(0 0 16px rgba(255,255,255,0.12))
        drop-shadow(0 0 18px rgba(0,212,215,0.06))
        drop-shadow(0 26px 42px rgba(0,0,0,0.34));
    transform: scale(1.01);
}

.synet-enterprise-render::before {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.12), rgba(0,212,215,0.035) 38%, transparent 70%);
    filter: blur(22px);
    opacity: 0.48;
    pointer-events: none;
    z-index: 0;
}

.render-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Inter', var(--font-family);
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-align: center;
}

.render-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.render-placeholder small {
    max-width: 240px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 400;
}

.synet-hardware-render.is-placeholder .render-placeholder {
    display: flex;
}

.synet-hardware-render.is-loaded .render-placeholder {
    display: none;
}

.synet-hardware-content {
    padding: var(--space-7) var(--space-8) var(--space-8);
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.synet-hardware-card h3 {
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    margin: var(--space-4) 0 var(--space-4);
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.synet-hardware-card ul {
    margin: var(--space-5) 0 0;
    padding: 0;
    list-style: none;
    width: min(100%, 420px);
    text-align: left;
}

.synet-hardware-card li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: var(--space-2);
}

.synet-hardware-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .real-app-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding: var(--space-4);
    }

    .synet-real-app-frame iframe {
        height: 680px;
        min-height: 680px;
    }

    .synet-launch-grid,
    .synet-hardware-grid,
    .synet-form-row {
        grid-template-columns: 1fr;
    }

    .synet-form-row button {
        min-height: 52px;
    }

    .synet-hardware-render {
        min-height: 230px;
    }
}

/* Smooth section continuity */
.services,
.featured-product.minimal,
.about,
.faq {
    overflow: hidden;
    isolation: isolate;
}

.services > .container,
.featured-product.minimal > .container,
.about > .container,
.faq > .container {
    position: relative;
    z-index: 1;
}

.services {
    margin-top: -1px;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    background:
        linear-gradient(180deg, #071010 0%, #061011 78%, #050809 100%),
        radial-gradient(circle at 12% 18%, rgba(0,212,215,0.06), transparent 40%),
        radial-gradient(circle at 85% 8%, rgba(0,212,215,0.05), transparent 38%);
}

.services::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -140px;
    height: 180px;
    background: linear-gradient(180deg, rgba(7, 16, 16, 0), #071010 82%);
    pointer-events: none;
    z-index: 0;
}

.services::after,
.featured-product.minimal::after,
.about::after,
.faq::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 150px;
    background: linear-gradient(180deg, rgba(5, 9, 9, 0), #050809);
    pointer-events: none;
    z-index: 0;
}

.featured-product.minimal {
    margin-top: -1px;
    padding-top: var(--space-8);
    background:
        radial-gradient(circle at 78% 4%, rgba(0,212,215,0.05), transparent 34%),
        linear-gradient(180deg, #050809 0%, #071010 45%, #050809 100%);
}

.about {
    margin-top: -1px;
    background:
        radial-gradient(circle at 10% 12%, rgba(0,212,215,0.045), transparent 38%),
        radial-gradient(circle at 88% 8%, rgba(0,212,215,0.035), transparent 34%),
        linear-gradient(180deg, #050809 0%, #071010 52%, #050809 100%);
}

.faq {
    margin-top: -1px;
    background:
        radial-gradient(circle at 16% 18%, rgba(0,212,215,0.04), transparent 40%),
        radial-gradient(circle at 84% 12%, rgba(0,212,215,0.03), transparent 36%),
        linear-gradient(180deg, #050809 0%, #071010 48%, #050809 100%);
}

.hero,
.services,
.featured-product.minimal,
.about,
.contact {
    background: transparent !important;
}

/* 2026 B2B product flow update */
.nav-link-cta {
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(0, 212, 215, 0.45);
    border-radius: 999px;
    color: #bafcff;
    background: rgba(0, 130, 140, 0.15);
}

.nav-link-cta:hover,
.nav-link-cta.active {
    background: rgba(0, 212, 215, 0.2);
    border-color: rgba(0, 212, 215, 0.7);
}

.nav-link-cta::after {
    display: none;
}

.hero-content-overlay-product {
    pointer-events: auto;
}

.hero-product-layout {
    width: 100%;
    display: grid;
    gap: var(--space-10);
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
}

.hero-copy-block {
    text-align: left;
}

.home-hero.hero-centered-spline {
    min-height: clamp(660px, 84svh, 900px);
}

.home-hero .hero-content-overlay {
    padding-top: clamp(5.25rem, 8vh, 6.75rem);
    padding-bottom: clamp(2.8rem, 6vh, 4.6rem);
}

.home-hero .hero-product-layout.hero-product-layout-single {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-6);
    max-width: 920px;
    margin: 0 auto;
}

.home-hero .hero-copy-block.hero-content-centered {
    width: 100%;
    max-width: 920px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand-logo {
    display: block;
    width: clamp(230px, 29vw, 390px);
    height: auto;
    margin: 0 auto clamp(2.2rem, 4vw, 3.2rem) auto;
    object-fit: contain;
    filter: none;
}

.home-hero .hero-title,
.home-hero .hero-description,
.home-hero .hero-microcopy {
    text-align: center;
}

.home-hero .hero-title.hero-title-centered-spline {
    line-height: 1.08;
    margin-bottom: clamp(1.2rem, 2vw, 1.6rem);
}

.home-hero .hero-description.hero-description-centered-spline {
    max-width: 820px;
    margin-top: 0;
    margin-bottom: clamp(1.55rem, 2.5vw, 2.2rem);
    margin-left: auto;
    margin-right: auto;
}

.hero-copy-block .hero-title,
.hero-copy-block .hero-description,
.hero-copy-block .hero-sub-copy,
.hero-copy-block .hero-buttons,
.hero-copy-block .hero-microcopy {
    margin-left: 0;
    margin-right: 0;
}

.hero-copy-block .hero-buttons {
    justify-content: flex-start;
}

.home-hero .hero-copy-block .hero-buttons,
.home-hero .hero-actions {
    justify-content: center;
}

.home-hero .hero-actions {
    margin-top: clamp(0.25rem, 1.2vw, 0.95rem);
}

.home-hero .hero-microcopy {
    margin-top: clamp(1rem, 1.9vw, 1.6rem);
    max-width: 700px;
}

.hero-visual-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(10, 18, 18, 0.92), rgba(5, 10, 11, 0.92));
    padding: var(--space-8);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
}

.hero-visual-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 215, 0.28);
    pointer-events: none;
}

.hero-product-image {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
}

.hero-microcopy {
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.credibility-section {
    padding: clamp(3.2rem, 6vw, 5.3rem) 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(0, 212, 215, 0.045), transparent 40%),
        radial-gradient(circle at 86% 10%, rgba(0, 212, 215, 0.03), transparent 34%),
        linear-gradient(180deg, rgba(5, 12, 12, 0.86), rgba(4, 9, 9, 0.78));
}

.credibility-section .section-header {
    margin-bottom: var(--space-7);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.credibility-card {
    padding: 1.35rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    min-height: 165px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.credibility-card h3 {
    margin: 0;
    font-size: var(--font-size-lg);
}

.credibility-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.55;
}

.eyebrow {
    display: inline-block;
    margin-bottom: var(--space-3);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.institutional-credibility {
    position: relative;
}

.institution-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-8);
}

.institution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.institution-label {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.institution-logo {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
}

.institution-logo-unimore {
    max-height: 96px;
    width: auto;
    height: auto;
    filter: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

.institution-name {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.synet-card-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.synet-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.synet-card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.synet-mini-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.synet-mini-card h3 {
    margin: 0;
    text-align: center;
}

.product-showcase.compact.two-column-focus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-contact.center,
.cta-buttons.center {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    flex-wrap: wrap;
}

.pre-order-highlight {
    border-top: 1px solid rgba(0, 212, 215, 0.18);
    border-bottom: 1px solid rgba(0, 212, 215, 0.18);
}

.synet-badges {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-4);
}

.synet-badges span {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
}

.feature-matrix-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

.feature-matrix-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 16, 17, 0.86);
    min-width: 760px;
}

.feature-matrix-table th,
.feature-matrix-table td {
    text-align: left;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--font-size-sm);
}

.feature-matrix-table th {
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
}

.feature-matrix-table td {
    color: var(--text-secondary);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pill.available {
    background: rgba(28, 177, 116, 0.2);
    color: #5ef0b2;
    border: 1px solid rgba(94, 240, 178, 0.35);
}

.status-pill.in-progress {
    background: rgba(0, 168, 181, 0.2);
    color: #80ebf5;
    border: 1px solid rgba(128, 235, 245, 0.35);
}

.status-pill.planned {
    background: rgba(255, 255, 255, 0.12);
    color: #d4d4d4;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lead-form {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(10, 18, 18, 0.9), rgba(5, 10, 11, 0.9));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: grid;
    gap: var(--space-5);
}

.lead-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.lead-form input:not([type="checkbox"]):not([type="radio"]),
.lead-form select,
.lead-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-primary);
    border-radius: var(--radius);
    padding: 0.75rem 0.85rem;
    font-family: inherit;
}

.lead-form input:not([type="checkbox"]):not([type="radio"]):focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 130, 140, 0.22);
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.lead-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: var(--space-4);
}

.lead-fieldset legend {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    padding: 0 0.4rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 12px;
}

.lead-form .checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    min-height: 46px;
    transition: var(--transition-fast);
}

.lead-form .checkbox-option:hover {
    border-color: rgba(0, 212, 215, 0.42);
}

.lead-form .checkbox-option:has(input:checked) {
    border-color: rgba(0, 212, 215, 0.75);
    background: rgba(0, 212, 215, 0.08);
}

.lead-form .checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 auto;
    accent-color: var(--primary-color);
}

.lead-form .checkbox-option span {
    white-space: nowrap;
    line-height: 1.2;
}

.conversion-steps {
    margin: 0;
    padding: var(--space-6) var(--space-8);
    display: grid;
    gap: var(--space-3);
    list-style: decimal;
    list-style-position: inside;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.conversion-steps li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: var(--space-2) 0;
}

.conversion-steps li:last-child {
    border-bottom: none;
}

.footer-section p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Accessibility: restore actionable cursors */
a,
button,
.btn,
.nav-link,
.hamburger,
input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="radio"],
select,
summary {
    cursor: pointer !important;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
    cursor: text !important;
}

@media (max-width: 1100px) {
    .hero-product-layout,
    .product-showcase.compact.two-column-focus,
    .synet-card-grid-5,
    .synet-card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 780px) {
    .hero-product-layout,
    .synet-card-grid-5,
    .synet-card-grid-3,
    .synet-card-grid-2,
    .lead-form-grid,
    .product-showcase.compact.two-column-focus {
        grid-template-columns: 1fr;
    }

    .hero-copy-block {
        text-align: center;
    }

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

    .hero-visual-panel {
        padding: var(--space-5);
    }

    .institution-card {
        padding: var(--space-6);
    }

    .institution-logo {
        max-width: 280px;
    }

    .institution-logo-unimore {
        max-height: 76px;
    }

    .lead-form {
        padding: var(--space-6);
    }
}

@media (max-width: 640px) {
    .credibility-grid {
        grid-template-columns: 1fr;
    }

    .credibility-card {
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
    }
}

@media (max-width: 520px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.hero::before,
.hero::after,
.hero-spline-front,
.hero-spline-front::after,
.hero-brand-inline::before,
.hero-visual-panel::before,
.page-random-field,
.hero-random-field {
    pointer-events: none;
}

.hero-content-overlay,
.hero-buttons,
.cta-buttons {
    position: relative;
    z-index: 3;
}

/* 2026-05 Premium visual refinement pass */
:root {
    --site-background-canvas:
        radial-gradient(circle at 50% 14%, rgba(0, 200, 210, 0.1), transparent 34rem),
        radial-gradient(circle at 50% 56%, rgba(0, 120, 120, 0.06), transparent 44rem),
        linear-gradient(180deg, #020606 0%, #020707 56%, #030807 100%);
    --surface-soft: rgba(255, 255, 255, 0.024);
    --surface-card: rgba(255, 255, 255, 0.036);
    --surface-card-strong: rgba(255, 255, 255, 0.048);
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --text-primary: rgba(255, 255, 255, 0.96);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --primary-color: #00a7b3;
    --primary-dark: #007f88;
}

body {
    background: var(--site-background-canvas);
    color: var(--text-primary);
    line-height: 1.62;
}

section {
    padding: clamp(3.8rem, 7vw, 6.2rem) 0;
}

.services,
.featured-product,
.featured-product.minimal,
.about,
.contact {
    background: transparent !important;
    padding-top: clamp(3.6rem, 6.8vw, 5.8rem);
    padding-bottom: clamp(3.6rem, 6.8vw, 5.8rem);
}

.section-header {
    margin-bottom: clamp(1.8rem, 4.2vw, 3.4rem);
}

.section-title {
    opacity: 1;
    transform: none;
    font-size: clamp(1.85rem, 3vw, 2.95rem);
    font-weight: 560;
    letter-spacing: -0.018em;
    line-height: 1.15;
    margin-bottom: 0.95rem;
    background: none;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.section-subtitle {
    opacity: 1;
    transform: none;
    color: var(--text-secondary);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    line-height: 1.62;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.13em;
}

.navbar {
    background: rgba(5, 10, 11, 0.74);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.navbar.scrolled {
    background: rgba(5, 10, 11, 0.9);
}

.nav-container {
    max-width: 1260px;
    padding: 0.85rem var(--space-6);
    gap: var(--space-6);
}

.nav-menu {
    gap: clamp(1rem, 2vw, 1.7rem);
}

.nav-link {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.97);
}

.nav-link::after {
    bottom: -6px;
    height: 1px;
    background: rgba(0, 167, 179, 0.95);
}

.nav-link-cta {
    border-color: rgba(0, 167, 179, 0.52);
    background: rgba(0, 167, 179, 0.15);
    color: #d9feff;
}

.nav-link-cta:hover,
.nav-link-cta.active {
    border-color: rgba(0, 167, 179, 0.78);
    background: rgba(0, 167, 179, 0.22);
}

.hero {
    min-height: clamp(420px, 70svh, 760px);
    align-items: center;
}

.hero.hero-centered-spline:not(.home-hero) {
    min-height: clamp(330px, 52svh, 520px);
}

.hero-centered-spline .hero-content-overlay {
    max-width: 1080px;
    padding: clamp(4.4rem, 8.2vh, 6.1rem) var(--space-6) clamp(2.7rem, 6.2vh, 4.2rem);
}

.hero-spline-front::after {
    height: clamp(120px, 20vh, 170px);
    min-height: 120px;
    background: linear-gradient(180deg, rgba(5, 12, 12, 0), rgba(5, 12, 12, 0.55) 54%, #060b0c 100%);
}

.hero-brand-inline::before {
    content: none;
}

.hero-inline-logo {
    width: clamp(210px, 28vw, 340px);
    max-width: 52vw;
    margin: 0 auto clamp(1.6rem, 3vw, 2.3rem);
    filter: none;
}

.hero-title,
.hero-title-centered-spline {
    font-size: clamp(1.95rem, 3.6vw, 3.1rem);
    font-weight: 520;
    line-height: 1.08;
    letter-spacing: -0.022em;
    margin-bottom: clamp(0.95rem, 2.2vw, 1.55rem);
}

.hero-title-centered-spline .title-line {
    font-weight: 520;
}

.hero-description,
.hero-description-centered-spline {
    color: var(--text-secondary);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(1.2rem, 2.3vw, 2rem);
    font-size: clamp(1.02rem, 1.2vw, 1.17rem);
    line-height: 1.64;
}

.hero-sub-copy {
    color: rgba(255, 255, 255, 0.65);
    max-width: 800px;
    margin-top: 0;
}

.hero-buttons,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.hero-buttons {
    margin-top: clamp(0.45rem, 1.5vw, 1rem);
}

.home-hero.hero-centered-spline {
    min-height: clamp(660px, 84svh, 900px);
}

.home-hero .hero-content-overlay {
    padding-top: clamp(5.1rem, 8.8vh, 6.6rem);
    padding-bottom: clamp(2.7rem, 6vh, 4.4rem);
}

.hero-brand-logo {
    width: clamp(220px, 27vw, 372px);
    margin-bottom: clamp(2.5rem, 4.4vw, 3.5rem);
}

.home-hero .hero-title.hero-title-centered-spline {
    font-size: clamp(2.2rem, 4.2vw, 3.85rem);
}

.home-hero .hero-description.hero-description-centered-spline {
    max-width: 860px;
}

.home-hero .hero-microcopy,
.hero-microcopy {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.55;
}

.btn,
.button,
.cta-button,
a.btn,
a.button,
a.cta-button,
button.btn,
button.button,
button.cta-button {
    --btn-bg: rgba(255, 255, 255, 0.035);
    --btn-border: rgba(255, 255, 255, 0.16);
    --btn-color: rgba(255, 255, 255, 0.94);
    --btn-hover-bg: rgba(255, 255, 255, 0.08);
    --btn-hover-border: rgba(0, 220, 230, 0.58);
    --btn-active-bg: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-color) !important;
    font-weight: 650;
    font-size: 0.94rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.button:hover,
.cta-button:hover,
a.btn:hover,
a.button:hover,
a.cta-button:hover,
button.btn:hover,
button.button:hover,
button.cta-button:hover {
    background: var(--btn-hover-bg);
    border-color: var(--btn-hover-border);
    color: var(--btn-color) !important;
    transform: translateY(-1px);
}

.btn:active,
.button:active,
.cta-button:active,
a.btn:active,
a.button:active,
a.cta-button:active,
button.btn:active,
button.button:active,
button.cta-button:active {
    background: var(--btn-active-bg);
    color: var(--btn-color) !important;
    transform: translateY(0);
}

.btn:focus-visible,
.button:focus-visible,
.cta-button:focus-visible,
a.btn:focus-visible,
a.button:focus-visible,
a.cta-button:focus-visible,
button.btn:focus-visible,
button.button:focus-visible,
button.cta-button:focus-visible {
    outline: 2px solid rgba(0, 220, 230, 0.9);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(0, 220, 230, 0.2);
    color: var(--btn-color) !important;
}

a.btn:visited,
a.button:visited,
a.cta-button:visited {
    color: var(--btn-color) !important;
}

.btn-primary,
a.btn-primary,
button.btn-primary {
    --btn-bg: linear-gradient(135deg, #08d7df 0%, #0497a0 100%);
    --btn-border: rgba(0, 220, 230, 0.72);
    --btn-color: #021011;
    --btn-hover-bg: linear-gradient(135deg, #20f0f6 0%, #08b8c2 100%);
    --btn-hover-border: rgba(32, 240, 246, 0.9);
    --btn-active-bg: linear-gradient(135deg, #06c6cf 0%, #068d96 100%);
    box-shadow: 0 10px 28px rgba(0, 167, 179, 0.2);
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(0, 176, 188, 0.27);
}

a.btn-primary:visited {
    color: #021011 !important;
}

.btn-secondary,
a.btn-secondary,
button.btn-secondary {
    --btn-bg: rgba(255, 255, 255, 0.035);
    --btn-border: rgba(255, 255, 255, 0.2);
    --btn-color: rgba(255, 255, 255, 0.94);
    --btn-hover-bg: rgba(255, 255, 255, 0.085);
    --btn-hover-border: rgba(0, 220, 230, 0.55);
    --btn-active-bg: rgba(255, 255, 255, 0.12);
}

.btn-outline,
a.btn-outline,
button.btn-outline {
    --btn-bg: transparent;
    --btn-border: rgba(0, 220, 230, 0.58);
    --btn-color: rgba(233, 255, 255, 0.95);
    --btn-hover-bg: rgba(0, 190, 200, 0.14);
    --btn-hover-border: rgba(60, 236, 245, 0.82);
    --btn-active-bg: rgba(0, 186, 198, 0.2);
}

a.btn-secondary:visited,
a.btn-outline:visited {
    color: rgba(255, 255, 255, 0.94) !important;
}

.services-grid {
    gap: clamp(0.85rem, 1.8vw, 1.15rem);
    margin-top: clamp(1.2rem, 3.4vw, 2rem);
}

.service-card,
.credibility-card,
.institution-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-card {
    padding: clamp(1.05rem, 2.2vw, 1.45rem);
    gap: 0.55rem;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-medium);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.service-card h3 {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.58;
}

.service-card-title-only {
    min-height: 102px;
}

.service-card-balanced {
    min-height: 0;
}

.credibility-section {
    padding: clamp(3rem, 5.6vw, 4.6rem) 0;
    background:
        radial-gradient(circle at 16% 14%, rgba(0, 167, 179, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(6, 11, 12, 0), rgba(6, 11, 12, 0.58) 42%, rgba(6, 11, 12, 0.76) 100%);
}

.credibility-card {
    min-height: 0;
    padding: clamp(1.05rem, 2vw, 1.3rem);
    gap: 0.5rem;
}

.credibility-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.institution-card {
    max-width: 560px;
}

.synet-badges span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    padding: 0.32rem 0.68rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
}

.feature-matrix-table-wrap,
.roadmap-disclaimer,
.conversion-steps {
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.022);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-matrix-table {
    background: transparent;
}

.feature-matrix-table th,
.feature-matrix-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-matrix-table th {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88);
}

.feature-matrix-table td {
    color: rgba(255, 255, 255, 0.72);
}

.status-pill {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
}

#roadmap-stages .services-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    gap: 0.95rem;
}

#roadmap-stages .service-card {
    position: relative;
    padding-left: 1.45rem;
    border-left: 2px solid rgba(0, 167, 179, 0.4);
}

#roadmap-stages .service-card::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 1.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 167, 179, 0.9);
    box-shadow: 0 0 0 4px rgba(0, 167, 179, 0.14);
}

.lead-form {
    border: 1px solid var(--border-medium);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    padding: clamp(1.15rem, 2.8vw, 1.9rem);
    gap: 1rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.lead-form label {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    gap: 0.42rem;
}

.lead-form input:not([type="checkbox"]):not([type="radio"]),
.lead-form select,
.lead-form textarea {
    min-height: 46px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0.78rem 0.9rem;
    font-size: 0.95rem;
}

.lead-form textarea {
    resize: vertical;
    min-height: 120px;
}

.lead-form input:not([type="checkbox"]):not([type="radio"]):focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: rgba(0, 188, 200, 0.78);
    box-shadow: 0 0 0 3px rgba(0, 167, 179, 0.18);
}

.lead-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: var(--space-4);
}

.lead-form .checkbox-option {
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.lead-form .checkbox-option:has(input:checked) {
    border-color: rgba(0, 188, 200, 0.82);
    background: rgba(0, 167, 179, 0.13);
}

.about-content {
    gap: clamp(1.5rem, 3.2vw, 2.9rem);
}

.team-grid {
    gap: 0.75rem;
}

.team-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.footer {
    background: linear-gradient(180deg, rgba(4, 8, 9, 0.9), rgba(4, 8, 9, 0.98)) !important;
    border-top: 1px solid var(--border-soft);
    box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.2);
    padding: clamp(3.4rem, 6vw, 4.8rem) 0 clamp(1.6rem, 3.6vw, 2.3rem);
}

.footer-content {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.8vw, 2.4rem);
    margin-bottom: clamp(1.2rem, 2.8vw, 2rem);
}

.footer-logo {
    text-align: left;
}

.footer-logo img,
.footer-logo .logo-icon {
    height: 40px;
    margin-bottom: 0.8rem;
    filter: none;
}

.footer-section h4 {
    margin-bottom: 0.85rem;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li {
    margin-bottom: 0.38rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.footer-section ul li a:hover {
    color: rgba(255, 255, 255, 0.96);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0.16rem 0;
    line-height: 1.5;
}

.footer-section:first-child p {
    text-align: left;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.52);
}

.title-animated,
.subtitle-animated {
    opacity: 1;
    transform: none;
}

.hero-title.entrance-effect::before,
.hero-title.entrance-effect::after {
    display: none;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-centered-spline .hero-content-overlay {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }

    .home-hero .hero-title.hero-title-centered-spline {
        font-size: clamp(2rem, 8vw, 2.85rem);
    }
}

@media (max-width: 768px) {
    section {
        padding: clamp(3rem, 6.5vw, 4.3rem) 0;
    }

    .hero.hero-centered-spline:not(.home-hero) {
        min-height: clamp(340px, 50svh, 470px);
    }

    .hero-title,
    .hero-title-centered-spline {
        font-size: clamp(1.7rem, 6.5vw, 2.45rem);
    }

    .hero-description,
    .hero-description-centered-spline {
        font-size: 1rem;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 360px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Home cinematic premium pass */
body.home-page {
    background: var(--site-background-canvas);
}

.home-page .page-random-field,
.home-page .hero-random-field {
    opacity: 0.3 !important;
}

.home-page section {
    background: transparent !important;
}

.home-page .home-hero.cinematic-hero {
    perspective: 1250px;
    min-height: clamp(730px, 90svh, 980px);
    padding-bottom: clamp(2.2rem, 4vh, 3.6rem);
}

.home-page .home-hero .hero-spline-front::after {
    content: none !important;
    display: none !important;
}

.home-page .home-hero .hero-content-overlay {
    gap: 0;
    padding-top: clamp(5rem, 8.6vh, 6.6rem);
    padding-bottom: clamp(1.8rem, 3.8vh, 2.8rem);
}

.home-page .hero-copy-reveal {
    animation: homeCopyReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-page .hero-brand-logo {
    width: clamp(220px, 26vw, 368px);
    margin-bottom: clamp(2.5rem, 4.4vw, 3.4rem);
}

.home-page .hero-brand-logo.hero-brand-logo-home-large {
    width: clamp(280px, 34vw, 490px);
    margin-bottom: clamp(2.8rem, 4.9vw, 3.9rem);
}

.home-page .hero-title.hero-title-centered-spline {
    letter-spacing: -0.024em;
    line-height: 1.04;
    margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
}

.home-page .hero-description.hero-description-centered-spline {
    max-width: 860px;
    margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
}

.home-page .hero-actions {
    animation: homeCtaReveal 1080ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 130ms;
}

.home-page .hero-microcopy {
    margin-top: clamp(0.95rem, 1.9vw, 1.45rem);
}

.home-page .hero-product-stage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(1.15rem, 2.6vh, 2rem);
    margin-bottom: clamp(-1.8rem, -1.6vw, -0.8rem);
    pointer-events: none;
}

.home-page .synet-preview-panel {
    width: min(84vw, 960px);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 38%, rgba(0, 0, 0, 0.34) 100%),
        linear-gradient(180deg, rgba(9, 15, 16, 0.96), rgba(6, 10, 12, 0.98));
    box-shadow:
        0 52px 140px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 76px rgba(0, 210, 220, 0.08);
    position: relative;
    overflow: hidden;
    padding: clamp(1.1rem, 1.9vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    will-change: transform, opacity;
    animation: homeProductReveal 1600ms cubic-bezier(0.16, 1, 0.3, 1) both;
    pointer-events: auto;
}

.home-page .synet-preview-panel::before {
    content: "";
    position: absolute;
    inset: -2px -14% auto;
    height: 46%;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    opacity: 0.24;
    pointer-events: none;
}

.home-page .preview-panel-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.home-page .preview-kicker,
.home-page .preview-status {
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(225, 255, 255, 0.72);
    font-weight: 600;
}

.home-page .preview-status {
    color: rgba(116, 232, 239, 0.78);
}

.home-page .preview-viewport {
    position: relative;
    min-height: clamp(198px, 25vw, 242px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(4, 10, 11, 0.78), rgba(3, 7, 8, 0.92));
    overflow: hidden;
}

.home-page .preview-slide {
    position: absolute;
    inset: 0;
    padding: clamp(0.72rem, 1.5vw, 1rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    transition: opacity 600ms ease, transform 600ms ease;
    pointer-events: none;
}

.home-page .preview-slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-page .preview-canvas {
    position: relative;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.home-page .preview-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.home-page .preview-chip {
    padding: 0.3rem 0.52rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    color: rgba(224, 255, 255, 0.82);
    text-transform: uppercase;
    white-space: nowrap;
}

.home-page .preview-canvas-signal {
    background: linear-gradient(180deg, rgba(5, 14, 15, 0.88), rgba(2, 8, 9, 0.9));
}

.home-page .preview-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 24px,
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 40px 100%;
    opacity: 0.42;
}

.home-page .signal-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-page .signal-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.home-page .signal-line-primary {
    stroke: rgba(78, 229, 239, 0.92);
    stroke-dasharray: 760;
    stroke-dashoffset: 760;
}

.home-page .signal-line-secondary {
    stroke: rgba(125, 210, 220, 0.52);
    stroke-width: 1.5;
    stroke-dasharray: 760;
    stroke-dashoffset: 760;
}

.home-page .signal-scan-line {
    position: absolute;
    inset: 0 auto 0 0;
    width: 22%;
    background: linear-gradient(90deg, rgba(0, 222, 232, 0), rgba(0, 222, 232, 0.28), rgba(0, 222, 232, 0));
    opacity: 0;
}

.home-page .preview-canvas-timeline {
    padding: 0.6rem 0.7rem 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(7, 16, 18, 0.9), rgba(4, 11, 13, 0.92));
}

.home-page .timeline-ruler,
.home-page .replay-timeline {
    display: flex;
    justify-content: space-between;
    font-size: 0.67rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.56);
}

.home-page .timeline-track {
    position: relative;
    height: 86px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 42px),
        linear-gradient(180deg, rgba(1, 7, 8, 0.88), rgba(4, 12, 13, 0.88));
    overflow: hidden;
}

.home-page .timeline-frame {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: rgba(219, 250, 254, 0.86);
    border: 1px solid rgba(114, 220, 228, 0.5);
    background: rgba(22, 113, 120, 0.24);
    padding: 0.2rem 0.42rem;
    border-radius: 999px;
}

.home-page .timeline-frame.frame-1 { left: 7%; }
.home-page .timeline-frame.frame-2 { left: 27%; }
.home-page .timeline-frame.frame-3 { left: 47%; }
.home-page .timeline-frame.frame-4 { left: 66%; }
.home-page .timeline-frame.frame-5 { left: 82%; }

.home-page .timeline-cursor {
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 8%;
    width: 2px;
    background: linear-gradient(180deg, rgba(157, 246, 252, 0.24), rgba(107, 227, 235, 0.86), rgba(157, 246, 252, 0.24));
    box-shadow: 0 0 16px rgba(91, 232, 241, 0.52);
}

.home-page .timeline-busload {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(218, 246, 249, 0.72);
}

.home-page .timeline-busload strong {
    color: rgba(180, 248, 254, 0.94);
    font-size: 0.88rem;
}

.home-page .preview-slide[data-preview="gauge"] .preview-canvas-gauge {
    display: block;
    background: linear-gradient(180deg, rgba(5, 13, 14, 0.9), rgba(4, 10, 11, 0.92));
}

.home-page .preview-slide[data-preview="gauge"] .gauge-view {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: grid;
    grid-template-columns: minmax(150px, 0.78fr) minmax(240px, 1.22fr);
    align-items: center;
    gap: clamp(0.65rem, 1.15vw, 1rem);
    padding: clamp(0.34rem, 0.76vw, 0.62rem) clamp(0.45rem, 0.9vw, 0.72rem);
    overflow: hidden;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-shell {
    position: relative;
    width: clamp(126px, 14.2vw, 166px);
    height: clamp(126px, 14.2vw, 166px);
    max-width: 100%;
    max-height: 100%;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.home-page .preview-slide[data-preview="gauge"] .gauge-track,
.home-page .preview-slide[data-preview="gauge"] .gauge-arc {
    fill: none;
    stroke-width: 8;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-track {
    stroke: rgba(255, 255, 255, 0.1);
}

.home-page .preview-slide[data-preview="gauge"] .gauge-arc {
    stroke: rgba(102, 231, 239, 0.86);
    stroke-linecap: round;
    stroke-dasharray: 528;
    stroke-dashoffset: 528;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-value-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.06rem;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-label {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(220, 249, 253, 0.66);
    white-space: nowrap;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-value {
    margin: 0;
    font-size: clamp(1.03rem, 1.24vw, 1.32rem);
    font-weight: 620;
    letter-spacing: -0.02em;
    color: rgba(236, 253, 255, 0.95);
    line-height: 1;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-state {
    font-size: 0.56rem;
    color: rgba(188, 245, 251, 0.72);
    white-space: nowrap;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    min-width: 0;
    max-width: 100%;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-kicker {
    margin: 0;
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(209, 250, 253, 0.68);
}

.home-page .preview-slide[data-preview="gauge"] .gauge-reading {
    margin: 0;
    font-size: clamp(1.26rem, 1.84vw, 1.82rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: rgba(240, 254, 255, 0.96);
}

.home-page .preview-slide[data-preview="gauge"] .gauge-description {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.35;
    color: rgba(232, 251, 253, 0.68);
    max-width: 34ch;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-meta-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem;
    margin-top: 0.02rem;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-meta-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.04rem;
    padding: 0.2rem 0.28rem;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.03);
}

.home-page .preview-slide[data-preview="gauge"] .gauge-meta-item .meta-label {
    font-size: 0.48rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(210, 246, 251, 0.62);
    white-space: nowrap;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-meta-item .meta-value {
    font-size: 0.59rem;
    line-height: 1.2;
    color: rgba(238, 254, 255, 0.86);
    white-space: nowrap;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-mini-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.24rem;
    margin-top: 0.02rem;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-mini-metrics span {
    padding: 0.18rem 0.34rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.51rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 253, 255, 0.8);
    white-space: nowrap;
}

.home-page .preview-slide[data-preview="gauge"] .gauge-trend {
    position: relative;
    width: min(100%, 164px);
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 226, 236, 0.62), rgba(255, 255, 255, 0));
    opacity: 0.68;
    margin-top: 0.1rem;
}

.home-page .preview-canvas-bars {
    display: grid;
    align-content: center;
    gap: 0.52rem;
    padding: 0.62rem 0.72rem;
    background: linear-gradient(180deg, rgba(7, 16, 18, 0.9), rgba(4, 10, 11, 0.94));
}

.home-page .metric-row {
    display: grid;
    grid-template-columns: minmax(74px, 98px) 1fr auto;
    align-items: center;
    gap: 0.48rem;
    font-size: 0.72rem;
    color: rgba(220, 251, 255, 0.74);
}

.home-page .metric-row strong {
    font-size: 0.73rem;
    color: rgba(236, 254, 255, 0.92);
}

.home-page .metric-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.home-page .metric-track::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: 78%;
    width: 1px;
    background: rgba(255, 205, 128, 0.55);
}

.home-page .metric-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 164, 174, 0.94), rgba(92, 236, 245, 0.9));
}

.home-page .metric-fill-1 { --metric-target: 42%; }
.home-page .metric-fill-2 { --metric-target: 12%; }
.home-page .metric-fill-3 { --metric-target: 58%; }
.home-page .metric-fill-4 { --metric-target: 66%; }

.home-page .preview-canvas-replay {
    padding: 0.5rem 0.7rem 0.6rem;
    background: linear-gradient(180deg, rgba(5, 14, 15, 0.9), rgba(4, 10, 12, 0.92));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-page .replay-svg {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    top: 0.6rem;
    bottom: 1.45rem;
    width: calc(100% - 1.4rem);
    height: calc(100% - 2.05rem);
}

.home-page .replay-wave {
    fill: none;
    stroke: rgba(93, 233, 242, 0.92);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 820;
    stroke-dashoffset: 820;
}

.home-page .replay-cursor {
    position: absolute;
    top: 11%;
    bottom: 22%;
    left: 10%;
    width: 2px;
    background: linear-gradient(180deg, rgba(188, 250, 255, 0.2), rgba(123, 236, 245, 0.88), rgba(188, 250, 255, 0.2));
    box-shadow: 0 0 14px rgba(82, 223, 233, 0.5);
}

.home-page .replay-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(145, 241, 248, 0.9);
    box-shadow: 0 0 10px rgba(87, 225, 235, 0.5);
}

.home-page .replay-marker-1 {
    left: 34%;
    top: 42%;
}

.home-page .replay-marker-2 {
    left: 72%;
    top: 57%;
}

.home-page .preview-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.1rem;
    pointer-events: auto;
}

.home-page .preview-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.home-page .preview-dot.is-active {
    width: 26px;
    background: rgba(90, 233, 242, 0.9);
    border-color: rgba(144, 246, 252, 0.96);
}

.home-page .preview-dot:hover {
    transform: scale(1.08);
}

.home-page .preview-dot:focus-visible {
    outline: 2px solid rgba(154, 247, 253, 0.92);
    outline-offset: 2px;
}

.home-page .preview-slide.is-active .signal-line-primary {
    animation: signalDraw 950ms cubic-bezier(0.24, 1, 0.36, 1) both;
}

.home-page .preview-slide.is-active .signal-line-secondary {
    animation: signalDraw 1050ms cubic-bezier(0.24, 1, 0.36, 1) both;
}

.home-page .preview-slide.is-active .signal-scan-line {
    opacity: 1;
    animation: signalScan 2600ms linear infinite;
}

.home-page .preview-slide.is-active .timeline-cursor {
    animation: timelineCursor 3000ms linear infinite;
}

.home-page .preview-slide.is-active .timeline-frame {
    animation: timelineFramePulse 1800ms ease-in-out infinite;
}

.home-page .preview-slide.is-active .timeline-frame.frame-2 { animation-delay: 140ms; }
.home-page .preview-slide.is-active .timeline-frame.frame-3 { animation-delay: 260ms; }
.home-page .preview-slide.is-active .timeline-frame.frame-4 { animation-delay: 380ms; }
.home-page .preview-slide.is-active .timeline-frame.frame-5 { animation-delay: 520ms; }

.home-page .preview-slide.is-active .gauge-arc {
    animation: gaugeFill 1100ms cubic-bezier(0.18, 1, 0.34, 1) forwards;
}

.home-page .preview-slide.is-active .metric-fill {
    animation: metricFill 960ms cubic-bezier(0.2, 1, 0.32, 1) forwards;
}

.home-page .preview-slide.is-active .replay-wave {
    animation: replayDraw 900ms cubic-bezier(0.24, 1, 0.36, 1) both;
}

.home-page .preview-slide.is-active .replay-cursor {
    animation: replayCursor 3200ms linear infinite;
}

.home-page .preview-slide.is-active .replay-marker {
    animation: replayPulse 1800ms ease-in-out infinite;
}

.home-page .preview-slide.is-active .replay-marker-2 {
    animation-delay: 260ms;
}

@keyframes signalDraw {
    from {
        stroke-dashoffset: 760;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes signalScan {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(560%);
    }
}

@keyframes timelineCursor {
    0% {
        left: 8%;
    }
    100% {
        left: 92%;
    }
}

@keyframes timelineFramePulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.78;
    }
    50% {
        transform: translateY(-50%) scale(1.04);
        opacity: 1;
    }
}

@keyframes gaugeFill {
    from {
        stroke-dashoffset: 528;
    }
    to {
        stroke-dashoffset: 168;
    }
}

@keyframes metricFill {
    from {
        width: 0;
    }
    to {
        width: var(--metric-target);
    }
}

@keyframes replayCursor {
    0% {
        left: 10%;
    }
    100% {
        left: 90%;
    }
}

@keyframes replayDraw {
    from {
        stroke-dashoffset: 820;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes replayPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.home-page .credibility-section,
.home-page #synet-traction,
.home-page #services-teaser {
    padding-top: clamp(3.8rem, 6vw, 5.2rem);
    padding-bottom: clamp(3.8rem, 6vw, 5.2rem);
    background: transparent !important;
}

.home-page .credibility-section .container,
.home-page #synet-traction .container,
.home-page #services-teaser .container {
    max-width: 1040px;
}

.home-page .credibility-section .section-header,
.home-page #synet-traction .section-header,
.home-page #services-teaser .section-header {
    max-width: 860px;
    margin: 0 auto clamp(1.5rem, 2.4vw, 2.3rem);
}

.home-page .credibility-section .section-title,
.home-page #synet-traction .section-title,
.home-page #services-teaser .section-title {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.home-page #synet-traction .section-subtitle,
.home-page #services-teaser .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.home-page #synet-traction .synet-badges {
    max-width: 760px;
    margin: 0 auto;
    gap: 0.75rem;
}

.home-page #synet-traction .cta-buttons.center,
.home-page #services-teaser .cta-buttons.center {
    margin-top: clamp(1.3rem, 2.2vw, 2rem);
}

.home-page .credibility-grid.minimal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.6vw, 1.1rem);
    margin-top: 0;
}

.home-page .credibility-item {
    padding: 0.35rem 0.2rem 0.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
}

.home-page .credibility-item h3 {
    margin: 0 0 0.56rem;
    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    font-weight: 600;
    line-height: 1.32;
    color: rgba(255, 255, 255, 0.92);
}

.home-page .credibility-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.66);
}

@keyframes homeProductReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 128px, -90px) rotateX(24deg) scale(1.08);
    }
    64% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 16px, 0) rotateX(1deg) scale(1);
    }
}

@keyframes homeCopyReveal {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeCtaReveal {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .home-page .credibility-grid.minimal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-page .synet-preview-panel {
        width: min(90vw, 760px);
        border-radius: 30px;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-view {
        grid-template-columns: minmax(138px, 0.85fr) minmax(200px, 1.15fr);
        gap: 0.55rem;
        padding: 0.28rem 0.45rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-shell {
        width: clamp(114px, 18vw, 148px);
        height: clamp(114px, 18vw, 148px);
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-reading {
        font-size: clamp(1.1rem, 2vw, 1.45rem);
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-description {
        font-size: 0.69rem;
        max-width: 29ch;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.22rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-meta-item .meta-label {
        font-size: 0.44rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-meta-item .meta-value {
        font-size: 0.54rem;
    }
}

@media (max-width: 768px) {
    .home-page .home-hero.cinematic-hero {
        min-height: clamp(690px, 84svh, 860px);
    }

    .home-page .hero-product-stage {
        margin-top: 1rem;
        margin-bottom: -0.6rem;
    }

    .home-page .synet-preview-panel {
        width: min(92vw, 640px);
        border-radius: 28px;
        padding: 0.95rem;
    }

    .home-page .preview-viewport {
        min-height: 208px;
    }

    .home-page .preview-chip {
        font-size: 0.62rem;
    }
}

@media (max-width: 760px) {
    .home-page .preview-slide[data-preview="gauge"] .gauge-view {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.44rem;
        padding: 0.2rem 0.42rem;
        text-align: center;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-shell {
        width: clamp(96px, 26vw, 124px);
        height: clamp(96px, 26vw, 124px);
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-details {
        align-items: center;
        gap: 0.2rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-reading {
        font-size: clamp(0.98rem, 4vw, 1.2rem);
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-description {
        max-width: 26ch;
        font-size: 0.62rem;
        line-height: 1.28;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-meta-grid {
        display: none;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-mini-metrics {
        justify-content: center;
        margin-top: 0;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-mini-metrics span {
        font-size: 0.47rem;
        padding: 0.14rem 0.3rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-trend {
        width: min(100%, 126px);
    }
}

@media (max-width: 640px) {
    .home-page .credibility-grid.minimal {
        grid-template-columns: 1fr;
    }

    .home-page .synet-preview-panel {
        width: min(94vw, 500px);
        border-radius: 22px;
        padding: 0.82rem;
    }

    .home-page .preview-panel-header {
        gap: 0.4rem;
    }

    .home-page .preview-kicker,
    .home-page .preview-status {
        font-size: 0.61rem;
        letter-spacing: 0.12em;
    }

    .home-page .preview-viewport {
        min-height: 196px;
    }

    .home-page .metric-row {
        grid-template-columns: minmax(60px, 82px) 1fr auto;
        font-size: 0.67rem;
    }

    .home-page .preview-chip-row {
        gap: 0.36rem;
    }

    .home-page .preview-chip {
        font-size: 0.58rem;
        padding: 0.26rem 0.46rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-kicker {
        font-size: 0.61rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-label {
        font-size: 0.54rem;
    }

    .home-page .preview-slide[data-preview="gauge"] .gauge-mini-metrics span:nth-child(3) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .hero-copy-reveal,
    .home-page .hero-actions,
    .home-page .synet-preview-panel,
    .home-page .preview-slide,
    .home-page .signal-line,
    .home-page .signal-scan-line,
    .home-page .timeline-cursor,
    .home-page .timeline-frame,
    .home-page .gauge-arc,
    .home-page .metric-fill,
    .home-page .replay-wave,
    .home-page .replay-cursor,
    .home-page .replay-marker {
        animation: none !important;
        transition: none !important;
    }

    .home-page .hero-copy-reveal,
    .home-page .hero-actions,
    .home-page .synet-preview-panel,
    .home-page .preview-slide.is-active {
        transform: none !important;
        opacity: 1 !important;
    }

    .home-page .signal-line-primary,
    .home-page .signal-line-secondary,
    .home-page .replay-wave {
        stroke-dashoffset: 0 !important;
    }

    .home-page .gauge-arc {
        stroke-dashoffset: 168 !important;
    }

    .home-page .metric-fill {
        width: var(--metric-target) !important;
    }
}

/* Lead form server-side submit + CAPTCHA integration */
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.form-honeypot label,
.form-honeypot input {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.lead-form .form-captcha,
.lead-form .turnstile-wrap {
    margin: 1.5rem 0 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;
    width: 100%;
}

.lead-form .form-captcha .cf-turnstile,
.lead-form .cf-turnstile {
    width: 100%;
    max-width: 320px;
    min-height: 65px;
}

.lead-form-status {
    min-height: 1.3rem;
    font-size: 0.9rem;
    line-height: 1.45;
    margin-top: 0.25rem;
    color: var(--text-secondary);
}

.lead-form-status.is-loading {
    color: var(--text-secondary);
}

.lead-form-status.is-success {
    color: #9cf4cb;
}

.lead-form-status.is-error {
    color: #ffb9b9;
}

.lead-form button[disabled],
.lead-form input[type="submit"][disabled] {
    opacity: 0.8;
    cursor: not-allowed !important;
}

@media (max-width: 640px) {
    .lead-form .form-captcha,
    .lead-form .turnstile-wrap {
        justify-content: center;
    }

    .lead-form .form-captcha .cf-turnstile,
    .lead-form .cf-turnstile {
        max-width: 100%;
    }
}

/* Synet page refinement: hero hierarchy, motion, spacing rhythm */
.synet-page .synet-product-hero {
    min-height: clamp(540px, 76svh, 760px);
}

.synet-page .hero-centered-spline .hero-content-overlay {
    max-width: 1120px;
    padding-top: clamp(5.2rem, 10vh, 7.1rem);
    padding-bottom: clamp(3.6rem, 7.4vh, 5.2rem);
}

.synet-page .hero-inline-logo {
    width: clamp(240px, 29vw, 400px);
    margin-bottom: clamp(1.6rem, 2.8vw, 2.35rem);
}

.synet-page .hero-title.hero-title-centered-spline {
    font-size: clamp(2.7rem, 8vw, 5.9rem);
    font-weight: 560;
    letter-spacing: -0.032em;
    line-height: 0.98;
    margin-bottom: clamp(1rem, 2.2vw, 1.7rem);
}

.synet-page .hero-description.hero-description-centered-spline {
    font-size: clamp(1.08rem, 1.7vw, 1.44rem);
    max-width: 900px;
    margin-bottom: clamp(1.1rem, 2.2vw, 1.9rem);
}

.synet-page .hero-sub-copy {
    max-width: 820px;
    margin-bottom: clamp(1rem, 2.1vw, 1.65rem);
    font-size: clamp(0.96rem, 1.05vw, 1.06rem);
    color: rgba(255, 255, 255, 0.66);
}

.synet-page .hero-buttons {
    margin-top: clamp(0.8rem, 1.8vw, 1.35rem);
}

.synet-page .hero-brand-inline,
.synet-page .hero-title.hero-title-centered-spline,
.synet-page .hero-description.hero-description-centered-spline,
.synet-page .hero-sub-copy,
.synet-page .hero-buttons {
    opacity: 0;
    transform: translateY(18px);
    animation: synetHeroReveal 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.synet-page .hero-brand-inline {
    animation-delay: 80ms;
}

.synet-page .hero-title.hero-title-centered-spline {
    animation-delay: 190ms;
}

.synet-page .hero-description.hero-description-centered-spline {
    animation-delay: 320ms;
}

.synet-page .hero-sub-copy {
    animation-delay: 440ms;
}

.synet-page .hero-buttons {
    animation-delay: 560ms;
}

@keyframes synetHeroReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.synet-page .services,
.synet-page .featured-product,
.synet-page .featured-product.minimal,
.synet-page .contact {
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.synet-page .section-header {
    margin-bottom: clamp(1.7rem, 3.2vw, 2.55rem);
}

.synet-page .services-grid {
    gap: clamp(0.95rem, 1.7vw, 1.4rem);
    margin-top: clamp(1.35rem, 2.8vw, 2rem);
}

.synet-page .service-card {
    background: rgba(255, 255, 255, 0.038);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
}

.synet-page .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 195, 0.46);
    background: rgba(255, 255, 255, 0.053);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.synet-page .synet-mini-card {
    min-height: 154px;
    padding: 1.45rem 1.1rem;
    align-items: center;
    justify-content: center;
    gap: 0.82rem;
    text-align: center;
}

.synet-page .synet-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 184, 195, 0.35);
    background: rgba(0, 167, 179, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(214, 252, 255, 0.95);
    font-size: 0.98rem;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.synet-page .synet-mini-card h3 {
    font-size: clamp(1.01rem, 1.25vw, 1.14rem);
    line-height: 1.25;
}

.synet-page .synet-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 760px;
    margin: clamp(1.15rem, 2.5vw, 1.7rem) auto 0;
}

.synet-page .synet-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.042);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.79rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.synet-page .synet-badges span i {
    color: rgba(81, 235, 243, 0.92);
    font-size: 0.88rem;
}

.synet-page .feature-matrix-table-wrap {
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 18px;
}

.synet-page .roadmap-disclaimer {
    margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
}

@media (max-width: 1024px) {
    .synet-page .synet-product-hero {
        min-height: clamp(500px, 70svh, 700px);
    }

    .synet-page .hero-title.hero-title-centered-spline {
        font-size: clamp(2.35rem, 8.6vw, 4.8rem);
    }
}

@media (max-width: 900px) {
    .synet-page .synet-card-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .synet-page .synet-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 540px;
    }
}

@media (max-width: 640px) {
    .synet-page .synet-product-hero {
        min-height: clamp(470px, 66svh, 620px);
    }

    .synet-page .hero-centered-spline .hero-content-overlay {
        padding-top: clamp(4.2rem, 9vh, 5.2rem);
        padding-bottom: clamp(2.6rem, 5vh, 3.2rem);
    }

    .synet-page .hero-inline-logo {
        width: clamp(210px, 58vw, 300px);
        margin-bottom: 1.3rem;
    }

    .synet-page .hero-title.hero-title-centered-spline {
        font-size: clamp(2.05rem, 11.4vw, 3.2rem);
        line-height: 1.02;
    }

    .synet-page .synet-card-grid-5,
    .synet-page .synet-badges {
        grid-template-columns: 1fr;
    }

    .synet-page .synet-mini-card {
        min-height: 128px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .synet-page .hero-brand-inline,
    .synet-page .hero-title.hero-title-centered-spline,
    .synet-page .hero-description.hero-description-centered-spline,
    .synet-page .hero-sub-copy,
    .synet-page .hero-buttons {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Final layout harmonization: Services / Roadmap / Company / Contact */
.service-card,
.service-card-balanced {
    align-items: center;
    text-align: center;
}

.service-card h3,
.service-card p,
.service-card-balanced h3,
.service-card-balanced p {
    text-align: center;
}

.service-card-balanced {
    justify-content: flex-start;
}

.services-page .hero.hero-centered-spline,
.roadmap-page .hero.hero-centered-spline,
.company-page .hero.hero-centered-spline {
    min-height: clamp(520px, 72svh, 760px);
}

.services-page .hero-centered-spline .hero-content-overlay,
.roadmap-page .hero-centered-spline .hero-content-overlay,
.company-page .hero-centered-spline .hero-content-overlay {
    max-width: 1120px;
    padding-top: clamp(5.1rem, 9.6vh, 6.8rem);
    padding-bottom: clamp(3rem, 6.5vh, 4.4rem);
}

.services-page .hero-title.hero-title-centered-spline,
.roadmap-page .hero-title.hero-title-centered-spline,
.company-page .hero-title.hero-title-centered-spline {
    font-size: clamp(2.45rem, 6.6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: clamp(1rem, 2.1vw, 1.6rem);
}

.services-page .hero-description.hero-description-centered-spline,
.roadmap-page .hero-description.hero-description-centered-spline,
.company-page .hero-description.hero-description-centered-spline {
    max-width: 900px;
    font-size: clamp(1.04rem, 1.45vw, 1.24rem);
    margin-bottom: clamp(1rem, 2vw, 1.7rem);
}

.services-page .services,
.services-page .featured-product,
.services-page .contact,
.roadmap-page .services,
.roadmap-page .featured-product,
.company-page .services,
.company-page .featured-product,
.company-page .about {
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.services-page .services-lead-form {
    max-width: 980px;
    margin: 0 auto;
}

.services-page .services-lead-form .lead-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1rem;
    align-items: start;
}

.services-page .services-lead-form .field-span-full {
    grid-column: 1 / -1;
}

.services-page .services-lead-form textarea {
    min-height: 104px;
}

.services-page .services-lead-form .cta-buttons {
    justify-content: center;
}

.roadmap-page #roadmap-stages .service-card {
    padding-left: var(--space-6);
    border-left: 0;
}

.roadmap-page #roadmap-stages .service-card::after {
    display: none;
}

.contact-page #contact-details .services-grid {
    max-width: 900px;
    margin: 0 auto;
}

.contact-page #contact-details .service-card {
    min-height: 108px;
}

@media (max-width: 900px) {
    .services-page .services-lead-form .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .services-page .services-lead-form .field-span-full {
        grid-column: auto;
    }
}

/* Hero typography system unification (home style applied site-wide) */
:root {
    --hero-unified-title-size: clamp(2.2rem, 4.2vw, 3.85rem);
    --hero-unified-title-weight: 520;
    --hero-unified-title-line-height: 1.04;
    --hero-unified-title-letter-spacing: -0.024em;
    --hero-unified-title-margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
    --hero-unified-description-size: clamp(1.02rem, 1.2vw, 1.17rem);
    --hero-unified-description-line-height: 1.64;
    --hero-unified-description-max-width: 860px;
    --hero-unified-description-margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
    --hero-unified-overlay-max-width: 1080px;
    --hero-unified-overlay-padding-top: clamp(5rem, 8.6vh, 6.6rem);
    --hero-unified-overlay-padding-bottom: clamp(1.8rem, 3.8vh, 2.8rem);
}

.hero.hero-centered-spline .hero-content-overlay {
    max-width: var(--hero-unified-overlay-max-width);
    padding-top: var(--hero-unified-overlay-padding-top);
    padding-bottom: var(--hero-unified-overlay-padding-bottom);
}

.hero .hero-title.hero-title-centered-spline,
.hero .hero-title.hero-title-centered-spline .title-line {
    font-family: 'Inter', var(--font-family);
    font-size: var(--hero-unified-title-size);
    font-weight: var(--hero-unified-title-weight);
    line-height: var(--hero-unified-title-line-height);
    letter-spacing: var(--hero-unified-title-letter-spacing);
    margin-bottom: var(--hero-unified-title-margin-bottom);
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    background: none;
}

.hero .hero-description.hero-description-centered-spline {
    max-width: var(--hero-unified-description-max-width);
    font-size: var(--hero-unified-description-size);
    line-height: var(--hero-unified-description-line-height);
    margin-bottom: var(--hero-unified-description-margin-bottom);
    color: var(--text-secondary);
}

.hero .hero-buttons {
    margin-top: clamp(0.55rem, 1.6vw, 1.05rem);
}

.footer-unimore-logo {
    display: block;
    width: 100%;
    max-width: 172px;
    height: auto;
    object-fit: contain;
    filter: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Dedicated select dropdown styling for lead forms */
.lead-form .form-select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 2.9rem;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.25 6 8l4-3.75' fill='none' stroke='%23B7F8FC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E\");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 1rem center;
    background-size: auto, 0.92rem;
    border-color: rgba(0, 177, 189, 0.36);
}

.lead-form .form-select:hover {
    border-color: rgba(0, 212, 215, 0.62);
    box-shadow: 0 0 0 2px rgba(0, 167, 179, 0.08);
}

.lead-form .form-select:focus {
    border-color: rgba(0, 188, 200, 0.86);
    box-shadow: 0 0 0 3px rgba(0, 167, 179, 0.2);
}

.lead-form .form-select option {
    background: #071112;
    color: rgba(240, 252, 253, 0.94);
}

@media (max-width: 640px) {
    .footer-unimore-logo {
        max-width: 150px;
    }
}

/* Footer architecture cleanup: balanced 5-column structure */
.footer .site-footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) minmax(220px, 1fr) repeat(3, minmax(160px, 0.82fr));
    gap: clamp(1.6rem, 3.3vw, 3.4rem);
    align-items: start;
}

.footer .footer-column {
    min-width: 0;
    text-align: center;
}

.footer .footer-column h4 {
    margin-bottom: 0.95rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.footer .footer-column p,
.footer .footer-column li,
.footer .footer-column a {
    color: rgba(255, 255, 255, 0.66);
}

.footer .footer-column a:hover,
.footer .footer-column a:focus-visible {
    color: rgba(255, 255, 255, 0.92);
}

.footer .footer-company-column .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.85rem;
}

.footer .footer-company-column p {
    margin: 0.18rem 0;
    line-height: 1.52;
    text-align: center;
}

.footer .footer-unimore-column p {
    margin: 0 auto;
    line-height: 1.55;
    max-width: 30ch;
}

.footer .footer-unimore-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.95rem;
    padding: 0.75rem 0;
}

.footer .footer-unimore-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: none !important;
    box-shadow: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
}

.footer .footer-column ul {
    padding-left: 0;
    display: grid;
    justify-items: center;
}

.footer .footer-column ul li {
    margin-bottom: 0.46rem;
}

/* Turnstile area polish: keep visible, compact, and proportional */
.lead-form .form-captcha,
.lead-form .turnstile-wrap {
    margin: 1.15rem 0 0.95rem;
    min-height: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-form .form-captcha .cf-turnstile,
.lead-form .cf-turnstile {
    width: auto;
    max-width: 100%;
    min-height: 0;
    flex: 0 0 auto;
}

.lead-form .form-captcha iframe {
    display: block;
    max-width: 100%;
}

.lead-form .lead-form-status {
    min-height: 1.15rem;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .footer .site-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .footer .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.45rem;
    }

    .footer .footer-unimore-card {
        padding-top: 0.5rem;
    }

    .footer .footer-unimore-logo {
        max-width: 190px;
    }
}

@media (max-width: 420px) {
    .lead-form .form-captcha,
    .lead-form .turnstile-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }
}

/* Keep plain mail links consistent on dark pages (legacy/legal/footer) */
a[href^="mailto:"]:not(.btn):not(.button):not(.cta-button):not(.nav-link) {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.72);
    text-underline-offset: 3px;
}

a[href^="mailto:"]:not(.btn):not(.button):not(.cta-button):not(.nav-link):visited {
    color: rgba(255, 255, 255, 0.92) !important;
}

a[href^="mailto:"]:not(.btn):not(.button):not(.cta-button):not(.nav-link):hover,
a[href^="mailto:"]:not(.btn):not(.button):not(.cta-button):not(.nav-link):focus-visible {
    color: #ffffff !important;
    text-decoration-color: rgba(255, 255, 255, 0.95);
}
