/* ============================================
   D'Agostino - Homepage
   Stili specifici per la homepage
   Variabili CSS condivise in design-system.css
   ============================================ */

/* Variabili aggiuntive specifiche homepage */
:root {
    --bg-warm: #f8f6f3;
    --bg-warm-alt: #f3f0eb;
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--bg-warm);
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ============================================
   HEADER (coerente con catalogo)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 100;
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-800);
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--neutral-700);
    padding: var(--space-2) var(--space-4);
    position: relative;
    transition: color var(--transition);
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--primary-700);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--primary-800);
    transform: translateY(-1px);
}

.header-cta i {
    font-size: var(--text-lg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-700);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-nav-link {
    padding: var(--space-4);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.mobile-nav-link.whatsapp {
    margin-top: var(--space-4);
    background: var(--whatsapp);
    color: var(--white);
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-700) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2H36zM36 4V0h-2v4h-4v2h4v4h2V6h4V4H36zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(10, 22, 40, 0.4) 100%);
    z-index: 1;
}

/* Particle Effects */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-400);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s ease-in-out infinite;
    will-change: transform, opacity;
    contain: layout paint;
}

.hero-particles span:nth-child(1) { left: 8%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 92%; animation-delay: 0.8s; }
.hero-particles span:nth-child(3) { left: 45%; animation-delay: 1.5s; }
.hero-particles span:nth-child(4) { left: 18%; animation-delay: 2.3s; }
.hero-particles span:nth-child(5) { left: 73%; animation-delay: 3.1s; }
.hero-particles span:nth-child(6) { left: 55%; animation-delay: 4.2s; }
.hero-particles span:nth-child(7) { left: 28%; animation-delay: 5.5s; }
.hero-particles span:nth-child(8) { left: 82%; animation-delay: 6.8s; }
.hero-particles span:nth-child(9) { left: 38%; animation-delay: 8.2s; }
.hero-particles span:nth-child(10) { left: 65%; animation-delay: 9.5s; }

@keyframes particleFloat {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px) scale(1);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Stats sotto CTA */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-8);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-stats .stat {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats .stat-number {
    display: block;
    font-family: var(--font-numbers);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: #F28C28;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.hero-stats .stat-label {
    font-size: var(--text-xs);
    color: var(--primary-100);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Layout hero a 3 colonne */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: center;
}

.hero-left,
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: floatLogo 4s ease-in-out infinite;
    will-change: transform;
    contain: layout paint;
}

.hero-logo-mirror {
    transform: scaleX(-1);
    animation: floatLogoMirror 4s ease-in-out infinite;
    will-change: transform;
    contain: layout paint;
}

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

@keyframes floatLogoMirror {
    0%, 100% {
        transform: scaleX(-1) translateY(0);
    }
    50% {
        transform: scaleX(-1) translateY(-15px);
    }
}

.hero-center {
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent-200);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
    color: #F28C28;
}

.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--primary-200);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 540px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: #F28C28;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(242, 140, 40, 0.4);
}

.btn-primary:hover {
    background: #d97a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.hero-scroll a:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

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

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

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-200);
}

.section-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: var(--accent-100);
    border: 1px solid var(--accent-200);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-24) 0;
    background: var(--bg-warm);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-600), var(--accent-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    color: var(--white);
    font-size: var(--text-2xl);
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.service-card > p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--neutral-600);
}

.service-features li i {
    color: var(--success);
    font-size: var(--text-xs);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
    padding: var(--space-24) 0;
    background: var(--bg-warm-alt);
}

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

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
    min-height: 120px;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.brand-card img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    transition: all var(--transition);
}

.brand-card:hover img {
    transform: scale(1.05);
}

/* Loghi grandi per Nordica e Moretti */
.brand-card.brand-large img {
    max-width: 280px;
    max-height: 120px;
}

/* ============================================
   WORKS SECTION
   ============================================ */
.works {
    padding: var(--space-24) 0;
    background: var(--bg-warm);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.work-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.work-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
}

.work-category {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--accent-400);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

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

.work-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.work-content p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: 1.6;
}

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

/* ============================================
   STORY SECTION
   ============================================ */
.story {
    padding: var(--space-24) 0;
    background: var(--bg-warm-alt);
}

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

.story-content .section-badge {
    margin-bottom: var(--space-4);
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.story-lead {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.story-content p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.highlight-card {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
}

.highlight-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.highlight-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: var(--text-xl);
}

.highlight-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.highlight-content p {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-24) 0;
    background: var(--primary-900);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(242, 140, 40, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 51, 153, 0.3) 0%, transparent 40%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-intro .section-badge {
    background: rgba(242, 140, 40, 0.2);
    border-color: rgba(242, 140, 40, 0.3);
    color: var(--accent-400);
}

.contact-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.text-accent {
    color: var(--accent-500);
}

.contact-intro p {
    font-size: var(--text-lg);
    color: var(--primary-200);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 400px;
}

.contact-cta-main {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--whatsapp);
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-cta-main:hover {
    background: #20bd5a;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-cta-main i:first-child {
    font-size: var(--text-xl);
}

.contact-cta-main i:last-child {
    font-size: var(--text-sm);
    transition: transform var(--transition);
}

.contact-cta-main:hover i:last-child {
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-5) var(--space-6);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(242, 140, 40, 0.3);
    transform: translateX(8px);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-lg);
    flex-shrink: 0;
    transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
    border-color: var(--accent-500);
    color: var(--accent-500);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.contact-item-label {
    font-size: var(--text-sm);
    color: var(--primary-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-value {
    font-family: var(--font-numbers);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }

    .contact-intro p {
        max-width: 100%;
    }

    .contact-cta-main {
        width: 100%;
        justify-content: center;
    }

    .contact-item {
        text-align: left;
    }
}

/* ============================================
   CAREERS SECTION (Lavora con Noi)
   ============================================ */
.careers {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--neutral-50) 100%);
    position: relative;
    overflow: hidden;
}

.careers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neutral-300), transparent);
}

.careers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neutral-300), transparent);
}

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

.careers-content .section-badge {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #1a9e4a;
}

.careers-content h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 600;
    color: var(--neutral-900);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.careers-lead {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.careers-content > p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.careers-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.careers-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--neutral-700);
}

.careers-benefits li i {
    color: var(--whatsapp);
    font-size: var(--text-sm);
    width: 20px;
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: var(--whatsapp);
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: var(--text-xl);
}

/* Careers Section Animations */
@keyframes careersSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes careersBadgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
}

@keyframes careersListItem {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Centered layout for careers */
.careers-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.careers-centered .section-badge {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #1a9e4a;
    animation: careersSlideUp 0.6s ease-out both, careersBadgePulse 2.5s ease-in-out 1s infinite;
}

.careers-centered h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 600;
    color: var(--neutral-900);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: careersSlideUp 0.6s ease-out 0.1s both;
}

.careers-centered .careers-lead {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    animation: careersSlideUp 0.6s ease-out 0.2s both;
}

.careers-centered > p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    animation: careersSlideUp 0.6s ease-out 0.3s both;
}

.careers-centered .careers-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    text-align: left;
    width: auto;
}

.careers-centered .careers-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--neutral-700);
    animation: careersListItem 0.5s ease-out both;
}

.careers-centered .careers-benefits li:nth-child(1) {
    animation-delay: 0.4s;
}

.careers-centered .careers-benefits li:nth-child(2) {
    animation-delay: 0.5s;
}

.careers-centered .careers-benefits li:nth-child(3) {
    animation-delay: 0.6s;
}

.careers-centered .careers-benefits li:nth-child(4) {
    animation-delay: 0.7s;
}

.careers-centered .careers-benefits li i {
    color: var(--whatsapp);
    font-size: var(--text-sm);
    width: 20px;
    text-align: center;
    transition: transform var(--transition);
}

.careers-centered .careers-benefits li:hover i {
    transform: scale(1.2);
}

.careers-centered .btn-whatsapp {
    margin-top: var(--space-6);
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
    animation: careersSlideUp 0.6s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.careers-centered .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.careers-centered .btn-whatsapp:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .careers-centered {
        max-width: 100%;
    }

    .careers-centered h2 {
        font-size: var(--text-3xl);
    }

    .careers-centered .careers-lead {
        font-size: var(--text-base);
    }

    .careers-centered > p {
        font-size: var(--text-sm);
    }

    .careers-centered .careers-benefits {
        margin-bottom: var(--space-6);
    }

    .careers-centered .careers-benefits li {
        font-size: var(--text-sm);
    }

    .careers-centered .btn-whatsapp {
        width: 100%;
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
}

/* Accessibility: Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .careers-centered .section-badge,
    .careers-centered h2,
    .careers-centered .careers-lead,
    .careers-centered > p,
    .careers-centered .careers-benefits li,
    .careers-centered .btn-whatsapp {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .careers-centered .btn-whatsapp::before {
        display: none;
    }
}

.careers-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
}

.careers-icon-wrapper {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.25);
    animation: floatIcon 4s ease-in-out infinite;
}

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

.careers-stats {
    display: flex;
    gap: var(--space-6);
}

.careers-stat {
    text-align: center;
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
}

.careers-stat-number {
    display: block;
    font-family: var(--font-numbers);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--accent-500);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.careers-stat-label {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .careers-layout {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .careers-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .careers {
        padding: var(--space-16) 0;
    }

    .careers-layout {
        gap: var(--space-10);
        text-align: center;
    }

    .careers-content h2 {
        font-size: var(--text-3xl);
        line-height: 1.15;
    }

    .careers-lead {
        font-size: var(--text-base);
    }

    .careers-content > p {
        font-size: var(--text-sm);
    }

    .careers-benefits {
        align-items: flex-start;
        text-align: left;
        padding: 0 var(--space-4);
    }

    .careers-benefits li {
        font-size: var(--text-sm);
    }

    .btn-whatsapp {
        width: 100%;
        padding: var(--space-5) var(--space-6);
        border-radius: var(--radius-md);
    }

    .careers-icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .careers-stats {
        gap: var(--space-4);
    }

    .careers-stat {
        padding: var(--space-3) var(--space-4);
    }

    .careers-stat-number {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .careers-content h2 {
        font-size: var(--text-2xl);
    }

    .careers-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .careers-stats {
        flex-direction: column;
        gap: var(--space-3);
    }

    .careers-stat {
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-900);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid var(--primary-800);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: var(--space-3);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--primary-300);
    margin-bottom: var(--space-1);
}

.footer-address {
    font-size: var(--text-sm);
    color: var(--primary-400);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a,
.footer-contact a {
    font-size: var(--text-sm);
    color: var(--primary-300);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact a {
    margin-bottom: var(--space-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--primary-400);
}

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

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--primary-400);
    transition: color var(--transition);
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    z-index: 99;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--whatsapp);
    opacity: 0;
    z-index: -1;
    animation: whatsappPulse 2s ease-out infinite;
    will-change: transform, opacity;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile-only elements (hidden on desktop) */
.mobile-only {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

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

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

@media (max-width: 1200px) {
    .hero-logo {
        width: 220px;
    }

    .hero-stats {
        gap: var(--space-4);
    }
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        display: none;
    }

    .hero-center {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }

    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(0, 34, 102, 0.08);
    }

    /* Riduce backdrop-filter su mobile per performance */
    .hero-stats .stat {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .hero-badge {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .logo {
        gap: var(--space-3);
    }

    .logo-img {
        height: 48px;
        width: auto;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: var(--text-xl);
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: var(--primary-50);
        border-radius: var(--radius);
        padding: 10px;
    }

    .mobile-menu-btn span {
        background: var(--primary-700);
        height: 2.5px;
        border-radius: 2px;
    }

    .mobile-menu {
        display: block;
        background: var(--white);
        padding: var(--space-10) var(--space-6);
    }

    .mobile-nav {
        gap: 0;
    }

    .mobile-nav-link {
        padding: var(--space-5) 0;
        font-family: var(--font-display);
        font-size: var(--text-2xl);
        font-weight: 600;
        color: var(--primary-700);
        border-bottom: 1px solid var(--neutral-100);
        transition: all var(--transition);
    }

    .mobile-nav-link:first-child {
        border-top: 1px solid var(--neutral-100);
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        color: var(--primary-800);
        padding-left: var(--space-3);
    }

    .mobile-nav-link.whatsapp {
        margin-top: var(--space-8);
        padding: var(--space-5) var(--space-6);
        background: var(--whatsapp);
        color: var(--white);
        text-align: center;
        font-family: var(--font-body);
        font-size: var(--text-base);
        border: none;
        border-radius: var(--radius-lg);
    }

    .mobile-nav-link.whatsapp:hover {
        background: #20bd5a;
        padding-left: var(--space-6);
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 11vw, 3.5rem);
        line-height: 1.08;
        margin-bottom: var(--space-4);
    }

    .hero-subtitle {
        font-size: var(--text-sm);
        letter-spacing: 0.15em;
        margin-bottom: var(--space-4);
    }

    .hero-description {
        font-size: var(--text-base);
        line-height: 1.7;
        margin-bottom: var(--space-6);
        padding: 0 var(--space-2);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-3);
        width: 100%;
        padding: 0 var(--space-2);
    }

    .btn {
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
        border-radius: var(--radius-md);
        justify-content: center;
    }

    .btn-primary {
        box-shadow: 0 4px 20px rgba(242, 140, 40, 0.35);
    }

    .btn-outline {
        border-width: 2px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-3);
        margin-top: var(--space-8);
    }

    .hero-stats .stat {
        flex: 1;
        min-width: 100px;
        padding: var(--space-4) var(--space-3);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stats .stat-number {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-1);
    }

    .hero-stats .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .mobile-only {
        display: inline;
    }

    .hero-scroll {
        display: none;
    }

    .services,
    .brands,
    .works,
    .story,
    .contact {
        padding: var(--space-16) 0;
    }

    .section-header {
        margin-bottom: var(--space-10);
        padding: 0 var(--space-2);
    }

    .section-badge {
        font-size: 0.65rem;
        padding: var(--space-2) var(--space-4);
        letter-spacing: 0.12em;
    }

    .section-header h2 {
        font-size: var(--text-2xl);
        line-height: 1.2;
    }

    .section-header p {
        font-size: var(--text-base);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .service-card {
        padding: var(--space-6);
        border-radius: var(--radius-lg);
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: var(--text-xl);
        margin-bottom: var(--space-4);
    }

    .service-card h3 {
        font-size: var(--text-lg);
    }

    .service-card > p {
        font-size: var(--text-sm);
        line-height: 1.65;
    }

    .service-features {
        gap: var(--space-2);
    }

    .service-features li {
        font-size: var(--text-sm);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .brand-card {
        padding: var(--space-5);
        min-height: 100px;
        border-radius: var(--radius-lg);
    }

    .brand-card img {
        max-width: 100px;
        max-height: 45px;
    }

    .brand-card.brand-large {
        grid-column: span 2;
    }

    .brand-card.brand-large img {
        max-width: 220px;
        max-height: 90px;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .work-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .work-image {
        aspect-ratio: 4/3;
    }

    .work-content {
        padding: var(--space-5);
    }

    .work-content h3 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2);
    }

    .work-content p {
        font-size: var(--text-sm);
        line-height: 1.65;
    }

    .works-cta {
        margin-top: var(--space-8);
    }

    .story-content h2 {
        font-size: var(--text-2xl);
        line-height: 1.25;
    }

    .story-lead {
        font-size: var(--text-base);
    }

    .story-content p {
        font-size: var(--text-sm);
    }

    .story-highlights {
        gap: var(--space-4);
    }

    .highlight-card {
        padding: var(--space-5);
        gap: var(--space-4);
    }

    .highlight-icon {
        width: 48px;
        height: 48px;
        font-size: var(--text-lg);
    }

    .highlight-content h3 {
        font-size: var(--text-base);
    }

    .highlight-content p {
        font-size: var(--text-sm);
    }

    .contact {
        padding: var(--space-16) 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }

    .contact-intro h2 {
        font-size: var(--text-3xl);
        line-height: 1.15;
    }

    .contact-intro p {
        font-size: var(--text-base);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-cta-main {
        width: 100%;
        justify-content: center;
        padding: var(--space-5) var(--space-6);
        font-size: var(--text-base);
        border-radius: var(--radius-md);
    }

    .contact-info {
        gap: var(--space-3);
    }

    .contact-item {
        padding: var(--space-4) var(--space-5);
        text-align: left;
        border-radius: var(--radius-lg);
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        font-size: var(--text-base);
    }

    .contact-item-value {
        font-size: var(--text-lg);
    }

    .footer {
        padding: var(--space-10) 0 var(--space-6);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-logo {
        font-size: var(--text-xl);
    }

    .footer-links nav {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .footer-legal {
        justify-content: center;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: var(--space-5);
        right: var(--space-5);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-5);
    }

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

    .hero-stats {
        gap: var(--space-2);
    }

    .hero-stats .stat {
        min-width: 90px;
        padding: var(--space-3) var(--space-2);
    }

    .hero-stats .stat-number {
        font-size: var(--text-xl);
    }

    .hero-stats .stat-label {
        font-size: 0.65rem;
    }

    .brands-grid {
        gap: var(--space-3);
    }

    .brand-card {
        padding: var(--space-4);
        min-height: 85px;
    }

    .brand-card img {
        max-width: 85px;
        max-height: 40px;
    }

    .brand-card.brand-large img {
        max-width: 200px;
        max-height: 80px;
    }

    .contact-intro h2 {
        font-size: var(--text-2xl);
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: var(--space-4);
        right: var(--space-4);
    }
}

@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .brand-card:hover,
    .work-card:hover,
    .highlight-card:hover,
    .contact-item:hover {
        transform: none;
    }

    .service-card:active,
    .brand-card:active,
    .work-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.97);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .whatsapp-float {
        bottom: calc(var(--space-5) + env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: calc(var(--space-6) + env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   IUBENDA BANNER - GPU LAYER PROMOTION (v1.5.5)
   Previene scroll jank su display non-Retina promuovendo il banner
   a un proprio compositing layer GPU
   ========================================================================== */

#iubenda-cs-banner,
.iubenda-cs-container {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout style;
}

#iubenda-iframe,
.iubenda-iframe-overlay {
    transform: translateZ(0);
    backface-visibility: hidden;
}
