:root {
    --primary-green: #689f38;
    --primary-orange: #f39c12;
    --text-dark: #000;
    --text-light: #555555;
    --bg-light-blue: #d0eefa;
    --bg-gray: #f8f9fa;
    --footer-blue: #00a2e8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segoeui.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SEGUISB.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segoeuib.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/seguibl.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-light);
    background-color: var(--white);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

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

.btn-full {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
}

.header {
    background-color: var(--white);
    padding: 20px 0;
}

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

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

.hero {
    padding: 20px 0;
    background-color: var(--white);
}

.hero-box {
    background-color: var(--bg-light-blue);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.badge {
    background-color: #00a2e8;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-description-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.hero-description-box p {
    color: var(--text-dark);
    font-weight: 400;
    max-width: 65%;
    margin-right: 1rem;
}

.amazon-card-img {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(12deg);
    width: 35%;
}

.hero-benefits {
    list-style: none;
    display: flex;
    gap: 20px;
}

.hero-benefits li {
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    background-color: #00a2e8;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon svg {
    width: 12px;
    height: 12px;
}

.hero-form-wrapper {
    flex: 0 0 400px;
}

.form-card {
    background-color: var(--white);
    padding: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    margin-inline: 2rem;
}

.form-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
    margin-inline: 2rem;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #f5f5f5;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
}

.input-group input:focus {
    outline: none;
    border-color: var(--footer-blue);
    background-color: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.checkbox-group input {
    margin-top: 3px;
}

.checkbox-group a {
    color: var(--footer-blue);
    text-decoration: underline;
}

.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.how-it-works h2, .activation-channels h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-green {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.step h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
}

.features {
    padding: 40px 0 80px 0;
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border: solid 1px;
    border-radius: 20px;
    border-color: var(--primary-green);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #689f38;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #689f38;
}

.feature-card p {
    font-size: 0.95rem;
}

.bottom-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-gray);
    overflow: hidden;
}

.relative-container {
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.deco-img {
    position: absolute;
    top: 50%;
    width: 150px;
    z-index: 1;
}

.img-left {
    left: 50px;
    transform: translateY(-50%) rotate(12deg);
}

.img-right {
    right: 50px;
    transform: translateY(-30%) rotate(-12deg);
}

.footer {
    background-color: var(--footer-blue);
    color: var(--white);
    padding: 40px 0;
}

.logo-img-footer {
    height: 100px;
    margin-bottom: 30px;
}

.footer-links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-links a {
    color: var(--white);
    margin-right: 20px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.self-button{
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #689f38;
    border-radius: 100px;
    color: white;
}

@media (max-width: 1024px) {
    .hero-box {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .amazon-card-img {
        position: relative;
        right: -3.5rem;
        top: 4.75rem;
        transform: translateY(-50%) rotate(10deg);
        display: block;
        margin: 20px auto 0 auto;
        width: 60%;
        max-width: 250px;
    }

    .hero-description-box p {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 10px;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .deco-img {
        display: none;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    header {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
        line-height: 120%;
    }
}

.activation-channels {
    padding: 60px 0;
    background-color: #ffffff; 
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.channel-card {
    background: #ffffff;
    border: 1px solid rgba(0, 130, 241, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 130, 241, 0.08);
}

.channel-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 130, 241, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0082f1;
}

.channel-card.store-card .channel-icon {
    background-color: rgba(0, 176, 116, 0.08);
    color: #00b074;
}

.channel-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 12px;
}

.channel-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
    flex-grow: 1; 
}

.btn-channel {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 240px;
}

.btn-channel-blue {
    background-color: var(--footer-blue);
    color: #ffffff;
}

.btn-channel-blue:hover {
    background-color: Albany;
    opacity: 0.9;
}

.btn-channel-outline {
    border: 2px solid #689f38;
    color: #689f38;
    background-color: transparent;
}

.btn-channel-outline:hover {
    background-color: #689f38;
    color: #ffffff;
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .channel-card {
        padding: 35px 20px;
    }
}

.bottom-cta-banner {
            width: 100%;
            background-image: url('./../img/cta_banner.png'); 
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            padding: 80px 30px;
            text-align: center;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 50px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bottom-cta-banner .cta-content-box {
            max-width: 600px;
            margin: 0 auto;
        }

        .bottom-cta-banner h2 {
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .bottom-cta-banner p {
            font-size: 18px;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .step-number-gold-glow {
            width: 60px;  
            height: 60px; 
            margin: 0 auto 20px auto; 
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, #ffe399 0%, #ffb700 100%);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(255, 183, 0, 0.45);
            transition: transform 0.3s ease;
        }

        .step-number-gold-glow img {
            width: 36px;  
            height: auto;
            object-fit: contain;
            transform: rotate(-4deg);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
        }

        .step:hover .step-number-gold-glow {
            transform: scale(1.08);
        }

        @media (max-width: 768px) {
            .bottom-cta-banner {
                background-image: url('./../img/cta_banner_mobile.png'); 
                background-position: bottom center;
                border-radius: 16px;
                padding: 50px 20px 360px 20px; 
                margin: 30px 0;
            }

            .bottom-cta-banner h2 {
                font-size: 28px;
            }

            .bottom-cta-banner p {
                font-size: 16px;
            }
        }

        .countdown-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 20px;
            margin: 28px 0;
            box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 
                        0 8px 10px -6px rgba(15, 23, 42, 0.04),
                        0 1px 3px 0 rgba(0, 0, 0, 0.02);
            max-width: 440px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .countdown-header {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff5f5;
            padding: 6px 12px;
            border-radius: 20px;
            margin-bottom: 16px;
        }

        .pulse-indicator {
            width: 7px;
            height: 7px;
            background-color: #e63946;
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
            animation: pulseGlow 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
        }

        @keyframes pulseGlow {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(230, 57, 70, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
        }

        .countdown-header-text {
            font-size: 11px;
            font-weight: 700;
            color: #e63946;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin: 0;
            line-height: 1;
        }

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

        .countdown-block {
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            border-radius: 10px;
            padding: 10px 4px;
            text-align: center;
            transition: transform 0.2s ease;
        }

        .countdown-digits {
            display: block;
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.1;
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums; 
        }

        .countdown-label {
            display: block;
            font-size: 10px;
            color: #64748b;
            text-transform: uppercase;
            margin-top: 4px;
            font-weight: 600;
            letter-spacing: 0.05em;
        }
        
        @media (max-width: 480px) {
            .countdown-card {
                margin: 20px auto;
                padding: 16px;
                max-width: 100%;
            }
            .countdown-grid {
                gap: 8px;
            }
            .countdown-digits {
                font-size: 22px;
            }
            .countdown-label {
                font-size: 9px;
            }
        }
         .store-card .channel-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            /* Durata accorciata, animazione intensificata */
            animation: storeIconPulseEvident 1.8s infinite ease-in-out;
            will-change: transform, filter;
        }

        @keyframes storeIconPulseEvident {
            0% {
                transform: scale(1);
                filter: drop-shadow(0 0 0 rgba(0, 102, 204, 0));
            }
            50% {
                /* Scalatura aumentata drasticamente (16% invece di 8%) */
                transform: scale(1.16);
                /* Glow neon molto più forte e ampio (80% opacità invece di 35%) */
                filter: drop-shadow(0 8px 16px rgba(0, 102, 204, 0.8));
            }
            100% {
                transform: scale(1);
                filter: drop-shadow(0 0 0 rgba(0, 102, 204, 0));
            }
        }
        
        /* Ottimizzazione Mobile Fluid */
        @media (max-width: 480px) {
            .countdown-card {
                margin: 20px auto;
                padding: 16px;
                max-width: 100%;
            }
            .countdown-grid {
                gap: 8px;
            }
            .countdown-digits {
                font-size: 22px;
            }
            .countdown-label {
                font-size: 9px;
            }
        }