:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-soft: #f1f4f9;
    --surface-soft-2: #f7f9fc;
    --text: #101828;
    --muted: #667085;
    --line: #e4e7ec;
    --primary: #111827;
    --primary-2: #1f2937;
    --accent: #344054;
    --success: #0f766e;
    --danger: #b42318;
    --warning: #b45309;
    --shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #f6f7fb 100%);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(228, 231, 236, 0.85);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 18px;
}

.brand {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.2px;
    color: var(--primary);
}

.brand-link {
    text-decoration: none;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topnav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s ease;
}

.topnav a:hover,
.topnav a.active {
    color: var(--primary);
}

.hero {
    padding: 72px 0 48px;
}

.hero-soft {
    background:
        radial-gradient(circle at right top, rgba(15, 23, 42, 0.04), transparent 26%),
        radial-gradient(circle at left top, rgba(52, 64, 84, 0.04), transparent 28%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.hero-text,
.lead,
.section-heading p,
.status-text,
.cta-box p,
.book-card-body p,
.step-card p,
.info-card p,
.mini-card p {
    color: var(--muted);
    font-size: 16px;
    max-width: 720px;
}

.hero-actions,
.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.18);
}

.btn-primary:hover {
    background: var(--primary-2);
}

.btn-secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--primary);
}

.btn-secondary:hover {
    background: #f8fafc;
}

.btn-full {
    width: 100%;
}

.hero-card,
.preview-card,
.step-card,
.info-card,
.status-card,
.mini-card,
.analysis-form-card,
.status-meta-card {
    background: var(--surface);
    border: 1px solid rgba(228, 231, 236, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.preview-card {
    padding: 28px;
}

.preview-badge {
    display: inline-flex;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.preview-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-weight: 600;
}

.preview-line:last-child {
    border-bottom: 0;
}

.preview-line span,
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
}

.trust-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.trust-item span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 42px 0;
}

.soft-section {
    background: linear-gradient(180deg, rgba(241, 244, 249, 0.75), rgba(246, 247, 251, 0.45));
    border-top: 1px solid rgba(228, 231, 236, 0.7);
    border-bottom: 1px solid rgba(228, 231, 236, 0.7);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2,
.status-card h1,
.analysis-form-card h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.steps-grid,
.info-grid,
.details-grid {
    display: grid;
    gap: 18px;
}

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.info-grid {
    grid-template-columns: repeat(2, 1fr);
}

.step-card,
.info-card {
    padding: 24px;
}

.step-card h3,
.info-card h3,
.status-panel h2,
.mini-card h3,
.legal-content h2 {
    margin: 16px 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.clean-list {
    padding-left: 18px;
    margin: 0;
}

.clean-list li {
    margin-bottom: 10px;
    color: var(--muted);
}

.cta-box {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    border-radius: 28px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.18);
}

.cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3vw, 40px);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.site-footer {
    padding: 28px 0 40px;
    border-top: 1px solid var(--line);
    margin-top: 42px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-inner p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.hidden-box,
.hidden {
    display: none !important;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.book-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.book-cover-wrap {
    background: var(--surface-soft);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}

.compact-cover {
    min-height: 250px;
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-cover-contain {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 215px;
    object-fit: contain;
    margin: 0 auto;
}

.book-card-body {
    padding: 18px;
}

.book-card-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.book-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.book-detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.panel-like {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
}

.book-detail-cover-wrap {
    width: 100%;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 18px;
}

.book-detail-cover {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.ebook-buy-form {
    margin-top: 20px;
}

.promo-banner {
    margin: 0 0 28px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.promo-banner-content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.promo-banner h3 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.promo-banner p {
    margin: 0;
    max-width: 820px;
    color: rgba(255,255,255,0.84);
    font-size: 16px;
    line-height: 1.7;
}

.promo-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.promo-contact-item {
    min-width: 220px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 14px 16px;
}

.promo-contact-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.promo-contact-item span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.82);
}

.duration-note-card,
.hero-note {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.duration-note-card strong,
.hero-note strong {
    font-weight: 800;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .hero-grid,
    .steps-grid,
    .info-grid,
    .details-grid,
    .trust-row,
    .book-grid,
    .book-detail-grid {
        grid-template-columns: 1fr;
    }

    .cta-box,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        min-height: auto;
        padding: 14px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .topnav {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 38px;
    }

    .status-card,
    .step-card,
    .info-card,
    .preview-card,
    .promo-banner {
        padding: 22px;
    }

    .hero-content h1,
    .section-heading h2,
    .status-card h1,
    .analysis-form-card h2 {
        font-size: 30px;
    }

    .book-cover-wrap {
        padding: 20px;
    }

    .compact-cover {
        min-height: 230px;
    }

    .book-cover-contain {
        max-height: 195px;
    }
}

.status-page {
    padding: 52px 0 72px;
}

.centered-card {
    text-align: center;
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content {
    color: var(--muted);
    font-size: 15px;
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-content h2 {
    color: var(--text);
    margin-top: 28px;
}

.inline-link {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.notice-box,
.success-box,
.error-box,
.legal-acceptance-box {
    border-radius: 18px;
    padding: 16px;
    margin-top: 18px;
    border: 1px solid var(--line);
    background: var(--surface-soft-2);
    color: var(--muted);
}

.success-box {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.18);
    color: var(--success);
}

.error-box {
    background: rgba(180, 35, 24, 0.06);
    border-color: rgba(180, 35, 24, 0.18);
    color: var(--danger);
}

.detail-box {
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
}

.detail-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.detail-box strong {
    color: var(--text);
    font-size: 15px;
    word-break: break-word;
}

.price-summary-card {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 22px;
}

.price-summary-card span,
.price-summary-card small {
    display: block;
    color: rgba(255,255,255,0.78);
}

.price-summary-card strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    margin: 8px 0;
}

.footer-small {
    font-size: 13px !important;
    color: var(--muted);
    max-width: 520px;
}

.trust-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (max-width: 720px) {
    .legal-card {
        padding: 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .price-summary-card strong {
        font-size: 26px;
    }
}

.status-page {
    padding: 52px 0 72px;
}

.centered-card {
    text-align: center;
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content {
    color: var(--muted);
    font-size: 15px;
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-content h2 {
    color: var(--text);
    margin-top: 28px;
}

.inline-link {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.notice-box,
.success-box,
.error-box,
.legal-acceptance-box {
    border-radius: 18px;
    padding: 16px;
    margin-top: 18px;
    border: 1px solid var(--line);
    background: var(--surface-soft-2);
    color: var(--muted);
}

.success-box {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.18);
    color: var(--success);
}

.error-box {
    background: rgba(180, 35, 24, 0.06);
    border-color: rgba(180, 35, 24, 0.18);
    color: var(--danger);
}

.detail-box {
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
}

.detail-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.detail-box strong {
    color: var(--text);
    font-size: 15px;
    word-break: break-word;
}

.price-summary-card {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 22px;
}

.price-summary-card span,
.price-summary-card small {
    display: block;
    color: rgba(255,255,255,0.78);
}

.price-summary-card strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    margin: 8px 0;
}

.light-price-card {
    background: var(--surface-soft-2);
    color: var(--text);
    border: 1px solid var(--line);
}

.light-price-card span,
.light-price-card small {
    color: var(--muted);
}

.book-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    margin: 16px 0;
}

.book-price-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.book-price-row strong {
    color: var(--primary);
    font-size: 18px;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.footer-small {
    font-size: 13px !important;
    color: var(--muted);
    max-width: 520px;
}

.trust-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

.status-panel {
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    margin-top: 18px;
}

.status-panel h2 {
    margin-top: 0;
}

@media (max-width: 720px) {
    .legal-card {
        padding: 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .price-summary-card strong {
        font-size: 26px;
    }

    .page-actions .btn {
        width: 100%;
    }
}

.light-price-card {
    background: var(--surface-soft-2);
    color: var(--text);
    border: 1px solid var(--line);
}

.light-price-card span,
.light-price-card small {
    color: var(--muted);
}

.book-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    margin: 16px 0;
}

.book-price-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.book-price-row strong {
    color: var(--primary);
    font-size: 18px;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.centered-actions {
    justify-content: center;
}

.status-panel {
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    margin-top: 18px;
}

.status-panel h2 {
    margin-top: 0;
}

@media (max-width: 720px) {
    .page-actions .btn {
        width: 100%;
    }
}

.book-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.book-card-actions .btn {
    width: 100%;
}

.light-price-card {
    background: var(--surface-soft-2);
    color: var(--text);
    border: 1px solid var(--line);
}

.light-price-card span,
.light-price-card small {
    color: var(--muted);
}

.book-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    margin: 16px 0;
}

.book-price-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.book-price-row strong {
    color: var(--primary);
    font-size: 18px;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.status-panel {
    background: var(--surface-soft-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    margin-top: 18px;
}

.status-panel h2 {
    margin-top: 0;
}

@media (max-width: 720px) {
    .book-card-actions {
        grid-template-columns: 1fr;
    }

    .page-actions .btn {
        width: 100%;
    }
}

/* Public hizmet hiyerarşisi ve içerik kartları */
.service-heading {
    max-width: 760px;
}

.service-grid,
.story-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.story-overview-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.76));
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08), inset 0 1px 0 #fff;
}

.service-card-featured {
    color: #fff;
    background: linear-gradient(145deg, #252d39, #090d14);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 54px rgba(17, 24, 39, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.service-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #111827;
    font-size: 12px;
    font-weight: 800;
}

.service-card-featured .service-number {
    color: #111827;
    background: #fff;
}

.service-card h3,
.story-overview-card h2 {
    margin: 18px 0 10px;
    font-size: 23px;
    line-height: 1.2;
}

.service-card p,
.story-overview-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.service-card .btn {
    margin-top: auto;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.76);
}

.section-actions {
    margin-top: 24px;
}

.book-about-panel {
    margin-top: 0;
}

.book-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.book-info-grid .status-panel {
    height: calc(100% - 18px);
}

.story-overview-section {
    padding-top: 12px;
}

.story-overview-card p {
    margin-bottom: 0;
}

.story-privacy-note,
.legal-period-notice {
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
}

.story-privacy-note strong,
.legal-period-notice strong {
    color: var(--text);
}

.contact-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 14px 0 24px;
}

.contact-topics span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary);
    background: var(--surface-soft-2);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .service-grid,
    .story-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .service-card,
    .story-overview-card {
        padding: 22px;
    }

    .book-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Ortak parlak cam yüzeyler */
body {
    background:
        radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.98), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(209, 213, 219, 0.34), transparent 30%),
        linear-gradient(180deg, #f9fafb 0%, #f3f4f6 52%, #f8fafc 100%);
}

.topbar {
    background: rgba(255, 255, 255, 0.76);
    border-bottom-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
}

.hero-card,
.preview-card,
.step-card,
.info-card,
.status-card,
.mini-card,
.analysis-form-card,
.status-meta-card,
.book-card,
.panel-like,
.status-shell,
.story-summary-card,
.story-detail-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.72));
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 22px 55px rgba(17, 24, 39, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.btn-primary {
    background: linear-gradient(145deg, #1f2937, #090d14);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(209, 213, 219, 0.9);
    box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(17, 24, 39, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-glass {
    color: #111827;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 #fff;
}

.btn-glass:hover {
    background: #fff;
}

.promo-actions {
    display: flex;
    margin-top: 22px;
}

/* Hayat hikâyesi kitaplaştırma sayfası */
.story-page {
    overflow: hidden;
}

.story-hero {
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at 84% 20%, rgba(17, 24, 39, 0.08), transparent 25%),
        radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.95), transparent 30%);
}

.story-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 32px;
}

.story-hero h1 {
    max-width: 800px;
    margin: 0 0 18px;
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.story-summary-card,
.story-detail-card {
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    padding: 28px;
}

.story-summary-card > span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-summary-card strong {
    display: block;
    font-size: 26px;
    line-height: 1.2;
}

.story-summary-card p,
.story-detail-card p {
    color: var(--muted);
}

.story-heading {
    max-width: 760px;
}

.story-steps {
    display: grid;
    gap: 14px;
}

.story-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06), inset 0 1px 0 #fff;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.story-step > span,
.story-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #1f2937, #090d14);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 20px rgba(17, 24, 39, 0.18);
}

.story-step h3,
.story-detail-card h2 {
    margin: 0 0 8px;
    line-height: 1.25;
}

.story-step p {
    margin: 0;
    color: var(--muted);
}

.story-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.story-icon {
    margin-bottom: 18px;
    font-size: 20px;
}

.story-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, #202733 0%, #090d14 100%);
    box-shadow: 0 22px 55px rgba(17, 24, 39, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.story-cta .eyebrow,
.story-cta p {
    color: rgba(255, 255, 255, 0.74);
}

.story-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
}

.story-cta p {
    max-width: 720px;
    margin: 0;
}

@media (max-width: 820px) {
    .story-hero-grid,
    .story-details-grid {
        grid-template-columns: 1fr;
    }

    .story-hero {
        padding: 44px 0 38px;
    }

    .story-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Küçük ekranlarda sade, tek satır ve dokunulabilir navigasyon */
@media (max-width: 720px) {
    .topbar-inner {
        gap: 10px;
        padding: 12px 0 10px;
    }

    .brand {
        font-size: 17px;
        letter-spacing: 0.3px;
    }

    .topnav {
        width: calc(100vw - 16px);
        margin-left: -8px;
        padding: 2px 8px 8px;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .topnav::-webkit-scrollbar {
        display: none;
    }

    .topnav a {
        flex: 0 0 auto;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        padding: 0 14px;
        border: 1px solid rgba(209, 213, 219, 0.72);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.68);
        box-shadow: inset 0 1px 0 #fff;
    }

    .topnav a.active {
        color: #fff;
        background: #111827;
        border-color: #111827;
    }

    .promo-actions .btn,
    .story-cta .btn {
        width: 100%;
    }

    .story-step {
        grid-template-columns: 42px 1fr;
        gap: 13px;
        padding: 18px;
    }

    .story-step > span {
        width: 40px;
        height: 40px;
    }

    .story-summary-card,
    .story-detail-card,
    .story-cta {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Uzun kitaplaştırma bilgilendirme metni */
.story-hero-compact h1 {
    max-width: 900px;
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.story-content-section {
    padding-top: 28px;
}

.story-longform {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.78));
    box-shadow: 0 24px 65px rgba(17, 24, 39, 0.09), inset 0 1px 0 #fff;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.story-longform h2 {
    margin: 52px 0 16px;
    padding-top: 4px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text);
}

.story-longform h2:first-child {
    margin-top: 0;
}

.story-longform h3 {
    margin: 36px 0 12px;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.25;
    color: var(--text);
}

.story-longform h4 {
    margin: 26px 0 10px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.story-longform p,
.story-longform li {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
}

.story-longform p {
    margin: 0 0 17px;
}

.story-longform ul,
.story-longform ol {
    margin: 0 0 22px;
    padding-left: 26px;
}

.story-longform li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.story-longform strong {
    color: #111827;
}

.story-longform hr {
    height: 1px;
    margin: 40px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, #d1d5db 15%, #d1d5db 85%, transparent);
}

.story-final-section {
    padding-top: 10px;
}

@media (max-width: 720px) {
    .story-hero-compact h1 {
        font-size: 38px;
    }

    .story-longform {
        padding: 22px;
        border-radius: 24px;
    }

    .story-longform h2 {
        margin-top: 40px;
        font-size: 29px;
    }

    .story-longform h3 {
        margin-top: 30px;
        font-size: 23px;
    }

    .story-longform h4 {
        font-size: 19px;
    }

    .story-longform p,
    .story-longform li {
        font-size: 15px;
        line-height: 1.75;
    }
}
