/* ========================================
   PRICING / PLANS PAGE
   Hero, plan cards, comparison table, FAQ
   ======================================== */

.pricing-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, rgba(255, 140, 0, 0.18), transparent 55%),
                linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%);
}
.pricing-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.pricing-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 28px;
}

/* Plan cards grid */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Plan card */
.plan-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}
.plan-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
}
.plan-card--featured {
    border-color: var(--color-primary);
    background: rgba(255, 140, 0, 0.06);
    position: relative;
}
.plan-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.plan-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.plan-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}
.plan-price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}
.plan-fee {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
}
.plan-fee strong {
    color: rgba(255, 255, 255, 0.8);
}
.plan-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}
.plan-features-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    line-height: 1.5;
}
.plan-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23ff8c00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.plan-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.plan-cta--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.plan-cta--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}
.plan-cta--primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: white;
}
.plan-cta--primary:hover {
    background: #e07c00;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 900px;
    margin: 0 auto;
}
.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison-table thead th {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 18px;
}
.comparison-table thead th:not(:first-child) {
    text-align: center;
}
.comparison-table tbody td {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.comparison-table tbody td:not(:first-child) {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}
.comparison-table .section-row td {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 28px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}
.comparison-check {
    color: var(--color-primary);
    font-size: 16px;
}
.comparison-dash {
    color: rgba(255, 255, 255, 0.2);
}

.pricing-section-alt {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* FAQ section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}
.faq-item h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}
.faq-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}
