/* ==========================================================================
   QR MENÜ PRO — FİYATLANDIRMA SAYFASI CSS
   ========================================================================== */

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.pricing-page-hero {
    position: relative;
    background: var(--page-bg);
    overflow: hidden;
    padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 90px);
    text-align: center;
}

.pricing-page-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
    pointer-events: none;
}
.pricing-page-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(34,197,94,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.pricing-page-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-page-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 16px 0 20px;
}

.pricing-page-hero__sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.75;
    margin: 0 0 36px;
}

/* Billing toggle */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    gap: 2px;
}

.pricing-toggle__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.22s var(--ease-out);
}
.pricing-toggle__btn.active {
    background: var(--surface-3);
    color: var(--text-primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.pricing-toggle__save {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(34,197,94,0.2);
    padding: 2px 8px;
    border-radius: 100px;
}

/* ── PLANS SECTION ────────────────────────────────────────────────────────── */
.pricing-plans {
    background: var(--page-bg);
    padding-bottom: clamp(60px, 8vw, 100px);
}

/* Reuse pricing__grid from homepage.css */
/* price-card styles already defined — just extend below */

.price-card__divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.price-card__feature--muted {
    opacity: 0.35;
}

/* ── COMPARISON TABLE ─────────────────────────────────────────────────────── */
.compare-section {
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(80px, 10vw, 120px) 0;
}

.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--page-bg);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    min-width: 560px;
}

.compare-table thead tr {
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    padding: 20px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}
.compare-table th:first-child { text-align: left; }

.compare-table__feat-col { width: 36%; }

.compare-table__plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
}
.compare-table__plan--featured {
    background: var(--green-dim);
    color: var(--green);
    border-color: rgba(34,197,94,0.25);
}

.compare-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.compare-table td {
    padding: 16px 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}
.compare-table td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}

.compare-yes {
    display: inline-flex;
    width: 22px; height: 22px;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    color: var(--green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}
.compare-no {
    color: var(--text-muted);
    font-size: 1rem;
}
.compare-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section {
    background: var(--page-bg);
    padding: clamp(80px, 10vw, 120px) 0;
}

.faq-grid {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-1);
    transition: border-color 0.2s;
}
.faq-item.is-open,
.faq-item:has([aria-expanded="true"]) {
    border-color: var(--border-bright);
}

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.faq-item__q:hover { color: var(--text-primary); }

.faq-item__icon {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out), padding 0.3s;
}
.faq-item.is-open .faq-item__a {
    max-height: 200px;
    padding: 0 20px 18px;
}
