/*
 * Psikowell — Ana Sayfa (Landing)
 * style.css + corporate.css'ten SONRA yüklenir.
 * Renkler yalnızca :root token'larından gelir.
 */

body.landing {
    background: var(--surface);
    color: var(--text-primary);
}

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-narrow { max-width: 780px; }

/* ── Navbar ──────────────────────────────────────────────────────── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.lp-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    flex-shrink: 0;
}

.lp-brand-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.lp-nav-links a {
    padding: 8px 12px;
    font-size: 13.5px;
    font-weight: 550;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.lp-nav-links a:hover {
    color: var(--primary);
    background: var(--surface-hover);
}

.lp-nav-toggle {
    display: none;
    margin-left: auto;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-secondary);
    cursor: pointer;
}

/* ── Butonlar ────────────────────────────────────────────────────── */
.lp-btn-solid,
.lp-btn-outline,
.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 650;
    letter-spacing: -0.005em;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.lp-btn-solid {
    background: var(--primary);
    color: var(--text-on-primary) !important;
    border: 1px solid var(--primary);
}
.lp-btn-solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.lp-btn-outline {
    background: var(--surface);
    color: var(--text-primary) !important;
    border: 1px solid var(--border-strong);
}
.lp-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: var(--surface-hover);
}

.lp-btn-ghost {
    color: var(--text-primary) !important;
    border: 1px solid transparent;
}
.lp-btn-ghost:hover { color: var(--primary) !important; }

.lp-btn-lg { padding: 13px 24px; font-size: 14.5px; }

/* ── Etiketler ───────────────────────────────────────────────────── */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    margin-bottom: 22px;
    border-radius: var(--radius-full);
    background: var(--primary-bg);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-eyebrow-sm {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.lp-hero {
    padding: 84px 0 72px;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 55% at 50% 0%, var(--primary-bg) 0%, transparent 70%),
        var(--surface);
}

.lp-hero h1 {
    font-size: clamp(32px, 5.2vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
}

.lp-accent { color: var(--primary); }

.lp-lead {
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.68;
    color: var(--text-secondary);
}

.lp-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.lp-hero-note {
    font-size: 13px;
    color: var(--text-muted);
}
.lp-hero-note strong { color: var(--primary); }

/* ── Bölümler ────────────────────────────────────────────────────── */
.lp-section { padding: 76px 0; }
.lp-section-alt { background: var(--surface-alt); }

.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.lp-section-head h2 {
    font-size: clamp(24px, 3.2vw, 34px);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.lp-section-head p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.lp-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 26px;
}

/* ── Dört kapı ───────────────────────────────────────────────────── */
.lp-gates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 20px;
}

.lp-gate {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.lp-gate:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.lp-gate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--primary);
}

.lp-gate-icon-gold {
    background: var(--accent-gold-bg);
    color: var(--accent-gold);
}

.lp-gate h3 {
    font-size: 17px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.lp-gate > p {
    font-size: 13.8px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.lp-gate ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex: 1;
}

.lp-gate li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 13.2px;
    color: var(--text-secondary);
}

.lp-gate li .pw-icon {
    color: var(--primary);
    margin-top: 2px;
}

.lp-gate-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 650;
    color: var(--primary);
}
.lp-gate-link:hover { gap: 9px; }

/* ── İkili yerleşim ──────────────────────────────────────────────── */
.lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.lp-feature-list { display: flex; flex-direction: column; gap: 18px; }

.lp-feature { display: flex; gap: 14px; align-items: flex-start; }

.lp-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--primary);
}

.lp-feature strong {
    display: block;
    font-size: 14.5px;
    margin-bottom: 3px;
}

.lp-feature span {
    font-size: 13.3px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ── Rapor önizleme ──────────────────────────────────────────────── */
.lp-mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.lp-mock-head {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--surface-alt);
    border-bottom: 1px solid var(--border);
}

.lp-mock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-strong);
}

.lp-mock-title {
    margin-left: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.lp-mock-body { padding: 20px; }

.lp-mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    font-size: 13.5px;
    color: var(--text-secondary);
}

.lp-mock-row strong {
    font-family: var(--font-mono);
    font-size: 19px;
    color: var(--primary-dark);
}

.lp-mock-scale { margin-bottom: 13px; }

.lp-mock-scale-head {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.lp-mock-scale-head strong {
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.lp-mock-bar {
    height: 6px;
    background: var(--surface-sunken);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.lp-mock-bar span {
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: inherit;
}

.lp-mock-foot {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Fiyatlandırma ───────────────────────────────────────────────── */
.lp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
    gap: 18px;
}

.lp-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 26px 22px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-price-card:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-lg);
}

.lp-price-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.lp-price-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 3px 11px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-on-primary);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-price-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.lp-price-credits {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-top: 6px;
}
.lp-price-credits small {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 6px;
}

.lp-price-amount {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
}

.lp-price-unit { font-size: 12.5px; color: var(--text-muted); }

.lp-price-desc {
    font-size: 12.8px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 10px 0 16px;
    flex: 1;
}

.lp-price-card .lp-btn-outline { width: 100%; margin-top: auto; }

.lp-price-empty {
    text-align: center;
    padding: 44px 24px;
    background: var(--surface-alt);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
}
.lp-price-empty p { color: var(--text-secondary); margin-bottom: 16px; }

.lp-price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 26px;
    font-size: 13px;
    color: var(--text-muted);
}
.lp-price-note a { color: var(--primary); font-weight: 600; }

/* ── Güven ───────────────────────────────────────────────────────── */
.lp-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.lp-trust-item { display: flex; flex-direction: column; gap: 7px; }

.lp-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 4px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--primary);
}

.lp-trust-item strong { font-size: 15px; letter-spacing: -0.015em; }
.lp-trust-item span { font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); }

/* ── SSS ─────────────────────────────────────────────────────────── */
.lp-faq {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    background: var(--surface);
    overflow: hidden;
}

.lp-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    font-size: 14.5px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary:hover { color: var(--primary); }

.lp-faq-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}
.lp-faq[open] .lp-faq-icon { transform: rotate(180deg); }

.lp-faq p {
    padding: 0 20px 18px;
    font-size: 13.8px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ── CTA ─────────────────────────────────────────────────────────── */
.lp-cta {
    padding: 74px 0;
    text-align: center;
    background: var(--primary-gradient);
    color: #fff;
}

.lp-cta h2 {
    font-size: clamp(25px, 3.4vw, 36px);
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.lp-cta p {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.lp-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.lp-cta .lp-btn-solid {
    background: #fff;
    color: var(--primary-dark) !important;
    border-color: #fff;
}
.lp-cta .lp-btn-solid:hover { background: rgba(255, 255, 255, 0.92); }

.lp-cta .lp-btn-outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45);
}
.lp-cta .lp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border-color: #fff;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.lp-footer {
    padding: 54px 0 26px;
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.lp-footer-grid > div { display: flex; flex-direction: column; gap: 9px; }

.lp-footer-grid strong {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.lp-footer-grid a {
    font-size: 13.5px;
    color: var(--text-secondary);
}
.lp-footer-grid a:hover { color: var(--primary); }

.lp-footer-about {
    font-size: 13.3px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 280px;
}

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 12.3px;
    color: var(--text-muted);
}

/* ── Duyarlı ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-split { grid-template-columns: 1fr; gap: 36px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 720px) {
    .lp-nav-toggle { display: inline-flex; }

    .lp-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 16px 18px;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .lp-nav-links.open { display: flex; }
    .lp-nav-links a { padding: 11px 14px; }
    .lp-nav-links .lp-btn-solid,
    .lp-nav-links .lp-btn-ghost { justify-content: center; margin-top: 4px; }

    .lp-hero { padding: 56px 0 52px; }
    .lp-section { padding: 54px 0; }
    .lp-footer-grid { grid-template-columns: 1fr; }
}
