:root {
    --blue: #1E5FA8;
    --azure: #4FC3F7;
    --dark-blue: #0D3B66;
    --light-gray: #F9FAFB;
    --white: #FFFFFF;
    --primary: #1E5FA8;
    --accent: #4FC3F7;
    --gradient: linear-gradient(135deg, #1E5FA8 0%, #4FC3F7 100%);
}

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background: var(--white);
        }

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

        /* ========== HEADER ========== */
        header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(13, 59, 102, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--dark-blue);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span { color: var(--blue); }

        nav { display: flex; align-items: center; gap: 28px; }

        nav a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        nav a:hover { color: var(--blue); }

        .cta-header {
            background: var(--blue);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .cta-header:hover { background: var(--dark-blue); transform: translateY(-2px); }

        /* ========== HERO ========== */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--light-gray) 0%, #e8eef5 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(30, 95, 168, 0.1);
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--dark-blue);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .hero h1 span { color: var(--blue); }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 600;
            color: #555;
            margin-bottom: 8px;
        }

        .hero-services {
            font-size: 1.1rem;
            color: #777;
            margin-bottom: 28px;
        }

        .hero-services strong { color: var(--dark-blue); }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            margin-bottom: 28px;
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 95, 168, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--dark-blue);
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid var(--dark-blue);
            transition: all 0.3s;
        }

        .btn-secondary:hover { background: var(--dark-blue); color: var(--white); }

        .hero-guarantee {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: #555;
        }

        .hero-guarantee-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
        }

        .hero-image { position: relative; }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(13, 59, 102, 0.2);
        }

        .hero-image-badge {
            position: absolute;
            bottom: -20px;
            left: -30px;
            background: var(--white);
            padding: 20px 28px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(13, 59, 102, 0.15);
        }

        .hero-image-badge h4 { font-size: 0.8rem; color: #777; margin-bottom: 4px; }
        .hero-image-badge strong { font-size: 1.4rem; color: var(--blue); }

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

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark-blue);
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        /* ========== ABOUT ========== */
        .about { background: var(--white); }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .about p {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 16px;
        }

        .about-stats {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .about-stat {
            text-align: center;
            padding: 20px 28px;
            background: var(--light-gray);
            border-radius: 12px;
        }

        .about-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--blue);
        }

        .about-stat-label {
            font-size: 0.85rem;
            color: #666;
        }

        .about-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(13, 59, 102, 0.12);
        }

        /* ========== BENEFITS ========== */
        .benefits { background: var(--light-gray); }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: var(--white);
            padding: 36px 28px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(13, 59, 102, 0.1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--white);
        }

        .benefit-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        .benefit-card p { font-size: 0.95rem; color: #666; }
        .benefit-card .highlight { color: var(--blue); font-weight: 700; }

        /* ========== VALUE BLOCK ========== */
        .value-block {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            padding: 90px 0;
            text-align: center;
        }

        .value-block h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .value-block p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 550px;
            margin: 0 auto;
        }

        /* ========== PROTOCOL ========== */
        .protocol { background: var(--white); }

        .protocol-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .protocol-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .protocol-step::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -12px;
            width: 24px;
            height: 2px;
            background: var(--blue);
        }

        .protocol-step:last-child::after { display: none; }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
        }

        .protocol-step h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        .protocol-step p {
            font-size: 0.9rem;
            color: #666;
        }

        /* ========== SERVICES ========== */
        .services { background: var(--light-gray); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(13, 59, 102, 0.12);
        }

        .service-image {
            height: 160px;
            background: #ddd;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content { padding: 20px; }

        .service-content h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        /* ========== DIFFERENCE ========== */
        .difference { background: var(--white); }

        .diff-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .diff-card {
            padding: 36px;
            border-radius: 16px;
        }

        .diff-card.problema {
            background: #fff5f5;
            border-left: 4px solid #e74c3c;
        }

        .diff-card.soluzione {
            background: #f0f9ff;
            border-left: 4px solid var(--blue);
        }

        .diff-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .diff-card ul { list-style: none; }

        .diff-card li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            font-size: 0.95rem;
            color: #555;
        }

        .diff-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }

        .problema li::before { background: #e74c3c; }
        .soluzione li::before { background: var(--blue); }

        /* ========== TARGETS ========== */
        .targets { background: var(--light-gray); }

        .targets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .target-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .target-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(13, 59, 102, 0.1);
        }

        .target-icon {
            background: var(--gradient);
            padding: 24px;
            text-align: center;
            font-size: 2.5rem;
        }

        .target-content { padding: 24px; }

        .target-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 12px;
        }

        .target-content .problema {
            color: #e74c3c;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .target-content .soluzione { color: #555; font-size: 0.9rem; }

        /* ========== PRICING ========== */
        .pricing { background: var(--white); }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .price-card {
            background: var(--light-gray);
            padding: 32px;
            border-radius: 16px;
            text-align: center;
        }

        .price-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 12px;
        }

        .price-card .price {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--blue);
        }

        .price-card .price span {
            font-size: 1rem;
            color: #777;
            font-weight: 500;
        }

        .price-card .note {
            font-size: 0.85rem;
            color: #777;
            margin-top: 12px;
        }

        /* ========== BUNDLES ========== */
        .bundles { background: var(--light-gray); }

        .bundles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .bundle-card {
            background: var(--gradient);
            padding: 36px;
            border-radius: 16px;
            color: var(--white);
        }

        .bundle-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .bundle-card ul { list-style: none; margin-bottom: 16px; }

        .bundle-card li {
            padding: 8px 0;
            opacity: 0.9;
        }

        .bundle-card p {
            font-weight: 600;
            opacity: 0.9;
        }

        /* ========== GUARANTEE ========== */
        .guarantee {
            background: var(--gradient);
            padding: 80px 0;
            text-align: center;
        }

        .guarantee h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .guarantee p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 550px;
            margin: 0 auto;
        }

        /* ========== SUBSCRIPTIONS ========== */
        .subscriptions { background: var(--light-gray); }

        .subs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .sub-card {
            background: var(--white);
            padding: 36px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(13, 59, 102, 0.06);
        }

        .sub-card.highlight {
            border: 3px solid var(--blue);
            position: relative;
        }

        .sub-card.highlight::before {
            content: 'PIÙ RICHIESTO';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--blue);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .sub-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .sub-card .subtitle {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .sub-card ul { list-style: none; }

        .sub-card li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }

        .sub-card li::before {
            content: '✓';
            color: var(--blue);
            font-weight: 700;
            margin-right: 10px;
        }

        /* ========== CTA ========== */
        .cta-section { background: var(--white); padding: 100px 0; }

        .cta-box {
            background: linear-gradient(135deg, var(--light-gray) 0%, #e8eef5 100%);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            border: 2px solid var(--azure);
        }

        .cta-box h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 12px;
        }

        .cta-box p { font-size: 1.1rem; color: #666; margin-bottom: 30px; }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--blue);
            color: var(--white);
            padding: 20px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            transition: all 0.3s;
        }

        .cta-phone:hover { background: var(--dark-blue); transform: scale(1.05); }

        .cta-note {
            display: block;
            margin-top: 16px;
            font-size: 0.9rem;
            color: #777;
        }

        /* ========== CONTACT ========== */
        .contact { background: var(--light-gray); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 16px;
        }

        .contact-info p { color: #666; margin-bottom: 24px; }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        .contact-text { font-weight: 600; color: var(--dark-blue); }
        .contact-sub { font-size: 0.85rem; color: #666; }

        .contact-tip {
            margin-top: 24px;
            padding: 20px;
            background: #e8f9ff;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #444;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(13, 59, 102, 0.08);
        }

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

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

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e5ed;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

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

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

        .form-submit {
            width: 100%;
            padding: 18px;
            background: var(--blue);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-submit:hover { background: var(--dark-blue); }

        /* ========== FOOTER ========== */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 50px 0 30px;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .footer-logo { font-size: 1.4rem; font-weight: 800; }
        .footer-logo span { color: var(--azure); }

        .footer-social { display: flex; gap: 16px; }

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

        .footer-social a:hover { background: var(--blue); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            margin-left: 24px;
            transition: opacity 0.3s;
        }

        .footer-links a:hover { opacity: 1; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            nav { display: none; }
            .hero-inner, .about-grid, .diff-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 2.4rem; }
            .hero-cta-group, .hero-guarantee { justify-content: center; }
            .hero-image { max-width: 500px; margin: 40px auto 0; }
            .hero-image-badge { left: 50%; transform: translateX(-50%); }
            .benefits-grid, .protocol-grid, .services-grid, .targets-grid, .pricing-grid, .bundles-grid, .subs-grid { grid-template-columns: 1fr; }
            .protocol-step::after { display: none; }
            .about-stats { justify-content: center; }
            .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }

        @media (max-width: 768px) {
            .hero { padding: 120px 0 60px; }
            .hero h1 { font-size: 2rem; }
            .cta-box { padding: 40px 24px; }
            .cta-phone { font-size: 1.2rem; padding: 16px 24px; }
            .form-row { grid-template-columns: 1fr; }
        }
		.targets {
  padding: 60px 0;
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.target-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.target-card:hover {
  transform: translateY(-5px);
}

/* IMMAGINE */
.card-image {
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
}

/* Overlay (fondamentale) */
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Titolo sopra immagine */
.card-image h3 {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
}

/* CONTENUTO */
.target-content {
  padding: 20px;
}

.problema {
  color: #e74c3c;
  font-weight: 500;
  margin-bottom: 10px;
}

.soluzione {
  color: #555;
  line-height: 1.5;
}

/* IMMAGINI PLACEHOLDER */
.card-image-1 {
  background-image: url('img/vapor-service-card-famiglie-con-bambini.jpg');
}

.card-image-2 {
  background-image: url('img/vapor-service-card-amici-a-4-zampe.jpg');
}

.card-image-3 {
  background-image: url('img/vapor-service-card-allergici.jpg');
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .targets-grid {
    grid-template-columns: 1fr;
  }
}