/* ========================================
   ABOUT PAGE - PRICING & FORMS STYLES
   Consolidated CSS for pricing section, CTA buttons, and forms
   ======================================== */

/* ========================================
   USE CASES SECTION STYLES
   ======================================== */

.about-use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.use-case-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
}

.use-case-icon svg {
    width: 60px;
    height: 60px;
}

.use-case-title {
    font-size: 1.5rem;
    color: #2c5f7d;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.use-case-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    flex-grow: 1;
}

.use-case-benefits {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
}

.use-case-benefits h4 {
    font-size: 0.9rem;
    color: #2c5f7d;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.use-case-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-benefits ul li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.use-case-benefits ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eba;
    font-weight: bold;
}

.use-case-cta {
    text-align: center;
    margin-top: 50px;
}

.use-case-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ========================================
   PRICING SECTION STYLES
   ======================================== */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-soft: #eff4ff;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --success-color: #48bb78;
    --danger-color: #cbd5e0;
}

/* Desktop Table Styles */
.pricing-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow:
        0 10px 15px -3px rgba(15, 23, 42, 0.08),
        0 4px 6px -4px rgba(15, 23, 42, 0.06);
    margin-bottom: 2rem;
}

table.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.pricing-table thead {
    background: var(--bg-light);
}

.pricing-table th,
.pricing-table td {
    padding: 10px 14px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    min-width: 190px;
}

.pricing-table th {
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

.pricing-table thead th.plan-name {
    font-size: 1rem;
    padding-top: 14px;
    padding-bottom: 6px;
}

.pricing-table thead th.plan-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding-top: 0;
    padding-bottom: 14px;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.pricing-table tbody tr:hover {
    background: #eef2ff;
}

.plan-header-cell {
    border-bottom: none !important;
}

.plan-highlight {
    background: var(--primary-soft);
    position: relative;
}

.plan-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 999px;
    margin-top: 4px;
}

.badge-coming {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #b45309;
    background: #fef3c7;
    border-radius: 999px;
    padding: 2px 8px;
    margin-left: 4px;
}

/* Mobile Card Styles (hidden on desktop) */
.mobile-pricing-cards {
    display: none;
}

/* Pricing Notes */
.pricing-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-notes h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.pricing-notes ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pricing-notes li {
    margin-bottom: 0.5rem;
}

.pricing-notes strong {
    color: var(--text-main);
}

/* SVG Icons */
.check-icon,
.cross-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.check-icon {
    stroke: var(--success-color);
}

.cross-icon {
    stroke: var(--danger-color);
}

/* ========================================
   PRICING CTA BUTTON
   ======================================== */

.pricing-cta-wrapper {
    text-align: center;
    margin: 2rem auto 1rem auto;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 1200px;
}

.pricing-cta-wrapper .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.pricing-cta-wrapper .btn-cta.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-cta-wrapper .btn-cta.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.pricing-cta-wrapper .btn-cta i {
    font-size: 1rem;
}

.pricing-cta-wrapper .cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   NEWSLETTER & MESSAGE FORM BUTTONS
   ======================================== */

.about-forms .cta-btm-form-newsletter button[type="submit"],
.about-forms .cta-btm-form-message button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.about-forms .cta-btm-form-newsletter button[type="submit"]:hover,
.about-forms .cta-btm-form-message button[type="submit"]:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE: Mobile View (Cards)
   ======================================== */

@media (max-width: 968px) {
    /* Hide table on mobile */
    .pricing-table-wrapper {
        /*display: none;*/
    }

    /* Show card layout on mobile */
    .mobile-pricing-cards {
        display: block;
    }

    /* Card Styles */
    .pricing-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .pricing-card.featured {
        border: 2px solid var(--primary);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    }

    .featured-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary);
        color: white;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 4px 16px;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .plan-header {
        text-align: center;
        padding-bottom: 1.25rem;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 1.25rem;
    }

    .plan-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 0.5rem;
    }

    .plan-price {
        margin-bottom: 0.5rem;
    }

    .plan-price .currency {
        font-size: 1.25rem;
        vertical-align: super;
        color: var(--text-muted);
    }

    .plan-price .amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    .plan-price .period {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .plan-description {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin: 0;
    }

    .plan-limits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .limit-box {
        background: var(--bg-light);
        border-radius: 8px;
        padding: 0.75rem;
        text-align: center;
    }

    .limit-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .limit-value {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-main);
    }

    .plan-features {
        margin-top: 1.25rem;
    }

    .features-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .features-title.coming-soon {
        color: #b45309;
        border-bottom-color: #fef3c7;
    }

    .plan-features ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
    }

    .plan-features li {
        font-size: 0.85rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }

    .plan-cta {
        margin-top: 1.5rem;
    }

    .plan-cta .btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: var(--primary);
        color: white;
        border: 2px solid var(--primary);
    }

    .btn-primary:hover {
        background: #1d4ed8;
        border-color: #1d4ed8;
    }

    .btn-outline {
        background: white;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .btn-outline:hover {
        background: var(--primary-soft);
    }
}

/* Orange primary CTA for pricing & hero */
.btn-cta {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25);
}


/* ========================================
   RESPONSIVE: Use Cases
   ======================================== */

@media (max-width: 768px) {
    .about-use-cases {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-card {
        padding: 20px;
    }

    .use-case-title {
        font-size: 1.3rem;
    }

    .use-case-description {
        font-size: 0.95rem;
    }

    /* Pricing CTA adjustments */
    .pricing-cta-wrapper {
        padding: 2rem 0.5rem;
    }
    
    .pricing-cta-wrapper .btn-cta {
        width: 90%;
        max-width: 350px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0 auto;
        display: flex;
    }
    
    .pricing-cta-wrapper .cta-subtext {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-use-cases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .about-use-cases {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .plan-limits {
        grid-template-columns: 1fr;
    }

    .plan-price .amount {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-cta-wrapper .btn-cta {
        width: 95%;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}