/* ==========================================================================
   FATHOM 97 - Modern, Organik, Canlı ve İnteraktif Tasarım Sistemi
   Prensip: Gradientten kaçınılmış, derin kontrastlı, zengin animasyonlu,
   dokunsal ve insancıl kullanıcı arayüzü (%100 REST API Uyumlu)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,400&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Renk Paleti - Gradient Yok, Derin ve Sıcak Tonlar */
    --bg-main: #0a0e17;
    --bg-surface: #111724;
    --bg-surface-elevated: #182030;
    --bg-surface-hover: #1e283c;
    --bg-surface-muted: #141a26;
    --bg-card: var(--bg-surface);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);
    --border-medium: rgba(255, 255, 255, 0.22);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-focus: #e09f3e;

    /* Katı ve Sıcak Vurgu Renkleri */
    --primary: #e09f3e;
    --primary-light: #f5b041;
    --accent-amber: #e09f3e;
    --accent-amber-hover: #c98a2f;
    --accent-amber-subtle: rgba(224, 159, 62, 0.12);
    --accent-gold: #f5b041;
    --bg-dark: #0a0e17;

    --accent-teal: #2dd4bf;
    --accent-teal-subtle: rgba(45, 212, 191, 0.12);

    --accent-coral: #f87171;
    --accent-coral-subtle: rgba(248, 113, 113, 0.12);

    --accent-blue: #38bdf8;
    --accent-blue-subtle: rgba(56, 189, 248, 0.12);

    /* Tipografi Renkleri */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #8899aa;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --text-inverse: #0a0e17;

    /* Font Aileleri */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;

    /* Köşe Yuvarlatma */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Gölgeler (Yumuşak ve Gerçekçi Derinlik) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-card-hover: 0 20px 45px rgba(0, 0, 0, 0.7);

    /* Geçişler */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.18s var(--ease-out);
    --transition-normal: 0.3s var(--ease-out);
    --transition-smooth: 0.45s var(--ease-out);
    --transition: var(--transition-fast);
}

/* ==========================================================================
   Temel Sıfırlama ve Gövde
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Header & Navigasyon
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-normal);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 20px;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}

.logo-mark img,
.logo-mark svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(224, 159, 62, 0.45));
    transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.logo-area:hover .logo-mark img,
.logo-area:hover .logo-mark svg {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 18px rgba(224, 159, 62, 0.75));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-text-num {
    color: var(--accent-amber);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(224, 159, 62, 0.4);
}

.logo-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: var(--accent-amber-subtle);
    color: var(--accent-amber);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(224, 159, 62, 0.3);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition-fast);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-amber);
    transition: width 0.25s var(--ease-out);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 14px;
}

.currency-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 3px 6px;
    gap: 2px;
}

.currency-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 7px;
    border-radius: var(--radius-full);
    cursor: pointer;
    line-height: 1;
}

.currency-btn.active {
    background: var(--accent-amber);
    color: #1a1408;
}

.currency-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.plan-currency-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 4px auto 40px;
}

.plan-currency-label {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plan-currency-bar .currency-switcher {
    padding: 6px;
    gap: 4px;
}

.plan-currency-bar .currency-btn {
    font-size: 0.95rem;
    min-width: 4.5rem;
    padding: 10px 18px;
}

.fx-notice {
    min-height: 1.2em;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

#navCtaBtn {
    white-space: nowrap;
}

/* ==========================================================================
   Dil Seçici (Language Switcher)
   ========================================================================== */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 3px 6px;
    gap: 2px;
    transition: var(--transition-normal);
}

.lang-switcher:hover {
    border-color: rgba(235, 172, 85, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.22s var(--ease-out);
    line-height: 1;
}

.lang-btn:hover {
    color: var(--text-light);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
    color: var(--bg-dark);
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(235, 172, 85, 0.35);
}

.lang-divider {
    color: var(--text-dim);
    font-size: 0.72rem;
    user-select: none;
    padding: 0 1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 8px;
    cursor: pointer;
}

/* ==========================================================================
   Butonlar ve Etkileşim Elemanları
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--accent-amber);
    color: var(--text-inverse);
    border-color: var(--accent-amber);
    box-shadow: 0 4px 14px rgba(224, 159, 62, 0.28);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(25deg);
    transition: none;
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--accent-amber-hover);
    border-color: var(--accent-amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 159, 62, 0.42);
}

.btn-primary:hover::after {
    left: 150%;
    transition: left 0.75s ease-in-out;
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-focus);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-outline:hover {
    background: var(--bg-surface);
    border-color: var(--text-primary);
}

.btn-emergency {
    background: var(--accent-coral);
    color: #ffffff;
    border-color: var(--accent-coral);
    font-weight: 700;
}

.btn-emergency:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(248, 113, 113, 0.35);
}

/* ==========================================================================
   Hero Bölümü - İnsancıl ve Zengin
   ========================================================================== */
.hero-section {
    padding: 64px 0 80px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.subpage-hero {
    padding: 72px 0 54px;
    background: var(--bg-surface-muted);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.subpage-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: fit-content;
}

.hero-pill-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
    animation: pulseSubtle 2.5s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1.2px;
    color: var(--text-primary);
}

.hero-title-accent {
    color: var(--accent-amber);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.hero-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 12px 18px;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--accent-amber);
    flex-shrink: 0;
}

/* Hero Görsel Alanı & Canlı Etkileşim Kartları */
.hero-visual-area {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    background: var(--bg-surface);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.hero-image-card:hover .hero-img {
    transform: scale(1.025);
}

/* Yüzen İnsancıl Sohbet Baloncukları */
.floating-dialog-pill {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    max-width: 280px;
    z-index: 2;
    animation: floatGently 4.5s ease-in-out infinite;
}

.pill-top-right {
    top: -18px;
    right: -16px;
    animation-delay: 0s;
}

.pill-bottom-left {
    bottom: -18px;
    left: -16px;
    animation-delay: 2.2s;
}

.floating-pill-author {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 6px;
}

.floating-pill-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-amber);
}

.floating-pill-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.floating-pill-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-style: italic;
    font-family: var(--font-serif);
}

/* ==========================================================================
   İnteraktif 120 Sohbet Kartı Kütüphanesi Bölümü
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.section-alt {
    background-color: var(--bg-surface-muted);
}

.section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 52px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    color: var(--accent-amber);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Kategori Sekmeleri */
.card-category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.cat-tab-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cat-tab-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.cat-tab-btn.active {
    background: var(--accent-amber);
    color: var(--text-inverse);
    border-color: var(--accent-amber);
}

/* 3D İnteraktif Sohbet Kartı */
.interactive-card-container {
    max-width: 680px;
    margin: 0 auto;
    perspective: 1200px;
}

.card-flip-wrap {
    position: relative;
    width: 100%;
    min-height: 340px;
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s var(--ease-out), border-color 0.25s ease;
}

.card-flip-wrap.animating {
    animation: cardShake 0.4s ease;
}

.card-top-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 18px;
}

.card-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    color: var(--accent-teal);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.card-actions-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-card-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-card-small:hover {
    color: var(--text-primary);
    border-color: var(--accent-amber);
}

.card-main-question {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-primary);
    margin: 28px 0;
    min-height: 90px;
}

.card-footer-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    gap: 14px;
    flex-wrap: wrap;
}

.card-skip-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   Felsefe & Ne Var / Ne Yok Karşılaştırma Matrisi
   ========================================================================== */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.manifesto-box {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.manifesto-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.box-negative {
    border-top: 4px solid var(--accent-coral);
}

.box-positive {
    border-top: 4px solid var(--accent-teal);
}

.manifesto-box-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.manifesto-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.manifesto-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.82rem;
    margin-top: 1px;
}

.item-icon-no {
    background: var(--accent-coral-subtle);
    color: var(--accent-coral);
}

.item-icon-yes {
    background: var(--accent-teal-subtle);
    color: var(--accent-teal);
}

/* ==========================================================================
   14 Günlük Tematik Çemberler Bölümü
   ========================================================================== */
.circles-feature-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.circles-img-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.circles-img-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.circles-img-box:hover img {
    transform: scale(1.025);
}

.circle-timeline-interactive {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.timeline-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.timeline-step-header > span {
    flex: 1 1 16rem;
    min-width: 0;
    line-height: 1.35;
}

.timeline-step-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-step-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.timeline-step-btn.active {
    background: var(--accent-amber);
    color: var(--text-inverse);
    border-color: var(--accent-amber);
}

.timeline-day-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.timeline-day-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.timeline-day-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.45;
}

/* Çember Kartları Izgarası */
.circles-grid,
.circles-live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 24px;
    margin-top: 32px;
}

.circle-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.circle-card:hover {
    border-color: var(--accent-amber);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.circle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.circle-cycle-badge {
    font-size: 0.74rem;
    font-weight: 700;
    background: var(--bg-surface-elevated);
    color: var(--accent-teal);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.circle-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.circle-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.circle-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.circle-capacity-bar {
    width: 100%;
    height: 5px;
    background: var(--bg-surface-elevated);
    border-radius: var(--radius-full);
    margin: 8px 0 14px 0;
    overflow: hidden;
}

.circle-capacity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-teal));
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

/* ==========================================================================
   İnteraktif Eşleşme & Açıklanabilirlik Simülatörü
   ========================================================================== */
.simulator-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    margin-top: 36px;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.simulator-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-block-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-selector-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interactive-pill-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.interactive-pill-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.interactive-pill-btn.selected {
    background: var(--accent-amber);
    color: var(--text-inverse);
    border-color: var(--accent-amber);
}

.simulator-result-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.match-explain-badge {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-teal);
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-generated-reason {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 70px;
}

.weights-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
}

.weight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.weight-bar-bg {
    flex: 1;
    height: 6px;
    background: var(--bg-surface);
    border-radius: var(--radius-full);
    margin: 0 14px;
    overflow: hidden;
}

.weight-bar-fill {
    height: 100%;
    background: var(--accent-amber);
    border-radius: var(--radius-full);
    transition: width 0.6s var(--ease-out);
}

/* ==========================================================================
   Mahremiyet, Sınırlarım ve Özel Medya Kasası
   ========================================================================== */
.sanctuary-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.sanctuary-img-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.sanctuary-img-box img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.sanctuary-img-box:hover img {
    transform: scale(1.025);
}

.boundaries-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.boundary-toggle-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    transition: var(--transition-fast);
}

.boundary-toggle-card:hover {
    border-color: var(--border-light);
    background: var(--bg-surface-elevated);
}

.boundary-info-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.boundary-info-sub {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.switch-indicator {
    width: 44px;
    height: 24px;
    background: var(--accent-teal);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.switch-indicator::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s var(--ease-out);
}

/* ==========================================================================
   Abonelik Paketleri (Dinamik Fiyatlandırma)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 28px;
    margin-top: 44px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.pillar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pillar-icon {
    margin-bottom: 14px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pillar-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 38px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-light);
}

.pricing-card.featured {
    border: 2px solid var(--accent-amber);
    background: var(--bg-surface-elevated);
}

.pricing-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-amber);
    color: var(--text-inverse);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    min-height: 48px;
    margin-bottom: 20px;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-price-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price-period {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 32px;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.plan-feature-item svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

/* ==========================================================================
   Sıkça Sorulan Sorular (Accordion)
   ========================================================================== */
.faq-accordion-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: var(--border-focus);
}

.faq-question-btn {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-icon-chevron {
    transition: transform 0.25s var(--ease-out);
    color: var(--accent-amber);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-chevron {
    transform: rotate(180deg);
}

.faq-answer-body {
    padding: 0 26px 22px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer-body {
    display: block;
    animation: fadeIn 0.25s ease;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-chevron {
    display: flex;
    transition: transform 0.25s var(--ease-out);
    color: var(--accent-amber);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 26px 22px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   İletişim & Destek Formu
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card-sub {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-card-sub svg {
    color: var(--accent-amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-amber);
    background: var(--bg-surface-hover);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #070a10;
    border-top: 1px solid var(--border-subtle);
    padding: 64px 0 32px;
}

.footer-top,
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 14px;
    max-width: 320px;
}

.footer-col-title,
.footer-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.footer-link-list,
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 3px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   Modallar (Checkout, Yasal ve Acil Yardım)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    padding: 34px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s var(--ease-out);
}

.modal-card-large {
    max-width: 780px;
}

.modal-close,
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover,
.modal-close-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: rotate(90deg);
}

.checkout-plan-summary {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px;
    margin: 18px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-badge-card {
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.25);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.trust-badge-card svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   Animasyon Keyframe Tanımları (Görsel Şölen ve Akıcı Canlılık)
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatGently {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(0.5deg); }
}

@keyframes pulseSubtle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.18); opacity: 0.8; }
}

@keyframes cardShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px) rotate(-1deg); }
    75% { transform: translateX(4px) rotate(1deg); }
    100% { transform: translateX(0); }
}

@keyframes shimmerSweep {
    0% { transform: translateX(-150%) rotate(25deg); }
    100% { transform: translateX(250%) rotate(25deg); }
}

@keyframes ambientPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(224, 159, 62, 0.12), inset 0 0 16px rgba(224, 159, 62, 0.04); }
    50% { box-shadow: 0 0 28px rgba(224, 159, 62, 0.28), inset 0 0 24px rgba(224, 159, 62, 0.08); }
}

@keyframes emberGlow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(224, 159, 62, 0.3)); }
    50% { filter: drop-shadow(0 0 14px rgba(224, 159, 62, 0.65)); }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Görsel Şölen ve Sinematik Kart Stilleri
   ========================================================================== */
.visual-card-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.7);
    background: var(--bg-surface-elevated);
    transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.visual-card-wrap:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 159, 62, 0.45);
    box-shadow: 0 28px 60px -16px rgba(224, 159, 62, 0.25);
}

.visual-card-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s var(--ease-out);
}

.visual-card-wrap:hover img {
    transform: scale(1.04);
}

.visual-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.88) 0%, rgba(10, 14, 23, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--text-primary);
}

.visual-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(17, 23, 36, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(224, 159, 62, 0.4);
    color: var(--accent-amber);
    margin-bottom: 10px;
    width: fit-content;
}

.visual-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 6px;
}

.visual-card-sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Şık Buton Işıltısı (Shimmer Sweep) */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: rotate(25deg);
    pointer-events: none;
}

.btn-primary:hover::after {
    animation: shimmerSweep 1.25s infinite;
}

/* İkon Rozetleri */
.feature-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-amber);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    margin-bottom: 18px;
    flex-shrink: 0;
}

.pillar-card:hover .feature-icon-badge,
.manifesto-box:hover .feature-icon-badge {
    transform: scale(1.1) rotate(-3deg);
    border-color: var(--accent-amber);
    box-shadow: 0 0 16px rgba(224, 159, 62, 0.35);
}

.legal-body h2,
#legalModalBody h2,
.legal-body h3,
#legalModalBody h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.35;
    margin: 1.35rem 0 0.5rem;
}

.legal-body h2,
#legalModalBody h2 {
    font-size: 1.25rem;
}

.legal-body h3,
#legalModalBody h3 {
    font-size: 1.05rem;
}

.legal-body p,
#legalModalBody p,
.legal-body ul,
.legal-body ol,
#legalModalBody ul,
#legalModalBody ol,
.legal-body blockquote,
#legalModalBody blockquote {
    margin: 0 0 0.9rem;
}

.legal-body ul,
.legal-body ol,
#legalModalBody ul,
#legalModalBody ol {
    padding-left: 1.25rem;
}

.legal-body li,
#legalModalBody li {
    margin: 0.28rem 0;
}

.legal-body blockquote,
#legalModalBody blockquote {
    padding: 12px 16px;
    border-left: 3px solid var(--accent-amber);
    background: var(--accent-amber-subtle);
    color: var(--text-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-body strong,
#legalModalBody strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ==========================================================================
   Mobil ve Duyarlı Tasarım
   ========================================================================== */
@media (max-width: 1120px) {
    .nav-links,
    #navCtaBtn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 992px) {
    .nav-links,
    #navCtaBtn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-img {
        height: 380px;
    }

    .manifesto-grid, .circles-feature-wrap, .simulator-grid, .sanctuary-wrap, .contact-grid, .pillars-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .emergency-banner-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-dialog-pill {
        display: none; /* Mobilde görselin üstünü kapatmaması için */
    }
}

@media (max-width: 640px) {
    .hero-trust-bar,
    .footer-top,
    .footer-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        padding: 20px 16px;
        gap: 24px;
    }

    .hero-actions > .btn,
    .hero-actions > a {
        flex: 1 1 100%;
        justify-content: center;
    }

    .section-title,
    .hero-title,
    .subpage-title {
        overflow-wrap: anywhere;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img {
        height: 300px;
    }

    .modal-card {
        padding: 24px;
    }
}

/* ==========================================================================
   Mobil Çekmece Menü, Soru Takip Kartı & Spinner Yardımcıları
   ========================================================================== */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.mobile-drawer.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent-amber);
    padding-left: 6px;
}

.card-follow-up-box {
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--accent-teal);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.spinner-small {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Görsel Şölen: Visual Card & Showcases (Fotoğraf + Tipografi + Mikro-Animasyon)
   ========================================================================== */
.visual-card-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    background: var(--bg-surface);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.visual-card-wrap:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 159, 62, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(224, 159, 62, 0.18);
}

.visual-card-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.visual-card-wrap:hover .visual-card-img {
    transform: scale(1.035);
}

.visual-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.65) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.visual-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(10, 14, 23, 0.85);
    border: 1px solid rgba(224, 159, 62, 0.45);
    color: var(--accent-amber);
    backdrop-filter: blur(8px);
}

.visual-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.visual-card-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 2-Kolonlu Görsel + Metin Şöleni */
.visual-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .visual-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Lüks Amblem Sergileme Kutusu */
.visual-emblem-showcase {
    position: relative;
    background: radial-gradient(circle at 50% 35%, rgba(224, 159, 62, 0.1) 0%, var(--bg-surface-elevated) 70%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.visual-emblem-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 159, 62, 0.7), transparent);
}

.emblem-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(224, 159, 62, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 30px rgba(224, 159, 62, 0.25);
    margin-bottom: 24px;
    animation: floatGently 5s ease-in-out infinite alternate;
}

.emblem-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vurgulu İkon Rozetleri */
.feature-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-icon-badge:hover {
    transform: scale(1.1) rotate(3deg);
    border-color: var(--accent-amber);
    box-shadow: 0 0 20px rgba(224, 159, 62, 0.3);
}

/* Animasyon Keyframeleri */
@keyframes floatGently {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes floatSlow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@keyframes emberGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(224, 159, 62, 0.15); }
    50% { box-shadow: 0 0 35px rgba(224, 159, 62, 0.35); }
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.04); }
}

.float-slow {
    animation: floatSlow 4s ease-in-out infinite;
}

.glow-amber {
    animation: emberGlow 3s ease-in-out infinite;
}

/* ==========================================================================
   120 Düşünce Kartı Kütüphanesi & Grid Stilleri
   ========================================================================== */
.cards-filter-toolbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.cards-search-wrap {
    position: relative;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

.cards-search-input {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 14px 24px 14px 48px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.25s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.cards-search-input:focus {
    outline: none;
    border-color: var(--accent-amber);
    background: var(--bg-surface-hover);
    box-shadow: 0 0 0 3px rgba(224, 159, 62, 0.15);
}

.cards-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.cards-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cards-cat-pill {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cards-cat-pill:hover {
    border-color: var(--accent-amber);
    color: var(--text-primary);
    background: var(--bg-surface-elevated);
}

.cards-cat-pill.active {
    background: var(--accent-amber);
    color: var(--bg-dark);
    border-color: var(--accent-amber);
    box-shadow: 0 4px 14px rgba(224, 159, 62, 0.3);
}

.cards-cat-count {
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.18);
    font-weight: 700;
}

.cards-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 24px;
}

.thought-card-brick {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.thought-card-brick:hover {
    transform: translateY(-4px);
    border-color: var(--accent-amber);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    background: var(--bg-surface-elevated);
}

.thought-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.thought-card-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.thought-card-cat-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.thought-card-question {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.thought-card-followup {
    background: rgba(224, 159, 62, 0.06);
    border-left: 2px solid var(--accent-amber);
    padding: 10px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
    display: none;
}

.thought-card-followup.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.thought-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.thought-card-toggle-btn {
    background: none;
    border: none;
    color: var(--accent-amber);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.thought-card-copy-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.76rem;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.thought-card-copy-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   İnteraktif Medya Kasası Simülatörü (Vault Simulator)
   ========================================================================== */
.vault-simulator-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.vault-friend-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.vault-friend-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.25s var(--ease-out);
}

.vault-friend-item:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: var(--bg-surface-hover);
}

.vault-friend-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vault-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
}

.vault-friend-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.vault-friend-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vault-friend-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vault-toggle-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vault-toggle-pill.granted {
    background: rgba(45, 212, 191, 0.12);
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

.vault-toggle-pill.revoked {
    background: rgba(248, 113, 113, 0.12);
    border-color: var(--accent-coral);
    color: var(--accent-coral);
}

.vault-notification-toast {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--accent-amber);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: 0.85rem;
    color: var(--text-primary);
    display: none;
    z-index: 10;
    white-space: nowrap;
}

/* ==========================================================================
   İnteraktif Sakin Sesli Mektup Oynatıcı (Audio Letter Player)
   ========================================================================== */
.audio-letter-widget {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.audio-player-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.audio-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-amber);
    color: var(--bg-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    box-shadow: 0 4px 18px rgba(224, 159, 62, 0.35);
    flex-shrink: 0;
}

.audio-play-btn:hover {
    transform: scale(1.06);
    background: var(--primary-light);
}

.audio-waveform-bars {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    flex-grow: 1;
}

.audio-wave-bar {
    width: 4px;
    background: var(--border-medium);
    border-radius: var(--radius-full);
    transition: height 0.2s ease, background-color 0.2s ease;
}

.audio-waveform-bars.playing .audio-wave-bar {
    animation: waveBounce 1.2s ease-in-out infinite alternate;
    background: var(--accent-teal);
}

@keyframes waveBounce {
    0% { height: 6px; }
    50% { height: 36px; }
    100% { height: 14px; }
}

.audio-wave-bar:nth-child(2) { animation-delay: 0.1s; }
.audio-wave-bar:nth-child(3) { animation-delay: 0.25s; }
.audio-wave-bar:nth-child(4) { animation-delay: 0.05s; }
.audio-wave-bar:nth-child(5) { animation-delay: 0.35s; }
.audio-wave-bar:nth-child(6) { animation-delay: 0.18s; }
.audio-wave-bar:nth-child(7) { animation-delay: 0.4s; }
.audio-wave-bar:nth-child(8) { animation-delay: 0.12s; }
.audio-wave-bar:nth-child(9) { animation-delay: 0.3s; }
.audio-wave-bar:nth-child(10) { animation-delay: 0.2s; }
.audio-wave-bar:nth-child(11) { animation-delay: 0.45s; }
.audio-wave-bar:nth-child(12) { animation-delay: 0.15s; }

.audio-transcript-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}


