/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    padding: 80px 20px;
    color: white;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px;
}

.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #ffd700;
    color: #1e3a8a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    color: #333;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 4px 4px 0px #00000040;
}

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

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

.pricing-icon {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.pricing-period {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.pricing-amount small {
    font-size: 24px;
    font-weight: 600;
}

.pricing-duration {
    color: #999;
    font-size: 14px;
    margin-bottom: 25px;
}

.pricing-save {
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

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

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

.pricing-features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    font-size: 16px;
}

.pricing-cta {
    background: #1e3a8a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-cta:hover {
    background: #1e40af;
}

.pricing-cta::before {
    content: "🔓";
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-guarantee {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.faq-guarantee h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.faq-guarantee p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.guarantee-badges {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.guarantee-badge {
    text-align: center;
}

.guarantee-badge-icon {
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
}

.guarantee-badge p {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.faq-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: #333;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .services-title,
    .pricing-header h2,
    .faq-right h2 {
        font-size: 28px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-amount {
        font-size: 40px;
    }
}
