@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    box-sizing: border-box;
}

* { box-sizing: inherit; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    background: #0f172a;
}

header .logo img {
    height: 60px;
    width: auto;
}

.btn-1, .btn-2, .free-trial-btn {
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 28px;
    padding: 15px 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251,191,36,0.4);
}

.btn-1:hover, .btn-2:hover, .free-trial-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(251,191,36,0.5);
}

.free-trial-btn {
    font-size: 20px;
    padding: 15px 70px;
    border-radius: 25px;
}

.container {
    background: linear-gradient(180deg, #0f172aE6, #0f172a), url('/images/image-10-min.jpeg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    color: #fbbf24;
    font-size: 60px;
    font-weight: 900;
    margin: 0 0 30px;
    text-shadow: 0 0 30px rgba(251,191,36,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 900px;
    margin-bottom: 40px;
    color: #cbd5e1;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 80px 20px;
    background: #0f172a;
    text-align: center;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: linear-gradient(180deg, #1e1b2e, #0f172a);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature h3 {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 100px 20px;
    background: #0f172a;
    text-align: center;
}

.pricing h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #e2e8f0;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.plan {
    background: linear-gradient(180deg, #1e1b2e, #0f172a);
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.plan:hover {
    transform: translateY(-10px);
}

.plan.popular {
    border: 3px solid #fbbf24;
    transform: scale(1.06);
}

.plan .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
}

.plan h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.plan-price {
    font-size: 72px !important;
    font-weight: 900 !important;
    color: #fbbf24 !important;
    margin: 20px 0 !important;
    text-shadow: 0 0 20px rgba(251,191,36,0.6);
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.plan ul li {
    font-size: 15px;
    padding: 8px 0 8px 25px;
    position: relative;
    color: #cbd5e1;
}

.plan ul li::before {
    content: "✓";
    color: #fbbf24;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 18px;
}

/* Come Funziona */
.how-container {
    padding: 80px 20px;
    text-align: center;
    background: #0f172a;
}

.how-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #e2e8f0;
}

.step-one {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(180deg, #1e1b2e, #0f172a);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    border: 1px solid #d97706;
}

.step:hover {
    transform: translateY(-10px);
}

.step .icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.step h3 {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #cbd5e1;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #0f172a;
    color: #94a3b8;
}

/* Pulsanti flottanti */
.whatsapp-button {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.96-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.telegram-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    background-color: #229ED9;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: telegram-pulse 2s infinite;
}

.telegram-button:hover {
    transform: scale(1.1);
}

.telegram-button::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 240.5 240.5' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='120.25' cy='120.25' r='120.25' fill='%23229ED9'/%3e%3cpath d='M57.5 118.7l31.5 11.7 12.2 39.1c1.1 3.4 4.1 4.2 6.9 1.8l18.6-18.1 37.4 27.5c3.3 1.8 6.9.3 7.9-3.1l13.5-64.7c1.4-6.8-3.6-9.6-7.7-6.3l-81.4 30.7c-5.4 2-5.5 6.9-.1 8.6z' fill='%23FFF'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes telegram-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,158,217,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(34,158,217,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,158,217,0); }
}

/* Mobile */
@media (max-width: 480px) {
    .whatsapp-button, .telegram-button {
        width: 60px;
        height: 60px;
    }
    .whatsapp-button { left: 20px; bottom: 20px; }
    .telegram-button { right: 20px; bottom: 90px; }
    .plan-price { font-size: 48px !important; }
}

/* Responsive generale */
@media (max-width: 1024px) { .plan-price { font-size: 60px !important; } }
@media (max-width: 768px) {
    .plan-price { font-size: 54px !important; }
    .plan.popular { transform: scale(1); }
    .step-one { flex-direction: column; }
    header { padding: 0 20px; height: 70px; }
}