
.erakneed-packs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

.erakneed-header {
    text-align: center;
    margin-bottom: 60px;
}

.erakneed-main-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.erakneed-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    font-weight: 400;
}

.erakneed-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

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

.erakneed-pack-card.featured {
    border: 2px solid #f59e0b;
    transform: scale(1.05);
}

.erakneed-pack-card.premium {
    border: 2px solid #10b981;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pack-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 20px;
}

.pack-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.pack-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
}

.pack-price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.pack-tagline {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pack-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pack-levels {
    margin-bottom: 30px;
}

.pack-levels h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.level-item {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

.level-item.highlight {
    background: linear-gradient(135deg, #667eea10, #764ba210);
    margin: 0 -15px;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #667eea20;
    font-weight: 600;
    color: #1f2937;
}

.erakneed-cta-button {
    display: block;
    text-align: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.erakneed-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.featured-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.featured-btn:hover {
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.premium-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.premium-btn:hover {
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.erakneed-footer {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.global-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.global-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.global-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #374151;
}

.global-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .erakneed-packs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .erakneed-pack-card.featured {
        transform: none;
    }
    
    .erakneed-main-title {
        font-size: 2.2rem;
    }
    
    .erakneed-subtitle {
        font-size: 1.1rem;
    }
    
    .global-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .erakneed-packs-container {
        padding: 20px 15px;
    }
    
    .erakneed-pack-card {
        padding: 20px;
    }
    
    .pack-price {
        font-size: 2rem;
    }
}
