body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc;
    margin: 0;
}
.pricing-header {
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(180deg, #fff 0%, #fff5f4 100%);
}
.pricing-header h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 15px;
}
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 24px;
    width: 320px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card.featured {
    border: 2px solid #FF8B7E;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 139, 126, 0.1);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF8B7E;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
}
.card-title {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 20px;
}
.price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
}
.price span {
    font-size: 1rem;
    color: #a0aec0;
}
.save-text {
    color: #27ae60;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
}
.features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}
.features li {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1rem;
}
.pricing-btn {
    display: block;
    background: #1a202c;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}
.featured .pricing-btn {
    background: #FF8B7E;
}
.pricing-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.faq {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .pricing-card.featured { transform: scale(1); }
}