/* Hero Section */
.hero-packs {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000000 0%, #1F2937 100%);
    color: white;
    text-align: center;
}

.hero-packs .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-packs .title-accent {
    color: #DC2626;
    font-weight: 300;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-packs .title-main {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: white;
}

.hero-packs .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Packs Section */
.packs-section {
    padding: 100px 0;
    background: #f9fafb;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pack-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pack-card.featured {
    border: 3px solid #DC2626;
    transform: scale(1.05);
}

.pack-card.premium {
    background: linear-gradient(135deg, #1F2937 0%, #000 100%);
    color: white;
}

.pack-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pack-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pack-header {
    text-align: center;
    margin-bottom: 30px;
}

.pack-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.pack-card.premium .pack-icon {
    background: linear-gradient(135deg, #DC2626, #FCD34D);
}

.pack-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pack-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
}

.pack-card.premium .pack-subtitle {
    color: #D1D5DB;
}

.pack-price {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
}

.pack-card.premium .pack-price {
    background: rgba(255, 255, 255, 0.1);
}

.pack-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: #DC2626;
    display: block;
}

.pack-card.premium .pack-price .price {
    color: #FCD34D;
}

.pack-price .old-price {
    font-size: 1.3rem;
    color: #9CA3AF;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.pack-price .price-period {
    font-size: 0.9rem;
    color: #6B7280;
    display: block;
    margin-top: 10px;
}

.pack-card.premium .pack-price .price-period {
    color: #D1D5DB;
}

.pack-price .discount {
    font-size: 0.95rem;
    color: #059669;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.pack-content {
    flex: 1;
    margin-bottom: 30px;
}

.pack-content h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
}

.pack-card.premium .pack-content h4 {
    color: white;
}

.pack-features {
    list-style: none;
    padding: 0;
}

.pack-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.pack-card.premium .pack-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: #E5E7EB;
}

.pack-features li:last-child {
    border-bottom: none;
}

.pack-features i {
    color: #DC2626;
    font-size: 0.9rem;
}

.pack-card.premium .pack-features i {
    color: #FCD34D;
}

.btn-pack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-pack:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.benefit-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1F2937 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-packs .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-packs .title-main {
        font-size: 2.5rem;
    }
    
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .pack-card.featured {
        transform: scale(1);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

