﻿:root {
--primary: #E85A2B; --primary-dark: #C2410C; --primary-light: #FF9A6B;
--secondary: #1A1A2E; --secondary-light: #16213E; --accent: #0F3460;
--text: #1A202C; --text-light: #4A5568; --bg: #FAFBFC; --white: #FFFFFF;
--link-on-light: #9B2C0F; --link-on-light-hover: #7C2208;
--hero-accent: #FFCDB0; --on-dark-muted: rgba(255,255,255,0.92);
--success: #48BB78; --warning: #ED8936; --danger: #F56565;
--gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
--gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
--gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #0F3460 50%, #16213E 100%);
--shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05); --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-glow: 0 0 40px rgba(255,107,53,0.3); --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px;
--transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.skip-link { position: absolute; left: -9999px; top: auto; z-index: 2000; padding: 1rem 1.25rem; background: var(--primary); color: var(--white); font-weight: 700; text-decoration: none; border-radius: var(--radius-md); }
.skip-link:focus { left: 1rem; top: 1rem; outline: 3px solid var(--white); outline-offset: 2px; }
h1, h2, h3, h4 { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif; font-weight: 800; line-height: 1.2; color: var(--secondary); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); } h2 { font-size: clamp(2rem, 4vw, 3.5rem); } h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text-light); max-width: 65ch; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
@media (min-width: 768px) {.section { padding: 7rem 0; }.container { padding: 0 2rem; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1.15rem 2.25rem; font-family: inherit; font-size: 1.1rem; font-weight: 600; border: none; border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); text-decoration: none; position: relative; overflow: hidden; }
.btn-primary { background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow-md), 0 0 20px rgba(255,107,53,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), 0 0 30px rgba(255,107,53,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 1.5rem 3rem; font-size: 1.35rem; border-radius: var(--radius-lg); }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.7); } 70% { box-shadow: 0 0 0 20px rgba(255,107,53,0); } }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(26,26,46,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-md); padding: 0.75rem 0; }
.navbar.container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: inherit; font-size: 1.5rem; font-weight: 900; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 40px; height: 40px; background: var(--gradient-primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.nav-links { display: none; gap: 2rem; list-style: none; }
.nav-links a { color: var(--on-dark-muted); text-decoration: none; font-weight: 500; font-size: 0.875rem; transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; font-size: 1.05rem; padding: 0.9rem 1.75rem; }
.mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); transition: 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 { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient-dark); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.3s ease; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.5rem; font-weight: 600; }
.mobile-menu.btn { margin-top: 1rem; }
@media (min-width: 768px) {.nav-links { display: flex; }.nav-cta { display: block; }.mobile-menu-btn { display: none; } }
.hero { min-height: 100vh; background: var(--gradient-hero); position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 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-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) {.hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,107,53,0.22); border: 1px solid rgba(255,255,255,0.4); color: var(--hero-accent); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin: 0 auto 1.5rem; backdrop-filter: blur(10px); }
.hero-badge .pulse-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 span { color: var(--hero-accent); position: relative; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 1024px) {
.hero-grid > .hero-content { align-items: flex-start; text-align: left; }
}
.hero-description { color: var(--on-dark-muted); font-size: 1.125rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) {
.hero-grid > .hero-content .hero-description { margin-left: 0; margin-right: 0; }
}
.hero-cta-group { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; width: 100%; align-items: center; }
@media (min-width: 640px) {.hero-cta-group { flex-direction: row; flex-wrap: wrap; justify-content: center; } }
@media (min-width: 1024px) {
.hero-grid > .hero-content .hero-cta-group { justify-content: flex-start; }
}
.hero-cta-group .btn-outline { max-width: 22rem; width: 100%; justify-content: center; }
@media (min-width: 640px) {
.hero-cta-group .btn-outline { width: auto; max-width: none; }
}
.btn-tel-stack { flex-direction: column; flex-wrap: nowrap; gap: 0.45rem; align-items: center; justify-content: center; text-align: center; width: 100%; max-width: 22rem; padding-top: 1.1rem; padding-bottom: 1.1rem; }
.btn-tel-stack svg { flex-shrink: 0; }
.btn-tel-stack .btn-tel-lines { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; line-height: 1.2; }
.btn-tel-stack .btn-tel-kicker { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.95; }
.btn-tel-stack .phone-capitale { font-size: clamp(1.2rem, 5vw, 1.65rem) !important; letter-spacing: 0.05em; }
@media (min-width: 640px) {
.btn-tel-stack { flex-direction: row; width: auto; max-width: none; padding-top: 1.5rem; padding-bottom: 1.5rem; gap: 0.75rem; }
.btn-tel-stack .btn-tel-lines { align-items: flex-start; text-align: left; }
}
.cta-buttons .btn-tel-stack { max-width: 24rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) {
.cta-buttons .btn-tel-stack { margin-left: 0; margin-right: 0; }
}
.map-gbp-actions { justify-content: center !important; align-items: center !important; flex-direction: column !important; }
@media (min-width: 560px) {
.map-gbp-actions { flex-direction: row !important; flex-wrap: wrap; justify-content: center !important; }
}
.map-cta-outline {
color: #FFFFFF;
font-weight: 700;
text-decoration: none;
border: 2px solid rgba(255,255,255,0.45);
padding: 0.6rem 1.2rem;
border-radius: 8px;
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
max-width: 22rem;
box-sizing: border-box;
font-size: 0.9rem;
transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.map-cta-outline:hover { background: rgba(255,255,255,0.1); color: var(--hero-accent); border-color: rgba(255,255,255,0.65); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-number { font-family: inherit; font-size: 2rem; font-weight: 900; color: var(--hero-accent); display: block; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 2rem; width: 100%; max-width: 400px; position: relative; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%); animation: rotate 20s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-card-content { position: relative; z-index: 1; }
.card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.card-avatar { width: 60px; height: 60px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.card-info h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.card-info p { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.status-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(72,187,120,0.2); color: var(--success); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.card-features { display: flex; flex-direction: column; gap: 0.75rem; }
.card-feature { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.9); font-size: 0.9375rem; }
.card-feature svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.emergency-banner { background: var(--gradient-primary); padding: 1rem 0; position: relative; z-index: 10; }
.emergency-banner.container { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; }
@media (min-width: 768px) {.emergency-banner.container { flex-direction: row; justify-content: space-between; text-align: left; } }
.emergency-text { color: var(--white); font-weight: 700; font-size: 1.125rem; display: flex; align-items: center; gap: 0.75rem; }
.emergency-phone { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--white); color: var(--link-on-light); padding: 1rem 2rem; border-radius: var(--radius-md); text-decoration: none; font-weight: 800; font-size: 1.48rem; transition: var(--transition); box-shadow: var(--shadow-md); }
.emergency-phone:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-tag { display: inline-block; background: rgba(255,107,53,0.14); color: var(--link-on-light); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.section-header h2 { margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) {.services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {.services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: rgba(255,107,53,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--secondary); }
.service-card p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--link-on-light); text-decoration: none; font-weight: 600; font-size: 0.875rem; transition: var(--transition); }
.service-link:hover { gap: 0.75rem; color: var(--link-on-light-hover); }
.why-section { background: var(--secondary); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(255,107,53,0.1) 0%, transparent 50%); }
.why-section .section-tag { background: rgba(255,107,53,0.22); color: var(--hero-accent); }
.why-section h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.88); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; z-index: 1; }
@media (min-width: 768px) {.features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {.features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-box { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: var(--transition); }
.feature-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); border-color: rgba(255,107,53,0.3); }
.feature-box .icon { width: 70px; height: 70px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; box-shadow: 0 10px 30px rgba(255,107,53,0.3); }
.feature-box h3 { color: var(--white); font-size: 1.125rem; margin-bottom: 0.75rem; }
.feature-box p { color: rgba(255,255,255,0.88); font-size: 0.9375rem; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) {.process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 40px; right: -50%; width: 100%; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, transparent 100%); display: none; }
@media (min-width: 768px) {.process-step:not(:last-child)::after { display: block; } }
.step-number { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: inherit; font-size: 1.75rem; font-weight: 900; color: var(--white); box-shadow: var(--shadow-glow); position: relative; z-index: 1; }
.process-step h3 { margin-bottom: 0.75rem; }
.testimonials-section { background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {.testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {.testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #F6E05E; margin-bottom: 1rem; font-size: 1.125rem; }
.testimonial-text { font-style: italic; margin-bottom: 1.5rem; color: var(--text); max-width: none; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.125rem; flex-shrink: 0; }
.author-info .testimonial-author-name { margin-bottom: 0.25rem; }
.author-info p { font-size: 0.875rem; color: var(--text-light); }
.coverage-section { background: var(--white); }
.coverage-content { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {.coverage-content { grid-template-columns: 1fr 1fr; } }
.coverage-map { background: var(--gradient-dark); border-radius: var(--radius-xl); padding: 3rem; position: relative; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.coverage-map::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2.895-2 2.895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2.895-2 2.895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2.895-2 2.895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2.895-2 2.895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); }
.map-pin { position: relative; z-index: 1; text-align: center; }
.pin-icon { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; box-shadow: var(--shadow-glow); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.map-pin h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.map-pin p { color: rgba(255,255,255,0.7); }
.coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.coverage-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: rgba(255,107,53,0.05); border-radius: var(--radius-md); font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.coverage-item .coverage-zone { flex: 1; min-width: 0; }
.coverage-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.cta-section { background: var(--gradient-primary); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); }
.cta-content { text-align: center; position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.125rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) {.cta-buttons { flex-direction: row; align-items: stretch; } }
.cta-section.btn-outline { border-color: var(--white); color: var(--white); }
.cta-section.btn-outline:hover { background: var(--white); color: var(--primary); }
.cta-section.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow-lg); }
.cta-section.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.footer { background: var(--secondary); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) {.footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand.logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { color: rgba(255,255,255,0.82); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: var(--transition); }
.social-link:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.9375rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: rgba(255,255,255,0.82); font-size: 0.9375rem; }
.footer-contact-item a { color: rgba(255,255,255,0.92); text-decoration: none; transition: color 0.2s ease; }
.footer-contact-item a[href^="tel:"] { font-weight: 800; }
.footer-contact-item a[href^="mailto:"] { font-weight: 600; }
.footer-contact-item a:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: 2px; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
@media (min-width: 768px) {.footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: rgba(255,255,255,0.72); font-size: 0.875rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-bottom p a {
color: #FFFFFF;
font-weight: 700;
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 3px;
text-decoration-color: rgba(255,255,255,0.65);
transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer-bottom p a:hover { color: #FFFFFF; text-decoration-color: #FFFFFF; }
body { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 1024px) { body { padding-bottom: 0; } }
.social-proof-hero {
background: linear-gradient(180deg, #fff7ed 0%, var(--white) 100%);
border-bottom: 3px solid var(--primary);
padding: 1.5rem 0;
}
.social-proof-hero__title { text-align: center; font-size: clamp(1rem, 3.5vw, 1.2rem); font-weight: 800; color: var(--secondary); margin-bottom: 0.35rem; }
.social-proof-hero__title strong { color: var(--primary); }
.social-proof-hero__sub { text-align: center; font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; }
.brand-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px; max-width: 640px; margin: 0 auto; }
.brand-badge {
display: inline-flex; align-items: center; justify-content: center;
min-width: 96px; min-height: 42px; padding: 8px 14px;
background: var(--white); border: 2px solid #e2e8f0; border-radius: 10px;
font-weight: 800; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--secondary);
}
.brand-badge--bticino { color: #00854a; border-color: #bbf7d0; }
.brand-badge--vimar { color: #c41230; }
.brand-badge--gewiss { color: #0054a6; }
.brand-badge--schneider { color: #008029; border-color: #bbf7d0; }
.brand-badge--abb { color: #ff000f; }
.zones-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; margin-top: 1rem; }
@media (min-width: 640px) { .zones-hub-grid { grid-template-columns: repeat(3, 1fr); } }
.zone-hub-link {
display: block; padding: 0.65rem 0.75rem; background: rgba(255,107,53,0.08);
border-radius: var(--radius-md); text-decoration: none; font-weight: 600;
font-size: 0.88rem; color: var(--link-on-light); border: 1px solid rgba(255,107,53,0.2);
transition: var(--transition);
}
.zone-hub-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.sticky-cta {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--secondary);
box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
padding: 0.5rem 0.75rem;
padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
display: flex;
flex-direction: column;
align-items: stretch;
gap: 0.25rem;
z-index: 9999;
transform: translateY(0);
}
.sticky-cta .btn {
width: 100%;
max-width: 100%;
box-sizing: border-box;
justify-content: center;
padding: 0.85rem 1rem;
font-size: 1rem;
font-weight: 700;
}
.sticky-cta .btn-primary,
.sticky-cta .sticky-call-main {
flex-direction: column;
gap: 0.15rem;
line-height: 1.15;
padding: 0.95rem 1rem;
background: linear-gradient(180deg, #4ade80 0%, #22c55e 55%, #16a34a 100%);
color: var(--secondary);
box-shadow: 0 0 20px rgba(74, 222, 128, 0.45);
text-transform: uppercase;
letter-spacing: 0.06em;
font-size: 1.05rem;
font-weight: 900;
}
.sticky-cta .sticky-wa-secondary { padding: 0.65rem 1rem; font-size: 0.9rem; }
.sticky-cta-note {
text-align: center;
font-size: 0.72rem;
font-weight: 600;
color: rgba(255,255,255,0.9);
margin: 0;
}
.sticky-cta .btn-primary .sticky-cta-tel-kicker {
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.sticky-cta .btn-primary .phone-capitale { font-size: clamp(1.05rem, 4.2vw, 1.3rem); }
.sticky-cta .btn-primary:hover {
background: linear-gradient(135deg, #B03A0A 0%, #7C2208 100%);
box-shadow: var(--shadow-lg), 0 0 18px rgba(194,65,12,0.45);
}
.sticky-cta .btn-outline {
border: 2px solid var(--link-on-light);
color: var(--link-on-light);
background: var(--white);
flex-direction: row;
gap: 0.5rem;
}
.sticky-cta .btn-outline:hover {
border-color: var(--link-on-light-hover);
color: var(--link-on-light-hover);
background: #FFF8F5;
}
.sticky-cta .btn-outline:focus-visible { outline: 3px solid var(--link-on-light); outline-offset: 2px; }
.sticky-cta .btn-primary:focus-visible { outline: 3px solid #FFFFFF; outline-offset: 2px; }
@media (min-width: 1024px) {
.sticky-cta { display: none; }
body { padding-bottom: 0; }
}
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 10050; background: var(--secondary); color: rgba(255,255,255,0.92); box-shadow: 0 -8px 32px rgba(0,0,0,0.28); padding: 1rem 1rem max(1rem, env(safe-area-inset-bottom)); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 900px) {
.cookie-banner-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 1.75rem; }
}
.cookie-banner-textwrap { flex: 1; min-width: 0; }
.cookie-banner-title { font-weight: 800; font-size: 1.05rem; color: #FFFFFF; margin: 0 0 0.4rem 0; line-height: 1.25; }
.cookie-banner-desc { font-size: 0.875rem; line-height: 1.55; color: rgba(255,255,255,0.9); max-width: none; margin: 0; }
.cookie-banner-desc a { color: var(--hero-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-desc a:hover { color: #FFFFFF; }
.cookie-banner-actions { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
@media (min-width: 520px) {
.cookie-banner-actions { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; }
}
.cookie-banner .btn { padding: 0.72rem 1.15rem; font-size: 0.9rem; white-space: nowrap; }
.cookie-btn-reject { background: transparent; color: #FFFFFF; border: 2px solid rgba(255,255,255,0.55); font-family: inherit; border-radius: var(--radius-md); cursor: pointer; font-weight: 700; transition: var(--transition); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.1); border-color: #FFFFFF; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.map-embed-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: var(--secondary); line-height: 0; }
.map-embed-wrap iframe { width: 100%; height: min(420px, 55vh); display: block; border: 0; }
.map-embed-caption { padding: 1rem 1.25rem; background: var(--secondary); line-height: 1.5; }
.map-embed-caption a { color: #FFE8DF; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.map-embed-caption a:hover { text-decoration: underline; }
.map-embed-caption p { font-size: 0.875rem; color: rgba(255,255,255,0.9); max-width: none; margin: 0; }
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--bg); border-radius: var(--radius-md); padding: 1.35rem 1.5rem; margin-bottom: 1rem; border: 1px solid rgba(0,0,0,0.06); }
.faq-item h3 { font-size: 1.0625rem; margin-bottom: 0.65rem; color: var(--secondary); font-family: inherit; font-weight: 700; line-height: 1.35; }
.faq-item p { font-size: 0.9375rem; max-width: none; color: var(--text-light); margin: 0; }
.faq-item a { color: var(--link-on-light); font-weight: 600; text-decoration: none; }
.faq-item a:hover { color: var(--link-on-light-hover); text-decoration: underline; text-underline-offset: 2px; }
.local-deep-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .local-deep-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .local-deep-grid { grid-template-columns: repeat(3, 1fr); } }
.local-deep-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.local-deep-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--secondary); font-family: inherit; font-weight: 700; }
.phone-capitale { font-weight: 900; font-size: clamp(1.35rem, 4.5vw, 2.15rem); letter-spacing: 0.06em; font-variant-numeric: tabular-nums; text-transform: uppercase; white-space: nowrap; }
.nav-cta .phone-capitale { font-size: 1rem; letter-spacing: 0.04em; }
@media (min-width: 768px) { .nav-cta .phone-capitale { font-size: 1.05rem; } }
.hero-phone-bar { margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: var(--radius-md); background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.15); text-align: center; }
.hero-phone-bar a { color: #fff; text-decoration: none; display: block; }
.hero-phone-bar .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); margin-bottom: 0.35rem; }
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.gallery-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.06); background: var(--bg); }
.gallery-figure img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.gallery-figure figcaption { padding: 1rem 1.15rem; font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
.gallery-figure figcaption strong { color: var(--secondary); display: block; margin-bottom: 0.35rem; font-size: 0.95rem; }
.map-facade { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: linear-gradient(145deg, var(--secondary) 0%, #0f3460 100%); min-height: min(420px, 55vh); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1rem; }
.map-facade p { color: rgba(255,255,255,0.85); max-width: 36ch; margin: 0; font-size: 0.95rem; }
.map-facade button { cursor: pointer; border: none; background: var(--gradient-primary); color: var(--white); font-weight: 700; font-size: 1rem; padding: 1rem 1.75rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.map-facade button:hover { transform: translateY(-2px); }
.coverage-zone { font-size: inherit; font-weight: 600; margin: 0; font-family: inherit; color: inherit; line-height: 1.3; }
.card-brand-title { color: var(--white); font-size: 1.25rem; font-weight: 800; margin: 0 0 0.25rem 0; line-height: 1.2; }
.local-deep-card p { font-size: 0.9375rem; max-width: none; margin: 0; }
.testimonial-source { display: inline-block; margin-top: 0.75rem; font-size: 0.8125rem; font-weight: 600; color: var(--link-on-light); text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial-author-name { font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.25rem 0; line-height: 1.3; }
.link-on-light { color: var(--link-on-light) !important; font-weight: 600; }
.link-on-light:hover { color: var(--link-on-light-hover) !important; text-decoration: underline; }
.footer-heading { font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--white); margin: 0 0 1.5rem 0; line-height: 1.25; }
.logo-tagline { font-size: 0.65rem; font-family: inherit; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hero-accent); margin-top: 2px; }
.cta-section .btn-white, .cta-section .btn-white .phone-capitale { color: var(--link-on-light); }
.hero--service { min-height: 72vh; }
.content-prose { max-width: 720px; margin: 0 auto; }
.content-prose p { margin-bottom: 1.1rem; max-width: none; }
.content-prose ul { margin: 1rem 0 1.5rem 1.35rem; color: var(--text-light); }
.content-prose li { margin-bottom: 0.5rem; }
.zone-intro { font-size: 1.05rem; max-width: none; margin: 0 0 1.25rem; line-height: 1.65; }
.zone-intro a { color: var(--link-on-light); font-weight: 600; text-decoration: none; }
.zone-intro a:hover { text-decoration: underline; }
