.subscription-hero {
    background: linear-gradient(135deg, #294563 0%, #3b82f6 50%, #7c3aed 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: 3rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.subscription-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: #F8FAFD;
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.subscription-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(41, 69, 99, 0.15);
    border: 2px solid #e0e7ff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(41, 69, 99, 0.25);
    border-color: #3b82f6;
}

.subscription-card.popular {
    border-color: #F4A938;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(244, 169, 56, 0.2);
}

.subscription-card.popular:hover {
    transform: scale(1.07) translateY(-8px);
    box-shadow: 0 12px 35px rgba(244, 169, 56, 0.3);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #F4A938, #ff6b35);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(244, 169, 56, 0.3);
}

.card-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafd 0%, #f0f9ff 100%);
    border-bottom: 1px solid #e0e7ff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subscription-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #294563;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.subscription-price {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #294563 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency {
    font-size: 1.2rem;
    color: #6B7280;
    margin-left: 0.5rem;
    font-weight: 600;
}

.subscription-duration {
    color: #6B7280;
    font-size: 1rem;
    font-weight: 500;
}

.card-body {
    padding: 1.5rem 1.5rem 140px 1.5rem;
    background: #FFFFFF;
    position: relative;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #1F2937;
    font-weight: 500;
}

.feature-icon {
    color: #3b82f6;
    font-weight: 700;
    margin-right: 0.75rem;
    width: 20px;
    font-size: 1.1rem;
}

.subscription-description {
    background: #f8fafd;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1rem;
    position: absolute;
    bottom: 60px;
    left: 1.5rem;
    right: 1.5rem;
}

.subscription-stats {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border: 1px solid #e0e7ff;
    position: absolute;
    bottom: 10px;
    left: 1.5rem;
    right: 1.5rem;
}

.users-count {
    font-size: 0.9rem;
    color: #294563;
    font-weight: 600;
}

.card-footer {
    padding: 1.5rem;
    background: #FFFFFF;
    border-top: 1px solid #f0f0f0;
}

.btn-choose {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #294563 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(41, 69, 99, 0.3);
}

.btn-choose:hover {
    background: linear-gradient(135deg, #1e3149, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 69, 99, 0.4);
    color: white;
}

.subscription-card.popular .btn-choose {
    background: linear-gradient(135deg, #F4A938, #ff6b35);
    box-shadow: 0 4px 15px rgba(244, 169, 56, 0.3);
}

.subscription-card.popular .btn-choose:hover {
    background: linear-gradient(135deg, #e89429, #e55a2b);
    box-shadow: 0 6px 20px rgba(244, 169, 56, 0.4);
}

.contact-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(41, 69, 99, 0.1);
    border: 1px solid #e0e7ff;
}

.contact-section h2 {
    color: #294563;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-section p {
    color: #6B7280;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    min-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #006bb3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.contact-btn .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-btn small {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.features-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(41, 69, 99, 0.1);
    border: 1px solid #e0e7ff;
}

.features-section h2 {
    color: #294563;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem 1rem;
    background: #f8fafd;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(41, 69, 99, 0.1);
    border-color: #3b82f6;
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #294563;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #6B7280;
    font-weight: 500;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 69, 99, 0.6);
    animation: fadeIn 0.3s;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 10px 30px rgba(41, 69, 99, 0.2);
    border: 1px solid #e0e7ff;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #6B7280;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.close:hover {
    color: #294563;
}

.selected-plan h3 {
    color: #294563;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.selected-price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #294563 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.modal-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.modal-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #006bb3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .subscriptions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .subscription-card.popular {
        transform: none;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .subscription-content {
        padding: 0 1rem;
    }

    .contact-section,
    .features-section {
        padding: 2rem 1rem;
        margin: 0 1rem 2rem;
    }
}