/* ============================================
   VARIABILI E RESET
   ============================================ */
:root {
    --primary-color: #E91E8C;
    --primary-dark: #C01971;
    --primary-light: #FF3BA0;
    --secondary-color: #FFB84D;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BOLLINO €100 STICKY - SUPER VISIBILE
   ============================================ */
.bollino-sticky {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    animation: pulse 2s infinite;
}

.bollino-sticky .bollino-content {
    background: linear-gradient(135deg, #FFB84D 0%, #FFA726 100%);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 184, 77, 0.5);
    border: 3px solid #fff;
}

.bollino-sticky .bollino-icon {
    font-size: 28px;
    animation: bounce 1s infinite;
}

.bollino-sticky .bollino-text {
    text-align: left;
    line-height: 1.2;
}

.bollino-sticky .bollino-text strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bollino-sticky .bollino-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* ============================================
   BOLLINO HERO - GRANDE E VISIBILE
   ============================================ */
.bollino-hero {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.bollino-hero-content {
    background: linear-gradient(135deg, #FFB84D 0%, #FFA726 100%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 184, 77, 0.6);
    border: 4px solid #fff;
    animation: pulseHero 2s infinite;
    max-width: 200px;
}

.bollino-icon-large {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    animation: bounce 1s infinite;
}

.bollino-hero-text {
    line-height: 1.3;
}

.bollino-top,
.bollino-middle,
.bollino-bottom {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.bollino-price-large {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-top: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1;
}

@keyframes pulseHero {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 184, 77, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 184, 77, 0.8);
    }
}

/* ============================================
   BOLLINI NELLE SEZIONI
   ============================================ */
.bollino-offerta,
.bollino-faq,
.bollino-contact {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.bollino-offerta-content,
.bollino-faq-content,
.bollino-contact-content {
    background: linear-gradient(135deg, #FFB84D 0%, #FFA726 100%);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(255, 184, 77, 0.4);
    border: 3px solid #fff;
}

.bollino-offerta-content .bollino-icon,
.bollino-faq-content .bollino-icon,
.bollino-contact-content .bollino-icon {
    font-size: 32px;
}

.bollino-text-offerta,
.bollino-text-faq,
.bollino-text-contact {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.bollino-text-offerta strong,
.bollino-text-faq strong,
.bollino-text-contact strong {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 22px;
}

/* ============================================
   WHATSAPP & BACK TO TOP BUTTONS
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 997;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 999;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-sub {
    display: block;
    font-size: 42px;
    font-weight: 700;
    opacity: 0.95;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-price {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 30px;
    border: 2px solid rgba(255,255,255,0.3);
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.feature-item i {
    font-size: 20px;
    color: var(--secondary-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.btn-form {
    width: 100%;
    background: var(--primary-color);
    color: white;
    justify-content: center;
    font-size: 18px;
}

.btn-form:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS GENERALI
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title.white {
    color: white;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 400;
}

.section-subtitle.white {
    color: rgba(255,255,255,0.9);
}

/* ============================================
   PROBLEMA SECTION
   ============================================ */
.problema {
    background: var(--bg-light);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problema-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problema-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.problema-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problema-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   OFFERTA SECTION
   ============================================ */
.offerta {
    background: var(--bg-light);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.offerta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.offerta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-dark);
    color: white;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-container {
    text-align: center;
    margin: 40px 0;
}

.countdown-label {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--primary-color);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 100px;
    border: 2px solid var(--primary-dark);
    color: white;
}

.countdown-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label-small {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offerta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.offerta-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
    color: white;
}

.offerta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.offerta-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.offerta-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.offerta-item p {
    color: white;
    opacity: 0.95;
    line-height: 1.6;
}

.offerta-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   BENEFICI SECTION
   ============================================ */
.benefici-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

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

.beneficio-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.beneficio-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.beneficio-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   CONFRONTO SECTION
   ============================================ */
.confronto {
    background: var(--bg-light);
}

.confronto-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.confronto-col {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.confronto-header {
    padding: 25px;
    text-align: center;
    font-weight: 700;
}

.confronto-old .confronto-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.confronto-new .confronto-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.confronto-header h3 {
    font-size: 24px;
}

.confronto-body {
    padding: 30px;
}

.confronto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.confronto-item:last-of-type {
    border-bottom: none;
}

.confronto-label {
    font-weight: 500;
    color: var(--text-dark);
}

.confronto-value {
    font-weight: 700;
    color: var(--text-light);
}

.confronto-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 3px solid var(--primary-color);
}

.confronto-value-total {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
}

.confronto-risparmio {
    text-align: center;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.confronto-risparmio p {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.confronto-risparmio-sub {
    font-size: 18px !important;
    font-weight: 500 !important;
    opacity: 0.8;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    text-align: center;
    padding: 25px;
}

.trust-badge i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.trust-badge span {
    display: block;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   CHI SIAMO SECTION
   ============================================ */
.chi-siamo-content {
    max-width: 800px;
    margin: 0 auto;
}

.chi-siamo-intro {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.chi-siamo-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.chi-siamo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.chi-siamo-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.chi-siamo-feature i {
    font-size: 28px;
    color: var(--primary-color);
}

.chi-siamo-feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    width: 30px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-urgent {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-urgent a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-dark);
}

.form-checkbox a {
    color: var(--primary-color);
    font-weight: 600;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

.form-message {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-message i {
    font-size: 40px;
    margin-bottom: 10px;
}

.form-message p {
    margin: 5px 0;
}

.form-message a {
    color: inherit;
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.footer-note {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    /* Bollino sticky su mobile */
    .bollino-sticky {
        top: 10px;
        right: 10px;
    }
    
    .bollino-sticky .bollino-content {
        padding: 10px 15px;
    }
    
    .bollino-sticky .bollino-icon {
        font-size: 20px;
    }
    
    .bollino-sticky .bollino-text strong {
        font-size: 10px;
    }
    
    .bollino-sticky .bollino-price {
        font-size: 14px;
    }
    
    /* Bollino hero su mobile */
    .bollino-hero {
        position: static;
        margin: 0 auto 30px;
        text-align: center;
    }
    
    .bollino-hero-content {
        display: inline-block;
        max-width: 100%;
    }
    
    /* Navigation mobile */
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    /* Hero section mobile */
    .title-main {
        font-size: 36px;
    }
    
    .title-sub {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp button */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 28px;
    }
    
    .title-sub {
        font-size: 22px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}