/* ===============================
   GLOBAL PRICING PAGE STYLES
=================================*/

.pricing-hero {
    padding: 100px 20px 60px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-hero p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}


/* ===============================
   PLAN CARDS
=================================*/

.pricing-cards-section {
    padding: 60px 20px;
}

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

.plan-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card ul li {
    margin-bottom: 10px;
    color: #374151;
    font-size: 15px;
}

.featured {
    border: 2px solid #4f46e5;
}

.badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: #4f46e5;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
}

/* Buttons */

.btn-primary,
.btn-outline {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-primary {
    background: #4f46e5;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #4338ca;
}

.btn-outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: transparent;
}

.btn-outline:hover {
    background: #eef2ff;
}


/* ===============================
   COMPARISON TABLE
=================================*/

.comparison-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.comparison-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f3f4f6;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}


/* ===============================
   WORKFLOW SECTION
=================================*/

.workflow-section {
    padding: 90px 20px;
    text-align: center;
}

.workflow-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.workflow-section p {
    max-width: 750px;
    margin: 0 auto 40px;
    color: #6b7280;
    line-height: 1.6;
}

.workflow-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.workflow-steps div {
    padding: 15px 25px;
    background: #eef2ff;
    border-radius: 10px;
    font-weight: 600;
}

.workflow-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
}


/* ===============================
   FAQ SECTION
=================================*/

.faq-section {
    padding: 90px 20px;
    background: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
}

.faq-item h4 {
    margin-bottom: 8px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}


/* ===============================
   FINAL CTA
=================================*/

.pricing-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
}

.pricing-cta h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.pricing-cta .btn-primary {
    background: white;
    color: #4f46e5;
}

.pricing-cta .btn-primary:hover {
    background: #f3f4f6;
}


/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 768px) {

    .pricing-hero h1 {
        font-size: 32px;
    }

    .workflow-steps {
        flex-direction: column;
        align-items: center;
    }

}