/* =====================================================================
   TourSuite tanıtım sitesi — görsel katman

   Metronic'in style.bundle.css'i temel (grid, tipografi, ikonlar) olarak
   kullanılır; buradaki kurallar yalnızca pazarlama sitesine özgü
   bileşenleri tanımlar. Metronic'in kendi CSS'i DEĞİŞTİRİLMEZ.

   Renkler panelle aynı marka paletidir (CLAUDE.md §14.2):
     birincil #0d7a5f · ikincil #f59e0b · koyu zemin #0f172a
   ===================================================================== */

:root {
    --ts-primary: #0d7a5f;
    --ts-primary-dark: #0a6250;
    --ts-primary-light: #e7f5f1;
    --ts-accent: #f59e0b;
    --ts-ink: #0f172a;
    --ts-body: #475569;
    --ts-muted: #94a3b8;
    --ts-line: #e2e8f0;
    --ts-bg-soft: #f8fafc;

    --ts-radius: 16px;
    --ts-radius-sm: 10px;
    --ts-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
    --ts-shadow-lg: 0 24px 60px rgba(15, 23, 42, .12);
    --ts-container: 1200px;
}

/* --- Temel ---------------------------------------------------------- */
.ts-site {
    background: #fff;
    color: var(--ts-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.ts-site .container {
    width: 100%;
    max-width: var(--ts-container);
    margin-inline: auto;
    padding-inline: 20px;
}

.ts-site h1, .ts-site h2, .ts-site h3, .ts-site h4 {
    color: var(--ts-ink);
    line-height: 1.25;
    letter-spacing: -.02em;
    margin: 0 0 .5em;
}

.ts-site h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; }
.ts-site h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 750; }
.ts-site h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 700; }

.ts-site p { margin: 0 0 1rem; }
/* Düğmeler DIŞARIDA bırakılır. `.ts-site a` özgüllüğü (0,1,1) `.ts-btn-primary`
   (0,1,0) kuralını sıralamadan bağımsız olarak eziyordu: yeşil zemine yeşil
   yazı çıkıyor ve ana çağrı düğmesinin metni GÖRÜNMÜYORDU. */
.ts-site a:not(.ts-btn) { color: var(--ts-primary); text-decoration: none; }
.ts-site a:not(.ts-btn):hover { color: var(--ts-primary-dark); }

/* Klavye kullanıcıları için görünür odak — erişilebilirlik */
.ts-site :focus-visible {
    outline: 3px solid rgba(13, 122, 95, .35);
    outline-offset: 2px;
    border-radius: 4px;
}

.ts-skip {
    position: absolute;
    left: -9999px;
    background: var(--ts-primary);
    color: #fff;
    padding: 12px 20px;
    z-index: 999;
}
.ts-skip:focus { left: 12px; top: 12px; color: #fff; }

/* --- Bölüm düzeni ---------------------------------------------------- */
.ts-section { padding: clamp(56px, 8vw, 104px) 0; }
.ts-section-soft { background: var(--ts-bg-soft); }
.ts-section-dark { background: var(--ts-ink); color: #cbd5e1; }
.ts-section-dark h2, .ts-section-dark h3 { color: #fff; }

.ts-section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.ts-section-head.is-left { margin-inline: 0; text-align: left; }
.ts-section-head p { font-size: 1.075rem; color: var(--ts-body); margin: 0; }

.ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ts-primary);
    background: var(--ts-primary-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.ts-section-dark .ts-eyebrow { background: rgba(245, 158, 11, .14); color: var(--ts-accent); }

/* --- Düğmeler -------------------------------------------------------- */
.ts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--ts-radius-sm);
    font-weight: 650;
    font-size: .95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
    text-decoration: none;   /* `.ts-site a` dışında bırakıldığı için burada verilir */
}
.ts-btn:hover { transform: translateY(-1px); }

.ts-btn-primary { background: var(--ts-primary); color: #fff; box-shadow: 0 6px 18px rgba(13, 122, 95, .25); }
.ts-btn-primary:hover { background: var(--ts-primary-dark); color: #fff; }

.ts-btn-ghost { background: transparent; color: var(--ts-ink); border-color: var(--ts-line); }
.ts-btn-ghost:hover { border-color: var(--ts-primary); color: var(--ts-primary); }

.ts-btn-light { background: #fff; color: var(--ts-ink); }
.ts-btn-light:hover { color: var(--ts-primary); }

.ts-btn-accent { background: var(--ts-accent); color: #1c1917; }
.ts-btn-accent:hover { background: #d98806; color: #1c1917; }

.ts-btn-lg { padding: 16px 32px; font-size: 1rem; }

/* --- Üst menü -------------------------------------------------------- */
.ts-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--ts-line);
}

.ts-nav { display: flex; align-items: center; gap: 32px; height: 72px; }

.ts-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ts-ink); }
/* Marka işareti panelle ORTAK dosyadır (logo-mark.svg). Zemin ve yuvarlatma
   SVG'nin kendi içinde olduğu için burada yalnızca boyut verilir; arka plan
   boyamak işaretin altından taşardı. Marka adı SVG'ye gömülmez — <img>
   içindeki yazı sayfa fontunu kullanamaz, sistem fontuna düşer. */
.ts-logo-mark {
    width: 36px; height: 36px;
    display: block;
    flex: none;
}
.ts-logo-text { font-size: 1.2rem; letter-spacing: -.03em; }
.ts-logo-light .ts-logo-text { color: #fff; }

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

.ts-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--ts-body);
    font-weight: 600;
    font-size: .95rem;
    background: none;
    border: 0;
    cursor: pointer;
}
.ts-nav-link:hover, .ts-nav-link.is-active { color: var(--ts-primary); background: var(--ts-primary-light); }

.ts-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

/* Açılır mega menü */
.ts-dropdown { position: relative; }
.ts-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: min(720px, 92vw);
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: var(--ts-radius);
    box-shadow: var(--ts-shadow-lg);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.ts-dropdown.is-open .ts-dropdown-menu,
.ts-dropdown:hover .ts-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

.ts-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

.ts-dropdown-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px; border-radius: var(--ts-radius-sm); color: var(--ts-body);
}
.ts-dropdown-item:hover { background: var(--ts-bg-soft); }
.ts-dropdown-item i { color: var(--ts-primary); margin-top: 2px; }
.ts-dropdown-item strong { display: block; color: var(--ts-ink); font-size: .925rem; }
.ts-dropdown-item small { color: var(--ts-muted); font-size: .8rem; line-height: 1.45; display: block; }

.ts-dropdown-foot { border-top: 1px solid var(--ts-line); margin-top: 12px; padding-top: 12px; text-align: center; }
.ts-dropdown-foot a { font-weight: 650; font-size: .9rem; }

.ts-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.ts-nav-toggle span { width: 22px; height: 2px; background: var(--ts-ink); border-radius: 2px; }

/* --- Kahraman bölümü ------------------------------------------------- */
.ts-hero {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0 clamp(56px, 7vw, 96px);
    background:
        radial-gradient(1100px 460px at 82% -12%, rgba(13, 122, 95, .10), transparent 60%),
        radial-gradient(760px 380px at 8% 8%, rgba(245, 158, 11, .09), transparent 62%);
    overflow: hidden;
}

.ts-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.ts-hero p.ts-lead { font-size: 1.15rem; max-width: 56ch; }

.ts-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }

.ts-hero-note { display: flex; flex-wrap: wrap; gap: 18px; font-size: .875rem; color: var(--ts-muted); }
.ts-hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.ts-hero-note i { color: var(--ts-primary); }

/* Ekran görüntüsü yerine anlatan görsel kutu */
.ts-hero-visual {
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: 20px;
    box-shadow: var(--ts-shadow-lg);
    overflow: hidden;
}
.ts-hero-visual-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px; background: var(--ts-bg-soft); border-bottom: 1px solid var(--ts-line);
}
.ts-hero-visual-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; display: block; }
.ts-hero-visual-body { padding: 20px; display: grid; gap: 12px; }

.ts-mini-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border: 1px solid var(--ts-line); border-radius: 12px;
}
.ts-mini-row .ts-mini-icon {
    width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
    background: var(--ts-primary-light); color: var(--ts-primary); flex: none;
}
.ts-mini-row strong { display: block; font-size: .9rem; color: var(--ts-ink); }
.ts-mini-row small { color: var(--ts-muted); font-size: .78rem; }
.ts-mini-badge { margin-left: auto; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.ts-badge-ok { background: #dcfce7; color: #15803d; }
.ts-badge-warn { background: #fef3c7; color: #b45309; }
.ts-badge-info { background: #dbeafe; color: #1d4ed8; }

/* --- İstatistik şeridi ---------------------------------------------- */
.ts-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ts-stat { text-align: center; }
.ts-stat-value { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--ts-primary); line-height: 1; }
.ts-section-dark .ts-stat-value { color: var(--ts-accent); }
.ts-stat-label { font-weight: 650; color: var(--ts-ink); margin-top: 8px; }
.ts-section-dark .ts-stat-label { color: #fff; }
.ts-stat-hint { font-size: .85rem; color: var(--ts-muted); }

/* --- Kart ızgarası --------------------------------------------------- */
.ts-grid { display: grid; gap: 24px; }
.ts-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ts-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ts-grid-4 { grid-template-columns: repeat(4, 1fr); }

.ts-card {
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: var(--ts-radius);
    padding: 28px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    height: 100%;
}
.ts-card:hover { border-color: rgba(13, 122, 95, .35); box-shadow: var(--ts-shadow); transform: translateY(-3px); }

.ts-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--ts-primary-light); color: var(--ts-primary);
    margin-bottom: 18px;
}
.ts-card h3 { margin-bottom: 8px; }
.ts-card p { color: var(--ts-body); font-size: .95rem; margin: 0; }

.ts-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-weight: 650; font-size: .9rem;
}

/* --- Modül listesi (özellikler sayfası) ------------------------------ */
.ts-module-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    padding: clamp(40px, 6vw, 72px) 0;
    border-bottom: 1px solid var(--ts-line);
}
.ts-module-row:last-child { border-bottom: 0; }
.ts-module-row.is-reverse .ts-module-media { order: -1; }

.ts-feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.ts-feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.ts-feature-list i { color: var(--ts-primary); flex: none; margin-top: 3px; }

.ts-benefit {
    margin-top: 24px; padding: 16px 20px;
    background: var(--ts-primary-light);
    border-left: 3px solid var(--ts-primary);
    border-radius: 0 var(--ts-radius-sm) var(--ts-radius-sm) 0;
    font-size: .95rem; color: #0f5847;
}

/* --- Fiyat kartları -------------------------------------------------- */
.ts-price-card { position: relative; display: flex; flex-direction: column; }
.ts-price-card.is-popular { border-color: var(--ts-primary); box-shadow: 0 16px 44px rgba(13, 122, 95, .16); }
.ts-price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--ts-primary); color: #fff;
    font-size: .74rem; font-weight: 700; letter-spacing: .04em;
    padding: 5px 16px; border-radius: 100px; text-transform: uppercase;
}
.ts-price-limits { display: grid; gap: 8px; margin: 18px 0; padding: 16px 0; border-block: 1px solid var(--ts-line); }
.ts-price-limits div { display: flex; justify-content: space-between; font-size: .9rem; }
.ts-price-limits strong { color: var(--ts-ink); }

/* --- SSS ------------------------------------------------------------- */
.ts-faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.ts-faq-item { border: 1px solid var(--ts-line); border-radius: var(--ts-radius-sm); background: #fff; overflow: hidden; }
.ts-faq-q {
    width: 100%; display: flex; justify-content: space-between; gap: 16px; align-items: center;
    padding: 20px 24px; background: none; border: 0; cursor: pointer;
    font-weight: 650; font-size: 1.02rem; color: var(--ts-ink); text-align: left;
}
.ts-faq-q i { color: var(--ts-primary); transition: transform .2s ease; flex: none; }
.ts-faq-item.is-open .ts-faq-q i { transform: rotate(180deg); }
.ts-faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.ts-faq-item.is-open .ts-faq-a { padding: 0 24px 22px; max-height: 720px; }

/* --- Blog ------------------------------------------------------------ */
.ts-post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.ts-post-cover { aspect-ratio: 16/9; background: var(--ts-bg-soft); display: grid; place-items: center; overflow: hidden; }
.ts-post-cover img { width: 100%; height: 100%; object-fit: cover; }
.ts-post-cover i { font-size: 2.4rem; color: var(--ts-muted); }
.ts-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.ts-post-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: var(--ts-muted); margin-bottom: 10px; }
.ts-post-cat { background: var(--ts-primary-light); color: var(--ts-primary); padding: 3px 10px; border-radius: 100px; font-weight: 650; }
.ts-post-body h3 { font-size: 1.12rem; }
.ts-post-body p { font-size: .92rem; flex: 1; }

.ts-article { max-width: 760px; margin-inline: auto; }
.ts-article-body { font-size: 1.06rem; line-height: 1.85; }
.ts-article-body h2 { margin: 2em 0 .6em; font-size: 1.6rem; }
.ts-article-body h3 { margin: 1.6em 0 .5em; }
.ts-article-body ul, .ts-article-body ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.ts-article-body li { margin-bottom: .5em; }
.ts-article-body img { max-width: 100%; height: auto; border-radius: var(--ts-radius-sm); }
.ts-article-body blockquote {
    margin: 1.6em 0; padding: 16px 24px;
    border-left: 3px solid var(--ts-primary); background: var(--ts-primary-light);
    border-radius: 0 var(--ts-radius-sm) var(--ts-radius-sm) 0;
}
.ts-article-body table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .95rem; }
.ts-article-body th, .ts-article-body td { border: 1px solid var(--ts-line); padding: 10px 14px; text-align: left; }
.ts-article-body th { background: var(--ts-bg-soft); font-weight: 650; color: var(--ts-ink); }

/* GEO: yazının makine-okunur özeti — hem kullanıcıya hem motora hitap eder */
.ts-summary {
    background: var(--ts-bg-soft); border: 1px solid var(--ts-line);
    border-radius: var(--ts-radius-sm); padding: 20px 24px; margin-bottom: 28px;
}
.ts-summary strong { display: block; color: var(--ts-ink); margin-bottom: 6px; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.ts-summary p { margin: 0; font-size: .98rem; }

/* --- Kırıntı yolu ---------------------------------------------------- */
.ts-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--ts-muted); margin-bottom: 20px; }
.ts-breadcrumb a { color: var(--ts-muted); }
.ts-breadcrumb a:hover { color: var(--ts-primary); }

/* --- Formlar --------------------------------------------------------- */
.ts-form { display: grid; gap: 18px; }
.ts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ts-field label { display: block; font-weight: 650; font-size: .9rem; color: var(--ts-ink); margin-bottom: 7px; }
.ts-field .req { color: #dc2626; }
.ts-field input, .ts-field select, .ts-field textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--ts-line); border-radius: var(--ts-radius-sm);
    font-size: .95rem; font-family: inherit; background: #fff; color: var(--ts-ink);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.ts-field input:focus, .ts-field select:focus, .ts-field textarea:focus {
    outline: none; border-color: var(--ts-primary); box-shadow: 0 0 0 3px rgba(13, 122, 95, .12);
}
.ts-field textarea { resize: vertical; min-height: 130px; }
.ts-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.ts-alert { padding: 14px 18px; border-radius: var(--ts-radius-sm); font-size: .93rem; margin-bottom: 20px; }
.ts-alert-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.ts-alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* --- Kapanış çağrısı ------------------------------------------------- */
.ts-cta {
    background: linear-gradient(135deg, var(--ts-primary) 0%, #0a6250 100%);
    border-radius: 24px; padding: clamp(40px, 6vw, 64px); text-align: center; color: #fff;
}
.ts-cta h2 { color: #fff; }
.ts-cta p { color: rgba(255, 255, 255, .88); max-width: 60ch; margin-inline: auto; }
.ts-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* --- Sayfalama ------------------------------------------------------- */
.ts-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.ts-pagination a, .ts-pagination span {
    min-width: 42px; height: 42px; display: grid; place-items: center;
    border: 1px solid var(--ts-line); border-radius: var(--ts-radius-sm);
    color: var(--ts-body); font-weight: 600; font-size: .9rem; padding-inline: 12px;
}
.ts-pagination a:hover { border-color: var(--ts-primary); color: var(--ts-primary); }
.ts-pagination .is-current { background: var(--ts-primary); border-color: var(--ts-primary); color: #fff; }

/* --- Karşılaştırma tablosu ------------------------------------------ */
.ts-compare { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
.ts-compare th, .ts-compare td { padding: 16px 20px; border-bottom: 1px solid var(--ts-line); text-align: left; vertical-align: top; }
.ts-compare thead th { background: var(--ts-bg-soft); color: var(--ts-ink); font-weight: 700; }
.ts-compare tbody tr:hover { background: #fcfdfd; }
.ts-compare .ts-yes { color: #15803d; font-weight: 650; }
.ts-compare .ts-no { color: var(--ts-muted); }

.ts-table-wrap { overflow-x: auto; border: 1px solid var(--ts-line); border-radius: var(--ts-radius); }

/* --- Duyarlılık ------------------------------------------------------ */
@media (max-width: 992px) {
    .ts-hero-grid, .ts-module-row { grid-template-columns: 1fr; gap: 36px; }
    .ts-module-row.is-reverse .ts-module-media { order: 0; }
    .ts-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .ts-grid-3 { grid-template-columns: repeat(2, 1fr); }

    .ts-nav-toggle { display: flex; }
    .ts-nav-links {
        position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: #fff; border-bottom: 1px solid var(--ts-line);
        padding: 16px 20px 24px; display: none;
        box-shadow: var(--ts-shadow);
        max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .ts-nav-links.is-open { display: flex; }
    .ts-nav-actions { margin: 12px 0 0; flex-direction: column; align-items: stretch; }
    .ts-dropdown-menu {
        position: static; transform: none; width: 100%;
        opacity: 1; visibility: visible; box-shadow: none;
        border: 0; padding: 0 0 0 12px; display: none;
    }
    .ts-dropdown.is-open .ts-dropdown-menu { display: block; }
    .ts-dropdown:hover .ts-dropdown-menu { transform: none; }
    .ts-dropdown-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .ts-stats, .ts-grid-2, .ts-grid-3, .ts-grid-4 { grid-template-columns: 1fr; }
    .ts-form-row { grid-template-columns: 1fr; }
    .ts-footer-top { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* --- Alt bilgi ------------------------------------------------------- */
.ts-footer { background: var(--ts-ink); color: #94a3b8; padding: clamp(48px, 6vw, 72px) 0 28px; }
.ts-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.ts-footer-desc { font-size: .92rem; max-width: 44ch; margin: 16px 0 20px; }
.ts-footer-contact { display: grid; gap: 8px; }
.ts-footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: #cbd5e1; font-size: .92rem; }
.ts-footer-contact a:hover { color: var(--ts-accent); }
.ts-footer-title { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: 16px; }
.ts-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ts-footer-col a { color: #94a3b8; font-size: .92rem; }
.ts-footer-col a:hover { color: var(--ts-accent); }
.ts-footer-bottom {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
    margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem;
}
.ts-footer-bottom p { margin: 0; }
.ts-footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.ts-footer-legal a { color: #94a3b8; }
.ts-footer-legal a:hover { color: var(--ts-accent); }

/* --- Hareket azaltma tercihi ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .ts-site *, .ts-site *::before, .ts-site *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* --- Yazdırma -------------------------------------------------------- */
@media print {
    .ts-header, .ts-footer, .ts-cta, .ts-nav-toggle { display: none !important; }
    .ts-site { font-size: 12pt; }
}
