@charset "UTF-8";
/* =====================================================================
   PrimeVize — Genel site stilleri
   Marka: lacivert #0D1B3D · turuncu #F26C21 · Poppins (başlık) + Inter (metin)
   ===================================================================== */

/* ---------------------------------------------------------- 1. Fontlar
   Font tanımları assets/css/fonts.css dosyasındadır ve sayfa başında
   ayrı bir <link> ile yüklenir (paralel indirme için daha hızlı). */

/* ---------------------------------------------------------- 2. Değişkenler */
:root {
  /* marka renkleri */
  --navy:        #0D1B3D;
  --navy-800:    #142653;
  --navy-700:    #1B3268;
  --navy-600:    #2A4380;
  --navy-300:    #7A8CB4;
  --navy-100:    #E4E9F3;

  --orange:      #F26C21;
  --orange-600:  #DB5A12;
  --orange-300:  #FBA772;
  --orange-100:  #FDEDE3;

  --cream:       #F7F7FA;
  --line:        #D7DCE3;
  --line-soft:   #E9EDF3;
  --white:       #FFFFFF;

  --text:        #16203A;
  --text-soft:   #5A6784;
  --text-mute:   #8592AB;

  --green:       #10996B;
  --green-100:   #E4F6EF;
  --red:         #D63A3A;
  --red-100:     #FBE9E9;
  --amber:       #C98A0E;
  --amber-100:   #FDF3DF;

  /* tipografi */
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* ölçek */
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-xs: 0 1px 2px rgba(13, 27, 61, .06);
  --shadow-sm: 0 2px 8px rgba(13, 27, 61, .06);
  --shadow:    0 8px 24px rgba(13, 27, 61, .08);
  --shadow-lg: 0 18px 48px rgba(13, 27, 61, .14);

  --container: 1200px;
  --gutter: 24px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* ---------------------------------------------------------- 3. Sıfırlama */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-head); font-weight: 700; line-height: 1.22; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--orange); color: #fff; }

/* bal küpü alanı — ekranda görünmez, ekran okuyucudan gizli */
.pv-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 999;
  background: var(--orange); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 10px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------------------------------------------------------- 4. Düzen */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* bölüm başlığı */
.sec-head { max-width: 760px; margin-bottom: 48px; }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.sec-head--center .eyebrow::before { display: none; }

.sec-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--navy);
  margin-bottom: 14px;
}
.section--navy .sec-title { color: #fff; }

.sec-sub {
  font-size: 17px; color: var(--text-soft); margin: 0;
}
.section--navy .sec-sub { color: rgba(255,255,255,.72); }

/* ---------------------------------------------------------- 5. Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 600;
  border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .pv-icon { flex-shrink: 0; }

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 18px rgba(242, 108, 33, .3);
}
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 10px 26px rgba(242, 108, 33, .38); }

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

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

.btn-ghost-light {
  border-color: rgba(255,255,255,.32); color: #fff;
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); }

.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1EB955; }

.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* metin bağlantısı */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--orange); font-size: 15px;
  min-height: 40px; /* parmakla rahat dokunulabilsin */
}
.link-arrow .pv-icon { transition: transform .2s var(--ease); }
.link-arrow:hover .pv-icon { transform: translateX(4px); }

/* ---------------------------------------------------------- 6. Üst bar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 42px; flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .18s var(--ease);
}
a.topbar__item:hover { color: #fff; }
.topbar__item .pv-icon { color: var(--orange); }
.topbar__socials { display: flex; align-items: center; gap: 6px; }
.topbar__socials a {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 8px; transition: background .18s var(--ease), color .18s var(--ease);
}
.topbar__socials a:hover { background: var(--orange); color: #fff; }

/* ---------------------------------------------------------- 7. Header */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(13,27,61,.09); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--header-h);
  transition: height .25s var(--ease);
}
.header.is-stuck .header__inner { height: 66px; }

/* logo */
.pv-logo { display: inline-flex; align-items: center; gap: 11px; }
.pv-logo__mark {
  width: 46px; height: 44px; flex-shrink: 0;
  transition: width .25s var(--ease), height .25s var(--ease);
}
.pv-logo__plane { fill: var(--navy); transition: fill .2s var(--ease); }
.pv-logo--white .pv-logo__plane { fill: #fff; }
.pv-logo__text { display: block; }
.pv-logo__word {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 26px; line-height: 1; letter-spacing: -.025em;
  color: var(--navy); transition: color .2s var(--ease), font-size .25s var(--ease);
}
.pv-logo--white .pv-logo__word { color: #fff; }
.pv-logo__tagline {
  display: block; margin-top: 4px;
  font-size: 9.6px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-mute); line-height: 1.3;
}
.pv-logo--white .pv-logo__tagline { color: rgba(255,255,255,.5); }
.pv-logo__image {
  display: block; width: auto; height: 46px; max-width: 250px;
  object-fit: contain; transition: height .25s var(--ease), max-width .25s var(--ease);
}
.pv-logo--sm .pv-logo__mark { width: 36px; height: 34px; }
.pv-logo--sm .pv-logo__word { font-size: 20px; }
.pv-logo--sm .pv-logo__image { height: 36px; max-width: 190px; }
.pv-logo--lg .pv-logo__mark { width: 56px; height: 54px; }
.pv-logo--lg .pv-logo__word { font-size: 32px; }
.pv-logo--lg .pv-logo__image { height: 58px; max-width: 310px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header.is-stuck .brand .pv-logo__mark { width: 40px; height: 38px; }
.header.is-stuck .brand .pv-logo__word { font-size: 23px; }
.header.is-stuck .brand .pv-logo__image { height: 40px; max-width: 220px; }

.custom-home-section__image {
  display: block; width: min(100%, 1120px); height: auto;
  margin: 0 auto 30px; border-radius: var(--radius-lg);
}
.custom-home-section__content { color: var(--text); line-height: 1.75; }
.custom-home-section__content > :first-child { margin-top: 0; }
.custom-home-section__content > :last-child { margin-bottom: 0; }
.custom-home-section__content img { max-width: 100%; height: auto; border-radius: var(--radius-md); }
.custom-home-section__content table { width: 100%; border-collapse: collapse; }
.custom-home-section__content th,
.custom-home-section__content td { padding: 12px; border: 1px solid var(--border); text-align: left; }
.custom-home-section__action { margin-top: 30px; text-align: center; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  position: relative; white-space: nowrap;
  padding: 10px 13px; border-radius: 8px;
  font-size: 15.2px; font-weight: 500; color: var(--navy);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--orange); font-weight: 600; }
.nav__chevron { margin-left: 4px; vertical-align: -2px; }
.nav__submenu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
  min-width: 220px; padding: 8px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 12px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__submenu::before { content: ''; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__submenu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  color: var(--navy); font-size: 14.5px; white-space: nowrap;
}
.nav__submenu a:hover, .nav__submenu a:focus-visible { color: var(--orange); background: var(--orange-50); }

.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--navy); font-size: 15px;
}
.header__phone .pv-icon { color: var(--orange); }
.header__phone:hover { color: var(--orange); }

.burger {
  display: none; width: 46px; height: 46px;
  border-radius: 10px; border: 1px solid var(--line);
  place-items: center; color: var(--navy);
}
.burger:hover { border-color: var(--navy); }

/* mobil menü */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  /* visibility: kapalıyken bağlantılar klavye ile odaklanamasın
     ve sayfaya yatay kaydırma eklemesin. */
  visibility: hidden;
  transition: transform .32s var(--ease), visibility .32s;
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-nav__close {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.22); color: #fff;
}
.mobile-nav__body { padding: 12px 20px 28px; flex: 1; }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-size: 18px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.mobile-nav__link .pv-icon { color: var(--navy-300); }
.mobile-nav__link:hover, .mobile-nav__link.is-active { color: var(--orange-300); }
.mobile-nav__link--child { padding: 12px 4px 12px 22px; font-size: 15.5px; color: var(--navy-200); }
.mobile-nav__foot { padding: 22px 20px 40px; display: grid; gap: 12px; }
body.no-scroll { overflow: hidden; }

/* ---------------------------------------------------------- 8. Hero */
.hero {
  position: relative; isolation: isolate;
  padding: 84px 0 92px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 12% 10%, rgba(13,27,61,.94) 0%, rgba(13,27,61,.86) 42%, rgba(13,27,61,.74) 100%),
    linear-gradient(100deg, rgba(13,27,61,.96) 30%, rgba(13,27,61,.55) 100%);
}
/* uçuş rotası dekoru */
.hero__route {
  position: absolute; right: -40px; top: 40px; z-index: -1;
  width: min(620px, 55%); opacity: .16; pointer-events: none;
}

.hero__grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 9px; margin-bottom: 22px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; font-size: 13.5px; font-weight: 500;
}
.hero__badge .pv-icon { color: var(--orange-300); }

.hero__title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.12; margin-bottom: 20px;
}
.hero__title em { font-style: normal; color: var(--orange); }

.hero__text {
  font-size: 18px; color: rgba(255,255,255,.78);
  max-width: 560px; margin-bottom: 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__trust li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: rgba(255,255,255,.82);
}
.hero__trust .pv-icon { color: var(--green); flex-shrink: 0; }

/* hero form kartı */
.hero-form {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.hero-form__title { font-size: 22px; margin-bottom: 6px; }
.hero-form__sub { font-size: 14px; color: rgba(255,255,255,.66); margin-bottom: 22px; }
.hero-form .field label { color: rgba(255,255,255,.8); }
/* Not: burada `background` kısayolu kullanılmaz — kullanılırsa select'in
   ok simgesi (background-image/repeat/position) sıfırlanıp döşenir. */
.hero-form .field input,
.hero-form .field select,
.hero-form .field textarea {
  background-color: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.hero-form .field input::placeholder { color: rgba(255,255,255,.45); }
.hero-form .field select option { color: var(--text); }
.hero-form .field input:focus,
.hero-form .field select:focus,
.hero-form .field textarea:focus {
  background-color: rgba(255,255,255,.14);
  border-color: var(--orange);
}
.hero-form__note {
  margin-top: 14px; font-size: 12.5px; line-height: 1.55;
  color: rgba(255,255,255,.55); text-align: center;
}
.hero-form__note a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ---------------------------------------------------------- 8b. Üst alan: slider + form */
.top {
  padding: 26px 0 38px;
  background:
    radial-gradient(900px 420px at 10% -20%, rgba(242,108,33,.07) 0%, transparent 60%),
    radial-gradient(900px 420px at 95% 0%, rgba(13,27,61,.06) 0%, transparent 60%),
    var(--cream);
}

.top__intro { max-width: 820px; margin-bottom: 18px; }
.top__intro .eyebrow { margin-bottom: 8px; }
.top__title {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--navy); line-height: 1.25; margin: 0;
}

/* align-items:start — slider kendi en/boy oranını korusun, forma göre
   uzayıp görseli kırpmasın. */
.top__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 396px;
  gap: 26px; align-items: start;
}

/* --- slider --- */
.promo {
  position: relative; isolation: isolate;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.promo__viewport { overflow: hidden; }
.promo__track {
  display: flex;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.promo__slide {
  flex: 0 0 100%; min-width: 0; display: block; position: relative;
  background: var(--cream);
}
.promo__slide img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 10; object-fit: cover;
}
a.promo__slide { cursor: pointer; }
a.promo__slide:hover img { opacity: .96; }

.promo__slide--fallback img { aspect-ratio: 16 / 10; }
.promo__caption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 24px 26px;
  background: linear-gradient(to top, rgba(13,27,61,.92), rgba(13,27,61,0));
  color: #fff; font-size: 17px; line-height: 1.5;
}

.promo__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--navy);
  box-shadow: 0 3px 14px rgba(13,27,61,.18);
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.promo__arrow:hover { background: var(--orange); color: #fff; }
.promo__arrow--prev { left: 14px; }
.promo__arrow--prev svg { transform: rotate(180deg); }
.promo__arrow--next { right: 14px; }

.promo__dots {
  position: absolute; left: 0; right: 0; bottom: 4px; z-index: 2;
  display: flex; justify-content: center; gap: 2px;
}
/* Görünen nokta küçük, dokunma alanı geniş. */
.promo__dot {
  width: 24px; height: 40px; padding: 0; border: 0; background: none;
  display: grid; place-items: center; cursor: pointer;
}
.promo__dot::before {
  content: ''; display: block; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.65); box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: all .2s var(--ease);
}
.promo__dot.is-active::before { background: var(--orange); width: 20px; border-radius: 4px; }

/* --- form kartı --- */
.lead-card {
  background: #fff; border: 2px solid var(--orange);
  border-radius: var(--radius-xl); padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.lead-card__title {
  font-size: 18px; color: var(--navy); line-height: 1.35;
  text-transform: uppercase; letter-spacing: .01em; margin-bottom: 5px;
}
.lead-card__title em { font-style: normal; color: var(--orange); }
.lead-card__sub { font-size: 13.4px; color: var(--text-mute); margin-bottom: 16px; }
.lead-card .field { margin-bottom: 11px; }
.lead-card .field > label {
  font-size: 11.8px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-mute); margin-bottom: 5px;
}
.lead-card .field input,
.lead-card .field select { padding: 11px 14px; font-size: 15px; }
.lead-card .check { font-size: 12.8px; }
.lead-card .btn-lg { padding: 14px 26px; }
.lead-card__note {
  margin: 11px 0 0; font-size: 12px; line-height: 1.5;
  color: var(--text-mute); text-align: center;
}
.lead-card__note a { color: var(--orange); text-decoration: underline; }

/* ---------------------------------------------------------- 8c. Özellik şeridi */
.feature-strip {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
}
.feature-strip__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 4px 28px;
  border-right: 1px solid var(--line-soft);
}
.feature:first-child { padding-left: 0; }
.feature:last-child { border-right: 0; padding-right: 0; }
.feature__icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--orange-100); color: var(--orange);
}
.feature__title {
  font-size: 15.6px; color: var(--navy); margin: 2px 0 5px; line-height: 1.3;
}
.feature__text {
  font-size: 13.8px; color: var(--text-soft); line-height: 1.55; margin: 0;
}

/* ---------------------------------------------------------- 8d. Alınan vizeler */
.vresult-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}

.vresult {
  margin: 0; background: #fff;
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.vresult:hover {
  transform: translateY(-5px); box-shadow: var(--shadow);
  border-color: var(--orange-300);
}

.vresult__media {
  position: relative; display: block; width: 100%; padding: 0;
  border: 0; background: var(--navy); cursor: zoom-in; line-height: 0;
}
.vresult__media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .5s var(--ease);
}
.vresult:hover .vresult__media img { transform: scale(1.04); }

.vresult__badge {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  padding: 5px 12px; border-radius: 100px;
  background: var(--orange); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 3px 10px rgba(242,108,33,.4);
}
.vresult__zoom {
  position: absolute; bottom: 12px; right: 12px; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--navy);
  opacity: 0; transform: scale(.85);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.vresult:hover .vresult__zoom { opacity: 1; transform: scale(1); }

.vresult__body { padding: 15px 17px 17px; }
.vresult__name {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.4px;
  color: var(--navy); line-height: 1.3;
}
.vresult__name .pv-icon { color: var(--green); flex-shrink: 0; }
.vresult__meta { font-size: 13px; color: var(--text-mute); margin-top: 4px; }
.vresult__note {
  font-size: 13px; color: var(--text-soft); line-height: 1.55;
  margin: 9px 0 0; padding-top: 9px; border-top: 1px solid var(--line-soft);
}

/* büyütme penceresi */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center; padding: 28px;
  background: rgba(8,15,32,.9); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 720px); max-height: 82vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: scale(.96); transition: transform .28s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__caption {
  margin-top: 16px; color: #fff; font-size: 15px; text-align: center;
  max-width: 620px;
}
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14); color: #fff;
  transition: background .18s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.28); }

/* ---------------------------------------------------------- 9. Form alanları */
.field { margin-bottom: 16px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.field label .req { color: var(--orange); }

.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 15.5px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235A6784' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 42px;
}
.hero-form .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,108,33,.14);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field__error { margin-top: 6px; font-size: 13px; color: var(--red); }
.field__help { margin-top: 6px; font-size: 13px; color: var(--text-mute); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* label.check — `.field label { display:block }` kuralını yenmek için
   eleman adıyla yazılır; aksi hâlde onay kutusu ile metin alt alta düşer. */
label.check, .check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; font-weight: 400; line-height: 1.55; cursor: pointer;
  color: var(--text-soft);
}
.check input {
  width: 19px; height: 19px; margin-top: 1px; flex-shrink: 0;
  accent-color: var(--orange); cursor: pointer;
}
.check a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.check a:hover { color: var(--orange-600); }
.hero-form .check { color: rgba(255,255,255,.72); }
.hero-form .check a { color: var(--orange-300); }

/* ---------------------------------------------------------- 10. Güven şeridi */
/* Not: eskiden koyu hero'nun üstüne binmesi için negatif margin vardı.
   Üst alan artık açık zeminli slider olduğu için normal akışta duruyor. */
.stats {
  background: var(--cream);
  padding: 42px 0; position: relative; z-index: 5;
}
.stats__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.stat {
  padding: 30px 22px; text-align: center;
  border-right: 1px solid var(--line-soft);
  transition: background .2s var(--ease);
}
.stat:last-child { border-right: 0; }
.stat:hover { background: var(--cream); }
.stat__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin: 0 auto 12px;
  border-radius: 13px; background: var(--orange-100); color: var(--orange);
}
.stat__value {
  font-family: var(--font-head); font-size: clamp(28px, 3vw, 36px);
  font-weight: 700; color: var(--navy); line-height: 1;
}
/* Yalnızca sonek (+, %) turuncu — rakam lacivert kalır ki
   turuncu vurgusu sayfada seyrek ve güçlü olsun. */
.stat__suffix { color: var(--orange); }
.stat__label { margin-top: 8px; font-size: 14px; color: var(--text-soft); }

/* ---------------------------------------------------------- 11. Kartlar */
.card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-300);
  box-shadow: var(--shadow);
}

/* vize türü kartı */
.visa-card { display: flex; flex-direction: column; height: 100%; }
.visa-card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin-bottom: 18px;
  border-radius: 15px; background: var(--navy); color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.visa-card:hover .visa-card__icon { background: var(--orange); transform: rotate(-6deg) scale(1.05); }
.visa-card__title { font-size: 19px; color: var(--navy); margin-bottom: 9px; }
.visa-card__text { font-size: 14.8px; color: var(--text-soft); margin-bottom: 18px; flex: 1; }
.visa-card__meta {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-mute); margin-bottom: 16px;
}
.visa-card__meta .pv-icon { color: var(--orange); }
.visa-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}

/* ülke kartı */
.country-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--navy);
  aspect-ratio: 4 / 3;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.country-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .55s var(--ease);
}
.country-card:hover .country-card__img { transform: scale(1.07); }
.country-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,61,.94) 0%, rgba(13,27,61,.5) 42%, rgba(13,27,61,.05) 100%);
}
.country-card__body {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 22px; color: #fff;
}
.country-card__flag {
  display: inline-block; font-size: 26px; line-height: 1; margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.country-card__name { font-size: 20px; margin-bottom: 4px; }
.country-card__meta {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.75);
}
.country-card__cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--orange-300);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.country-card:hover .country-card__cta { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------- 12. Süreç */
.process { position: relative; }
.process__track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  position: relative;
}
.process__track::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--orange-300), var(--navy-300));
  opacity: .45; z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.step__num {
  display: grid; place-items: center;
  width: 60px; height: 60px; margin: 0 auto 18px;
  border-radius: 50%; background: #fff; color: var(--navy);
  border: 2px solid var(--line);
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  transition: all .3s var(--ease);
}
.step:hover .step__num,
.step.is-active .step__num {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 8px 22px rgba(242,108,33,.34);
  transform: scale(1.06);
}
.step__icon {
  display: grid; place-items: center; width: 36px; height: 36px;
  margin: -34px auto 16px; color: var(--orange);
  opacity: 0; transition: opacity .3s var(--ease);
}
.step__title { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.step__text { font-size: 14.3px; color: var(--text-soft); }

/* ---------------------------------------------------------- 13. Değerler */
.value-card {
  text-align: center; padding: 36px 26px;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card__icon {
  display: grid; place-items: center;
  width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 20px; background: var(--orange-100); color: var(--orange);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.value-card:hover .value-card__icon { background: var(--orange); color: #fff; }
.value-card__title {
  font-size: 17px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.value-card__text { font-size: 15px; color: var(--text-soft); }

/* ---------------------------------------------------------- 14. Yorumlar */
.reviews { position: relative; }
.reviews__viewport { overflow: hidden; margin: 0 -12px; padding: 8px 0 4px; }
.reviews__track {
  display: flex; gap: 0;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.review {
  flex: 0 0 33.3333%; padding: 0 12px; min-width: 0;
}
.review__inner {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 28px;
  height: 100%; display: flex; flex-direction: column;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.review__inner:hover { box-shadow: var(--shadow); border-color: var(--orange-300); }
.review__stars { display: flex; gap: 3px; color: #F5B027; margin-bottom: 14px; }
.review__quote {
  font-size: 15.4px; color: var(--text); line-height: 1.7;
  flex: 1; margin-bottom: 20px;
}
.review__quote::before { content: '“'; font-family: var(--font-head); color: var(--orange); font-size: 30px; line-height: 0; vertical-align: -6px; margin-right: 2px; }
.review__foot { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.review__name { font-weight: 600; font-size: 15px; color: var(--navy); }
.review__meta { font-size: 13px; color: var(--text-mute); }
.badge-ok {
  display: inline-flex; align-items: center; gap: 5px;
  margin-left: auto; padding: 5px 11px;
  background: var(--green-100); color: var(--green);
  border-radius: 100px; font-size: 12px; font-weight: 600;
  white-space: nowrap;
}

.reviews__nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 34px; }
.reviews__btn {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 50%; color: var(--navy);
  background: #fff; transition: all .2s var(--ease);
}
.reviews__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.reviews__dots { display: flex; gap: 2px; margin: 0 6px; }
/* Görsel olarak küçük ama dokunma alanı 24x40px — parmakla rahat kullanılır. */
.reviews__dot {
  width: 26px; height: 46px; padding: 0; border: 0; background: none;
  display: grid; place-items: center; cursor: pointer;
}
.reviews__dot::before {
  content: ''; display: block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); transition: all .2s var(--ease);
}
.reviews__dot:hover::before { background: var(--navy-300); }
.reviews__dot.is-active::before { background: var(--orange); width: 22px; border-radius: 4px; }

/* ---------------------------------------------------------- 15. Ret bandı */
.rejection {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.rejection::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,108,33,.22) 0%, transparent 70%);
}
.rejection__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative;
}
.rejection__title { font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.rejection__title em { font-style: normal; color: var(--orange); }
.rejection__text { color: rgba(255,255,255,.76); max-width: 620px; margin: 0; }

/* ---------------------------------------------------------- 16. Blog */
.post-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-100); }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__img { transform: scale(1.06); }
.post-card__cat {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 13px; border-radius: 100px;
  background: rgba(255,255,255,.94); color: var(--navy);
  font-size: 12px; font-weight: 600;
}
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12.8px; color: var(--text-mute); margin-bottom: 11px;
}
.post-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-card__title {
  font-size: 18px; line-height: 1.35; color: var(--navy); margin-bottom: 10px;
  transition: color .18s var(--ease);
}
.post-card:hover .post-card__title { color: var(--orange); }
.post-card__excerpt { font-size: 14.6px; color: var(--text-soft); flex: 1; margin-bottom: 16px; }

/* ---------------------------------------------------------- 17. SSS */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item.is-open { border-color: var(--orange-300); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%; padding: 20px 24px; text-align: left;
  font-family: var(--font-head); font-size: 16.5px; font-weight: 600; color: var(--navy);
}
.faq__q:hover { color: var(--orange); }
.faq__icon {
  flex-shrink: 0; width: 32px; height: 32px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--cream); color: var(--navy);
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq__item.is-open .faq__icon { transform: rotate(180deg); background: var(--orange); color: #fff; }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner > div { padding: 0 24px 22px; color: var(--text-soft); font-size: 15.4px; }
.faq__cat {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: .08em;
  margin: 34px 0 14px;
}
.faq__cat:first-child { margin-top: 0; }

/* ---------------------------------------------------------- 18. CTA bandı */
.cta-band {
  background: linear-gradient(112deg, var(--orange) 0%, #E85C15 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; left: -60px; bottom: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; padding: 56px 0;
}
.cta-band__title { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 10px; }
.cta-band__text { color: rgba(255,255,255,.9); margin: 0; max-width: 560px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------------------------------------------------------- 19. Footer */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 68px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 48px;
}
.footer__logo { height: 44px; margin-bottom: 18px; }
.footer__about { font-size: 14.6px; line-height: 1.72; margin-bottom: 22px; max-width: 340px; }
.footer__title {
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  color: #fff; margin-bottom: 18px; letter-spacing: .02em;
}
.footer__list li { margin-bottom: 11px; }
.footer__list a {
  font-size: 14.6px; transition: color .18s var(--ease), padding-left .18s var(--ease);
  display: inline-block;
}
.footer__list a:hover { color: var(--orange); padding-left: 5px; }
.footer__sublist { margin: 8px 0 2px 14px; }
.footer__sublist li { margin-bottom: 7px; }
.footer__sublist a { font-size: 13.5px; color: rgba(255,255,255,.58); }
.footer__contact li {
  display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.6px; line-height: 1.6;
}
.footer__contact .pv-icon { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 11px;
  transition: all .2s var(--ease);
}
.footer__socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 22px 0 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; font-size: 13.6px;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--orange); }

/* ---------------------------------------------------------- 20. Yüzen öğeler */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 0;
  height: 58px; padding: 0 17px;
  background: #25D366; color: #fff;
  border-radius: 100px; box-shadow: 0 10px 30px rgba(37,211,102,.42);
  transition: gap .3s var(--ease), padding .3s var(--ease), transform .25s var(--ease);
  overflow: hidden;
}
.wa-float:hover { gap: 10px; padding-inline: 20px; transform: translateY(-3px); }
.wa-float__text {
  max-width: 0; opacity: 0; white-space: nowrap; font-weight: 600; font-size: 15px;
  transition: max-width .3s var(--ease), opacity .25s var(--ease);
}
.wa-float:hover .wa-float__text { max-width: 220px; opacity: 1; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  border: 2px solid rgba(37,211,102,.55);
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* mobil alt bar */
.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 85;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(13,27,61,.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 11px 4px 10px; min-height: 62px;
  font-size: 11.8px; font-weight: 600; color: var(--navy);
  border-right: 1px solid var(--line-soft);
}
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar a .pv-icon { color: var(--orange); }
.mobile-bar a.is-wa { background: #25D366; color: #fff; }
.mobile-bar a.is-wa .pv-icon { color: #fff; }

/* ---------------------------------------------------------- 21. Açılır pencere */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center; padding: 24px;
  background: rgba(13,27,61,.62); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative; width: 100%; max-width: 460px;
  background: #fff; border-radius: var(--radius-xl);
  padding: 38px 32px 32px; text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(22px) scale(.97);
  transition: transform .32s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; color: var(--text-mute);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--cream); color: var(--navy); }
.modal__icon {
  display: grid; place-items: center; width: 64px; height: 64px;
  margin: 0 auto 18px; border-radius: 20px;
  background: var(--orange-100); color: var(--orange);
}
.modal__title { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.modal__text { font-size: 15px; color: var(--text-soft); margin-bottom: 22px; }

/* çerez bandı */
.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 95;
  width: min(400px, calc(100vw - 40px));
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }
.cookie__title {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  color: var(--navy); margin-bottom: 9px;
}
.cookie__title .pv-icon { color: var(--orange); }
.cookie__text { font-size: 13.8px; color: var(--text-soft); margin-bottom: 16px; }
.cookie__text a { color: var(--orange); text-decoration: underline; }
.cookie__actions { display: flex; gap: 9px; }

/* ---------------------------------------------------------- 22. Bildirimler */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px 18px; border-radius: var(--radius);
  font-size: 14.8px; margin-bottom: 18px;
}
.alert .pv-icon { flex-shrink: 0; margin-top: 2px; }
.alert-success { background: var(--green-100); color: #0B6B4C; }
.alert-error   { background: var(--red-100);   color: #9B2626; }
.alert-info    { background: var(--navy-100);  color: var(--navy-700); }
.alert-warning { background: var(--amber-100); color: #8A5D06; }

/* ---------------------------------------------------------- 23. İç sayfalar */
.page-hero {
  position: relative; isolation: isolate;
  background: var(--navy); color: #fff;
  padding: 64px 0 60px; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; opacity: .34;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(13,27,61,.96) 25%, rgba(13,27,61,.7) 100%);
}
.page-hero__title { font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 12px; max-width: 820px; }
.page-hero__sub { font-size: 17px; color: rgba(255,255,255,.76); max-width: 680px; margin: 0; }

.crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.crumbs a:hover { color: var(--orange-300); }
.crumbs .sep { color: rgba(255,255,255,.34); }
.crumbs [aria-current] { color: rgba(255,255,255,.9); }

.layout-sidebar {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start;
}
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.side-card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 24px;
}
.side-card--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.side-card--navy .side-card__title { color: #fff; }
.side-card__title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.side-list li { border-bottom: 1px solid var(--line-soft); }
.side-list li:last-child { border-bottom: 0; }
.side-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 0; font-size: 14.8px; color: var(--text-soft);
  transition: color .18s var(--ease), padding-left .18s var(--ease);
}
.side-list a:hover, .side-list a.is-active { color: var(--orange); padding-left: 5px; }
.side-list a.is-active { font-weight: 600; }

/* içerik metni */
.prose { font-size: 16.6px; line-height: 1.78; color: var(--text); }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-size: 25px; color: var(--navy); margin: 40px 0 16px;
  padding-left: 16px; border-left: 4px solid var(--orange); line-height: 1.3;
}
.prose h3 { font-size: 20px; color: var(--navy); margin: 30px 0 12px; }
.prose h4 { font-size: 17px; color: var(--navy); margin: 24px 0 10px; }
.prose p { margin: 0 0 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 4px; }
.prose ul li {
  position: relative; padding-left: 30px; margin-bottom: 11px;
}
.prose ul li::before {
  content: ''; position: absolute; left: 6px; top: 11px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
.prose ol { counter-reset: pv-ol; }
.prose ol li {
  position: relative; padding-left: 38px; margin-bottom: 11px; counter-increment: pv-ol;
}
.prose ol li::before {
  content: counter(pv-ol); position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--orange-600); }
.prose blockquote {
  margin: 26px 0; padding: 22px 26px;
  background: var(--cream); border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px; color: var(--navy);
}
.prose img { border-radius: var(--radius); margin: 22px 0; }
.prose table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px;
}
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line-soft); text-align: left; }
.prose th { background: var(--cream); font-weight: 600; color: var(--navy); }
.prose .pv-note {
  padding: 16px 20px; background: var(--amber-100); color: #7A5205;
  border-radius: var(--radius); font-size: 14.6px;
}

/* evrak listesi */
.doc-list { display: grid; gap: 10px; }
.doc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; background: var(--cream);
  border-radius: var(--radius); font-size: 15px;
  border: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.doc-list li:hover { background: #fff; border-color: var(--orange-300); }
.doc-list .pv-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* bilgi kutuları */
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin: 24px 0 32px; }
.fact {
  padding: 18px 20px; background: #fff;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.fact__label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 7px;
}
.fact__label .pv-icon { color: var(--orange); }
.fact__value { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy); }

/* sayfalama */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 44px; height: 44px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; font-weight: 500; color: var(--navy);
  transition: all .18s var(--ease);
}
.pagination a:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.pagination .is-current { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 600; }
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* boş durum */
.empty {
  text-align: center; padding: 64px 24px;
  background: var(--cream); border-radius: var(--radius-lg);
}
.empty__icon {
  display: grid; place-items: center; width: 72px; height: 72px;
  margin: 0 auto 18px; border-radius: 22px;
  background: #fff; color: var(--navy-300);
}
.empty__title { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.empty__text { color: var(--text-soft); margin: 0 auto; max-width: 420px; }

/* iletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 13px; background: var(--orange-100); color: var(--orange);
  flex-shrink: 0;
}
.contact-item__label { font-size: 13px; color: var(--text-mute); margin-bottom: 3px; }
.contact-item__value { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--navy); }
.contact-item__value:hover { color: var(--orange); }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft); line-height: 0; margin-top: 34px;
}
.map-frame iframe { width: 100%; height: 340px; border: 0; }

/* form kutusu */
.form-box {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl); padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-box__title { font-size: 23px; color: var(--navy); margin-bottom: 8px; }
.form-box__sub { color: var(--text-soft); font-size: 15px; margin-bottom: 26px; }

/* teşekkür sayfası */
.thanks { text-align: center; max-width: 620px; margin-inline: auto; padding: 80px 0 96px; }
.thanks__icon {
  display: grid; place-items: center; width: 96px; height: 96px;
  margin: 0 auto 26px; border-radius: 30px;
  background: var(--green-100); color: var(--green);
  animation: pop .5s var(--ease);
}
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks__title { font-size: clamp(28px, 4vw, 38px); color: var(--navy); margin-bottom: 14px; }
.thanks__text { font-size: 17px; color: var(--text-soft); margin-bottom: 30px; }
.thanks__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* rozetler */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 100px;
  background: var(--orange-100); color: var(--orange-600);
  font-size: 12.8px; font-weight: 600;
}
.chip--navy { background: var(--navy-100); color: var(--navy-700); }
.chip--green { background: var(--green-100); color: var(--green); }

/* yükleniyor göstergesi */
.pv-spin {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: pvSpin .7s linear infinite;
  vertical-align: -2px;
}
@keyframes pvSpin { to { transform: rotate(360deg); } }

/* ---------------------------------------------------------- 24. Animasyon */
/* Giriş animasyonu YALNIZCA JavaScript çalışıyorsa uygulanır.
   Aksi hâlde (betik yüklenmezse) içerik görünmez kalırdı. */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------- 25. Duyarlılık */
@media (max-width: 1180px) {
  .hero__grid { grid-template-columns: 1fr 380px; gap: 40px; }
  .top__grid { grid-template-columns: minmax(0, 1fr) 350px; gap: 20px; }
  .vresult-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1.3fr; }
  .footer__grid > *:nth-child(3) { display: none; }
}

@media (max-width: 1024px) {
  .section { padding: 68px 0; }
  .hero { padding: 60px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-form { max-width: 520px; }
  .hero__route { display: none; }

  .nav, .header__phone { display: none; }
  .burger { display: grid; }

  .process__track { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
  .process__track::before { display: none; }

  .layout-sidebar { grid-template-columns: 1fr; gap: 36px; }
  .sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .review { flex: 0 0 50%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .rejection__inner, .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }

  /* üst alan: slider ve form alt alta */
  .top__grid { grid-template-columns: 1fr; }
  .lead-card { max-width: 520px; }

  /* özellik şeridi: 3 sütun dar geliyor */
  .feature-strip__grid { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .feature { padding: 4px 22px; }
  .feature:nth-child(2n) { border-right: 0; padding-right: 0; }
  .feature:nth-child(2n+1) { padding-left: 0; }
}

@media (max-width: 860px) {
  .vresult-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .topbar__list--secondary { display: none; }
}

@media (max-width: 680px) {
  :root { --gutter: 18px; --header-h: 66px; }
  body { font-size: 16px; padding-bottom: 62px; }

  .section { padding: 52px 0; }
  .section--tight { padding: 40px 0; }
  .sec-head { margin-bottom: 32px; }

  .hero { padding: 44px 0 56px; }
  .hero__title { font-size: 30px; }
  .hero__text { font-size: 16.5px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero-form { padding: 24px 20px; }

  .stats { padding: 28px 0; }
  .stat { padding: 22px 12px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr; gap: 26px; }
  .step { display: grid; grid-template-columns: 60px 1fr; gap: 18px; text-align: left; align-items: start; }
  .step__num { margin: 0; }
  .step__icon { display: none; }

  .review { flex: 0 0 100%; }
  .card, .value-card { padding: 24px 20px; }
  .form-box { padding: 24px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bar { flex-direction: column; text-align: center; gap: 12px; }

  /* Dar ekranda başlıktaki CTA butonu logoyu sıkıştırıyor.
     Aynı çağrı alt sabit barda zaten var, burada gizleniyor. */
  .header__actions .btn { display: none; }
  .pv-logo__mark { width: 38px; height: 36px; }
  .pv-logo__word { font-size: 22px; }
  .pv-logo__image { height: 38px; max-width: 190px; }
  .header.is-stuck .brand .pv-logo__mark { width: 34px; height: 32px; }
  .header.is-stuck .brand .pv-logo__word { font-size: 20px; }
  .header.is-stuck .brand .pv-logo__image { height: 34px; max-width: 175px; }

  /* üst alan */
  .top { padding: 22px 0 32px; }
  .top__intro { margin-bottom: 16px; }
  .top__title { font-size: 22px; }
  .top__grid { gap: 16px; }
  .lead-card { padding: 20px 18px 18px; max-width: none; }
  .lead-card__title { font-size: 17px; }
  .promo__arrow { width: 42px; height: 42px; }
  .promo__arrow--prev { left: 8px; }
  .promo__arrow--next { right: 8px; }
  .promo__slide img { aspect-ratio: 1 / 1; }

  /* özellik şeridi: tek sütun */
  .feature-strip { padding: 20px 0; }
  .feature-strip__grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 0; border-right: 0; }

  /* vize galerisi */
  .vresult-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vresult__body { padding: 12px 13px 14px; }
  .vresult__name { font-size: 14px; }
  .lightbox { padding: 16px; }
  .lightbox__img { max-height: 76vh; }

  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  .cookie { left: 12px; right: 12px; bottom: 74px; width: auto; }
  .modal__box { padding: 30px 22px 26px; }
  .topbar__socials { display: none; }
  .page-hero { padding: 40px 0 42px; }
  .prose h2 { font-size: 21px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  /* Dar telefonlarda yan yana iki alan sığmıyor. */
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .fact-grid { grid-template-columns: 1fr; }
  .topbar__list { gap: 14px; font-size: 12.5px; }
}

/* ---------------------------------------------------------- 26. Yazdırma */
@media print {
  .topbar, .header, .footer, .wa-float, .mobile-bar, .cookie, .modal, .hero-form { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding: 12pt 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
