/* ==========================================================================
   ARACINI HEMEN SAT — Tasarım Sistemi
   Palet doğrudan logodan örneklendi (images/genel/logo-1787772304121.png):
     canlı zümrüt #25B464 · koyu yeşil #118C53 · kontur #222021
   Karakter: kurumsal, yüksek kontrast, keskin köşeler, iri tipografi.

   AKSAN KULLANIMI — logo yeşili orta parlaklıkta bir renk, bu yüzden üç kademeli:
     --tos-acc      dolgu (buton, rozet, çubuk) — üzerine KOYU yeşil yazı gelir
     --tos-acc-ink  açık zeminde aksan METNİ  (beyaz üstünde 4.9:1)
     --tos-acc-lt   koyu zeminde aksan METNİ  (koyu yeşil üstünde 5.6:1)
   Beyaz yazı gereken dolgularda aksan değil, --tos-green kullanılır.

   NOT: --tos-gold* / --tos-red* / --tos-navy* isimleri tema genelinde hâlâ
   kullanılıyor. Aşağıda takma ad olarak bağlandılar — silme, yeniden yönlendir.
   ========================================================================== */

:root {
    /* Marka — koyu yeşiller (zemin, başlık, buton dolgusu + beyaz yazı) */
    --tos-green: #0B3D28;
    --tos-green-2: #06281A;
    --tos-green-3: #135F3E;
    --tos-green-wash: #E8F7EF;

    /* Aksan — logonun canlı zümrüdü */
    --tos-acc: #25B464;
    --tos-acc-2: #1C9A53;
    --tos-acc-ink: #0A7A41;
    --tos-acc-lt: #5BD694;
    --tos-acc-wash: #EAFAF1;

    --tos-gray: #3C4542;

    /* Takma adlar — geriye dönük uyumluluk */
    --tos-gold: var(--tos-acc);
    --tos-gold-2: var(--tos-acc-2);
    --tos-gold-ink: var(--tos-acc-ink);
    --tos-gold-lt: var(--tos-acc-lt);
    --tos-gold-wash: var(--tos-acc-wash);
    --tos-navy: var(--tos-green);
    --tos-navy-2: var(--tos-green-2);
    --tos-navy-3: var(--tos-green-3);
    --tos-red: var(--tos-acc);
    --tos-red-2: var(--tos-acc-2);

    /* Nötrler — yeşile doğru hafif kırıldı */
    --tos-ink: #0E1A16;
    --tos-body: #56635C;
    --tos-muted: #8B9791;
    --tos-line: #E2E9E5;
    --tos-surface: #F4F7F5;
    --tos-surface-2: #ECF2EE;
    --tos-white: #FFFFFF;

    /* Ölçü */
    --tos-max: 1240px;
    --tos-r: 8px;
    --tos-r-lg: 14px;
    --tos-r-btn: 10px;

    /* Gölge */
    --tos-sh-sm: 0 1px 2px rgba(6, 40, 26, .07);
    --tos-sh: 0 4px 16px rgba(6, 40, 26, .09);
    --tos-sh-lg: 0 18px 44px rgba(6, 40, 26, .16);

    --tos-ease: cubic-bezier(.22, .61, .36, 1);
}
/* --------------------------------------------------------------- temel -- */

.tos-wrap {
    width: 100%;
    max-width: var(--tos-max);
    margin: 0 auto;
    padding: 0 24px;
}

.tos-scope,
.tos-scope p,
.tos-scope li {
    font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
    color: var(--tos-body);
}

/* :where() ile sıfır özgüllük — tek sınıflı override'lar (ör. .tos-footer__title,
   .tos-phero__title) bu temel kuralı sorunsuz ezebilsin diye. Aksi halde
   "h1 + .tos-scope" kombinasyonu daha özgül kalıyor ve başlıklar koyu kalıyordu. */
:where(.tos-scope) :where(h1, h2, h3, h4) {
    font-family: 'Inter Tight', system-ui, sans-serif;
    color: var(--tos-ink);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: 0;
    font-weight: 800;
}

/* Bölüm başlık bloğu */
.tos-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tos-gold-ink);
    margin-bottom: 16px;
}

.tos-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--tos-gold-ink);
}

.tos-h2 {
    font-size: clamp(28px, 3.4vw, 44px);
}

.tos-h3 {
    font-size: clamp(20px, 2vw, 26px);
}

.tos-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--tos-body);
    margin: 18px 0 0;
    max-width: 62ch;
}

.tos-section {
    padding: 96px 0;
}

.tos-section--tight {
    padding: 64px 0;
}

.tos-section--surface {
    background: var(--tos-surface);
}

/* Eskiden koyu yeşil dolu bölümdü. Artık açık yüzey: koyu alanlar
   yalnızca anasayfa hero'su ve footer ile sınırlı. */
.tos-section--navy {
    background: var(--tos-surface);
}

.tos-head {
    max-width: 720px;
    margin-bottom: 56px;
}

.tos-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tos-head--center .tos-lead {
    margin-left: auto;
    margin-right: auto;
}

.tos-head--center .tos-eyebrow::before {
    display: none;
}

/* -------------------------------------------------------------- butonlar */

.tos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border: 2px solid transparent;
    border-radius: var(--tos-r-btn);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s var(--tos-ease);
    white-space: nowrap;
}

.tos-btn i {
    font-size: 13px;
    transition: transform .25s var(--tos-ease);
}

.tos-btn:hover i {
    transform: translateX(4px);
}

.tos-btn--red {
    background: var(--tos-gold);
    color: var(--tos-green-2);
}

.tos-btn--red:hover {
    background: var(--tos-gold-2);
    color: var(--tos-green-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 180, 100, .32);
}

/* İkincil buton. 27.08.2026: dolu koyu yeşilden beyaz + konturlu hâle
   geçti — SSS altındaki "Bize Ulaşın" sayfadaki tek koyu lekeydi ve
   birincil CTA ile aynı ağırlıkta duruyordu. */
.tos-btn--navy {
    background: #fff;
    color: var(--tos-acc-ink);
    border: 1.5px solid var(--tos-line);
}

.tos-btn--navy:hover {
    background: var(--tos-acc-wash);
    border-color: var(--tos-acc);
    color: var(--tos-green);
    transform: translateY(-2px);
}

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

.tos-btn--ghost:hover {
    border-color: var(--tos-green);
    color: var(--tos-green);
}

/* Adı devralındı: eskiden koyu yeşil zeminde duran konturlu butondu.
   27.08.2026: kullanıldığı üç yer de (mobil çekmece altı, kurumsal sayfa
   kenar kutusu) açık zemine geçti; kontur ve yazı yeşile çevrildi.
   Sınıf adı markup'ta üç yerde geçtiği için korundu. */
.tos-btn--on-navy {
    background: transparent;
    border-color: rgba(37, 180, 100, .45);
    color: var(--tos-acc-ink);
}

.tos-btn--on-navy:hover {
    background: var(--tos-acc);
    color: var(--tos-green-2);
    border-color: var(--tos-acc);
}

.tos-btn--block {
    width: 100%;
}

/* ============================================================= HEADER ===
   İki katmanlı: koyu yeşil yardımcı şerit + beyaz ana bar.
   Menü SOLA yaslı (logonun hemen yanında), sağda telefon bloğu + CTA.
   Aktif sayfa dolgulu rozetle işaretlenir — alt çizgi değil.
   Kaydırınca ana bar camlaşır; şerit yukarıda akıp gider.
   ======================================================================== */

/* --- üst yardımcı şerit --- */
.tos-topbar {
    background: var(--tos-surface);
    border-bottom: 1px solid var(--tos-line);
    color: var(--tos-body);
    font-size: 13px;
    line-height: 1;
}

.tos-topbar__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 40px;
    padding: 8px 0;
}

.tos-topbar__loc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    min-width: 0;
    color: inherit;
}

.tos-topbar__loc span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tos-topbar__loc i {
    color: var(--tos-acc-ink);
    flex-shrink: 0;
}

.tos-topbar__act {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.tos-topbar__hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tos-topbar__hours i {
    color: var(--tos-acc-ink);
}

.tos-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tos-ink);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s var(--tos-ease);
}

.tos-topbar__link i {
    color: var(--tos-acc-ink);
    transition: color .2s var(--tos-ease);
}

.tos-topbar__link:hover {
    color: var(--tos-acc-ink);
}

.tos-topbar__link--wa i {
    font-size: 15px;
}

/* --- ana bar --- */
.tos-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid var(--tos-line);
    transition: background .3s var(--tos-ease),
                border-color .3s var(--tos-ease),
                box-shadow .3s var(--tos-ease);
}

.tos-header.is-stuck {
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: rgba(6, 40, 26, .09);
    box-shadow: 0 1px 24px rgba(6, 40, 26, .06);
}

/* Yükseklik SABİT: header akışın içinde (sticky) olduğu için yüksekliği
   animasyonlamak altındaki tüm içeriği kaydırıyor, bu da scrollY'yi eşiğin
   altına düşürüp sınıfın açılıp kapanmasına — yani titremeye — yol açıyordu.
   Daralma hissi logoyu transform ile küçülterek veriliyor (reflow yok). */
.tos-header__in {
    position: relative;
    display: flex;
    align-items: center;
    gap: 34px;
    height: 84px;
}

.tos-logo {
    display: block;
    flex-shrink: 0;
}

/* Logo 2.83:1 oranında (594x210) — 46px yükseklik ≈ 130px genişlik.
   Oran değişirse bu değeri gözden geçir: çok geniş bir logoda menüyle
   çakışmaması için yüksekliği düşürmek gerekir. */
.tos-logo img {
    height: 46px;
    width: auto;
    display: block;
    transform-origin: left center;
    transition: transform .3s var(--tos-ease);
}

.tos-header.is-stuck .tos-logo img {
    transform: scale(.88);
}

/* --- Menü: logonun hemen yanında, SOLA yaslı --- */
.tos-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.tos-nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tos-nav__link {
    position: relative;
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: var(--tos-body);
    text-decoration: none;
    letter-spacing: -.005em;
    white-space: nowrap;
    transition: color .22s var(--tos-ease), background .22s var(--tos-ease);
}

.tos-nav__link:hover {
    color: var(--tos-green);
    background: var(--tos-green-wash);
}

/* Aktif göstergesi: dolgulu rozet.
   Alt çizgi yerine dolgu — menü sola yaslandığında çizgiler kelime
   uzunluğuna göre düzensiz görünüyordu, rozet hepsini aynı ritimde tutuyor. */
.tos-nav__item.is-active .tos-nav__link {
    color: var(--tos-acc-ink);
    font-weight: 600;
    background: var(--tos-acc-wash);
}

.tos-nav__item.is-active .tos-nav__link:hover {
    background: var(--tos-acc);
    color: var(--tos-green-2);
}

/* --- Sağ aksiyon --- */
.tos-header__act {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: auto;
}

.tos-header__act .tos-btn {
    padding: 13px 24px;
    font-size: 14.5px;
}

/* Kısa etiket yalnızca dar ekranda görünür */
.tos-btn__kisa {
    display: none;
}
/* Hamburger */
.tos-burger {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-btn);
    background: #fff;
    cursor: pointer;
    padding: 0;
    transition: all .2s var(--tos-ease);
}

.tos-burger:hover {
    border-color: var(--tos-green);
}

.tos-burger span {
    display: block;
    width: 17px;
    height: 2px;
    margin: 0;
    border-radius: 2px;
    background: var(--tos-green);
    transition: transform .28s var(--tos-ease), opacity .18s linear;
}

.tos-burger:active {
    transform: scale(.94);
}

.tos-burger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.tos-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.tos-burger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ====================================================== MOBİL ÇEKMECE === */
/* 27.08.2026: koyu yeşil panelden beyaz panele geçildi. Mobilde menü ekranın
   tamamını kaplıyor; koyu kalırsa "her yer koyu" hissinin en çok hissedildiği
   yer orası oluyordu. */

.tos-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
}

.tos-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.tos-drawer__veil {
    position: absolute;
    inset: 0;
    background: rgba(6, 40, 26, .45);
    opacity: 0;
    transition: opacity .3s var(--tos-ease);
}

.tos-drawer.is-open .tos-drawer__veil {
    opacity: 1;
}

.tos-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background: #fff;
    box-shadow: -20px 0 60px rgba(6, 40, 26, .18);
    transform: translateX(100%);
    transition: transform .34s var(--tos-ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.tos-drawer.is-open .tos-drawer__panel {
    transform: none;
}

.tos-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--tos-line);
}

.tos-drawer__top img {
    /* 2.83:1 — 28px, ~79px genişlik; panel 360px */
    height: 28px;
    width: auto;
}

.tos-drawer__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--tos-surface);
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r);
    color: var(--tos-body);
    font-size: 16px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.tos-drawer__close:hover {
    background: var(--tos-acc);
    border-color: var(--tos-acc);
    color: var(--tos-green-2);
}

.tos-drawer__list {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    flex: 1;
}

.tos-drawer__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 24px;
    color: var(--tos-ink);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all .2s;
}

.tos-drawer__link em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: var(--tos-acc-ink);
    letter-spacing: .08em;
}

.tos-drawer__link:hover,
.tos-drawer__item.is-active .tos-drawer__link {
    background: var(--tos-acc-wash);
    border-left-color: var(--tos-acc);
    color: var(--tos-acc-ink);
}

.tos-drawer__foot {
    padding: 22px 24px 28px;
    border-top: 1px solid var(--tos-line);
    display: grid;
    gap: 10px;
}

/* =============================================== SAYFA BAŞLIK (HERO) === */

/* AÇIK zemin — koyu alan yalnızca anasayfa hero'su ve footer. */
.tos-phero {
    position: relative;
    background: var(--tos-surface);
    border-bottom: 1px solid var(--tos-line);
    overflow: hidden;
    isolation: isolate;
}

.tos-phero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.tos-phero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .1;
}

.tos-phero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg,
            var(--tos-surface) 30%,
            rgba(241, 245, 242, .78) 100%);
}

.tos-phero__in {
    padding: 84px 0 92px;
    max-width: 760px;
}

.tos-phero__crumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--tos-muted);
    margin-bottom: 22px;
}

.tos-phero__crumb a {
    color: var(--tos-body);
    text-decoration: none;
    transition: color .2s;
}

.tos-phero__crumb a:hover {
    color: var(--tos-ink);
}

.tos-phero__crumb span[aria-current] {
    color: var(--tos-acc-ink);
    font-weight: 600;
}

/* .tos-scope h1 kuralından daha özgül olmalı, yoksa başlık koyu kalır */
.tos-scope .tos-phero__title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    color: var(--tos-ink);
    letter-spacing: -.035em;
    line-height: 1.05;
}

.tos-phero__title em {
    font-style: normal;
    color: var(--tos-acc-ink);
}

.tos-phero__sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--tos-body);
    margin: 20px 0 0;
    max-width: 60ch;
}

.tos-phero__rule {
    width: 64px;
    height: 4px;
    background: var(--tos-acc);
    margin-top: 30px;
}

/* ============================================================ İSTATİSTİK */

.tos-stats {
    background: #fff;
    border-bottom: 1px solid var(--tos-line);
}

.tos-stats__in {
    max-width: var(--tos-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tos-stat {
    padding: 30px 26px;
    border-left: 1px solid var(--tos-line);
}

.tos-stat:first-child {
    border-left: 0;
}

.tos-stat__n {
    font-size: 32px;
    font-weight: 800;
    color: var(--tos-ink);
    letter-spacing: -.03em;
    line-height: 1;
}

.tos-stat__n span {
    color: var(--tos-acc-ink);
}

.tos-stat__l {
    font-size: 13px;
    color: var(--tos-body);
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================================== SPLIT === */

.tos-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.tos-split--rev .tos-split__media {
    order: 2;
}

.tos-split__media {
    position: relative;
}

.tos-split__media img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--tos-r-lg);
    display: block;
}

.tos-split__media::before {
    content: '';
    position: absolute;
    left: -14px;
    top: -14px;
    width: 96px;
    height: 96px;
    border-left: 4px solid var(--tos-gold-ink);
    border-top: 4px solid var(--tos-gold-ink);
    border-radius: 4px 0 0 0;
}

/* İşaretli liste */
.tos-ticks {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 15px;
}

.tos-ticks li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-size: 15.5px;
    line-height: 1.6;
}

.tos-ticks i {
    color: var(--tos-gold-ink);
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* =============================================================== KART === */

.tos-grid {
    display: grid;
    gap: 24px;
}

.tos-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.tos-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.tos-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.tos-card {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 32px 28px;
    transition: all .28s var(--tos-ease);
    position: relative;
    overflow: hidden;
}

.tos-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--tos-gold-ink);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s var(--tos-ease);
}

.tos-card:hover {
    border-color: transparent;
    box-shadow: var(--tos-sh-lg);
    transform: translateY(-4px);
}

.tos-card:hover::before {
    transform: scaleY(1);
}

.tos-card__ico {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--tos-green);
    color: #fff;
    border-radius: var(--tos-r);
    font-size: 20px;
    margin-bottom: 20px;
    transition: background .28s var(--tos-ease);
}

.tos-card:hover .tos-card__ico {
    background: var(--tos-green-3);
}

.tos-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.tos-card p {
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================== ADIMLAR */

.tos-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: tosstep;
}

.tos-step {
    position: relative;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.tos-step:first-child {
    border-left: 0;
    padding-left: 0;
}

.tos-step__n {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--tos-gold-lt);
    margin-bottom: 16px;
}

.tos-step h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.tos-step p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .62);
    margin: 0;
}

/* ============================================================ CTA BANT === */
/* 27.08.2026: açık yeşil yıkama şeritten, yuvarlak köşeli DOLU YEŞİL bloğa
   çevrildi (trinkoto referansı). Sayfa boyunca tek güçlü renk anı burası —
   footer ve bölüm zeminleri açılınca sayfanın kapanışta bir vurguya
   ihtiyacı oldu. Blok sayfa genişliğini kaplamıyor, kart gibi duruyor. */
.tos-cta {
    padding: 64px 0 72px;
    background: transparent;
}

.tos-cta > .tos-wrap {
    padding-left: 20px;
    padding-right: 20px;
}

.tos-cta__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    padding: 54px 56px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--tos-acc) 0%, var(--tos-acc-2) 100%);
    box-shadow: 0 22px 50px rgba(37, 180, 100, .22);
}

.tos-cta h2 {
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    margin: 0 0 10px;
}

/* .tos-scope p (0,1,1) eziyor — iki sınıfla yazıldı (bölüm 5). */
.tos-cta .tos-cta__in p {
    color: rgba(255, 255, 255, .92);
    margin: 0;
    font-size: 16px;
}

/* Beyaz pill, yeşil yazı — referans sitedeki kapanış butonu. */
.tos-cta .tos-btn {
    background: #fff;
    color: var(--tos-acc-ink);
    padding: 18px 34px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(6, 40, 26, .16);
}

.tos-cta .tos-btn:hover {
    background: #fff;
    color: var(--tos-green);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 40, 26, .22);
}

@media (max-width: 767px) {
    .tos-cta {
        padding: 48px 0 54px;
    }

    .tos-cta__in {
        padding: 38px 26px;
        border-radius: 20px;
        gap: 26px;
    }
}

/* ========================================================== İLETİŞİM === */

.tos-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tos-ch {
    display: flex;
    gap: 18px;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    text-decoration: none;
    transition: all .28s var(--tos-ease);
}

.tos-ch:hover {
    box-shadow: var(--tos-sh-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.tos-ch__ico {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--tos-r);
    background: var(--tos-surface);
    color: var(--tos-green);
    font-size: 18px;
    flex-shrink: 0;
    transition: all .28s var(--tos-ease);
}

.tos-ch:hover .tos-ch__ico {
    background: var(--tos-green);
    color: #fff;
}

.tos-ch--wa:hover .tos-ch__ico {
    background: #25D366;
    color: #fff;
}

/* span olarak yazıldıkları için blok davranışı açıkça verilmeli */
.tos-ch__k,
.tos-ch__v,
.tos-ch__note {
    display: block;
}

.tos-ch__k {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tos-muted);
    margin-bottom: 6px;
}

.tos-ch__v {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--tos-ink);
    letter-spacing: -.01em;
    word-break: break-word;
}

.tos-ch__note {
    font-size: 13px;
    color: var(--tos-muted);
    margin-top: 5px;
}

/* Form */
.tos-formwrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: start;
}

.tos-form {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 40px;
}

.tos-field {
    margin-bottom: 20px;
}

.tos-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--tos-ink);
    margin-bottom: 8px;
    letter-spacing: -.005em;
}

.tos-field label span {
    color: var(--tos-gold-ink);
}

.tos-input,
.tos-textarea,
.tos-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--tos-line);
    border-radius: var(--tos-r);
    background: var(--tos-surface);
    font-family: inherit;
    font-size: 15px;
    color: var(--tos-ink);
    transition: all .2s var(--tos-ease);
    outline: none;
}

.tos-textarea {
    resize: vertical;
    min-height: 130px;
}

.tos-input:focus,
.tos-textarea:focus,
.tos-select:focus {
    border-color: var(--tos-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 40, 26, .07);
}

.tos-input::placeholder,
.tos-textarea::placeholder {
    color: #A8B4AE;
}

.tos-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tos-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.55;
    color: var(--tos-muted);
    margin-top: 18px;
}

.tos-note i {
    color: var(--tos-green);
    margin-top: 2px;
}

/* Bilgi kutusu (form yanı) */
.tos-aside {
    background: var(--tos-green);
    border-radius: var(--tos-r-lg);
    padding: 38px 34px;
    color: #fff;
}

.tos-aside h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 14px;
}

.tos-aside p {
    color: rgba(255, 255, 255, .68);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0 0 26px;
}

.tos-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.tos-hours li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14.5px;
    color: rgba(255, 255, 255, .72);
}

.tos-hours li:last-child {
    border-bottom: 0;
}

.tos-hours b {
    color: #fff;
    font-weight: 600;
}

/* Uyarı kutusu */
.tos-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 18px;
    border-radius: var(--tos-r);
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 26px;
}

.tos-alert i {
    margin-top: 2px;
    flex-shrink: 0;
}

.tos-alert--ok {
    background: #ECFDF3;
    border: 1px solid #A6F4C5;
    color: #05603A;
}

.tos-alert--err {
    background: #FEF3F2;
    border: 1px solid #FECDCA;
    color: #B42318;
}

/* Harita */
.tos-map {
    border-radius: var(--tos-r-lg);
    overflow: hidden;
    border: 1px solid var(--tos-line);
    line-height: 0;
}

.tos-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(1) contrast(1.05);
    transition: filter .4s var(--tos-ease);
}

.tos-map:hover iframe {
    filter: none;
}

/* ================================================================ SSS === */

.tos-faq {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.tos-q {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    overflow: hidden;
    transition: box-shadow .25s var(--tos-ease);
}

.tos-q.is-open {
    box-shadow: var(--tos-sh);
    border-color: transparent;
}

.tos-q__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: none;
    border: 0;
    text-align: left;
    font-family: inherit;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--tos-ink);
    cursor: pointer;
    letter-spacing: -.01em;
}

.tos-q__ico {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: var(--tos-r);
    background: var(--tos-surface);
    color: var(--tos-green);
    font-size: 12px;
    flex-shrink: 0;
    transition: all .28s var(--tos-ease);
}

.tos-q.is-open .tos-q__ico {
    background: var(--tos-green);
    color: #fff;
    transform: rotate(180deg);
}

.tos-q__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .34s var(--tos-ease);
}

.tos-q__body p {
    padding: 0 26px 24px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================= FOOTER === */
/* 27.08.2026: koyu yeşil bloktan AÇIK footer'a geçildi (trinkoto referansı).
   Footer sayfanın en büyük tek renk alanıydı; "her yer koyu" hissinin
   hero'dan sonraki ikinci kaynağıydı. Artık kırık beyaz zemin, gri sütun
   başlıkları, ince ayraçlar — renk yalnızca ikonlarda ve butonda. */

.tos-footer {
    background: #F7FAF8;
    border-top: 1px solid var(--tos-line);
}

.tos-footer__main {
    padding: 68px 0 52px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.tos-footer__logo img {
    /* Açık zeminde logo kendi renginde kalır — eski koyu footer'daki
       brightness(0) invert(1) beyazlatması kaldırıldı. */
    height: 38px;
    width: auto;
    margin-bottom: 20px;
}

/* .tos-scope p (0,1,1) tek sınıflı kuralı eziyor; özgüllük .tos-footer ile
   eşitlendi (bölüm 5, özgüllük tuzağı). */
.tos-footer .tos-footer__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--tos-body);
    margin: 0 0 24px;
    max-width: 40ch;
}

.tos-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 13px;
}

.tos-footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--tos-body);
}

.tos-footer__contact i {
    color: var(--tos-acc-ink);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.tos-footer__contact a {
    color: var(--tos-body);
    text-decoration: none;
    transition: color .2s;
}

.tos-footer__contact a:hover {
    color: var(--tos-acc-ink);
}

/* Sütun başlığı: küçük, harf aralıklı, gri. Eski yeşil alt çizgi rozeti
   kaldırıldı — dört sütunda dört çizgi gereksiz gürültü yapıyordu. */
.tos-footer__title {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--tos-muted);
    margin: 0 0 22px;
}

.tos-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.tos-footer__links a {
    font-size: 14.5px;
    color: var(--tos-body);
    text-decoration: none;
    transition: color .2s var(--tos-ease), transform .2s var(--tos-ease);
    display: inline-block;
}

.tos-footer__links a:hover {
    color: var(--tos-acc-ink);
    transform: translateX(4px);
}

.tos-footer__cta {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 26px 24px;
    box-shadow: 0 2px 10px rgba(14, 26, 22, .04);
}

.tos-footer__cta h4 {
    font-size: 17px;
    color: var(--tos-ink);
    margin: 0 0 8px;
}

.tos-footer .tos-footer__cta p {
    font-size: 14px;
    color: var(--tos-body);
    margin: 0 0 20px;
    line-height: 1.6;
}

.tos-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.tos-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: var(--tos-r);
    background: #fff;
    border: 1px solid var(--tos-line);
    color: var(--tos-body);
    text-decoration: none;
    font-size: 15px;
    transition: all .25s var(--tos-ease);
}

.tos-social a:hover {
    background: var(--tos-acc);
    border-color: var(--tos-acc);
    color: var(--tos-green-2);
    transform: translateY(-3px);
}

.tos-footer__bar {
    border-top: 1px solid var(--tos-line);
    padding: 22px 0;
}

.tos-footer__bar-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.tos-footer .tos-footer__bar p {
    margin: 0;
    font-size: 13.5px;
    color: var(--tos-muted);
}

.tos-footer__bar a {
    color: var(--tos-body);
    text-decoration: none;
    font-weight: 600;
}

.tos-footer__bar a:hover {
    color: var(--tos-acc-ink);
}


/* ==========================================================================
   MERKEZ / OFİS BANDI (anasayfa)
   Devralınan "Neden biz" bölümünün yerine geçti: o dört madde kıyas
   tablosuyla aynı şeyi söylüyordu. Site yerel bir işletmenin sitesi ama
   hiçbir yerde "buradayız, gelin" demiyordu — bu bant onu söylüyor.
   ========================================================================== */

.hz-ofis {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 60px;
    align-items: center;
}

.hz-ofis h2 {
    margin-bottom: 16px;
}

.hz-ofis__lead {
    font-size: 16px;
    line-height: 1.72;
    color: var(--tos-body);
    margin: 0 0 28px;
    max-width: 52ch;
}

.hz-ofis__saat {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-ofis__saat li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--tos-line);
    font-size: 13.5px;
    color: var(--tos-body);
}

.hz-ofis__saat i {
    color: var(--tos-acc-ink);
    font-size: 12px;
}

.hz-ofis__saat b {
    color: var(--tos-ink);
    font-weight: 700;
}

/* --- adres kartı --- */
.hz-ofis__kart {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 14px 36px rgba(6, 40, 26, .07);
}

.hz-ofis__s {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--tos-line);
}

.hz-ofis__s:first-child {
    padding-top: 0;
}

.hz-ofis__s:last-of-type {
    border-bottom: 0;
    padding-bottom: 22px;
}

.hz-ofis__s > i {
    color: var(--tos-acc-ink);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.hz-ofis__k {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tos-muted);
    margin-bottom: 5px;
}

.hz-ofis__v {
    font-size: 15px;
    line-height: 1.6;
    color: var(--tos-ink);
    font-weight: 500;
}

.hz-ofis__v a {
    color: var(--tos-ink);
    text-decoration: none;
}

.hz-ofis__v a:hover {
    color: var(--tos-acc-ink);
}

.hz-ofis__yol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--tos-r-btn);
    background: var(--tos-acc);
    color: var(--tos-green-2);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background .22s var(--tos-ease), transform .22s var(--tos-ease);
}

.hz-ofis__yol:hover {
    background: var(--tos-acc-2);
    color: var(--tos-green-2);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .hz-ofis {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hz-ofis__lead {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .hz-ofis__kart {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   KIYAS TABLOSU (anasayfa)
   Devralınan "müşteri yorumları" bölümünün yerine geçti: o yorumlar VUUM
   için yazılmış, isimli kişilere atfedilmiş metinlerdi. Uydurma sosyal kanıt
   yerine, satış yollarını karşılaştıran nesnel bir tablo konuldu.
   ========================================================================== */

.hz-kiyas {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--tos-line);
    background: #fff;
}

.hz-kiyas table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.hz-kiyas th,
.hz-kiyas td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--tos-line);
    font-size: 15px;
    vertical-align: middle;
}

.hz-kiyas tbody tr:last-child th,
.hz-kiyas tbody tr:last-child td {
    border-bottom: 0;
}

.hz-kiyas thead th {
    padding-top: 24px;
    padding-bottom: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tos-muted);
    background: var(--tos-surface);
}

.hz-kiyas tbody th {
    font-weight: 600;
    color: var(--tos-ink);
    width: 30%;
}

.hz-kiyas td {
    color: var(--tos-body);
}

/* Bizim sütun: vurgulu */
.hz-kiyas .is-biz {
    background: var(--tos-acc-wash);
    color: var(--tos-ink);
    font-weight: 700;
}

.hz-kiyas thead .is-biz {
    background: var(--tos-green);
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.hz-kiyas tbody tr:last-child .is-biz {
    border-radius: 0 0 12px 12px;
}

.hz-kiyas .is-biz i {
    color: var(--tos-acc-ink);
    margin-right: 8px;
    font-size: 12px;
}

.hz-kiyas__not {
    margin: 18px 0 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--tos-muted);
}

@media (max-width: 767px) {
    .hz-kiyas th,
    .hz-kiyas td {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* ========================================================== RESPONSIVE == */

@media (max-width: 1280px) {
    .tos-topbar__hours {
        display: none;
    }
}

@media (max-width: 1100px) {
    .tos-header__in {
        gap: 18px;
    }

    .tos-nav__link {
        padding: 10px 11px;
        font-size: 14.5px;
    }

    .tos-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .tos-section {
        padding: 68px 0;
    }

    .tos-nav {
        display: none;
    }

    .tos-burger {
        display: flex;
    }

    .tos-header__act {
        margin-left: auto;
    }

    /* Şeritte yalnızca iletişim kanalları kalır, adres taşıyordu */
    .tos-topbar__loc {
        display: none;
    }

    .tos-topbar__in {
        justify-content: center;
    }

    .tos-topbar__act {
        gap: 18px;
    }

    .tos-logo img {
        height: 40px;
    }

    .tos-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tos-split--rev .tos-split__media {
        order: 0;
    }

    .tos-grid--3,
    .tos-grid--4,
    .tos-channels {
        grid-template-columns: repeat(2, 1fr);
    }

    .tos-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0;
    }

    .tos-step:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .tos-formwrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tos-stats__in {
        grid-template-columns: repeat(2, 1fr);
    }

    .tos-stat:nth-child(3) {
        border-left: 0;
    }

    .tos-stat:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
}

@media (max-width: 640px) {
    .tos-wrap {
        padding: 0 18px;
    }

    .tos-section {
        padding: 56px 0;
    }

    .tos-header__in {
        height: 70px;
    }

    .tos-logo img {
        height: 32px;
    }

    /* CTA mobilde de kalır — sitenin tek dönüşüm hedefi bu buton.
       Yalnızca etiket kısalır ve ok düşer. */
    .tos-header__act .tos-btn .tos-btn__uzun,
    .tos-header__act .tos-btn i {
        display: none;
    }

    .tos-header__act .tos-btn .tos-btn__kisa {
        display: inline;
    }

    .tos-phero__in {
        padding: 56px 0 62px;
    }

    .tos-grid--3,
    .tos-grid--4,
    .tos-grid--2,
    .tos-channels,
    .tos-row2 {
        grid-template-columns: 1fr;
    }

    .tos-steps {
        grid-template-columns: 1fr;
    }

    .tos-step {
        border-left: 0;
        padding: 0 0 0 20px;
        border-left: 2px solid rgba(255, 255, 255, .14);
    }

    .tos-form {
        padding: 26px 20px;
    }

    .tos-aside {
        padding: 28px 22px;
    }

    .tos-cta__in {
        flex-direction: column;
        align-items: flex-start;
    }

    .tos-split__media::before {
        display: none;
    }

    /* Site ve Kurumsal yan yana; marka bloğu ile CTA tam genişlik */
    .tos-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
        padding: 48px 0 38px;
    }

    .tos-footer__main > *:first-child,
    .tos-footer__main > *:last-child {
        grid-column: 1 / -1;
    }

    .tos-map iframe {
        height: 300px;
    }
}


/* ==========================================================================
   KURUMSAL BELGE SAYFASI (sayfa-detay)
   ========================================================================== */

/* Görselsiz, daha kısa sayfa başlığı */
.tos-phero--slim .tos-phero__in {
    padding: 62px 0 66px;
}

.tos-doc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 60px;
    align-items: start;
}

/* --- Metin tipografisi (CKEditor çıktısı) --- */
.tos-prose {
    font-size: 16px;
    line-height: 1.8;
    color: var(--tos-body);
    max-width: 74ch;
}

.tos-prose>*:first-child {
    margin-top: 0;
}

.tos-prose h1,
.tos-prose h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    color: var(--tos-ink);
    margin: 44px 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--tos-line);
    position: relative;
}

.tos-prose h1::after,
.tos-prose h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 3px;
    background: var(--tos-gold-ink);
}

.tos-prose h3,
.tos-prose h4 {
    font-size: 18px;
    color: var(--tos-ink);
    margin: 32px 0 12px;
    font-weight: 700;
}

.tos-prose p {
    margin: 0 0 18px;
}

.tos-prose ul,
.tos-prose ol {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.tos-prose ol {
    counter-reset: tosli;
}

.tos-prose li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 11px;
    line-height: 1.75;
}

.tos-prose ul>li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--tos-gold-ink);
}

.tos-prose ol>li {
    counter-increment: tosli;
}

.tos-prose ol>li::before {
    content: counter(tosli) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--tos-gold-ink);
    font-size: 14px;
}

.tos-prose a {
    color: var(--tos-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--tos-gold-ink);
}

.tos-prose a:hover {
    color: var(--tos-gold-ink);
}

.tos-prose strong,
.tos-prose b {
    color: var(--tos-ink);
    font-weight: 700;
}

.tos-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 22px;
    font-size: 15px;
}

.tos-prose th,
.tos-prose td {
    border: 1px solid var(--tos-line);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.tos-prose th {
    background: var(--tos-surface);
    color: var(--tos-ink);
    font-weight: 700;
}

.tos-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--tos-r);
}

.tos-prose blockquote {
    margin: 0 0 20px;
    padding: 16px 22px;
    background: var(--tos-surface);
    border-left: 3px solid var(--tos-gold-ink);
    border-radius: 0 var(--tos-r) var(--tos-r) 0;
}

.tos-prose blockquote p:last-child {
    margin-bottom: 0;
}

.tos-prose--center {
    max-width: 62ch;
    margin: 0 auto;
    text-align: center;
}

/* --- Yan sütun --- */
.tos-doc__side {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

/* Kurumsal sayfa kenar kutusu — koyu yeşil dolgudan açık yeşil yıkamaya
   çevrildi (27.08.2026). Yanındaki .tos-doc__nav zaten beyaz kart; ikisi
   yan yana koyu/açık diye çakışıyordu. */
.tos-doc__box {
    background: var(--tos-acc-wash);
    border: 1px solid rgba(37, 180, 100, .22);
    border-radius: var(--tos-r-lg);
    padding: 28px 24px;
}

.tos-doc__box h3 {
    color: var(--tos-ink);
    font-size: 17px;
    margin-bottom: 12px;
}

.tos-doc__box p {
    color: var(--tos-body);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.tos-doc__nav {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 24px;
}

.tos-doc__nav-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tos-muted);
    margin: 0 0 16px;
}

.tos-doc__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.tos-doc__nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: var(--tos-r);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tos-body);
    text-decoration: none;
    transition: all .2s var(--tos-ease);
}

.tos-doc__nav a i {
    font-size: 12px;
    color: var(--tos-muted);
    transition: color .2s;
}

.tos-doc__nav a:hover {
    background: var(--tos-surface);
    color: var(--tos-green);
}

.tos-doc__nav a:hover i {
    color: var(--tos-gold-ink);
}

/* --- Onay ekranı (randevu) --- */
.tos-done {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.tos-done__ico {
    width: 76px;
    height: 76px;
    margin: 0 auto 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ECFDF3;
    border: 2px solid #A6F4C5;
    color: #12B76A;
    font-size: 30px;
}

.tos-done__act {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

@media (max-width: 991px) {
    .tos-doc {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .tos-doc__side {
        position: static;
    }
}

@media (max-width: 640px) {
    .tos-prose {
        font-size: 15.5px;
    }

    .tos-doc__box,
    .tos-doc__nav {
        padding: 22px 18px;
    }
}


/* ==========================================================================
   ANASAYFA
   ========================================================================== */

/* ------------------------------------------------------------------ HERO */
/* Düzen 27.08.2026'da trinkoto.com referansına çevrildi (müşteri talebi).
   Eskiden: koyu yeşil blok + solda söz / sağda dikey kart. Fotoğraf
   opacity .2 + luminosity ile neredeyse yok oluyor, geriye ağır bir koyu
   yeşil alan kalıyordu — "her yer çok koyu" şikâyetinin ana kaynağıydı.

   Bugün: fotoğraf tam opak ve renkli, perde yalnızca metni okutacak kadar.
   Söz ortalanmış, altında YATAY beyaz konsol.
   overflow gizlenemez: açılır liste paneli konsolun dışına taşıyor. */
.hz {
    position: relative;
    background: #0E241A;
    /* fotoğraf yüklenene kadarki zemin */
    isolation: isolate;
}

.hz__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hz__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 50%;
    /* Fotoğraf yüksek anahtarlı (cam cephe metin bandının tam arkasında
       patlıyor); perdeyi güçlendirmek yerine görselin kendisi bir tık
       kısılıyor — bölüm koyulaşmadan beyaz metin okunur hâle geliyor. */
    filter: brightness(.92) saturate(1.05);
}

/* Perde: metnin arkasında koyu, kenarlara doğru açılıyor.
   Ayrı katman değil — .hz overflow gizleyemiyor, konumlanmış bir perde
   div'i sayfaya 140px yatay kaydırma ekliyordu. Gradyan yığını taşamaz. */
.hz__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(104% 94% at 50% 31%,
            rgba(6, 40, 26, .93) 0%,
            rgba(6, 40, 26, .84) 28%,
            rgba(6, 40, 26, .56) 56%,
            rgba(6, 40, 26, .12) 100%),
        linear-gradient(180deg,
            rgba(6, 40, 26, .66) 0%,
            rgba(6, 40, 26, .30) 54%,
            rgba(6, 40, 26, .28) 100%);
}

.hz__in {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 92px 0 100px;
}

/* ------------------------------------------------------------- söz ----- */
.hz__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(6, 40, 26, .42);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tos-acc-lt);
    margin-bottom: 24px;
}

.hz__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tos-acc);
    box-shadow: 0 0 0 4px rgba(37, 180, 100, .26);
}

.hz__title {
    font-size: clamp(36px, 5.2vw, 66px);
    line-height: 1.07;
    color: #fff;
    margin: 0 0 22px;
    max-width: 19ch;
    text-shadow: 0 2px 6px rgba(6, 40, 26, .4), 0 4px 34px rgba(6, 40, 26, .55);
}

.hz__title em {
    font-style: normal;
    color: var(--tos-acc-lt);
}

/* .tos-scope p (0,1,1) tek sınıflı kuralı eziyor — koyu zeminde metin
   gövde grisine düşüyordu (bölüm 5, özgüllük tuzağı). İki sınıfla yazıldı. */
.hz .hz__sub {
    font-size: 17.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .95);
    max-width: 66ch;
    margin: 0 0 36px;
    text-shadow: 0 1px 3px rgba(6, 40, 26, .55), 0 2px 22px rgba(6, 40, 26, .6);
}

/* -------------------------------------------------- yatay konsol kartı -- */
.hz-kart {
    width: 100%;
    max-width: 960px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 74px rgba(6, 40, 26, .32);
    text-align: left;
}

.hz-console {
    display: grid;
    grid-template-columns: 1fr 1fr minmax(206px, .8fr);
    gap: 14px;
    align-items: end;
    padding: 18px;
}

.hz-fld {
    position: relative;
    min-width: 0;
}

.hz-fld__lbl {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tos-muted);
    margin: 0 0 8px 3px;
    transition: color .2s var(--tos-ease);
}

.hz-fld.is-filled .hz-fld__lbl,
.hz-fld:focus-within .hz-fld__lbl {
    color: var(--tos-acc-ink);
}

/* Alanın solundaki ikon — tos.js selecti .tos-ss sarmalına alıyor,
   ikon .hz-fld'ye göre konumlanıyor (bottom ile, etiket yüksekliğinden
   bağımsız kalsın diye). */
.hz-fld__ico {
    position: absolute;
    left: 17px;
    bottom: 21px;
    z-index: 2;
    font-size: 15px;
    color: var(--tos-muted);
    pointer-events: none;
    transition: color .2s var(--tos-ease);
}

.hz-fld.is-filled .hz-fld__ico {
    color: var(--tos-acc-ink);
}

.hz-fld.is-locked .hz-fld__ico {
    color: #C3CDC8;
}

/* Açılır listenin tetikleyicisi — asıl görünen alan bu */
.hz-fld .tos-ss__btn {
    width: 100%;
    height: 58px;
    padding: 0 16px 0 45px;
    border: 1.5px solid var(--tos-line);
    border-radius: 12px;
    background: var(--tos-surface);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--tos-ink);
    transition: border-color .2s var(--tos-ease),
                background .2s var(--tos-ease),
                box-shadow .2s var(--tos-ease);
}

.hz-fld .tos-ss__btn:hover:not(:disabled) {
    border-color: var(--tos-acc);
    background: #fff;
}

.hz-fld .tos-ss.is-open .tos-ss__btn {
    border-color: var(--tos-acc);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 180, 100, .16);
}

.hz-fld .tos-ss.is-empty .tos-ss__btn {
    color: var(--tos-muted);
    font-weight: 500;
}

.hz-fld .tos-ss__car {
    color: var(--tos-acc-ink);
}

/* --- kilitli / yükleniyor --- */
.hz-fld.is-locked .tos-ss__btn {
    cursor: not-allowed;
    background: var(--tos-surface-2);
    border-color: var(--tos-line);
    color: var(--tos-muted);
}

.hz-fld__spin {
    position: absolute;
    right: 17px;
    bottom: 20px;
    display: none;
    color: var(--tos-acc-ink);
    font-size: 14px;
}

.hz-fld.is-loading .hz-fld__spin {
    display: block;
}

.hz-fld.is-loading .tos-ss__car {
    opacity: 0;
}

.hz-fld.is-loading .tos-ss__btn {
    cursor: wait;
}

/* --- gönder --- */
/* Dolgu --tos-acc, yazı koyu yeşil: bölüm 5'teki aksan kuralı.
   Beyaz yazı bu yeşilin üstünde 2.6:1'de kalıyor. */
.hz-console__go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 12px;
    background: var(--tos-acc);
    color: var(--tos-green-2);
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: background .22s var(--tos-ease),
                transform .22s var(--tos-ease),
                box-shadow .22s var(--tos-ease);
}

.hz-console__go i {
    font-size: 14px;
    transition: transform .22s var(--tos-ease);
}

.hz-console__go:hover {
    background: var(--tos-acc-2);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 180, 100, .36);
}

.hz-console__go:hover i {
    transform: translateX(4px);
}

.hz-console__go:active {
    transform: translateY(0);
}

/* --------------------------------------------- konsol altı: ikinci yol -- */
/* Formu doldurmak istemeyen doğrudan arasın. Referans sitede de konsolun
   altında iki düz metin bağlantısı var. */
.hz__act {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 30px;
}

.hz__lnk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 14px rgba(6, 40, 26, .5);
    transition: color .2s var(--tos-ease);
}

.hz__lnk-ico {
    color: var(--tos-acc-lt);
    font-size: 16px;
}

.hz__lnk-ok {
    font-size: 12px;
    transition: transform .22s var(--tos-ease);
}

.hz__lnk:hover {
    color: var(--tos-acc-lt);
}

.hz__lnk:hover .hz__lnk-ok {
    transform: translateX(4px);
}

.hz__act-sep {
    color: rgba(255, 255, 255, .38);
    font-size: 14px;
}

/* --------------------------------------------------------- mikro güven -- */
/* Eskiden kartın içindeydi; yatay konsolda satır kaplıyordu. */
.hz__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 22px;
    margin-top: 24px;
}

.hz__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 1px 12px rgba(6, 40, 26, .5);
}

.hz__trust i {
    color: var(--tos-acc-lt);
    font-size: 11.5px;
}

/* -------------------------------------------------------------- SÜREÇ */

/* Kartlar: rozet + başlık + metin. Eskiden üstten ince çizgili düz
   sütunlardı; çizgi kalabalığı yaratmadan hacim vermek için karta çevrildi. */
.hz-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hz-flow__i {
    position: relative;
    padding: 30px 26px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--tos-line);
    overflow: hidden;
    transition: transform .28s var(--tos-ease),
                box-shadow .28s var(--tos-ease),
                border-color .28s var(--tos-ease);
}

/* Filigran numara — sağ üstte, dekoratif */
.hz-flow__i::after {
    content: attr(data-no);
    position: absolute;
    top: -14px;
    right: 6px;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    color: var(--tos-surface-2);
    pointer-events: none;
    transition: color .28s var(--tos-ease);
}

.hz-flow__i:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 180, 100, .4);
    box-shadow: 0 16px 38px rgba(6, 40, 26, .1);
}

.hz-flow__i:hover::after {
    color: var(--tos-acc-wash);
}

.hz-flow__n {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 13px;
    background: var(--tos-acc-wash);
    color: var(--tos-acc-ink);
    font-size: 17px;
    transition: background .28s var(--tos-ease), color .28s var(--tos-ease);
}

.hz-flow__i:hover .hz-flow__n {
    background: var(--tos-acc);
    color: var(--tos-green-2);
}

.hz-flow__i h3 {
    position: relative;
    z-index: 1;
    font-size: 17.5px;
    margin-bottom: 10px;
}

.hz-flow__i p {
    position: relative;
    z-index: 1;
    font-size: 14.5px;
    line-height: 1.68;
    margin: 0;
}
/* ------------------------------------------------------------ AL / SAT */

.hz-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.hz-duo__i {
    position: relative;
    display: block;
    border-radius: var(--tos-r-lg);
    overflow: hidden;
    background: var(--tos-green);
    text-decoration: none;
    isolation: isolate;
    min-height: 320px;
}

.hz-duo__img {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hz-duo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--tos-ease);
}

.hz-duo__i::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    /* Perde yalnızca metnin durduğu alt banda iniyor; üst yarı fotoğrafın
       kendi rengiyle kalıyor. Eskiden .94/.60/.30 idi ve kartlar tek renk
       koyu yeşil lekeler gibi duruyordu. */
    background: linear-gradient(0deg,
        rgba(6, 40, 26, .92) 0%,
        rgba(6, 40, 26, .58) 34%,
        rgba(6, 40, 26, .10) 68%,
        rgba(6, 40, 26, 0) 100%);
    transition: background .4s var(--tos-ease);
}

.hz-duo__i:hover .hz-duo__img img {
    transform: scale(1.06);
}

.hz-duo__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 30px;
}

.hz-duo__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--tos-gold);
    color: var(--tos-green-2);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tos-scope .hz-duo__i h3 {
    color: #fff;
    font-size: clamp(20px, 2.2vw, 25px);
    margin-bottom: 9px;
}

.hz-duo__i p {
    color: rgba(255, 255, 255, .72);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 40ch;
}

.hz-duo__go {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
}

.hz-duo__go i {
    font-size: 12px;
    color: var(--tos-gold-lt);
    transition: transform .25s var(--tos-ease);
}

.hz-duo__i:hover .hz-duo__go i {
    transform: translateX(5px);
}

/* --------------------------------------------------------- BÖLÜM BAŞI */

.hz-secbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

/* ------------------------------------------------------------- VİTRİN */

.hz-cars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hz-car {
    display: block;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all .3s var(--tos-ease);
}

.hz-car:hover {
    border-color: transparent;
    box-shadow: var(--tos-sh-lg);
    transform: translateY(-5px);
}

.hz-car__img {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--tos-surface);
}

.hz-car__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--tos-ease);
}

.hz-car:hover .hz-car__img img {
    transform: scale(1.05);
}

.hz-car__body {
    padding: 20px;
}

.hz-car__body h3 {
    font-size: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hz-car__spec {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 13px;
    color: var(--tos-muted);
    margin: 0 0 14px;
}

.hz-car__spec span {
    position: relative;
}

.hz-car__spec span + span::before {
    content: '·';
    position: absolute;
    left: -9px;
}

.hz-car__price {
    display: block;
    font-size: 19px;
    font-weight: 800;
    color: var(--tos-green);
    letter-spacing: -.02em;
}

/* ------------------------------------------------------------ YORUMLAR */

.hz-says {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hz-say {
    margin: 0;
    padding: 30px 28px;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    display: flex;
    flex-direction: column;
    transition: all .3s var(--tos-ease);
}

.hz-say:hover {
    border-color: transparent;
    box-shadow: var(--tos-sh-lg);
    transform: translateY(-4px);
}

.hz-say__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.hz-say__stars i {
    font-size: 13px;
    color: #F5A623;
}

.hz-say blockquote {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--tos-body);
    flex: 1;
}

.hz-say figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--tos-line);
}

.hz-say__av {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tos-green);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .02em;
    flex-shrink: 0;
}

.hz-say__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--tos-ink);
}

/* ------------------------------------------------------------ SSS ALTI */

.hz-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--tos-line);
}

.hz-more p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--tos-ink);
}

/* ------------------------------------------------------------ MOBİL -- */

@media (max-width: 1100px) {
    .hz-console {
        grid-template-columns: 1fr 1fr minmax(184px, .74fr);
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .hz__in {
        padding: 72px 24px 80px;
    }

    .hz__bg img {
        object-position: center;
    }

    .hz__bg::after {
        background:
            radial-gradient(140% 90% at 50% 34%,
                rgba(6, 40, 26, .72) 0%,
                rgba(6, 40, 26, .40) 58%,
                rgba(6, 40, 26, .22) 100%),
            linear-gradient(180deg,
                rgba(6, 40, 26, .5) 0%,
                rgba(6, 40, 26, .12) 36%,
                rgba(6, 40, 26, .42) 100%);
    }

    .hz__sub {
        font-size: 16.5px;
        margin-bottom: 30px;
    }

    .hz-flow,
    .hz-cars {
        grid-template-columns: repeat(2, 1fr);
    }

    .hz-says {
        grid-template-columns: repeat(2, 1fr);
    }

    .hz-duo {
        grid-template-columns: 1fr;
    }
}

/* Konsol üç sütunda sıkışmaya başlıyor: alanlar yan yana, buton altta
   ikisini birden kaplıyor. */
@media (max-width: 900px) {
    .hz-console {
        grid-template-columns: 1fr 1fr;
    }

    .hz-console__go {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .hz-flow,
    .hz-cars,
    .hz-says {
        grid-template-columns: 1fr;
    }

    .hz-flow {
        gap: 22px;
    }

    .hz-secbar {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hz-console {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hz__in {
        padding: 56px 18px 64px;
    }

    .hz__badge {
        font-size: 11px;
        letter-spacing: .07em;
        padding: 7px 14px 7px 11px;
        margin-bottom: 20px;
    }

    .hz__title {
        max-width: none;
    }

    .hz__sub {
        font-size: 15.5px;
        margin-bottom: 26px;
    }

    .hz-kart {
        border-radius: 16px;
    }

    .hz-console {
        padding: 14px;
        gap: 12px;
    }

    .hz-fld .tos-ss__btn {
        height: 54px;
        font-size: 15px;
    }

    .hz-fld__ico {
        bottom: 19px;
    }

    .hz-fld__spin {
        bottom: 18px;
    }

    .hz-console__go {
        height: 54px;
        font-size: 15px;
    }

    /* Tek sütunda araya ayraç koymak satır kalabalığı yapıyor */
    .hz__act {
        flex-direction: column;
        gap: 14px;
        margin-top: 26px;
    }

    .hz__act-sep {
        display: none;
    }

    .hz__trust {
        gap: 8px 16px;
        margin-top: 20px;
    }

    .hz__trust span {
        font-size: 12px;
    }
}

/* ==========================================================================
   ÖZEL AÇILIR LİSTE (tos.js ile eşleşir)
   Native <select> gizli kalır; tetikleyici + panel onun üstüne kurulur.
   ========================================================================== */

.tos-ss {
    position: relative;
}

/* Native select: erişilebilirlik için DOM'da, görsel olarak gizli */
.tos-ss__native {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

/* --- tetikleyici --- */
.tos-ss__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 2px 4px 2px 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--tos-ink);
    text-align: left;
    cursor: pointer;
    outline: none;
}

.tos-ss.is-empty .tos-ss__btn {
    color: #99A6A0;
    font-weight: 600;
}

.tos-ss__btn:disabled {
    cursor: not-allowed;
}

.tos-ss__val {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tos-ss__car {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--tos-muted);
    transition: transform .26s var(--tos-ease), color .22s;
}

.tos-ss.is-open .tos-ss__car {
    transform: rotate(180deg);
    color: var(--tos-green);
}

/* --- panel --- */
.tos-ss__pop {
    position: absolute;
    z-index: 60;
    top: calc(100% + 14px);
    left: -14px;
    right: -14px;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(6, 40, 26, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s var(--tos-ease), transform .2s var(--tos-ease), visibility .2s;
    overflow: hidden;
}

.tos-ss.is-open .tos-ss__pop {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* --- arama --- */
.tos-ss__search {
    position: relative;
    padding: 12px 12px 10px;
    border-bottom: 1px solid var(--tos-line);
}

.tos-ss__search i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--tos-muted);
    pointer-events: none;
}

.tos-ss__search input {
    width: 100%;
    padding: 9px 12px 9px 32px;
    border: 1.5px solid var(--tos-line);
    border-radius: 8px;
    background: var(--tos-surface);
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--tos-ink);
    outline: none;
    transition: all .2s var(--tos-ease);
}

.tos-ss__search input:focus {
    border-color: var(--tos-green);
    background: #fff;
}

/* --- seçenekler --- */
.tos-ss__list {
    list-style: none;
    margin: 0;
    padding: 6px;
    max-height: 268px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tos-ss__opt {
    padding: 10px 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tos-body);
    cursor: pointer;
    transition: background .14s, color .14s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tos-ss__opt.is-ph {
    display: none;
}

.tos-ss__opt:hover,
.tos-ss__opt.is-cur {
    background: var(--tos-surface);
    color: var(--tos-ink);
}

.tos-ss__opt.is-sel {
    background: var(--tos-gold-wash);
    color: var(--tos-gold-ink);
    font-weight: 700;
}

.tos-ss__opt.is-sel::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
}

.tos-ss__empty {
    display: none;
    padding: 22px 16px;
    text-align: center;
    font-size: 14px;
    color: var(--tos-muted);
}

/* kaydırma çubuğu */
.tos-ss__list::-webkit-scrollbar {
    width: 8px;
}

.tos-ss__list::-webkit-scrollbar-track {
    background: transparent;
}

.tos-ss__list::-webkit-scrollbar-thumb {
    background: #D8DEE7;
    border-radius: 8px;
    border: 2px solid #fff;
}

.tos-ss__list::-webkit-scrollbar-thumb:hover {
    background: #C2CAD6;
}

/* --- konsol içindeki uyarlamalar --- */
.hz-fld .tos-ss__pop {
    left: -22px;
    right: -22px;
}

.hz-fld.is-loading .tos-ss__car {
    opacity: 0;
}

.hz-fld.is-locked .tos-ss__btn {
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .tos-ss__pop,
    .hz-fld .tos-ss__pop {
        left: -8px;
        right: -8px;
    }

    .tos-ss__list {
        max-height: 240px;
    }
}


/* ==========================================================================
   DEĞERLEME HUNİSİ
   ========================================================================== */

/* ------------------------------------------------------- üst başlık bandı */
/* AÇIK zemin. Eskiden koyu yeşildi; site genelinde biriken koyu alanların
   en büyüklerinden biriydi (huninin dört sayfasında birden görünüyor).
   Koyu alan artık yalnızca anasayfa hero'su ve footer. */

.dg-top {
    background: #fff;
    border-bottom: 1px solid var(--tos-line);
    padding: 34px 0 0;
    position: relative;
    overflow: hidden;
}

/* Marka hâlesi — açık zeminde çok hafif */
.dg-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 84% 20%,
            rgba(37, 180, 100, .09) 0%,
            rgba(37, 180, 100, 0) 46%);
    pointer-events: none;
}

.dg-top > .tos-wrap {
    position: relative;
    z-index: 1;
}

.dg-top__head {
    max-width: 680px;
    margin: 0 auto 22px;
    text-align: center;
}

.dg-top__badge {
    display: inline-block;
    padding: 5px 13px;
    border: 1px solid rgba(37, 180, 100, .3);
    border-radius: 100px;
    background: var(--tos-acc-wash);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tos-acc-ink);
    margin-bottom: 13px;
}

.dg-top__title {
    font-size: clamp(25px, 2.7vw, 34px);
    color: var(--tos-ink);
    margin-bottom: 9px;
}

.dg-top__sub {
    font-size: 15px;
    line-height: 1.62;
    color: var(--tos-body);
    margin: 0;
}

/* --- adım göstergesi: rozetler --- */
.dg-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0 0 24px;
}

.dg-steps__i {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 8px;
    border-radius: 999px;
    background: var(--tos-surface);
    border: 1px solid var(--tos-line);
    transition: all .3s var(--tos-ease);
}

.dg-steps__dot {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--tos-line);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--tos-muted);
    flex-shrink: 0;
    transition: all .3s var(--tos-ease);
}

.dg-steps__lbl {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tos-muted);
    transition: color .3s var(--tos-ease);
    letter-spacing: -.005em;
    white-space: nowrap;
}

/* aktif */
.dg-steps__i.is-active {
    background: var(--tos-acc);
    border-color: var(--tos-acc);
}

.dg-steps__i.is-active .dg-steps__dot {
    background: rgba(6, 40, 26, .16);
    border-color: transparent;
    color: var(--tos-green-2);
}

.dg-steps__i.is-active .dg-steps__lbl {
    color: var(--tos-green-2);
    font-weight: 700;
}

/* tamamlanan */
.dg-steps__i.is-done {
    background: var(--tos-acc-wash);
    border-color: rgba(37, 180, 100, .32);
}

.dg-steps__i.is-done .dg-steps__dot {
    background: rgba(37, 180, 100, .18);
    border-color: transparent;
    color: var(--tos-acc-ink);
    font-size: 10px;
}

.dg-steps__i.is-done .dg-steps__lbl {
    color: var(--tos-acc-ink);
}
/* --- seçim çipleri --- */
.dg-chips:empty {
    display: none;
}

.dg-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}

.dg-chips:empty {
    display: none;
}

.dg-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 100px;
    background: var(--tos-surface);
    border: 1px solid var(--tos-line);
    font-size: 13px;
    font-weight: 600;
    color: var(--tos-ink);
}

.dg-chip em {
    font-style: normal;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--tos-acc-ink);
}

/* ------------------------------------------------------------ gövde ---- */

.dg-body {
    padding: 48px 0 72px;
    background: var(--tos-surface);
}

.dg-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 34px 32px;
    box-shadow: var(--tos-sh);
}

.dg-panels {
    position: relative;
    margin: 0;
}

/* --- panel başlığı --- */
.step-form-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.dg-panel__t h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--tos-ink);
    letter-spacing: -.025em;
    margin: 0 0 5px;
}

.dg-panel__t p {
    margin: 0;
    font-size: 14.5px;
    color: var(--tos-muted);
}

/* geri butonu */
.step-form-header .btn-left {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 9px 15px;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r);
    background: #fff;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tos-body);
    cursor: pointer;
    transition: all .22s var(--tos-ease);
}

.step-form-header .btn-left i {
    font-size: 11px;
    transition: transform .22s var(--tos-ease);
}

.step-form-header .btn-left:hover {
    border-color: var(--tos-green);
    color: var(--tos-green);
}

.step-form-header .btn-left:hover i {
    transform: translateX(-3px);
}

/* --- panel içi hızlı filtre ---
   48 marka / uzun donanım listelerinde kaydırarak aramak zor. Yalnızca
   seçenek sayısı eşiği aşınca görünür; huni mantığına dokunmaz, sadece
   <li> gizler/gösterir. */
.dg-filtre {
    position: relative;
    margin-bottom: 14px;
}

.dg-filtre i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--tos-muted);
    pointer-events: none;
}

.dg-filtre input {
    width: 100%;
    height: 46px;
    padding: 0 16px 0 40px;
    border: 1.5px solid var(--tos-line);
    border-radius: var(--tos-r);
    background: var(--tos-surface);
    font-family: inherit;
    font-size: 15px;
    color: var(--tos-ink);
    transition: border-color .2s var(--tos-ease), background .2s var(--tos-ease), box-shadow .2s var(--tos-ease);
}

.dg-filtre input::placeholder {
    color: var(--tos-muted);
}

.dg-filtre input:focus {
    outline: none;
    background: #fff;
    border-color: var(--tos-acc);
    box-shadow: 0 0 0 3px rgba(37, 180, 100, .16);
}

.dg-bos {
    display: none;
    padding: 26px 4px;
    text-align: center;
    font-size: 14.5px;
    color: var(--tos-muted);
}

.dg-bos.is-on {
    display: block;
}
/* --- seçenek listesi --- */
.form-list-select {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 468px;
    overflow-y: auto;
    overscroll-behavior: contain;
    /* hover'daki yükselme ve gölge kaydırma kabında kırpılmasın diye iç boşluk */
    padding: 6px 8px 6px 6px;
}

.form-list-select li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 17px;
    border: 1.5px solid var(--tos-line);
    border-radius: var(--tos-r);
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: var(--tos-ink);
    cursor: pointer;
    transition: all .2s var(--tos-ease);
    position: relative;
    line-height: 1.35;
}

.form-list-select li::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #C6D2CC;
    flex-shrink: 0;
    transition: all .2s var(--tos-ease);
}

.form-list-select li:hover {
    border-color: var(--tos-gold-ink);
    background: var(--tos-gold-wash);
    color: var(--tos-gold-ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 180, 100, .12);
}

.form-list-select li:hover::after {
    color: var(--tos-gold-ink);
    transform: translateX(3px);
}

.form-list-select .html-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* liste kaydırma çubuğu */
.form-list-select::-webkit-scrollbar {
    width: 8px;
}

.form-list-select::-webkit-scrollbar-track {
    background: transparent;
}

.form-list-select::-webkit-scrollbar-thumb {
    background: #DDE3EB;
    border-radius: 8px;
}



/* --- güvence şeridi --- */
.dg-assure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 30px;
    list-style: none;
    max-width: 900px;
    margin: 26px auto 0;
    padding: 0;
}

.dg-assure li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tos-body);
}

.dg-assure i {
    font-size: 13px;
    color: var(--tos-gold-ink);
}

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 991px) {
    .dg-steps__lbl {
        font-size: 12.5px;
    }

    .dg-steps__i {
        padding: 6px 13px 6px 7px;
    }
}

@media (max-width: 767px) {
    .dg-top {
        padding: 26px 0 0;
    }

    /* Dört rozet dar ekranda sığmıyor — etiket yalnızca aktifte kalır */
    .dg-steps__lbl {
        display: none;
    }

    .dg-steps__i.is-active .dg-steps__lbl {
        display: block;
        font-size: 12.5px;
    }

    .dg-steps__i {
        padding: 6px;
    }

    .dg-steps__i.is-active {
        padding: 6px 14px 6px 6px;
    }

    .dg-steps {
        padding-bottom: 18px;
    }

    .dg-body {
        padding: 30px 0 52px;
    }

    .dg-card {
        padding: 24px 18px;
        border-radius: var(--tos-r);
    }

    .loading-indicator {
        inset: -24px -18px;
    }

    .form-list-select {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-height: 380px;
    }

    .form-list-select li {
        padding: 13px 14px;
        font-size: 14px;
    }

    .step-form-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .dg-panel__t h4 {
        font-size: 18px;
    }

    .dg-panel__t p {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .form-list-select {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   DEĞERLEME — eski step.css kurallarının üzerine yazımlar
   step.css global olarak yükleniyor; aşağıdaki kurallar onun panel-kart,
   liste ve yükleniyor stillerini nötrler.
   ========================================================================== */

/* Panel artık kendi başına kart değil — .dg-card sarmalıyor.
   (step.css .step-form için padding/border/gölge veriyor) */
.dg-card .step-form {
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Marka panelinde step.css li'yi dikey flex yapıyor (0,3,1 özgüllük);
   kendi düzenimizi geri almak için aynı özgüllükle eziyoruz. */
.step-form[data-type="brands"] .form-list-select li,
.step-form[data-type="series"] .form-list-select li,
.step-form[data-type="models"] .form-list-select li,
.step-form[data-type="variants"] .form-list-select li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

/* Marka logosu gelirse metnin soluna otursun */
.step-form[data-type="brands"] .form-list-select li img {
    height: 26px;
    width: 32px;
    object-fit: contain;
    margin: 0 10px 0 0;
    flex-shrink: 0;
}

/* Seçili öğe — marka yeşili */
.form-list-select li.selected {
    background: var(--tos-green);
    border-color: var(--tos-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 180, 100, .26);
}

.form-list-select li.selected::after {
    color: #fff;
}

/* --- yükleniyor katmanı ---
   jQuery fadeIn() display:block verdiği için flex hizalamaya güvenilemez;
   iç kutu mutlak konumla ortalanıyor. */
.dg-card .loading-indicator {
    display: none;
    position: absolute;
    inset: -34px -32px;
    z-index: 20;
    padding: 0;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: var(--tos-r-lg);
}

.dg-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.dg-loading__ico {
    display: block;
    font-size: 28px;
    color: var(--tos-gold-ink);
    margin-bottom: 12px;
}

.dg-card .loading-indicator i {
    font-size: inherit;
    color: inherit;
}

.dg-loading__txt {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tos-body);
}

@media (max-width: 767px) {
    .dg-card .loading-indicator {
        inset: -24px -18px;
    }
}


/* ==========================================================================
   DEĞERLEME — form adımları (step-2 / step-4)
   ========================================================================== */

.dg-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

.dg-card--form {
    max-width: none;
    margin: 0;
    min-width: 0;
}

/* --- alan --- */
.dg-fld {
    margin-bottom: 24px;
}

.dg-fld:last-of-type {
    margin-bottom: 28px;
}

.dg-lbl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--tos-ink);
    margin-bottom: 9px;
    letter-spacing: -.005em;
}

.dg-lbl i {
    font-size: 12px;
    color: var(--tos-gold-ink);
}

.dg-lbl span {
    color: var(--tos-gold-ink);
}

.dg-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* --- girdi + son ek --- */
.dg-inp {
    position: relative;
}

.dg-inp .tos-input {
    padding-right: 58px;
    font-weight: 600;
}

.dg-inp__suf {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--tos-muted);
    pointer-events: none;
}

.dg-inp--tramer {
    margin-top: 14px;
}

.dg-inp .tos-input:disabled {
    background: #F0F4F2;
    color: #A8B4AE;
    cursor: not-allowed;
}

.dg-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 9px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--tos-muted);
}

.dg-hint i {
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- ikili seçim (tramer) --- */
.dg-seg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dg-seg__i {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.dg-seg__i input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dg-seg__i span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 16px;
    border: 1.5px solid var(--tos-line);
    border-radius: var(--tos-r);
    background: var(--tos-surface);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tos-body);
    transition: all .22s var(--tos-ease);
}

.dg-seg__i span i {
    font-size: 14px;
    color: #C6D2CC;
    transition: color .22s var(--tos-ease);
}

.dg-seg__i:hover span {
    border-color: #C6D2CC;
    background: #fff;
}

.dg-seg__i input:checked + span {
    border-color: var(--tos-gold-ink);
    background: var(--tos-gold-wash);
    color: var(--tos-gold-ink);
}

.dg-seg__i input:checked + span i {
    color: var(--tos-gold-ink);
}

.dg-seg__i input:focus-visible + span {
    box-shadow: 0 0 0 4px rgba(6, 40, 26, .1);
}

.dg-next {
    margin-top: 4px;
    padding: 17px 26px;
    font-size: 16px;
}

/* --- araç özeti kartı --- */
/* Huninin yan özet paneli — koyu yeşil dolgudan beyaz karta çevrildi
   (27.08.2026). Formun yanında duran tek koyu alandı. */
.dg-ozet {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid var(--tos-line);
    box-shadow: 0 2px 12px rgba(14, 26, 22, .05);
    border-radius: var(--tos-r-lg);
    padding: 26px 24px;
    color: var(--tos-ink);
}

.dg-ozet__head {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--tos-line);
}

.dg-ozet__ico {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--tos-r);
    background: var(--tos-acc-wash);
    color: var(--tos-acc-ink);
    font-size: 16px;
    flex-shrink: 0;
}

.tos-scope .dg-ozet__head h3 {
    color: var(--tos-ink);
    font-size: 16.5px;
    margin: 0 0 2px;
}

.dg-ozet .dg-ozet__head p {
    margin: 0;
    font-size: 12.5px;
    color: var(--tos-muted);
}

.dg-ozet__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dg-ozet__list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--tos-line);
    font-size: 14px;
}

.dg-ozet__list li:last-child {
    border-bottom: 0;
}

.dg-ozet__list span {
    color: var(--tos-muted);
    flex-shrink: 0;
}

.dg-ozet__list b {
    color: var(--tos-ink);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.dg-ozet__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--tos-line);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--tos-muted);
}

.dg-ozet__note i {
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .dg-split {
        /* 1fr = minmax(auto,1fr) olduğu için öğe içeriğinden dar olamaz;
           minmax(0,1fr) daralmaya izin verir, yatay taşmayı önler. */
        grid-template-columns: minmax(0, 1fr);
    }

    .dg-ozet {
        position: static;
        order: -1;
    }
}

@media (max-width: 575px) {
    .tos-header__in {
        height: 72px;
        gap: 12px;
    }

    .tos-logo img {
        height: 34px;
    }

    .tos-header__act .tos-btn {
        padding: 11px 15px;
        font-size: 13px;
    }

    .tos-topbar {
        font-size: 12px;
    }

    .tos-topbar__act {
        gap: 14px;
    }

    .dg-row2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dg-seg {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* --- onay kutuları (step-4) --- */

.dg-onay {
    background: var(--tos-surface);
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r);
    padding: 18px 20px;
    margin-bottom: 26px;
}

.dg-onay__all {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--tos-line);
    cursor: pointer;
}

.dg-onay__i {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px 0;
    cursor: pointer;
}

.dg-onay input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin: 1px 0 0;
    border: 1.5px solid #C6D2CC;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s var(--tos-ease);
}

.dg-onay input[type="checkbox"]::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    opacity: 0;
    transform: scale(.6);
    transition: all .18s var(--tos-ease);
}

.dg-onay input[type="checkbox"]:checked {
    background: var(--tos-green);
    border-color: var(--tos-green);
}

.dg-onay input[type="checkbox"]:checked::after {
    opacity: 1;
    transform: none;
}

.dg-onay input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 4px rgba(37, 180, 100, .18);
}

.dg-onay__all span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tos-ink);
}

.dg-onay__all span i {
    font-size: 12px;
    color: var(--tos-gold-ink);
}

.dg-onay__i span {
    font-size: 13px;
    line-height: 1.55;
    color: var(--tos-body);
}

.dg-onay__i a {
    color: var(--tos-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--tos-gold-ink);
}

.dg-onay__i a:hover {
    color: var(--tos-gold-ink);
}

.dg-onay__i em {
    font-style: normal;
    color: var(--tos-gold-ink);
    font-weight: 700;
}

.dg-plaka {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}


/* --------------------------------------------------------------------------
   Form alanı içindeki özel açılır liste
   Konsolda (hero) çerçevesiz duruyor; form bağlamında diğer input'larla
   aynı görünmeli, aksi halde alan sınırı belli olmuyor.
   -------------------------------------------------------------------------- */

.dg-fld .tos-ss__btn,
.tos-field .tos-ss__btn {
    padding: 14px 16px;
    border: 1.5px solid var(--tos-line);
    border-radius: var(--tos-r);
    background: var(--tos-surface);
    font-size: 15px;
    font-weight: 600;
    min-height: 51px;
    transition: all .2s var(--tos-ease);
}

.dg-fld .tos-ss:not(.is-empty) .tos-ss__btn,
.tos-field .tos-ss:not(.is-empty) .tos-ss__btn {
    color: var(--tos-ink);
    font-weight: 600;
}

.dg-fld .tos-ss__btn:hover,
.tos-field .tos-ss__btn:hover {
    border-color: #C6D2CC;
    background: #fff;
}

.dg-fld .tos-ss.is-open .tos-ss__btn,
.tos-field .tos-ss.is-open .tos-ss__btn,
.dg-fld .tos-ss__btn:focus-visible,
.tos-field .tos-ss__btn:focus-visible {
    border-color: var(--tos-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 40, 26, .07);
}

.dg-fld .tos-ss__btn:disabled,
.tos-field .tos-ss__btn:disabled {
    background: #F0F4F2;
    border-color: var(--tos-line);
    color: #A8B4AE;
}

/* Panel artık kutunun kenarlarıyla hizalı açılsın */
.dg-fld .tos-ss__pop,
.tos-field .tos-ss__pop {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
}


/* Kaydırma ilerleme çubuğu — custom.css'teki sürümü ezer */
.scroll-progress {
    background: linear-gradient(90deg, var(--tos-gold-ink) 0%, var(--tos-gold) 100%);
    box-shadow: 0 0 10px rgba(37, 180, 100, .5);
}


/* ==========================================================================
   STEP-3 — EKSPERTİZ
   svgModel() radyoları <table> içinde aradığı için tablo yapısı korunur.
   ========================================================================== */

.dg-split--eks {
    grid-template-columns: minmax(0, 1fr) 380px;
    max-width: 1140px;
}

.eks-intro {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 22px;
    background: var(--tos-surface);
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r);
}

.eks-intro__ico {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--tos-r);
    background: var(--tos-green);
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.tos-scope .eks-intro h3 {
    font-size: 16px;
    margin: 0 0 4px;
}

.eks-intro p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
}

.eks-intro b {
    color: var(--tos-ink);
    font-weight: 700;
}

/* --- tablo --- */
.eks-scroll {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    margin: 0 -4px;
    padding: 0 4px;
}

.eks-table {
    width: 100%;
    min-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
}

.eks-table thead th {
    padding: 0 4px 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--tos-body);
    letter-spacing: -.005em;
    white-space: nowrap;
    vertical-align: bottom;
}

.eks-th {
    width: 88px;
}

.eks-th span:last-child {
    display: block;
}

.eks-th__nokta {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    margin: 0 auto 7px;
}

.eks-th--o .eks-th__nokta {
    background: #fff;
    border: 1.5px solid #C6D2CC;
}

.eks-th--lb .eks-th__nokta {
    background: repeating-linear-gradient(45deg, #FFD800, #FFD800 2px, #fff 2px, #fff 4px);
    border: 1px solid #E3C400;
}

.eks-th--b .eks-th__nokta {
    background: #FFD800;
}

.eks-th--d .eks-th__nokta {
    background: #D71920;
}

.eks-table__parca {
    text-align: left !important;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tos-ink);
    padding: 0 12px 0 0;
    white-space: nowrap;
}

.eks-table thead .eks-table__parca {
    font-size: 12px;
    font-weight: 700;
    color: var(--tos-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.eks-table tbody tr {
    transition: background .18s var(--tos-ease);
}

.eks-table tbody tr:hover {
    background: #FAFCFB;
}

.eks-table tbody th,
.eks-table tbody td {
    padding: 11px 4px;
    border-top: 1px solid var(--tos-line);
    text-align: center;
    vertical-align: middle;
}

.eks-table tbody tr:first-child th,
.eks-table tbody tr:first-child td {
    border-top: 0;
}

/* --- özel radyo --- */
.eks-rd {
    display: inline-flex;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.eks-rd input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.eks-rd__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.eks-rd__box {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 2px solid #D3DAE4;
    background: #fff;
    display: block;
    position: relative;
    transition: all .2s var(--tos-ease);
}

.eks-rd__box::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: currentColor;
    transform: scale(0);
    transition: transform .2s var(--tos-ease);
}

.eks-rd:hover .eks-rd__box {
    border-color: #A9B4C3;
}

/* durum renkleri — SVG şeması ve açıklama ile aynı dil */
.eks-rd--o { color: var(--tos-green); }
.eks-rd--lb { color: #E3C400; }
.eks-rd--b { color: #E3C400; }
.eks-rd--d { color: #D71920; }

.eks-rd input:checked + .eks-rd__box {
    border-color: currentColor;
}

.eks-rd input:checked + .eks-rd__box::after {
    transform: scale(1);
}

.eks-rd--lb input:checked + .eks-rd__box::after {
    background: repeating-linear-gradient(45deg, #FFD800, #FFD800 2px, #fff 2px, #fff 4px);
}

.eks-rd--b input:checked + .eks-rd__box::after {
    background: #FFD800;
}

.eks-rd input:focus-visible + .eks-rd__box {
    box-shadow: 0 0 0 4px rgba(6, 40, 26, .12);
}

/* --- sağ sütun: şema --- */
.eks-yan {
    position: sticky;
    top: 110px;
}

.eks-sema {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 22px 20px;
    box-shadow: var(--tos-sh);
}

.eks-sema__head {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--tos-line);
}

.tos-scope .eks-sema__head h3 {
    font-size: 16px;
    margin: 0 0 3px;
}

.eks-sema__head p {
    margin: 0;
    font-size: 12.5px;
    color: var(--tos-muted);
}

.eks-sema__cizim {
    text-align: center;
}

.eks-sema__cizim svg {
    max-width: 100%;
    height: auto;
    max-height: 340px;
}

.eks-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
    list-style: none;
    margin: 16px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--tos-line);
}

.eks-legend li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--tos-body);
}

.eks-legend__k {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.eks-legend__k--o { background: #fff; border: 1.5px solid #C6D2CC; }
.eks-legend__k--lb { background: repeating-linear-gradient(45deg, #FFD800, #FFD800 2px, #fff 2px, #fff 4px); border: 1px solid #E3C400; }
.eks-legend__k--b { background: #FFD800; }
.eks-legend__k--d { background: #D71920; }

@media (max-width: 991px) {
    .dg-split--eks {
        grid-template-columns: minmax(0, 1fr);
    }

    .eks-yan {
        position: static;
        order: -1;
    }

    .eks-sema__cizim svg {
        max-height: 260px;
    }
}

@media (max-width: 575px) {
    .eks-table__parca {
        font-size: 13px;
        white-space: normal;
        min-width: 96px;
    }

    .eks-th {
        width: 62px;
    }

    .eks-table thead th {
        font-size: 10.5px;
    }
}


/* ==========================================================================
   STEP-5 — SONUÇ EKRANI
   ========================================================================== */

.sn {
    background: var(--tos-surface);
    padding: 46px 0 80px;
}

/* tamamlanan adımlar */
.sn-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
}

.sn-steps li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tos-muted);
}

.sn-steps span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #D1F4E0;
    color: #12B76A;
    font-size: 9px;
}

.sn-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

/* --------------------------------------------------------- fiyat kartı -- */

.sn-price {
    position: relative;
    background: var(--tos-green);
    border-radius: var(--tos-r-lg);
    padding: 40px 34px 34px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.sn-price::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(101deg,
            transparent 63%,
            rgba(37, 180, 100, .3) 63.05%,
            rgba(37, 180, 100, .3) 63.14%,
            transparent 63.19%);
}

.sn-price__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(18, 183, 106, .16);
    border: 1px solid rgba(18, 183, 106, .35);
    font-size: 12.5px;
    font-weight: 700;
    color: #6CE9A6;
}

.sn-price__lbl {
    margin: 22px 0 6px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .58);
}

.sn-price__val {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1;
    font-size: clamp(42px, 6.5vw, 68px);
}

.sn-price__val em {
    font-style: normal;
    font-size: .48em;
    color: var(--tos-gold-lt);
    margin-top: .18em;
}

.sn-price__note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 52ch;
    margin: 24px auto 0;
    padding: 14px 16px;
    border-radius: var(--tos-r);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .66);
    text-align: left;
}

.sn-price__note i {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--tos-gold-lt);
}

/* referans kodu */
.sn-ref {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.sn-ref > span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
}

.sn-ref__kod {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--tos-r);
    background: rgba(255, 255, 255, .06);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all .2s var(--tos-ease);
}

.sn-ref__kod i {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
}

.sn-ref__kod:hover {
    border-color: var(--tos-gold-lt);
}

.sn-ref__kod.is-copied {
    border-color: #12B76A;
    color: #6CE9A6;
}

.sn-ref__kod.is-copied i {
    color: #6CE9A6;
}

/* ------------------------------------------------------------- eylemler */

.sn-acts {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.sn-act {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    text-decoration: none;
    transition: all .26s var(--tos-ease);
}

.sn-act:hover {
    border-color: transparent;
    box-shadow: var(--tos-sh-lg);
    transform: translateY(-3px);
}

.sn-act__ico {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--tos-r);
    font-size: 18px;
    flex-shrink: 0;
    color: #fff;
}

.sn-act--red .sn-act__ico { background: var(--tos-gold); color: var(--tos-green-2); }
.sn-act--wa .sn-act__ico { background: #25D366; }
.sn-act--tel .sn-act__ico { background: var(--tos-green); }

.sn-act__txt {
    flex: 1;
    min-width: 0;
}

.sn-act__txt b {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--tos-ink);
    letter-spacing: -.01em;
}

.sn-act__txt small {
    display: block;
    font-size: 13px;
    color: var(--tos-muted);
    margin-top: 2px;
}

.sn-act__ok {
    font-size: 12px;
    color: #C6D2CC;
    flex-shrink: 0;
    transition: all .26s var(--tos-ease);
}

.sn-act:hover .sn-act__ok {
    color: var(--tos-gold-ink);
    transform: translateX(4px);
}

/* ----------------------------------------------------- sonraki adımlar */

.sn-sonra {
    margin-top: 22px;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
}

.tos-scope .sn-sonra h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.sn-sonra__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.sn-sonra__list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sn-sonra__list > li > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--tos-surface);
    border: 1.5px solid var(--tos-line);
    font-size: 12.5px;
    font-weight: 800;
    color: var(--tos-green);
    flex-shrink: 0;
}

.sn-sonra__list b {
    display: block;
    font-size: 15px;
    color: var(--tos-ink);
    margin-bottom: 3px;
}

.sn-sonra__list p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
}

/* ------------------------------------------------------------ yan sütun */

.sn-yan {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.sn-guven {
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    padding: 22px 20px;
}

.tos-scope .sn-guven h4 {
    font-size: 15px;
    margin-bottom: 14px;
}

.sn-guven ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.sn-guven li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    line-height: 1.5;
}

.sn-guven i {
    font-size: 11px;
    color: var(--tos-gold-ink);
    margin-top: 4px;
    flex-shrink: 0;
}

/* --------------------------------------------------------- fiyat yoksa */

.sn-bos {
    max-width: 620px;
    margin: 0 auto;
    padding: 46px 34px;
    background: #fff;
    border: 1px solid var(--tos-line);
    border-radius: var(--tos-r-lg);
    text-align: center;
    box-shadow: var(--tos-sh);
}

.sn-bos__ico {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--tos-green);
    color: #fff;
    font-size: 27px;
}

.tos-scope .sn-bos h2 {
    font-size: clamp(21px, 3vw, 27px);
    margin-bottom: 14px;
}

.sn-bos p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 48ch;
}

.sn-bos__act {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.sn-bos__ref {
    margin-top: 24px !important;
    padding-top: 18px;
    border-top: 1px solid var(--tos-line);
    font-size: 13px;
    color: var(--tos-muted);
}

.sn-bos__ref b {
    color: var(--tos-ink);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 991px) {
    .sn-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sn-yan {
        position: static;
    }
}

@media (max-width: 575px) {
    .sn {
        padding: 30px 0 56px;
    }

    .sn-steps {
        gap: 8px 16px;
    }

    .sn-steps li {
        font-size: 12px;
    }

    .sn-price {
        padding: 30px 20px 26px;
    }

    .sn-act {
        padding: 15px 16px;
        gap: 12px;
    }

    .sn-bos {
        padding: 34px 20px;
    }
}
