/* ==========================================================================
   VUUM CARS — Tasarım Sistemi
   Palet doğrudan logodan örneklendi:
     orman yeşili #1B4538 (logo) · derin yeşil #133026 · altın #C8A44D
   Karakter: kurumsal, yüksek kontrast, keskin köşeler, iri tipografi.

   AKSAN KULLANIMI — altın orta parlaklıkta bir renk, bu yüzden üç kademeli:
     --tos-gold      dolgu (buton, rozet, çubuk) — üzerine KOYU yeşil yazı gelir
     --tos-gold-ink  açık zeminde aksan METNİ  (beyaz üstünde 5.1:1)
     --tos-gold-lt   koyu zeminde aksan METNİ  (yeşil üstünde 3.6:1)
   Beyaz yazı gereken dolgularda altın değil, koyu yeşil kullanılır.
   ========================================================================== */

:root {
    /* Marka — yeşil */
    --tos-green: #1B4538;
    --tos-green-2: #133026;
    --tos-green-3: #27634F;
    --tos-green-wash: #EDF5F1;

    /* Marka — altın aksan */
    --tos-gold: #C8A44D;
    --tos-gold-2: #B08F3C;
    --tos-gold-ink: #8A6A1F;
    --tos-gold-lt: #DCBB6A;
    --tos-gold-wash: #FBF5E8;

    --tos-gray: #3C4542;

    /* Eski isimler — geriye dönük eşleme (tema genelinde hâlâ kullanılıyor) */
    --tos-navy: var(--tos-green);
    --tos-navy-2: var(--tos-green-2);
    --tos-navy-3: var(--tos-green-3);
    --tos-red: var(--tos-gold);
    --tos-red-2: var(--tos-gold-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(19, 48, 38, .07);
    --tos-sh: 0 4px 16px rgba(19, 48, 38, .09);
    --tos-sh-lg: 0 18px 44px rgba(19, 48, 38, .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);
}

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

.tos-section--navy .tos-h2,
.tos-section--navy h3 {
    color: #fff;
}

.tos-section--navy .tos-lead,
.tos-section--navy p {
    color: rgba(255, 255, 255, .72);
}

.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(200, 164, 77, .32);
}

.tos-btn--navy {
    background: var(--tos-green);
    color: #fff;
}

.tos-btn--navy:hover {
    background: var(--tos-green-3);
    color: #fff;
    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);
}

.tos-btn--on-navy {
    background: transparent;
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

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

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

/* ============================================================= HEADER ===
   Tek katmanlı, ferah beyaz header. Üst şerit yok — kalabalık oradan geliyordu.
   Menü optik olarak tam ortada (logo/CTA genişliğinden bağımsız).
   Kaydırınca daralır ve yarı saydam cam yüzeye geçer.
   ======================================================================== */

.tos-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid transparent;
    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, .78);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: rgba(19, 48, 38, .07);
    box-shadow: 0 1px 24px rgba(19, 48, 38, .05);
}

/* 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 artık logoyu transform ile küçülterek veriliyor (reflow yok). */
.tos-header__in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 88px;
}

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

.tos-logo img {
    /* Logo 9.75:1 oranında — yükseklik x9.75 kadar genişlik kaplıyor.
       28px = ~273px; menüyle çakışmaması için bundan büyük olmamalı. */
    height: 28px;
    width: auto;
    display: block;
    transform-origin: left center;
    transition: transform .3s var(--tos-ease);
}

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

/* --- Menü: akışın içinde, kalan boşlukta ortalanır ---
   Eskiden mutlak konumla viewport ortasına sabitlenmişti; geniş logoda
   logonun üstüne biniyordu. Artık logo ile butonlar arasındaki alanı
   kaplıyor ve o alanın ortasına yerleşiyor — çakışma imkânsız. */
.tos-nav {
    flex: 1 1 auto;
    min-width: 0;
}

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

.tos-nav__link {
    position: relative;
    display: block;
    padding: 12px 18px 14px;
    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);
}

/* Aktif göstergesi: ince alt çizgi.
   Eskiden 5px'lik bir noktaydı; menünün altında rastgele bir leke gibi
   duruyordu. Çizgi, altını çizdiği kelimeyle ilişkili olduğu için okunur. */
.tos-nav__link::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: var(--tos-gold-ink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s var(--tos-ease), opacity .28s var(--tos-ease);
    opacity: 0;
}

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

.tos-nav__link:hover::after {
    transform: scaleX(1);
    opacity: .35;
}

.tos-nav__item.is-active .tos-nav__link {
    color: var(--tos-green);
    font-weight: 600;
}

.tos-nav__item.is-active .tos-nav__link::after {
    transform: scaleX(1);
    opacity: 1;
}

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

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

/* 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 === */

.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(19, 48, 38, .6);
    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: var(--tos-green);
    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 rgba(255, 255, 255, .1);
}

.tos-drawer__top img {
    /* 9.75:1 — 38px, 370px genişlik demekti; çekmece paneli 360px */
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.tos-drawer__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 0;
    border-radius: var(--tos-r);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s;
}

.tos-drawer__close:hover {
    background: var(--tos-gold);
    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: rgba(255, 255, 255, .82);
    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-gold-lt);
    letter-spacing: .08em;
}

.tos-drawer__link:hover,
.tos-drawer__item.is-active .tos-drawer__link {
    background: rgba(255, 255, 255, .05);
    border-left-color: var(--tos-gold-lt);
    color: #fff;
}

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

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

.tos-phero {
    position: relative;
    background: var(--tos-green);
    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: .22;
}

.tos-phero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg, var(--tos-green) 32%, rgba(19, 48, 38, .72) 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: rgba(255, 255, 255, .5);
    margin-bottom: 22px;
}

.tos-phero__crumb a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.tos-phero__crumb a:hover {
    color: #fff;
}

.tos-phero__crumb span[aria-current] {
    color: var(--tos-gold-lt);
    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: #fff;
    letter-spacing: -.035em;
    line-height: 1.05;
}

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

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

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

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

.tos-stats {
    background: var(--tos-green-2);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.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 rgba(255, 255, 255, .08);
}

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

.tos-stat__n {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
}

.tos-stat__n span {
    color: var(--tos-gold-lt);
}

.tos-stat__l {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    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 === */

.tos-cta {
    background: var(--tos-green);
    padding: 56px 0;
}

.tos-cta__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}

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

.tos-cta p {
    color: rgba(255, 255, 255, .88);
    margin: 0;
    font-size: 16px;
}

.tos-cta .tos-btn {
    background: var(--tos-gold);
    color: var(--tos-green-2);
    padding: 17px 32px;
}

.tos-cta .tos-btn:hover {
    background: #fff;
    color: var(--tos-green-2);
    transform: translateY(-2px);
}

/* ========================================================== İ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(19, 48, 38, .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 === */

.tos-footer {
    background: var(--tos-green);
    border-top: 4px solid var(--tos-gold);
}

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

.tos-footer__logo img {
    /* 9.75:1 — 52px, 507px genişlik demekti ve footer sütununu (364px) taşırıyordu */
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.tos-footer__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    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: rgba(255, 255, 255, .68);
}

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

.tos-footer__contact a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    transition: color .2s;
}

.tos-footer__contact a:hover {
    color: #fff;
}

.tos-footer__title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}

.tos-footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: var(--tos-gold);
}

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

.tos-footer__links a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}

.tos-footer__links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.tos-footer__cta {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--tos-r-lg);
    padding: 28px 26px;
}

.tos-footer__cta h4 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px;
}

.tos-footer__cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    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: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 15px;
    transition: all .25s var(--tos-ease);
}

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

.tos-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 22px 0;
}

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

.tos-footer__bar p {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
}

.tos-footer__bar a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.tos-footer__bar a:hover {
    color: #fff;
}

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

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

    .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;
    }

    .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: 24px;
    }

    .tos-header__act .tos-btn {
        display: none;
    }

    .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;
}

.tos-doc__box {
    background: var(--tos-green);
    border-radius: var(--tos-r-lg);
    padding: 28px 24px;
}

.tos-doc__box h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 12px;
}

.tos-doc__box p {
    color: rgba(255, 255, 255, .66);
    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 */

/* overflow gizlenemez: açılır liste paneli hero dışına taşıyor.
   Diyagonal aksan artık taşmayan bir gradyanla çiziliyor. */
.hz {
    position: relative;
    background: var(--tos-green);
    isolation: isolate;
}

.hz__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hz__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 1;
}

/* Perde yalnızca metnin durduğu sol tarafı kapatır; sağda araç açıkta kalır.
   Önceden her yeri lacivert kapladığı için görsel kaybolmuş, blok tek renk
   bir duvara dönmüştü. */
.hz__veil {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(92deg,
            rgba(19, 48, 38, .97) 0%,
            rgba(19, 48, 38, .92) 34%,
            rgba(19, 48, 38, .62) 56%,
            rgba(19, 48, 38, .18) 78%,
            rgba(19, 48, 38, .05) 100%),
        /* alt kenarda hafif koyulaşma — konsolun altı boşlukta kalmasın */
        linear-gradient(0deg, rgba(19, 48, 38, .55) 0%, transparent 30%);
}

/* İnce altın diyagonal aksan — kapalı.
   Fotoğrafın üstünde markayı anlatan bir aksandan çok, ekranda bir çizik
   gibi okunuyordu. Markup dursun, sadece çizilmesin. */
.hz__slash {
    display: none;
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(101deg,
            transparent 61.96%,
            rgba(200, 164, 77, .34) 62.00%,
            rgba(200, 164, 77, .34) 62.07%,
            transparent 62.11%);
    /* uçları solsun; kenardan kenara uzanan sert bir çizgi gibi durmasın */
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 62%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 62%, transparent 100%);
    pointer-events: none;
}

.hz__in {
    position: relative;
    padding: 104px 24px 92px;
}

.hz__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 100px;
    background: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    letter-spacing: -.005em;
}

.hz__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tos-gold);
    box-shadow: 0 0 0 0 rgba(200, 164, 77, .7);
    animation: hzPulse 2.4s infinite;
}

@keyframes hzPulse {
    70% { box-shadow: 0 0 0 9px rgba(200, 164, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 164, 77, 0); }
}

.tos-scope .hz__title {
    margin: 26px 0 0;
    font-size: clamp(36px, 5.4vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
    color: #fff;
    max-width: 17ch;
}

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

.hz__sub {
    margin: 22px 0 0;
    font-size: 17.5px;
    line-height: 1.65;
    /* fotoğraf üstünde .68 çok soluk kalıyordu */
    color: rgba(255, 255, 255, .82);
    max-width: 56ch;
}

/* ------------------------------------------------- DEĞERLEME KONSOLU -- */

.hz-console {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 44px 0 0;
    max-width: 940px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .34);
    /* overflow gizlenemez — açılır liste paneli konsolun dışına taşar */
    position: relative;
    z-index: 5;
}

.hz-console__fields > .hz-fld:first-child {
    border-radius: 16px 0 0 16px;
}

.hz-console__fields {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 0;
}

.hz-console__sep {
    width: 1px;
    background: var(--tos-line);
    margin: 16px 0;
    flex-shrink: 0;
}

/* --- tek alan --- */
.hz-fld {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 16px 22px;
    transition: background .22s var(--tos-ease);
}

.hz-fld:hover:not(.is-locked) {
    background: #FAFCFB;
}

.hz-fld:focus-within {
    background: #F6FAF8;
}

/* odakta soldan altın işaret */
.hz-fld::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--tos-gold-ink);
    transform: scaleY(0);
    transition: transform .26s var(--tos-ease);
}

.hz-fld:focus-within::before {
    transform: scaleY(1);
}

.hz-fld__lbl {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tos-muted);
    margin: 0 0 4px;
    transition: color .22s var(--tos-ease);
}

.hz-fld__lbl i {
    font-size: 11px;
    color: var(--tos-gold-ink);
    opacity: .75;
}

.hz-fld:focus-within .hz-fld__lbl {
    color: var(--tos-green);
}

.hz-fld__ctl {
    position: relative;
}

.hz-sel {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 2px 30px 2px 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--tos-ink);
    cursor: pointer;
    outline: none;
    text-overflow: ellipsis;
}

/* "Seçiniz" hâli daha soluk dursun */
.hz-fld:not(.is-filled) .hz-sel {
    color: #99A6A0;
    font-weight: 600;
}

.hz-fld__caret {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--tos-muted);
    pointer-events: none;
    transition: transform .26s var(--tos-ease), color .22s;
}

.hz-fld:focus-within .hz-fld__caret {
    color: var(--tos-green);
    transform: translateY(-50%) rotate(180deg);
}

/* kilitli hâl (yıl seçilmeden marka) */
.hz-fld.is-locked {
    opacity: .55;
}

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

/* yükleniyor hâli */
.hz-fld__spin {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--tos-gold-ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.hz-fld.is-loading .hz-fld__spin {
    opacity: 1;
}

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

.hz-fld.is-loading .hz-sel {
    color: #99A6A0;
}

/* --- gönder --- */
.hz-console__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-shrink: 0;
    margin: 10px;
    padding: 0 30px;
    border: 0;
    border-radius: 12px;
    background: var(--tos-gold);
    color: var(--tos-green-2);
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -.01em;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s var(--tos-ease);
}

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

.hz-console__go:hover {
    background: var(--tos-gold-2);
    box-shadow: 0 10px 26px rgba(19, 48, 38, .28);
}

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

.hz-console__go:active {
    transform: scale(.985);
}

/* --- güven satırı --- */
.hz-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.hz-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
}

.hz-trust i {
    font-size: 10px;
    color: var(--tos-gold-lt);
}

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

.hz-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}

.hz-flow__i {
    position: relative;
    padding-top: 30px;
    border-top: 2px solid var(--tos-line);
    transition: border-color .3s var(--tos-ease);
}

.hz-flow__i:hover {
    border-top-color: var(--tos-gold-ink);
}

.hz-flow__n {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--tos-surface-2);
    margin-bottom: 14px;
    transition: color .3s var(--tos-ease);
}

.hz-flow__i:hover .hz-flow__n {
    color: var(--tos-gold-ink);
}

.hz-flow__i h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.hz-flow__i p {
    font-size: 14.5px;
    line-height: 1.65;
    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;
    background: linear-gradient(0deg, rgba(19, 48, 38, .94) 12%, rgba(19, 48, 38, .60) 58%, rgba(19, 48, 38, .30) 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;
}

/* ----------------------------------------------------------- NEDEN BİZ */

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

.hz-why__i {
    padding: 30px 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--tos-r-lg);
    background: rgba(255, 255, 255, .03);
    transition: all .3s var(--tos-ease);
}

.hz-why__i:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .22);
    transform: translateY(-4px);
}

.hz-why__ico {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: var(--tos-r);
    background: var(--tos-gold);
    color: var(--tos-green-2);
    font-size: 19px;
    margin-bottom: 20px;
}

.tos-scope .hz-why__i h3 {
    color: #fff;
    font-size: 17.5px;
    margin-bottom: 10px;
}

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

/* ------------------------------------------------------------ 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: 991px) {
    .hz__in {
        padding: 72px 24px 68px;
    }

    .hz__bg img {
        object-position: center;
        opacity: .35;
    }

    .hz__veil {
        background: linear-gradient(5deg, var(--tos-green) 22%, rgba(19, 48, 38, .88) 100%);
    }

    .hz__slash {
        display: none;
    }

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

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

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

@media (max-width: 767px) {
    /* Konsol dikey akışa geçer */
    .hz-console {
        flex-direction: column;
        border-radius: 14px;
    }

    .hz-console__fields {
        flex-direction: column;
    }

    .hz-console__sep {
        width: auto;
        height: 1px;
        margin: 0 22px;
    }

    .hz-fld {
        padding: 15px 20px;
    }

    .hz-fld::before {
        top: 10px;
        bottom: 10px;
    }

    .hz-console__go {
        margin: 12px;
        padding: 16px 24px;
    }

    .hz-flow,
    .hz-why,
    .hz-cars,
    .hz-says {
        grid-template-columns: 1fr;
    }

    .hz-flow {
        gap: 22px;
    }

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

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

    .hz__badge {
        font-size: 12px;
    }

    .hz__sub {
        font-size: 16px;
    }

    .hz-trust {
        gap: 8px 18px;
    }

    .hz-trust li {
        font-size: 12.5px;
    }
}


/* ==========================================================================
   Ö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(19, 48, 38, .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ı */

.dg-top {
    background: var(--tos-green);
    padding: 54px 0 30px;
    position: relative;
    overflow: hidden;
}

.dg-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(101deg,
            transparent 66%,
            rgba(200, 164, 77, .28) 66.05%,
            rgba(200, 164, 77, .28) 66.13%,
            transparent 66.18%);
    pointer-events: none;
}

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

.dg-top__badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    background: rgba(255, 255, 255, .06);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tos-gold-lt);
    margin-bottom: 16px;
}

.tos-scope .dg-top__title {
    color: #fff;
    font-size: clamp(26px, 3.6vw, 40px);
    letter-spacing: -.035em;
}

.dg-top__sub {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .62);
}

/* --- adım göstergesi --- */
.dg-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.dg-steps__i {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.dg-steps__dot {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    transition: all .3s var(--tos-ease);
}

.dg-steps__lbl {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .42);
    transition: color .3s var(--tos-ease);
    letter-spacing: -.005em;
}

.dg-steps__i.is-active .dg-steps__dot {
    background: var(--tos-gold);
    border-color: var(--tos-gold);
    color: var(--tos-green-2);
    box-shadow: 0 0 0 5px rgba(200, 164, 77, .18);
}

.dg-steps__i.is-active .dg-steps__lbl {
    color: #fff;
}

.dg-steps__i.is-done .dg-steps__dot {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 11px;
}

.dg-steps__i.is-done .dg-steps__lbl {
    color: rgba(255, 255, 255, .7);
}

/* --- ilerleme çubuğu --- */
.dg-track {
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.dg-track__fill {
    height: 100%;
    border-radius: 3px;
    background: var(--tos-gold);
    transition: width .5s var(--tos-ease);
}

/* --- seçim çipleri --- */
.dg-chips {
    display: flex;
    flex-wrap: wrap;
    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: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

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

/* ------------------------------------------------------------ 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);
}

/* --- 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(200, 164, 77, .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: 767px) {
    .dg-top {
        padding: 38px 0 24px;
    }

    .dg-steps__lbl {
        font-size: 10.5px;
    }

    .dg-steps__dot {
        width: 30px;
        height: 30px;
        font-size: 12.5px;
    }

    .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(200, 164, 77, .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(19, 48, 38, .1);
}

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

/* --- araç özeti kartı --- */
.dg-ozet {
    position: sticky;
    top: 110px;
    background: var(--tos-green);
    border-radius: var(--tos-r-lg);
    padding: 26px 24px;
    color: #fff;
}

.dg-ozet__head {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

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

.tos-scope .dg-ozet__head h3 {
    color: #fff;
    font-size: 16.5px;
    margin: 0 0 2px;
}

.dg-ozet__head p {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
}

.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 rgba(255, 255, 255, .08);
    font-size: 14px;
}

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

.dg-ozet__list span {
    color: rgba(255, 255, 255, .5);
    flex-shrink: 0;
}

.dg-ozet__list b {
    color: #fff;
    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 rgba(255, 255, 255, .12);
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .45);
}

.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) {
    .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(200, 164, 77, .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(19, 48, 38, .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(200, 164, 77, .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(19, 48, 38, .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(200, 164, 77, .3) 63.05%,
            rgba(200, 164, 77, .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;
    }
}
