/* ============================================
   MOBILECARE - Riparazione Cellulari e Computer Torino
   Design: Vivace e Colorato
   ============================================ */

/* --- RESET & CUSTOM PROPERTIES --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* MobileCare Brand: Rosso chiaro, Bianco, Nero */
    --primary: #e63946;
    --primary-dark: #c1272d;
    --primary-light: #ff6b6b;
    --secondary: #e63946;
    --secondary-dark: #c1272d;
    --secondary-light: #ff8a8a;
    --accent: #1d1d1d;
    --accent-light: #444444;
    --warm: #e63946;
    --warm-dark: #c1272d;
    --cta: #e63946;
    --cta-dark: #c1272d;
    --dark: #111111;
    --text: #222222;
    --text-muted: #666666;
    --bg: #f9f9f9;
    --white: #FFFFFF;
    --light-gray: #f3f3f3;
    --border: #e0e0e0;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 9999px;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-color: 0 4px 20px rgba(230,57,70,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --gradient-hero: linear-gradient(135deg, #1d1d1d 0%, #2d2d2d 100%);
    --gradient-cta: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
    --gradient-card: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
    --gradient-accent: linear-gradient(135deg, #111111 0%, #333333 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cardo', Georgia, serif;
    color: var(--dark);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 0.5rem; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }
p { margin-bottom: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; position: relative; }
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-card);
    border-radius: 2px;
    margin: 0.8rem auto 0;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: -1.5rem auto 3rem;
    font-size: 1.05rem;
}
.section-alt { background: var(--white); }

/* --- TOP BAR --- */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 3px solid;
    border-image: var(--gradient-hero) 1;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: var(--white); font-weight: 500; }
.top-bar a:hover { color: var(--primary-light); }
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; gap: 20px; }

/* --- HEADER --- */
.header {
    background: var(--white);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; }
.logo-img {
    height: 48px;
    width: auto;
}
.logo-text {
    font-family: 'Cardo', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.logo-accent { color: var(--primary); }

/* Navigation */
.nav { display: flex; align-items: center; gap: 0; }
.nav > a, .nav-item > a {
    padding: 0.6rem 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}
.nav > a:hover, .nav-item > a:hover,
.nav > a.active, .nav-item > a.active { color: var(--primary); }
.nav > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-card);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav > a:hover::after, .nav > a.active::after { width: 60%; }

.nav-item { position: relative; }
.nav-item > a::after {
    content: ' ▾';
    font-size: 0.7rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: none;
    min-width: 500px;
    z-index: 100;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    border: 1px solid var(--border);
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.nav-item:hover .dropdown {
    display: flex;
    gap: 2rem;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.dropdown-col { display: flex; flex-direction: column; }
.dropdown-title {
    font-family: 'Cardo', Georgia, serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.dropdown a {
    padding: 0.4rem 0;
    color: var(--text);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.dropdown a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-family: 'Cardo', Georgia, serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
    color: var(--white);
}
.btn-cta {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* --- HERO --- */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.2rem; }
.hero p { font-size: 1.15rem; opacity: 0.92; margin-bottom: 2rem; max-width: 600px; }
.hero .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.9; max-width: 600px; font-size: 1.05rem; }

/* --- BREADCRUMB --- */
.breadcrumb {
    background: var(--white);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.85rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin-right: 0.3rem;
    color: var(--text-muted);
}
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); font-weight: 500; }

/* --- CARDS --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-card);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    background: var(--light-gray);
}
.card-icon.purple { background: rgba(230,57,70,0.08); color: var(--primary); }
.card-icon.blue { background: rgba(29,29,29,0.06); color: var(--accent); }
.card-icon.green { background: rgba(230,57,70,0.06); color: var(--primary-light); }
.card-icon.orange { background: rgba(230,57,70,0.1); color: var(--primary); }
.card-icon.yellow { background: rgba(29,29,29,0.05); color: var(--dark); }
.card-icon.teal { background: rgba(230,57,70,0.05); color: var(--primary-dark); }
.card h3 a { color: var(--dark); }
.card h3 a:hover { color: var(--primary); }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* Service card link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}
.card-link:hover { gap: 10px; }

/* --- STATS BAR --- */
.stats-bar {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {}
.stat-number {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: var(--gradient-card);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* --- FEATURES (Why Choose Us) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
    background: var(--gradient-card);
    color: var(--white);
    box-shadow: var(--shadow-color);
}
.feature-item h3 { margin-bottom: 0.5rem; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* --- REVIEWS --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
}
.review-stars { color: var(--warm); font-size: 1.2rem; margin-bottom: 0.8rem; }
.review-text { font-style: italic; color: var(--text); margin-bottom: 1rem; }
.review-author { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn-group { justify-content: center; display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- PROCESS STEPS --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    counter-increment: step;
}
.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-card);
    color: var(--white);
    font-family: 'Cardo', Georgia, serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}
.pricing-card.featured::before {
    content: 'Più Richiesto';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-card);
    color: var(--white);
    padding: 0.2rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}
.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.pricing-header h3 { color: var(--primary); }
.pricing-price {
    font-family: 'Cardo', Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-list { list-style: none; padding: 0; }
.pricing-list li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

/* --- FAQ --- */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-color); }
.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    font-family: inherit;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- ZONES / SERVICE AREA --- */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.zone-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.zone-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(108,92,231,0.1);
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 0.2rem; font-size: 1rem; }
.contact-info-item p { color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }
.contact-info-item a { color: var(--primary); }

.contact-form {}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Google Map embed */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 2rem;
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* --- TRUST BADGES --- */
.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
}
.trust-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* --- WAVE DIVIDER --- */
.wave-divider {
    position: relative;
    margin-top: -1px;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}
.footer-logo {
    font-family: 'Cardo', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}
.footer-logo .logo-accent { color: var(--primary-light); }
.footer p { font-size: 0.9rem; line-height: 1.6; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.2rem;
}
.footer-social a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-social a:hover { color: var(--primary-light); }

.footer h4 {
    color: var(--white);
    font-family: 'Cardo', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-card);
    border-radius: 2px;
}
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer li a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-contacts { padding: 0; list-style: none; }
.footer-contacts li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.footer-contacts a { color: rgba(255,255,255,0.7); }
.footer-contacts a:hover { color: var(--primary-light); }
.footer-hours { padding: 0; list-style: none; }
.footer-hours li { font-size: 0.85rem; margin-bottom: 0.3rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--primary-light); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.2rem 0;
    border-top: 3px solid var(--primary);
}
.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.cookie-inner a { color: var(--primary); font-weight: 500; }
.cookie-buttons { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* --- CONTENT (Service pages, about, etc.) --- */
.content-section { max-width: 800px; margin: 0 auto; }
.content-section h2 { margin-top: 2rem; }
.content-section ul { margin-bottom: 1.5rem; }
.content-section li { margin-bottom: 0.5rem; }

.service-list { list-style: none; padding: 0; }
.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* Inline icon */
.icon-inline {
    display: inline-flex;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse-green {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scroll-triggered animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-in-up"] { transform: translateY(30px); }
[data-animate="fade-in"] {}
[data-animate="slide-in-left"] { transform: translateX(-40px); }
[data-animate="slide-in-right"] { transform: translateX(40px); }
[data-animate="scale-in"] { transform: scale(0.9); }

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delay */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* --- RESPONSIVE: TABLET --- */
@media (max-width: 992px) {
    .hero { padding: 3.5rem 0 4.5rem; }
    .page-hero { padding: 2.5rem 0; }
    .section { padding: 3.5rem 0; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .dropdown { min-width: 400px; }
}

/* --- RESPONSIVE: MOBILE --- */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        overflow-y: auto;
        z-index: 1000;
        align-items: stretch;
    }
    .nav.active { right: 0; }

    .nav > a, .nav-item > a {
        padding: 0.8rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
    }
    .nav > a::after { display: none; }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        min-width: 0;
        display: none;
        flex-direction: column;
        gap: 0;
    }
    .nav-item.open .dropdown { display: flex; }
    .dropdown-col { margin-bottom: 0.5rem; }
    .dropdown a { padding: 0.5rem 0; font-size: 0.9rem; }

    .top-bar .container { flex-direction: column; text-align: center; }
    .top-bar-right { flex-direction: column; gap: 4px; }

    .hero { padding: 3rem 0 4rem; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero .btn-group { flex-direction: column; }
    .hero .btn-group .btn { text-align: center; justify-content: center; }

    .page-hero { padding: 2rem 0; }
    .section { padding: 3rem 0; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .trust-badges { justify-content: center; }

    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }

    .cta-banner { padding: 3rem 0; }

    .zones-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- RESPONSIVE: SMALL PHONES --- */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.8rem; }
    .zones-grid { grid-template-columns: 1fr; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
}

/* --- PRINT --- */
@media print {
    .top-bar, .header, .whatsapp-float, .cookie-banner, .footer { display: none; }
    .hero, .page-hero, .cta-banner { background: #eee !important; color: #000 !important; }
    .hero h1, .page-hero h1, .cta-banner h2 { color: #000 !important; }
    body { font-size: 12pt; }
}
