/* ─── Pricing Section ─── */
.pricing-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1220 100%);
}

.pricing-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--green-light);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--green-mid));
}

.pricing-badge {
    display: inline-block;
    background: rgba(91, 184, 241, 0.1);
    color: var(--green-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.pricing-setup {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-setup span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-amount {
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

.pricing-check {
    color: var(--green-light);
    flex-shrink: 0;
}

/* ─── Comparison Cards ─── */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.compare-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
}

.compare-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.compare-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.compare-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.compare-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── FAQ Accordion ─── */
.faq-section {
    margin-top: 5rem;
}

.faq-list {
    max-width: 700px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--green-light);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
