@charset "UTF-8";
/* =====================================================================
   PrimeVize — Dubai / BAE vize sayfaları

   Görsel kimlik Rusya sayfasından bilinçli olarak ayrılır:
     Rusya : koyu lacivert hero, sağda tek fiyat kartı, bayrak şeridi
     Dubai : aydınlık kum tonlu hero, ortalanmış içerik, dört tipli ızgara,
             koyu güven şeridi ve altın (amber) vurgu

   Renk görevleri: lacivert = kurumsal güven · turuncu = başvuru eylemi
   altın = Dubai imzası · yeşil = yalnızca WhatsApp
   ===================================================================== */

/* ---------------------------------------------------------- ortak öğeler */
.ae-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 20px;
}
.ae-eyebrow .pv-icon { color: #B8860B; }

/* WhatsApp — tüm Dubai sayfalarında aynı ikincil eylem görünümü */
.ae-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px;
  border: 1.5px solid #25D366;
  border-radius: 10px;
  background: rgba(37, 211, 102, .08);
  font-size: 15.5px; font-weight: 600; color: #0E7A44;
  transition: background .18s var(--ease), color .18s var(--ease),
              transform .18s var(--ease), box-shadow .18s var(--ease);
}
.ae-wa:hover {
  background: #25D366; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}
.ae-wa .pv-icon { flex-shrink: 0; color: #25D366; transition: color .18s var(--ease); }
.ae-wa:hover .pv-icon { color: #fff; }
.ae-wa--form { display: flex; width: 100%; margin-top: 14px; }

.ae-crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--text-mute);
  margin-bottom: 22px;
}
.ae-crumbs a { color: var(--text-soft); }
.ae-crumbs a:hover { color: var(--orange); }
.ae-crumbs .pv-icon { color: var(--line); }

/* ---------------------------------------------------------- 1. Hero */
.ae-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 0;
  text-align: center;
  background:
    radial-gradient(820px 360px at 50% -26%, rgba(200, 138, 14, .18), transparent 68%),
    linear-gradient(180deg, #FDFBF6 0%, #FAF7F1 48%, #F4F6FA 100%);
  border-bottom: 1px solid var(--line-soft);
}

/* Gerçek Dubai fotoğrafı (Burj Al Arab, Jumeirah).
   Rusya sayfasındaki koyu kaplamanın tersi: burada fotoğraf AÇIK bırakılır
   ve üstüne beyazımsı bir tül serilir. Böylece sayfanın aydınlık kum
   kimliği korunur, koyu metin okunur kalır ve manzara hissedilir. */
.ae-hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--ae-hero-image, url('../img/dubai/hero-dubai.webp'));
  background-size: cover;
  background-position: 50% 42%;
}

.ae-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(253, 251, 246, .95) 0%,
      rgba(253, 251, 246, .90) 34%,
      rgba(250, 247, 241, .82) 62%,
      rgba(244, 246, 250, .92) 100%);
}

/* Ufuk ışığı: siluetin arkasında gün batımı hissi veren sıcak bant. */
.ae-hero__wash {
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 340px;
  background:
    radial-gradient(620px 260px at 74% 100%, rgba(242, 193, 78, .38), transparent 72%),
    radial-gradient(520px 220px at 22% 100%, rgba(242, 108, 33, .16), transparent 74%);
  pointer-events: none;
}

/* Alt boşluk, siluetin metnin altında rahatça görünmesi içindir.
   Siluet yüksekliğinden (172px) biraz fazla tutulur ki fiyat rayına değmesin. */
.ae-hero__inner { position: relative; z-index: 2; padding-bottom: 190px; }

/* Özgün siluet çizimi — artık gerçek bir ufuk çizgisi olarak okunuyor.
   Metnin altında kaldığı için opaklık güvenle yükseltilebilir. */
.ae-hero__skyline {
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 100%; min-width: 1000px;
  height: 172px;
  object-fit: cover;
  object-position: bottom center;
  opacity: .22;
  pointer-events: none;
  user-select: none;
}

/* Panelden yüklenen gerçek fotoğraf bandı. */
.ae-scene { position: relative; }
.ae-scene img { width: 100%; height: clamp(220px, 32vw, 400px); object-fit: cover; }
.ae-scene__caption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 44px 24px 26px;
  background: linear-gradient(to top, rgba(10, 22, 49, .9), transparent);
  color: #fff; text-align: center;
}
.ae-scene__caption span {
  display: block;
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #E0B44C;
  margin-bottom: 6px;
}
.ae-scene__caption strong {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.4vw, 26px); font-weight: 700;
}

.ae-hero__title {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.07;
  color: var(--navy);
  margin-bottom: 18px;
}
.ae-hero__title span {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  background: linear-gradient(96deg, #C8912B 0%, #9C6B10 55%, #C8912B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ae-hero__text {
  max-width: 56ch;
  margin: 0 auto 28px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-soft);
}
.ae-hero__text b { color: var(--navy); font-weight: 700; }

.ae-hero__actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 13px;
  margin-bottom: 30px;
}

.ae-hero__meta {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 26px;
  margin-bottom: 38px;
}
.ae-hero__meta li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.2px; color: var(--text-soft);
}
.ae-hero__meta b { color: var(--navy); }
.ae-hero__meta .pv-icon { flex-shrink: 0; color: var(--navy-300); }

/* --- fiyat rayı: dört tip tek satırda, ilk ekranda --- */
.ae-rail {
  position: relative;
  padding: 20px 22px 22px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 46px rgba(13, 27, 61, .12);
}

.ae-rail__lead {
  display: block;
  margin-bottom: 15px;
  font-size: 13.6px; color: var(--text-soft);
}
.ae-rail__lead b {
  font-family: var(--font-head);
  font-size: 18px; color: var(--navy);
}

.ae-rail__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ae-rail__item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 12px;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.ae-rail__item:hover {
  border-color: #D9A441;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(200, 138, 14, .18);
}
.ae-rail__item.is-featured { border-color: #E5C98A; background: #FEFBF4; }

.ae-rail__days {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.1;
}
.ae-rail__entry { font-size: 12.2px; color: var(--text-mute); }
.ae-rail__price {
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; color: #9C6B10;
}

/* ---------------------------------------------------------- 2. Güven şeridi (koyu) */
.ae-trust { background: var(--navy); color: #fff; }
.ae-trust__inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 34px;
  padding: 16px 0;
}
.ae-trust__item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.8px; color: rgba(255, 255, 255, .74);
  transition: color .18s var(--ease);
}
a.ae-trust__item:hover { color: #fff; }
.ae-trust__item .pv-icon { flex-shrink: 0; color: #E0B44C; }
.ae-trust__item b { color: #fff; font-weight: 700; }

/* ---------------------------------------------------------- 3. Vize tipi kartları */
.ae-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ae-type {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.ae-type:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.ae-type.is-featured {
  border-color: #D9A441;
  box-shadow: 0 16px 40px rgba(200, 138, 14, .16);
}

.ae-type__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(96deg, #C8912B, #9C6B10);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; white-space: nowrap;
}

.ae-type header h3 {
  font-size: 18px; color: var(--navy); margin-bottom: 7px;
}
.ae-type header p {
  font-size: 13.6px; line-height: 1.55; color: var(--text-soft);
  margin-bottom: 18px; min-height: 44px;
}

.ae-type__price {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 700; color: var(--navy);
  line-height: 1; letter-spacing: -.02em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.ae-type__price small {
  display: block;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 400; color: var(--text-mute);
  letter-spacing: 0;
}

.ae-type__specs { display: grid; gap: 9px; flex: 1; margin-bottom: 20px; }
.ae-type__specs li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.6px; color: var(--text-soft);
}
.ae-type__specs .pv-icon { flex-shrink: 0; color: var(--navy-300); }

/* --- sigorta ek hizmet şeridi --- */
.ae-addon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  padding: 24px 26px;
  background: linear-gradient(120deg, #FDF8EC 0%, #FBFCFE 100%);
  border: 1px solid #EBDCBC;
  border-radius: var(--radius-lg);
}
.ae-addon__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: #fff; color: #B8860B;
  box-shadow: var(--shadow-xs);
}
.ae-addon h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.ae-addon p { margin: 0; font-size: 14.2px; line-height: 1.6; color: var(--text-soft); }
.ae-addon__prices { display: grid; gap: 7px; text-align: right; }
.ae-addon__prices span { font-size: 13px; color: var(--text-soft); white-space: nowrap; }
.ae-addon__prices b {
  font-family: var(--font-head);
  font-size: 17px; color: var(--navy); margin-right: 5px;
}

/* ---------------------------------------------------------- 3b. Vize önerici */
.ae-finder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(250px, 300px);
  gap: 26px;
  align-items: center;
  max-width: 1000px;
  margin-inline: auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.ae-finder__label {
  display: block;
  margin-bottom: 11px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.ae-finder__opts { display: grid; gap: 9px; }
.ae-finder__opts label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14.5px; color: var(--text-soft);
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.ae-finder__opts label:hover { border-color: var(--navy-300); }
.ae-finder__opts input { width: 18px; height: 18px; flex-shrink: 0; accent-color: #B8860B; cursor: pointer; }
.ae-finder__opts input:checked + span { color: var(--navy); font-weight: 600; }
.ae-finder__opts label:has(input:checked) { border-color: #D9A441; background: #FDF8EC; }

.ae-finder__result {
  padding: 24px 22px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
}
.ae-finder__kicker {
  display: block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #E0B44C;
  margin-bottom: 9px;
}
.ae-finder__result strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px; line-height: 1.3; color: #fff;
  margin-bottom: 6px;
}
.ae-finder__price {
  display: block;
  font-family: var(--font-head);
  font-size: 34px; font-weight: 700; color: #fff; line-height: 1;
  margin-bottom: 18px;
}

/* ---------------------------------------------------------- 4. Süreç zaman çizgisi */
.ae-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
/* Kartları birbirine bağlayan ince çizgi — Rusya'daki numaralı kutulardan farklı. */
.ae-flow::before {
  content: '';
  position: absolute; top: 26px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--line), #E0B44C, var(--line));
}
.ae-flow li { position: relative; text-align: center; }
.ae-flow__dot {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff; color: var(--navy);
  border: 2px solid #E0B44C;
  box-shadow: 0 6px 18px rgba(13, 27, 61, .08);
}
.ae-flow li:last-child .ae-flow__dot { background: var(--orange); color: #fff; border-color: var(--orange); }
.ae-flow h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 7px; }
.ae-flow p { margin: 0; font-size: 14px; line-height: 1.58; color: var(--text-soft); }

/* ---------------------------------------------------------- 5. Belgeler + pasaport notu */
.ae-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 46px;
  align-items: start;
}

.ae-docs { display: grid; gap: 14px; margin-top: 26px; }
.ae-docs li {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 19px 21px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.ae-docs li:hover { border-color: #D9A441; }
.ae-docs li > span {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 11px;
  background: #FDF3DF; color: #B8860B;
}
.ae-docs strong { display: block; font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.ae-docs p { margin: 0; font-size: 14px; line-height: 1.58; color: var(--text-soft); }

.ae-note {
  padding: 28px 26px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
}
.ae-note h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 17.5px; color: #fff; margin-bottom: 16px;
}
.ae-note h3 .pv-icon { color: #E0B44C; flex-shrink: 0; }
.ae-note__table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.ae-note__table th,
.ae-note__table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px; text-align: left;
}
.ae-note__table th { font-weight: 500; color: rgba(255, 255, 255, .74); }
.ae-note__table td { font-weight: 600; color: #fff; text-align: right; }
.ae-note__table tr:last-child th,
.ae-note__table tr:last-child td { border-bottom: 0; }
.ae-note p {
  margin: 0;
  font-size: 13.8px; line-height: 1.65; color: rgba(255, 255, 255, .74);
}

/* ---------------------------------------------------------- 6. Neden PrimeVize */
.ae-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ae-reasons article {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.ae-reasons article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ae-reasons article > span {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 15px;
  border-radius: 13px;
  background: var(--navy-100); color: var(--navy);
}
.ae-reasons h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 8px; }
.ae-reasons p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-soft); }

/* ---------------------------------------------------------- 6b. Kısa rehber */
.ae-info { max-width: 980px; }
.ae-info .sec-head { margin-bottom: 30px; }
.ae-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}
.ae-info h3 {
  position: relative;
  padding-left: 16px;
  font-size: 17px; color: var(--navy); margin-bottom: 10px;
}
.ae-info h3::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; border-radius: 2px;
  background: linear-gradient(to bottom, #C8912B, #9C6B10);
}
.ae-info p {
  margin: 0;
  padding-left: 16px;
  font-size: 14.6px; line-height: 1.72; color: var(--text-soft);
}

/* ---------------------------------------------------------- 7. SSS */
.ae-faq { max-width: 880px; }
.ae-faq__list { display: grid; gap: 10px; }

.ae-faq details {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.ae-faq details[open] { border-color: #D9A441; }

.ae-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 21px;
  cursor: pointer; list-style: none;
  font-family: var(--font-head);
  font-size: 16px; font-weight: 600; line-height: 1.45; color: var(--navy);
}
.ae-faq summary::-webkit-details-marker { display: none; }
.ae-faq summary:hover { color: #9C6B10; }

/* Artı/eksi göstergesi — Rusya sayfasındaki ok ikonundan ayrışır. */
.ae-faq summary span {
  position: relative;
  width: 20px; height: 20px; flex-shrink: 0;
}
.ae-faq summary span::before,
.ae-faq summary span::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px;
  background: #B8860B;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.ae-faq summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.ae-faq details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }

.ae-faq details p {
  padding: 0 21px 20px;
  margin: 0;
  font-size: 15px; line-height: 1.7; color: var(--text-soft);
}
.ae-faq details p a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.ae-faq details p a:hover { color: var(--orange-600); }

.ae-faq__source {
  margin: 22px 0 0;
  font-size: 12.8px; line-height: 1.6; color: var(--text-mute); text-align: center;
}
.ae-faq__source a { color: var(--navy); font-weight: 600; }

/* ---------------------------------------------------------- 8. Final CTA */
.ae-cta {
  padding: 62px 0;
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(200, 138, 14, .22), transparent 70%),
    linear-gradient(140deg, var(--navy) 0%, #16295C 100%);
  color: #fff;
  text-align: center;
}
.ae-cta h2 { font-size: clamp(24px, 3vw, 34px); color: #fff; margin-bottom: 10px; }
.ae-cta p { max-width: 52ch; margin: 0 auto 26px; font-size: 16px; color: rgba(255, 255, 255, .76); }
.ae-cta__actions { display: flex; justify-content: center; gap: 13px; flex-wrap: wrap; }
.ae-cta .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .34); }
.ae-cta .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------------------------------------------------------- 9. Yasal bilgilendirme */
.ae-legal {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.ae-legal__inner {
  display: flex; align-items: flex-start; gap: 13px;
  max-width: 960px;
}
.ae-legal .pv-icon { flex-shrink: 0; margin-top: 2px; color: var(--text-mute); }
.ae-legal p { margin: 0; font-size: 13.2px; line-height: 1.68; color: var(--text-mute); }

/* =====================================================================
   VİZE TİPİ SEÇİM EKRANI
   ===================================================================== */

.ae-choose { background: var(--cream); padding: 26px 0 66px; min-height: 60vh; }

.ae-choose__head { max-width: 700px; margin-bottom: 32px; }
.ae-choose__head h1 {
  font-size: clamp(26px, 3.4vw, 38px); color: var(--navy); margin-bottom: 12px;
}
.ae-choose__head p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-soft); }

.ae-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.ae-choice {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px 22px 20px;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.ae-choice:hover {
  border-color: #D9A441;
  box-shadow: 0 16px 38px rgba(13, 27, 61, .12);
  transform: translateY(-4px);
}
.ae-choice.is-featured { border-color: #D9A441; }

.ae-choice__flag {
  position: absolute; top: -12px; left: 22px;
  padding: 5px 13px;
  border-radius: 999px;
  background: linear-gradient(96deg, #C8912B, #9C6B10);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

.ae-choice__top {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 12px;
}
.ae-choice__top b {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1;
}
.ae-choice__top small { font-size: 15px; color: var(--text-mute); }

.ae-choice__body { flex: 1; display: block; margin-bottom: 18px; }
.ae-choice__body strong { display: block; font-size: 16.5px; color: var(--navy); margin-bottom: 3px; }
.ae-choice__body em {
  display: block;
  font-style: normal;
  font-size: 13.5px; font-weight: 600; color: #9C6B10;
  margin-bottom: 9px;
}
.ae-choice__best { display: block; font-size: 13.6px; line-height: 1.55; color: var(--text-soft); }

.ae-choice__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.ae-choice__price { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--navy); }
.ae-choice__go {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--orange);
}
.ae-choice__go .pv-icon { transition: transform .2s var(--ease); }
.ae-choice:hover .ae-choice__go .pv-icon { transform: translateX(4px); }

.ae-choose__notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.ae-choose__notes > div {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 17px 19px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.ae-choose__notes .pv-icon { flex-shrink: 0; margin-top: 2px; color: #B8860B; }
.ae-choose__notes p { margin: 0; font-size: 13.6px; line-height: 1.58; color: var(--text-soft); }
.ae-choose__notes strong { color: var(--navy); }
.ae-choose__notes b { color: var(--navy); }

.ae-choose__help {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 22px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
.ae-choose__help > span {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 13px;
  background: var(--navy-100); color: var(--navy);
}
.ae-choose__help > div { flex: 1; min-width: 220px; }
.ae-choose__help strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 3px; }
.ae-choose__help p { margin: 0; font-size: 14px; color: var(--text-soft); }

/* =====================================================================
   BAŞVURU FORMU
   ===================================================================== */

.ae-apply { background: var(--cream); padding: 26px 0 70px; }

.ae-apply__head { max-width: 720px; margin-bottom: 30px; }
.ae-apply__head h1 { font-size: clamp(26px, 3.2vw, 36px); color: var(--navy); margin-bottom: 12px; }
.ae-apply__head p { margin: 0; font-size: 15.8px; line-height: 1.68; color: var(--text-soft); }
.ae-apply__head strong { color: var(--navy); }

.ae-apply__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  gap: 26px;
  align-items: start;
}

.ae-form { display: grid; gap: 16px; }

.ae-block {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 24px 26px 26px;
  margin: 0;
  min-width: 0;
}
.ae-block legend {
  display: flex; align-items: center; gap: 11px;
  width: 100%;
  padding: 0 0 18px;
  font-family: var(--font-head);
  font-size: 17.5px; font-weight: 700; color: var(--navy);
}
.ae-block legend span {
  display: grid; place-items: center;
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 9px;
  background: var(--navy); color: #fff;
  font-size: 14px;
}
.ae-block legend i {
  font-style: normal;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--line-soft); color: var(--text-mute);
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.ae-block--addon { border-color: #EBDCBC; background: linear-gradient(150deg, #FDFAF3 0%, #FFFFFF 62%); }
.ae-block--addon legend span { background: linear-gradient(140deg, #C8912B, #9C6B10); }

.ae-block__intro {
  margin: -6px 0 16px;
  font-size: 14.2px; line-height: 1.62; color: var(--text-soft);
}
.ae-block__hint {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 13px 0 0;
  padding: 11px 14px;
  border-radius: 9px;
  background: var(--amber-100); color: #8A5F09;
  font-size: 13.2px; line-height: 1.55;
}
.ae-block__hint[hidden] { display: none; }
.ae-block__hint .pv-icon { flex-shrink: 0; margin-top: 1px; }

/* --- vize tipi seçici --- */
.ae-picker { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.ae-pick {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 17px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.ae-pick:hover { border-color: var(--navy-300); }
.ae-pick input { width: 19px; height: 19px; flex-shrink: 0; accent-color: #B8860B; cursor: pointer; }
.ae-pick__body { flex: 1; min-width: 0; }
.ae-pick__body b { display: block; font-size: 15px; font-weight: 600; color: var(--navy); }
.ae-pick__body small { display: block; margin-top: 2px; font-size: 12.8px; color: var(--text-mute); }
.ae-pick__price { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.ae-pick.is-on {
  border-color: #D9A441;
  background: #FDF8EC;
  box-shadow: 0 0 0 4px rgba(200, 138, 14, .1);
}

/* --- sigorta seçici --- */
.ae-cover { display: grid; gap: 10px; }
.ae-cover__opt {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 17px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.ae-cover__opt:hover { border-color: var(--navy-300); }
.ae-cover__opt input { width: 19px; height: 19px; flex-shrink: 0; accent-color: #B8860B; cursor: pointer; }
.ae-cover__opt > span { flex: 1; min-width: 0; }
.ae-cover__opt b { display: block; font-size: 15px; font-weight: 600; color: var(--navy); }
.ae-cover__opt small { display: block; margin-top: 2px; font-size: 12.8px; color: var(--text-mute); }
.ae-cover__opt em {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: var(--navy); white-space: nowrap;
}
.ae-cover__opt.is-on { border-color: #D9A441; box-shadow: 0 0 0 4px rgba(200, 138, 14, .1); }

/* --- yan özet --- */
.ae-summary { position: sticky; top: calc(var(--header-h) + 16px); }
.ae-summary__card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.ae-summary__card h2 {
  font-size: 17.5px; color: var(--navy);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 15px;
}
.ae-summary dl { display: grid; gap: 12px; margin: 0 0 15px; }
.ae-summary dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.ae-summary dl > div[hidden] { display: none; }
.ae-summary dt { font-size: 14px; color: var(--text-soft); }
.ae-summary dd { margin: 0; font-size: 14.5px; font-weight: 600; color: var(--navy); text-align: right; }

.ae-summary__total {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 15px 17px;
  background: var(--navy);
  border-radius: var(--radius);
  margin-bottom: 15px;
}
.ae-summary__total span { font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, .78); }
.ae-summary__total strong { font-family: var(--font-head); font-size: 26px; color: #fff; line-height: 1; }

.ae-summary__list { display: grid; gap: 8px; margin-bottom: 14px; }
.ae-summary__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.6px; line-height: 1.5; color: var(--text-soft);
}
.ae-summary__list .pv-icon { flex-shrink: 0; margin-top: 2px; color: #B8860B; }

.ae-summary__note {
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.8px; line-height: 1.6; color: var(--text-mute);
  margin-bottom: 12px;
}
.ae-summary__back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.6px; font-weight: 600; color: var(--navy);
}
.ae-summary__back:hover { color: var(--orange-600); }

/* =====================================================================
   TEŞEKKÜR SAYFASI
   ===================================================================== */

.ae-thanks { background: var(--cream); padding: 54px 0 74px; }
.ae-thanks__card {
  max-width: 740px; margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 42px 38px;
  box-shadow: var(--shadow);
  text-align: center;
}
.ae-thanks__mark {
  display: grid; place-items: center;
  width: 80px; height: 80px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-100); color: var(--green);
}
.ae-thanks__card h1 { font-size: clamp(25px, 3.2vw, 34px); color: var(--navy); margin-bottom: 13px; }
.ae-thanks__lead {
  font-size: 16.5px; line-height: 1.66; color: var(--text-soft);
  max-width: 52ch; margin-inline: auto;
}

.ae-thanks__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.ae-thanks__meta > div { background: #fff; padding: 17px 12px; }
.ae-thanks__meta dt {
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px;
}
.ae-thanks__meta dd {
  margin: 0;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: var(--navy);
}

.ae-thanks__steps {
  text-align: left;
  display: grid; gap: 11px;
  margin-top: 30px;
  counter-reset: ae-step;
}
.ae-thanks__steps li {
  position: relative;
  counter-increment: ae-step;
  padding: 15px 17px 15px 54px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 14.4px; line-height: 1.6; color: var(--text-soft);
}
.ae-thanks__steps li::before {
  content: counter(ae-step);
  position: absolute; left: 17px; top: 15px;
  display: grid; place-items: center;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
}
.ae-thanks__steps strong { display: block; color: var(--navy); margin-bottom: 2px; }

.ae-thanks__actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-top: 30px;
}
.ae-thanks__micro { margin: 20px 0 0; font-size: 13px; color: var(--text-mute); }

/* =====================================================================
   DUYARLILIK
   ===================================================================== */

@media (max-width: 1080px) {
  .ae-types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ae-reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ae-apply__layout { grid-template-columns: minmax(0, 1fr); }
  .ae-summary { position: static; }
  .ae-summary__card { max-width: 560px; }
}

@media (max-width: 900px) {
  .ae-finder { grid-template-columns: minmax(0, 1fr); gap: 20px; padding: 22px; }
  .ae-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ae-flow::before { display: none; }
  .ae-split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .ae-addon { grid-template-columns: minmax(0, 1fr); text-align: left; gap: 16px; }
  .ae-addon__prices { text-align: left; grid-auto-flow: column; gap: 18px; justify-content: start; }
}

@media (max-width: 640px) {
  .ae-hero { padding: 44px 0 0; }
  .ae-hero__inner { padding-bottom: 146px; }
  .ae-hero__skyline { height: 128px; opacity: .18; }
  .ae-hero__actions { flex-direction: column; }
  .ae-hero__actions .btn,
  .ae-hero__actions .ae-wa { width: 100%; white-space: normal; text-align: center; }
  .ae-hero__meta { flex-direction: column; align-items: center; gap: 9px; margin-bottom: 28px; }

  /* Dar ekranda dört tip iki sütuna iner; hepsi yine ilk ekrana yakın kalır. */
  .ae-rail { padding: 16px 14px 18px; border-radius: var(--radius-lg); }
  .ae-rail__items { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .ae-rail__item { padding: 12px 8px; }
  .ae-rail__days { font-size: 17px; }
  .ae-rail__price { font-size: 18px; }

  .ae-types { grid-template-columns: minmax(0, 1fr); }
  .ae-type header p { min-height: 0; }
  .ae-flow { grid-template-columns: minmax(0, 1fr); }
  .ae-reasons { grid-template-columns: minmax(0, 1fr); }

  .ae-info__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .ae-picker { grid-template-columns: minmax(0, 1fr); }
  .ae-block { padding: 20px 17px 22px; }
  .ae-block legend { flex-wrap: wrap; font-size: 16px; }

  .ae-choose { padding: 20px 0 54px; }
  .ae-choose__notes { grid-template-columns: minmax(0, 1fr); }
  .ae-choose__help { flex-direction: column; align-items: flex-start; }
  .ae-choose__help .ae-wa { width: 100%; }

  .ae-thanks__card { padding: 30px 20px; border-radius: var(--radius-lg); }
  .ae-thanks__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ae-thanks__actions .btn { width: 100%; }

  .ae-cta__actions { flex-direction: column; }
  .ae-cta__actions .btn { width: 100%; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .ae-type, .ae-choice, .ae-reasons article, .ae-wa { transition: none; }
}

/* =====================================================================
   Sayfa altı bölümleri, video ve mobil uyum
   ui-ux-pro-max kurallarına göre: dokunma hedefi 44px+, mobilde 16px
   yazı, kırılma noktaları 1024/768/480, yatay kaydırma yok.
   ===================================================================== */

/* ------------------------------------------------------------- video
   YouTube çerçevesi tıklanana kadar yüklenmez. Gömülü oynatıcı sayfaya
   yaklaşık 1 MB ve onlarca istek ekler; bu yöntemle o maliyet yalnızca
   izlemek isteyen ziyaretçiye biner. Ön izleme görseli 16:9 oranında
   yer ayırdığı için sayfa da kaymaz. */
.ae-video {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(13, 27, 61, .14);
}

.ae-video__frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #0D1B3D;
  cursor: pointer;
  overflow: hidden;
}

.ae-video__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.ae-video__frame:hover img { transform: scale(1.04); opacity: .85; }

.ae-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ae-video__play .pv-icon {
  width: 74px; height: 74px;
  padding: 22px;
  border-radius: 50%;
  background: rgba(242, 108, 33, .95);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  transition: transform .22s var(--ease);
}

.ae-video__frame:hover .ae-video__play .pv-icon { transform: scale(1.08); }
.ae-video__frame:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.ae-video iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

/* -------------------------------------------------- ilgili içerikler */
.ae-related {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ae-related__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--navy);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}

.ae-related__item:hover {
  border-color: #C8880E;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(13, 27, 61, .09);
}

.ae-related__icon {
  flex: 0 0 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: #FDF3DC; color: #B8860B;
}

.ae-related__body { flex: 1; min-width: 0; }
.ae-related__body b { display: block; font-size: 15.5px; font-weight: 640; line-height: 1.35; }
.ae-related__body small {
  display: block; margin-top: 3px;
  font-size: 13px; color: var(--text-mute); line-height: 1.5;
}

/* ------------------------------------------------ sayfa altı makale */
.ae-longform__inner { max-width: 820px; margin: 0 auto; }
.ae-longform .prose { font-size: 16px; line-height: 1.8; color: #343F4F; }

/* --------------------------------------------------- güncellik notu */
.ae-freshness {
  padding: 18px 0 26px;
  background: #FDFBF6;
  border-top: 1px solid var(--line-soft);
}
.ae-freshness__inner {
  display: flex; align-items: flex-start; gap: 11px;
  max-width: 820px;
}
.ae-freshness__inner .pv-icon { flex: 0 0 auto; color: #0E9F6E; margin-top: 2px; }
.ae-freshness p { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--text-soft); }
.ae-freshness a { color: var(--navy); font-weight: 600; }

/* ------------------------------------------ form: adım göstergesi */
.ae-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.ae-progress li {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px;
  border-radius: 11px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--text-mute);
}

.ae-progress li span {
  flex: 0 0 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700;
}

.ae-progress li.is-active {
  background: #FDF3DC;
  border-color: rgba(200, 136, 14, .35);
  color: var(--navy);
}
.ae-progress li.is-active span { background: #C8880E; border-color: #C8880E; color: #fff; }
.ae-progress li.is-done span { background: #0E9F6E; border-color: #0E9F6E; color: #fff; }

/* Adımlar: JavaScript varken yalnızca aktif olan görünür.
   Betik yüklenmezse hepsi alt alta kalır ve form yine gönderilebilir. */
.js .ae-step { display: none; }
.js .ae-step.is-active { display: block; }

.ae-step__index {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 3px;
}

.ae-step__nav {
  display: flex; gap: 10px; align-items: center;
  margin-top: 22px;
}
.ae-step__nav .btn { min-height: 48px; }

.ae-form__micro {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 14px 0 0;
  font-size: 12.8px; color: var(--text-mute);
}
.ae-form__micro .pv-icon { flex-shrink: 0; }

.ae-apply__resume {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 12px 0 0;
  padding: 11px 14px;
  border-radius: 11px;
  background: #FDF3DC;
  border: 1px solid rgba(200, 136, 14, .28);
  font-size: 13.5px; line-height: 1.55;
  color: #7A5B08;
}
.ae-apply__resume .pv-icon { flex-shrink: 0; margin-top: 2px; }

.ae-summary__try {
  margin: 4px 0 0;
  text-align: right;
  font-size: 14px; font-weight: 600;
  color: var(--text-mute);
}

/* ============================================ MOBİL SABİT EYLEM ÇUBUĞU */
.ae-mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -6px 24px rgba(13, 27, 61, .12);
  transform: translateY(110%);
  transition: transform .28s var(--ease);
}

.ae-mobile-cta.is-visible { transform: translateY(0); }
.ae-mobile-cta__price { flex: 0 0 auto; line-height: 1.15; }
.ae-mobile-cta__price small { display: block; font-size: 11.5px; color: var(--text-mute); }
.ae-mobile-cta__price b {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: var(--navy);
}
.ae-mobile-cta__actions { flex: 1; display: flex; gap: 8px; justify-content: flex-end; }

.ae-mobile-cta a {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 15px; font-weight: 660;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.ae-mobile-cta__apply { flex: 1; background: var(--orange); color: #fff; }
.ae-mobile-cta__wa {
  flex: 0 0 48px; padding: 0;
  background: #fff;
  border: 1.5px solid #25D366;
  color: #0E7A44;
}

/* ===================================================== MOBİL UYUM */

/* Yatay taşma kalkanı: tek bir taşan öğe tüm sayfayı yana kaydırır. */
.ae-hero, .ae-apply, .ae-trust, .ae-scene, .ae-freshness, .ae-longform {
  max-width: 100%; overflow-x: clip;
}
.ae-hero img, .ae-scene img { max-width: 100%; height: auto; }
.ae-summary dd, .ae-related__body { overflow-wrap: anywhere; }

/* Dokunma konforu ve klavye odak halkası */
.ae-hero a, .ae-pick, .ae-cover__opt, .ae-step__nav .btn,
.ae-cta__actions .btn, .ae-related__item { touch-action: manipulation; }

.ae-pick:focus-within, .ae-cover__opt:focus-within,
.ae-related__item:focus-visible, .ae-mobile-cta a:focus-visible {
  outline: 3px solid #C8880E;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .ae-apply__layout { grid-template-columns: 1fr; }
  .ae-summary { position: static; }
  .ae-summary__card { max-width: 560px; }
  .ae-hero__photo { background-position: 56% 46%; }
}

@media (max-width: 768px) {
  /* Adım göstergesinde yalnızca numara kalır; başlıklar sığmaz. */
  .ae-progress { gap: 8px; }
  .ae-progress li b { display: none; }
  .ae-progress li { justify-content: center; padding: 10px 6px; }

  .ae-step__nav { flex-direction: column-reverse; }
  .ae-step__nav .btn { width: 100%; white-space: normal; text-align: center; }

  /* iOS Safari 16 pikselden küçük yazılı bir alana odaklanınca sayfayı
     otomatik yakınlaştırır ve düzeni bozar. Mobilde tüm alanlar 16 px. */
  .ae-form input[type="text"],
  .ae-form input[type="tel"],
  .ae-form input[type="email"],
  .ae-form input[type="date"],
  .ae-form select,
  .ae-form textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .ae-form textarea { min-height: 96px; }
  .ae-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .ae-form .check { min-height: 44px; align-items: flex-start; padding: 4px 0; }
  .ae-form .check input[type="checkbox"] { width: 22px; height: 22px; margin-top: 2px; }

  .ae-pick, .ae-cover__opt { min-height: 56px; }

  .ae-related { grid-template-columns: 1fr; }
  .ae-video__play .pv-icon { width: 60px; height: 60px; padding: 17px; }

  .ae-mobile-cta { display: flex; }
  /* Sabit çubuk sayfa sonundaki içeriği kapatmasın. */
  .ae-disclaimer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  .ae-related__item { padding: 14px 15px; }
  .ae-longform .prose { font-size: 15.5px; }
  .ae-freshness p { font-size: 13px; }
  .ae-mobile-cta__price b { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .ae-video__frame img,
  .ae-related__item,
  .ae-mobile-cta { transition: none; }
  .ae-mobile-cta { transform: translateY(0); }
}
