/* ==========================================================================
   OtoVak - Ana Stil DosyasÃ„Â±
   ========================================================================== */

:root {
    --navy: #5e0d14;
    --navy-dark: #440810;
    --blue: #a30f1c;
    --blue-light: #eda2a2;
    --ink: #0c1b33;
    --muted: #5b6b82;
    --bg: #f4f7fb;
    --bg-soft: #e9f0f8;
    --white: #ffffff;
    --border: #dbe4ef;
    /* Köşe yuvarlaklığı — tüm site buradan ayarlanır.
       Hepsini köşeli yapmak için değerleri 0 yapmak yeterli. */
    --radius-xs: 6px;
    /* küçük rozet, renk kutucuğu */
    --radius-sm: 10px;
    /* buton, input, select, ikon kutusu */
    --radius: 14px;
    /* kart, form, panel */
    --radius-lg: 20px;
    /* büyük kutu, hero/sonuç kartı, modal */
    --radius-pill: 999px;
    /* hap/dairesel öğe (etiket, nokta, avatar) */
    --shadow: 0 10px 30px rgba(94, 13, 20, 0.08);
    --shadow-lg: 0 20px 50px rgba(94, 13, 20, 0.15);
    --container: 1180px;
    --transition: .25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* ---------- SVG Ã„Â°konlar ---------- */
svg {
    display: block;
}

.card .icon svg {
    width: 26px;
    height: 26px;
}

.contact-info .item .ico svg {
    width: 22px;
    height: 22px;
}

.blog-card .thumb .thumb-ico {
    width: 52px;
    height: 52px;
}

.eyebrow-ico {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 4px;
}

.read-ico {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -3px;
}


body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ---------- Select: yerel ok kapalı, özel chevron ----------
   Ok bir background-image olduğu için select'in üstünde tıklamayı yakalayan
   bir katman yok; yine de üzerine ikon koyan olursa pointer-events kapalı olmalı.
   Not: select'e `background` kısayolu yazan kural bu görseli siler — o yüzden
   bileşenlerde `background-color` kullanın. */
select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 15px;
    cursor: pointer;
}

select:disabled {
    cursor: not-allowed;
}

.container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(163, 15, 28, .25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--navy);
    box-shadow: 0 12px 26px rgba(94, 13, 20, .35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--bg-soft);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    transform: translateY(-2px);
}

/* ---------- Header ---------- */
/* Ana bar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-img {
    height: 54px;
    width: auto;
    display: block;
}

/* Sade metin logo — her yerde tek kaynak */
.brand-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.02em;
    display: inline-block;
    white-space: nowrap;
}

.brand-oto {
    color: var(--ink);
}

.brand-vak {
    color: var(--blue);
}

.logo-light .brand-oto {
    color: #fff;
}

.logo-light .brand-vak {
    color: var(--blue-light);
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.logo-text strong {
    color: var(--navy);
}

.logo-light {
    color: #fff;
}

.logo-light .logo-text strong {
    color: var(--blue-light);
}

.logo-light .logo-img {
    filter: brightness(0) invert(1);
    height: 40px;
}

/* MenÃƒÂ¼ */
.main-nav {
    flex: none;
}

.main-nav ul {
    display: flex;
    gap: 26px;
}

.main-nav a {
    position: relative;
    display: block;
    padding: 9px 2px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    transition: color .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.main-nav a:hover {
    color: var(--blue);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--blue);
}

.main-nav a.active::after {
    transform: scaleX(1);
}

/* MenÃƒÂ¼ye gelince: hover edilen dÃ„Â±Ã…Å¸Ã„Â±ndaki aktif linkin ÃƒÂ§izgisi saÃ„Å¸a kayarak kaybolur */
.main-nav:hover a.active:not(:hover)::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* Header aksiyon butonlarÃ„Â± */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

/* Anasayfa: beyaz hero ÃƒÂ¼stÃƒÂ¼nde header */
.site-header.is-home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.site-header.is-home .logo-img {
    filter: none;
}

.site-header.is-home .main-nav a {
    color: var(--ink);
}

.site-header.is-home .main-nav a:hover {
    color: var(--blue);
}

.site-header.is-home .main-nav a::after {
    background: var(--blue);
}

.site-header.is-home .nav-toggle span {
    background: var(--ink);
}

/* KaydÃ„Â±rÃ„Â±nca katÃ„Â±laÃ…Å¸an header */
.site-header.is-home.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-header.is-home.scrolled .logo-img {
    filter: none;
}

.site-header.is-home.scrolled .main-nav a {
    color: var(--ink);
}

.site-header.is-home.scrolled .main-nav a:hover {
    color: var(--blue);
}

.site-header.is-home.scrolled .main-nav a::after {
    background: var(--blue);
}

.site-header.is-home.scrolled .nav-toggle span {
    background: var(--ink);
}

.hcta {
    --c: var(--navy);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    color: #fff;
    background: var(--c);
    border: 1.5px solid var(--c);
    border-radius: var(--radius-sm);
    z-index: 0;
    transition: color .3s ease;
}

.hcta>* {
    position: relative;
    z-index: 1;
}

.hcta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.hcta:hover {
    color: var(--c);
}

.hcta:hover::before {
    transform: scaleX(1);
}

.hcta svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
    flex-shrink: 0;
}

.hcta-blue {
    --c: var(--blue);
}

.hcta-green {
    --c: #15a34a;
}

.hcta-orange {
    --c: #ea6a0c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

/* ---------- Mobil off-canvas menü (soldan) ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
}

.mobile-menu.open {
    visibility: visible;
}

.mm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 32, 63, .55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-menu.open .mm-overlay {
    opacity: 1;
}

.mm-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 84vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 40px rgba(3, 18, 40, .35);
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.2, .7, .2, 1);
}

.mobile-menu.open .mm-panel {
    transform: translateX(0);
}

.mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.mm-head .brand-logo {
    font-size: 26px;
}

.mm-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
}

.mm-close:hover {
    color: var(--blue);
}

.mm-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    overflow-y: auto;
}

.mm-nav a {
    padding: 14px 22px;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    border-bottom: 1px solid var(--bg-soft);
    transition: var(--transition);
}

.mm-nav a:last-child {
    border-bottom: none;
}

.mm-nav a:hover {
    background: var(--bg);
    color: var(--blue);
}

.mm-nav a.active {
    color: var(--blue);
}

.mm-actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-top: 1px solid var(--border);
}

.mm-actions .hcta {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
}

body.menu-open {
    overflow: hidden;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: #fff;
    color: var(--ink);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 72px;
}

.hero-video {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.hero .eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero h1 span {
    color: var(--blue);
    font-weight: 900;
    display: block;
}

/* Not: `.hero p` kuralı kaldırıldı — özgüllüğü (0,1,1) `.hb-desc`'i (0,1,0) ezip
   banner açıklamasının vw ölçeğini bozuyordu. Boyut artık `.hb-desc` üzerinde. */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* DeÃ„Å¸er sorgu kutusu */
.valuation-box {
    position: relative;
    z-index: 2;
    margin: 28px auto 0;
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 14px;
    max-width: 860px;
}

/* Hızlı işlem sekmeleri — sade metin, aktif olanın altı çizili */
.vb-tabs {
    grid-column: 1 / -1;
    display: flex;
    gap: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.vb-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 2px 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    transition: color var(--transition);
}

.vb-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.vb-tab svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
    flex: none;
}

.vb-tab:hover {
    color: var(--ink);
}

.vb-tab.is-active {
    color: var(--blue);
}

.vb-tab.is-active::after {
    transform: scaleX(1);
}

.valuation-box .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.valuation-box label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.valuation-box select,
.valuation-box input {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--ink);
    font-family: inherit;
    background-color: var(--bg);
}

.valuation-box select {
    padding-right: 42px;
}

.valuation-box .btn {
    align-self: end;
    height: 46px;
}

/* ---------- Hero WebP Slider (Swiper, full-width) ---------- */
.hero-swiper {
    --swiper-theme-color: var(--blue);
    --swiper-navigation-size: 20px;
    position: relative;
    width: 100%;
    height: 55vh;
    /* .hero üst padding'ini kapat, ekrana tam otursun */
    overflow: hidden;
    line-height: 0;
}

@media (min-width: 1280px) {
    .hero-swiper {
        margin: -40px 0 0;
        padding-top: 40px;
        padding-bottom: 70px;
    }
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner içeriği — görselin sağındaki boş alana oturur.
   Tüm ölçüler vw cinsinden: slider tam ekran genişliğinde olduğu için içerik
   görselle birebir aynı oranda büyür/küçülür — görselin bir parçası gibi. */
.hb-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 36%;
    line-height: 1.5;
}

.hb-title {
    font-size: 2.5vw;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.02em;
    color: var(--blue);
    margin: 0 0 .85vw;
}

.hb-desc {
    /* vw ile görsele kilitli ölçek; dar ekranda 15px'in altına düşmesin */
    font-size: max(15px, 1.45vw);
    line-height: 1.6;
    color: var(--blue);
    margin: 0 0 1.7vw;
}

.hb-btn {
    display: inline-flex;
    align-items: center;
    gap: .6vw;
    padding: .85vw 1.9vw;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05vw;
    border-radius: var(--radius-sm);
    box-shadow: 0 .8vw 2vw rgba(163, 15, 28, .28);
    transition: var(--transition);
}

.hb-btn svg {
    width: 1.15vw;
    height: 1.15vw;
    transition: transform .25s ease;
}

.hb-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

.hb-btn:hover svg {
    transform: translateX(.25vw);
}

/* Aktif slaytta içerik sırayla belirsin */
.hero-swiper .hb-content>* {
    opacity: 0;
    transform: translateY(1vw);
}

.hero-swiper .swiper-slide-active .hb-content>* {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}

.hero-swiper .swiper-slide-active .hb-content>*:nth-child(1) {
    transition-delay: .2s;
}

.hero-swiper .swiper-slide-active .hb-content>*:nth-child(2) {
    transition-delay: .3s;
}

.hero-swiper .swiper-slide-active .hb-content>*:nth-child(3) {
    transition-delay: .4s;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    margin: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-pill);
    color: #fff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background .2s ease, border-color .2s ease;
}

.hero-swiper .swiper-button-prev {
    left: 22px;
}

.hero-swiper .swiper-button-next {
    right: 22px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 800;
}

.hero-swiper .swiper-pagination {
    bottom: 18px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #aaa;
    opacity: .5;
    transition: width .25s ease, opacity .25s ease, background .25s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: var(--radius-pill);
    background: var(--blue);
    opacity: 1;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hs-track {
    display: flex;
    transition: transform .6s cubic-bezier(.65, .05, .36, 1);
}

.hs-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 56px clamp(28px, 6vw, 80px);
    overflow: hidden;
    color: #fff;
}

.hs-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(620px circle at 84% 18%, rgba(255, 255, 255, .16), transparent 55%);
    pointer-events: none;
}

.hs-1 {
    background: linear-gradient(120deg, var(--blue) 0%, var(--navy) 100%);
}

.hs-2 {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.hs-3 {
    background: linear-gradient(120deg, #7c0d17 0%, var(--blue) 100%);
}

.hs-ghost {
    position: absolute;
    right: -40px;
    bottom: -60px;
    color: rgba(255, 255, 255, .07);
    pointer-events: none;
    line-height: 0;
}

.hs-ghost svg {
    width: 360px;
    height: 360px;
}

.hs-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hs-badge svg {
    width: 15px;
    height: 15px;
}

.hs-content h2 {
    font-size: clamp(28px, 4.4vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.hs-content p {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 480px;
}

.hs-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hs-cta svg {
    width: 18px;
    height: 18px;
    transition: transform .25s ease;
}

.hs-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
}

.hs-cta:hover svg {
    transform: translateX(4px);
}

/* aktif slaytta içerik animasyonu */
.hs-content>* {
    opacity: 0;
    transform: translateY(16px);
}

.hs-slide.is-active .hs-content>* {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}

.hs-slide.is-active .hs-content>*:nth-child(1) {
    transition-delay: .15s;
}

.hs-slide.is-active .hs-content>*:nth-child(2) {
    transition-delay: .25s;
}

.hs-slide.is-active .hs-content>*:nth-child(3) {
    transition-delay: .35s;
}

.hs-slide.is-active .hs-content>*:nth-child(4) {
    transition-delay: .45s;
}

.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: var(--radius-pill);
    color: #fff;
    cursor: pointer;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background .2s ease;
}

.hs-arrow:hover {
    background: rgba(255, 255, 255, .3);
}

.hs-arrow svg {
    width: 20px;
    height: 20px;
}

.hs-prev {
    left: 18px;
}

.hs-next {
    right: 18px;
}

.hs-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 9px;
    justify-content: center;
}

.hs-dot {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, .42);
    border: 0;
    cursor: pointer;
    border-radius: var(--radius-pill);
    padding: 0;
    transition: all .25s ease;
}

.hs-dot.is-active {
    background: #fff;
    width: 26px;
}

/* ---------- Sections ---------- */
.section {
    padding: 80px 0;
}

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

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

.section-head .eyebrow {
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.section-head h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    margin: 10px 0 14px;
}

.section-head p {
    color: var(--muted);
    font-size: 15px;
}

/* Kartlar / Grid */
.grid {
    display: grid;
    gap: 26px;
}

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

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

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

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

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

.card .icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    color: var(--blue);
    border-radius: var(--radius-sm);
    font-size: 24px;
    margin-bottom: 18px;
}

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

.card p {
    color: var(--muted);
    font-size: 15px;
}

/* AdÃ„Â±m kartlarÃ„Â± (nasÃ„Â±l ÃƒÂ§alÃ„Â±Ã…Å¸Ã„Â±r) */
.step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.step .num {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 22px;
    font-weight: 800;
}

.step h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 15px;
}

/* Ã„Â°statistik Ã…Å¸eridi */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat .num {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
}

.stat p {
    color: var(--muted);
    font-weight: 500;
}

/* CTA Ã…Å¸eridi */
.cta-band {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-band p {
    opacity: .9;
    margin-bottom: 26px;
    font-size: 17px;
}

/* ---------- Sayfa baÃ…Å¸lÃ„Â±Ã„Å¸Ã„Â± (iÃƒÂ§ sayfalar) ---------- */
.page-hero {
    background: var(--navy);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero p {
    opacity: .85;
    font-size: 17px;
}

.breadcrumb {
    font-size: 14px;
    opacity: .8;
    margin-top: 12px;
}

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

/* Ã„Â°ÃƒÂ§erik bloklarÃ„Â± */
.prose {
    max-width: 780px;
    margin: 0 auto;
}

.prose h2 {
    font-size: 26px;
    margin: 34px 0 14px;
}

.prose h3 {
    font-size: 20px;
    margin: 26px 0 10px;
}

.prose p {
    color: #475569;
    margin-bottom: 16px;
    font-size: 16px;
}

.prose ul.check {
    margin: 16px 0;
    display: grid;
    gap: 12px;
}

.prose ul.check li {
    padding-left: 32px;
    position: relative;
    color: #475569;
}

.prose ul.check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Hakkimizda giris (metin + gorsel) */
.about-intro {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 18px;
}

.about-text p.lead {
    font-size: 19px;
    color: var(--ink);
    font-weight: 500;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    aspect-ratio: 5 / 4;
}

.about-visual .panel {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--navy), var(--blue));
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-visual .panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.about-visual .badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-visual .badge .b-ico {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    color: var(--blue);
    flex: none;
    border-radius: var(--radius-sm);
}

.about-visual .badge .b-ico svg {
    width: 24px;
    height: 24px;
}

.about-visual .badge .b-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}

.about-visual .badge .b-lbl {
    font-size: 13px;
    color: var(--muted);
}

/* Blog kartlarÃ„Â± */
.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card .thumb {
    height: 180px;
    background: var(--navy);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .5);
    font-size: 42px;
}

.blog-card .body {
    padding: 24px;
}

.blog-card .meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

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

.blog-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 14px;
}

.blog-card .read {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

/* Ã„Â°letiÃ…Å¸im */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.contact-info .item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info .item .ico {
    width: 46px;
    height: 46px;
    flex: none;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 20px;
}

.contact-info .item h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.contact-info .item p {
    color: var(--muted);
    font-size: 15px;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
}

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

/* ---------- 2. asama arac detay formu ---------- */
.detail-wrap {
    max-width: 620px;
    margin: 0 auto;
}

.detail-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-soft);
    color: var(--navy);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
}

.tag-pill svg {
    width: 16px;
    height: 16px;
}

.detail-edit {
    margin-left: auto;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}

.detail-edit:hover {
    text-decoration: underline;
}

.detail-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.detail-form .form-group select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding-right: 44px;
    font-family: inherit;
    font-size: 15px;
    background-color: var(--bg);
    color: var(--ink);
}

.detail-form .form-group select:focus {
    outline: none;
    border-color: var(--blue);
    background-color: #fff;
}

.detail-form select:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.req {
    color: #e11d48;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ---------- Sonuc sayfasi ---------- */
.result-card {
    max-width: 620px;
    margin: 0 auto 28px;
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 44px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.result-card .eyebrow {
    color: var(--blue-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.result-price {
    font-size: clamp(34px, 6vw, 52px);
    font-weight: 800;
    margin: 10px 0 8px;
}

.result-range {
    opacity: .9;
    font-size: 16px;
    margin-bottom: 6px;
}

.result-note {
    opacity: .7;
    font-size: 14px;
}

.result-specs {
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.result-specs .spec {
    background: #fff;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.result-specs .spec span {
    color: var(--muted);
    font-size: 14px;
}

.result-specs .spec strong {
    color: var(--ink);
    font-size: 15px;
    text-align: right;
}

.result-actions {
    max-width: 620px;
    margin: 26px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.result-actions .randevu-box {
    display: inline-flex;
}

.btn-success {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.btn-success:hover {
    background: #15803d;
    border-color: #15803d;
}

.randevu-ok {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
}

.randevu-ok strong {
    font-size: 15px;
}

.randevu-ok span {
    color: #065f46;
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    color: var(--muted);
}

/* ---- Değerleme CTA bandı ---- */
.footer-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, var(--blue) 0%, var(--navy) 58%, var(--navy-dark) 100%);
}

.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(680px circle at 88% -30%, rgba(255, 255, 255, .16), transparent 60%),
        radial-gradient(420px circle at 10% 130%, rgba(255, 255, 255, .08), transparent 60%);
    pointer-events: none;
}

.footer-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 20px !important;
}

.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 6px 13px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-pill);
}

.footer-cta-eyebrow svg {
    width: 15px;
    height: 15px;
}

.footer-cta-text h3 {
    color: #fff;
    font-size: clamp(21px, 2.6vw, 29px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.65;
    max-width: 620px;
}

.footer-cta-btn {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .26);
    transition: transform .25s ease, box-shadow .25s ease;
}

.footer-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform .25s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, .34);
}

.footer-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ---- Ana footer (açık tema) ----
   Beyaz zemin + ince noktalı desen; üstünde yavaşça dönen/süzülen geometrik şekiller. */
.footer-main {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    color: var(--muted);
    overflow: hidden;
    isolation: isolate;
}

/* Noktalı desen — çok yavaş kayar, üste doğru solarak biter */
.footer-main::before {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: -1;
    background-image: radial-gradient(circle, rgba(163, 15, 28, .17) 1.4px, transparent 1.5px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 42%);
    mask-image: linear-gradient(180deg, transparent, #000 42%);
    animation: footerDots 32s linear infinite;
    pointer-events: none;
}

@keyframes footerDots {
    to {
        transform: translate(26px, 26px);
    }
}

/* Geometrik dekor: iki kare + bir ışık halkası; farklı hızlarda hareket eder */
.footer-deco {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    display: none;
}

.footer-deco span {
    position: absolute;
    display: block;
}

.fd-sq {
    border: 1.5px solid rgba(163, 15, 28, .16);
    border-radius: var(--radius-lg);
}

.fd-sq-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: 7%;
    animation: fdSpin 48s linear infinite;
}

.fd-sq-2 {
    width: 170px;
    height: 170px;
    bottom: 30px;
    left: 3%;
    border-color: rgba(12, 27, 51, .1);
    animation: fdSpin 36s linear infinite reverse;
}

.fd-ring {
    width: 280px;
    height: 280px;
    top: 22%;
    right: 30%;
    border-radius: var(--radius-pill);
    background: radial-gradient(circle, rgba(163, 15, 28, .11), transparent 68%);
    animation: fdFloat 14s ease-in-out infinite;
}

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

@keyframes fdFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-26px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .footer-main::before,
    .fd-sq,
    .fd-ring {
        animation: none;
    }
}

.footer-top {
    position: relative;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding: 72px 0 54px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-about {
    font-size: 15px;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--navy);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(163, 15, 28, .28);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.footer-col ul {
    display: grid;
    gap: 13px;
}

.footer-col ul a {
    color: var(--muted);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--blue);
    transform: translateX(3px);
}

.footer-contact ul {
    gap: 16px;
}

.footer-contact li,
.footer-contact a {
    display: flex;
    gap: 12px;
    color: var(--muted);
    font-size: 15px;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--blue);
}

.footer-contact .ci {
    width: 38px;
    height: 38px;
    flex: none;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--blue);
    transition: var(--transition);
}

.footer-contact a:hover .ci {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.footer-contact .ci svg {
    width: 17px;
    height: 17px;
}

.footer-bottom {
    position: relative;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 26px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--muted);
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    color: var(--muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--blue);
}

.footer-dev {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    transition: var(--transition);
}

.footer-dev-img {
    height: 16px;
    width: auto;
    display: block;
    opacity: .75;
    transition: var(--transition);
}

.footer-dev:hover .footer-dev-img {
    opacity: 1;
}

/* ---------- 404 ---------- */
.notfound {
    text-align: center;
    padding: 120px 20px;
}

.notfound .code {
    font-size: 110px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.notfound h2 {
    font-size: 26px;
    margin: 10px 0 16px;
}

.notfound p {
    color: var(--muted);
    margin-bottom: 26px;
}

/* ==========================================================================
   Değerleme Sihirbazı (çok adımlı form + parça durumu)
   ========================================================================== */
.valu-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 34px;
}

.valu-head h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -.02em;
}

.valu-head p {
    color: var(--muted);
    margin-top: 8px;
    font-size: 16px;
}

/* Adım göstergesi */
.wiz-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto 30px;
}

.wiz-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.wiz-step .wiz-dot {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid var(--border);
    color: var(--muted);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.wiz-step .wiz-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
}

.wiz-step:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 19px;
    right: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
    transition: var(--transition);
}

.wiz-step.is-active .wiz-dot,
.wiz-step.is-done .wiz-dot {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.wiz-step.is-active .wiz-name,
.wiz-step.is-done .wiz-name {
    color: var(--ink);
}

.wiz-step.is-active:not(:first-child)::before,
.wiz-step.is-done:not(:first-child)::before {
    background: var(--navy);
}

.wiz-step.is-done {
    cursor: pointer;
}

/* Sihirbaz kartı ve panelleri */
.wiz-form {
    max-width: 640px;
    margin: 0 auto;
    transition: max-width .3s ease;
}

.wiz-form.is-wide {
    max-width: 1040px;
}

.wiz-panel {
    display: none;
}

.wiz-panel.is-active {
    display: block;
    animation: wizFade .25s ease;
}

@keyframes wizFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.wiz-nav {
    margin-top: 8px;
}

.wiz-nav-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.wiz-nav-right {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.link-reset {
    background: none;
    border: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
}

.link-reset:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Parça durumu düzeni */
.parca-head {
    margin-bottom: 24px;
}

.parca-head h3 {
    font-size: 20px;
    font-weight: 700;
}

.parca-head p {
    color: var(--muted);
    font-size: 14.5px;
    margin-top: 4px;
}

.parca-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.car-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

.car-panel svg.damage-car {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    margin: 0 auto;
}

.wiz-step.is-done .wiz-dot svg {
    width: 18px;
    height: 18px;
}

[data-part] {
    cursor: pointer;
    transition: opacity .2s ease, fill .2s ease;
}

[data-part]:hover {
    opacity: .7;
}

.car-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0 4px;
    font-size: 13px;
    color: var(--muted);
}

.car-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.car-legend .sw {
    width: 14px;
    height: 14px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius-xs);
}

.sw.s0,
.dot.s0 {
    background: #E9E9E9;
}

.sw.s1,
.dot.s1 {
    background: #FACC15;
}

.sw.s2,
.dot.s2 {
    background: #2563EB;
}

.sw.s3,
.dot.s3 {
    background: #DC2626;
}

.parca-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.hasar-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.hasar-label {
    font-weight: 600;
    font-size: 14.5px;
    margin-bottom: 12px;
}

.hasar-note {
    color: var(--muted);
    font-size: 13px;
    margin-top: 10px;
}

/* Segment (Yok/Var - Hayır/Evet) */
.seg {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
}

.seg input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.seg label {
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: var(--transition);
}

.seg label:nth-of-type(2) {
    border-left: 1px solid var(--border);
}

.seg input:checked+label {
    background: var(--navy);
    color: #fff;
}

.seg input:focus-visible+label {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
}

.seg-lg {
    display: flex;
    width: 100%;
    margin-top: 0;
}

.seg-lg label {
    flex: 1;
    text-align: center;
    padding: 12px;
}

/* Sağ kolon grupları */
.info-group {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
}

.info-group-title {
    background: var(--bg);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
}

.info-row+.info-row {
    border-top: 1px solid var(--border);
}

.info-row>span {
    font-size: 15px;
    font-weight: 500;
}

.form-hint {
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
}

.form-hint strong {
    color: var(--navy);
    font-weight: 600;
}

/* Parça durumu modalı */
.pm-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pm-modal[hidden] {
    display: none;
}

.pm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 32, 63, .55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.pm-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: wizFade .2s ease;
}

.pm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

.pm-head h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.pm-close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
}

.pm-close:hover {
    color: var(--ink);
}

.pm-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 16px 22px;
    background: #fff;
    border: none;
    border-top: 1px solid var(--border);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: var(--transition);
}

.pm-opt:first-child {
    border-top: none;
}

.pm-opt:hover {
    background: var(--bg);
}

.pm-opt.is-current {
    background: var(--bg-soft);
}

.pm-opt .dot {
    width: 22px;
    height: 22px;
    flex: none;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: var(--radius-pill);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .parca-grid {
        grid-template-columns: 1fr;
    }

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

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

    .valuation-box {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 15px !important;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 720px) {
    .valuation-box {
        margin-top: -120px;
    }

    .hero-swiper .swiper-pagination {
        bottom: 135px;
    }
}

@media (max-width: 1300px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }
}

@media (max-width: 720px) {
    .header-inner {
        height: 62px;
    }

    .logo-img {
        height: 38px;
    }

    .brand-logo {
        font-size: 26px;
    }

    /* Hero */
    /* .hero { min-height: calc(100vh - 62px); padding: 56px 0 64px; } */
    .hero .eyebrow {
        font-size: 12.5px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    /* `.hero p` burada da kaldırıldı — mobil banner açıklaması `.hb-desc` ile veriliyor */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .valuation-box {
        grid-template-columns: 1fr;
        padding: 18px;
        margin-top: 32px;
        gap: 12px;
    }

    /* Sekmeler mobilde de yan yana kalır; ölçüler küçülür. */
    .vb-tabs {
        gap: 18px;
    }

    .vb-tab {
        gap: 6px;
        padding-bottom: 10px;
        font-size: 13.5px;
    }

    .vb-tab svg {
        width: 16px;
        height: 16px;
    }

    /* Genel bÃƒÂ¶lÃƒÂ¼mler */
    .section {
        padding: 52px 0;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .section-head p {
        font-size: 15.5px;
    }

    .card {
        padding: 24px;
    }

    .cta-band {
        padding: 40px 24px;
    }

    .page-hero {
        padding: 48px 0;
    }

    .valuation-box {
        grid-template-columns: 1fr;
    }

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

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        aspect-ratio: 16 / 10;
    }

    .about-visual .badge {
        left: 16px;
        bottom: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .result-specs {
        grid-template-columns: 1fr;
    }

    .stats {
        gap: 28px 20px;
    }

    /* Sihirbaz */
    .wiz-step .wiz-name {
        font-size: 11.5px;
    }

    .wiz-step .wiz-dot {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .wiz-step:not(:first-child)::before {
        top: 16px;
    }

    .parca-grid {
        gap: 22px;
    }

    .wiz-nav-2 {
        flex-wrap: wrap;
    }

    .wiz-nav-right {
        width: 100%;
    }

    .wiz-nav-right .btn {
        flex: 1;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-cta-text h3 {
        font-size: 22px;
    }

    /* Hero slider mobil */
    .hero {
        padding: 24px 0 48px;
    }

    .hero-swiper {
        margin-top: -24px;
        height: auto;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }

    /* Mobilde vw ölçeği metni okunamaz kılar (2.5vw ≈ 9px):
       içerik görselin altına iner, sabit okunur boyutlara döner. */
    .hero-swiper .swiper-slide {
        flex-direction: column;
    }

    /* Görsel alanı yükselsin: aracın olduğu sol taraf öne çıksın, sağdaki
       boş alanın ~%30'u kırpılsın. Kaynak oran 3.17 → 2.2 (görünen: sol %70). */
    .hero-swiper .swiper-slide img {
        flex: none;
        aspect-ratio: 2.2 / 1;
        object-fit: cover;
        object-position: left center;
    }

    .hb-content {
        position: static;
        transform: none;
        width: 100%;
        padding: 22px 20px 42px;
        text-align: center;
        background: var(--white);
    }

    .hb-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .hb-desc {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hb-btn {
        font-size: 14px;
        gap: 8px;
        padding: 12px 24px;
        box-shadow: 0 8px 20px rgba(163, 15, 28, .25);
    }

    .hb-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-swiper .hb-content>* {
        transform: translateY(10px);
    }

    .hero-swiper .swiper-pagination {
        bottom: 10px;
    }

    .hs-slide {
        min-height: 340px;
        padding: 40px 24px 56px;
    }

    .hs-ghost svg {
        width: 240px;
        height: 240px;
    }

    .hs-arrow {
        width: 38px;
        height: 38px;
    }

    .hs-prev {
        left: 10px;
    }

    .hs-next {
        right: 10px;
    }

    .container {
        padding: 0 18px;
    }
}

/* ---- Alım kriteri uyarısı (değerleme sihirbazı 1. adım) ---- */
.wiz-uyari {
    margin-top: 18px;
    padding: 16px 18px;
    background: #fdecec;
    border: 1px solid #f0b7b7;
    border-left: 4px solid #c0392b;
    border-radius: var(--radius-sm);
    color: #7b1d16;
    font-size: 14.5px;
    line-height: 1.55;
}

.wiz-uyari strong {
    display: block;
    margin-bottom: 6px;
    color: #96261c;
}

.wiz-uyari ul {
    margin: 0;
    padding-left: 18px;
}

.wiz-uyari li {
    margin-top: 3px;
}

/* ---- Sonuç: kriter dışı araç (fiyat gösterilmez) ---- */
.result-card.is-red {
    background: #7b1d16;
}

.result-red-title {
    font-size: clamp(22px, 3.4vw, 28px);
    font-weight: 700;
    margin: 10px 0 10px;
}

.result-red-list {
    list-style: none;
    margin: 14px auto 16px;
    padding: 0;
    max-width: 460px;
    text-align: left;
}

.result-red-list li {
    padding: 9px 14px;
    margin-top: 6px;
    font-size: 14.5px;
    background: rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
}

/* Alan altı sınır notu (kilometre / tramer kabul aralığı) */
.field-hint {
    font-size: 12.5px;
    color: var(--muted);
    margin: 6px 0 0;
}