/* ==========================================================================
   Etkin İnsan — Sayfa bileşenleri
   tokens.css'ten SONRA yüklenir. Renk/ölçü değeri burada tanımlanmaz,
   yalnızca --ei-* tokenları kullanılır.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
img, svg, video { max-width: 100%; height: auto; display: block; }

/* <sup> varsayilan olarak satir kutusunu buyutur ve komsu ogelerin
   metnini asagi iter. Menude GYROTONIC® bu yuzden kayiyordu. */
sup, sub { line-height: 0; font-size: .62em; }
sup { vertical-align: super; }
sub { vertical-align: sub; }

/* Container: ekranın ~%88'i, geniş ekranlarda 1680px'de duruyor.
   Yan boşluk yüzdeden geldiği için ayrı padding gerekmiyor;
   metin uzunluğu bileşen bazında (ch) zaten sınırlı. */
.wrap { width: min(88%, 1680px); margin-inline: auto; }
@media (max-width: 560px) { .wrap { width: calc(100% - 36px); } }
.section { padding-block: clamp(52px, 8vw, 96px); }
.section--band { background: var(--ei-band); }

.sec-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: clamp(28px, 4vw, 44px); max-width: 62ch; }
.sec-head--center { margin-inline: auto; text-align: center; align-items: center; }
.eyebrow { font-size: var(--ei-label); font-weight: 700; letter-spacing: .16em;
           text-transform: uppercase; color: var(--ei-secondary); margin: 0; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999;
             background: var(--ei-primary); color: var(--ei-on-primary); padding: 12px 20px; }
.skip-link:focus { left: 0; }

/* ---------- duyuru şeridi ----------
   ŞU AN KULLANILMIYOR — anasayfadan kaldırıldı.
   Kampanya döneminde <header> üstüne geri eklenebilir. */
.promo { background: var(--ei-mint); color: var(--ei-text); font-size: .8125rem; font-weight: 600; }
.promo__in { display: flex; align-items: center; justify-content: center; gap: 14px;
             flex-wrap: wrap; padding-block: 10px; text-align: center; }
.promo__cta { background: var(--ei-primary); color: var(--ei-mint); text-decoration: none;
              padding: 5px 15px; border-radius: var(--ei-radius-pill); font-size: .6875rem;
              font-weight: 700; letter-spacing: .05em; white-space: nowrap; }
.promo__cta:hover { background: var(--ei-primary-hover); color: var(--ei-mint); }

/* ---------- header ---------- */
.site-head { background: var(--ei-bg); border-bottom: 1px solid var(--ei-rule-soft);
             position: sticky; top: 0; z-index: 100; }
.site-head__in { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); padding-block: 12px; }
.brand { flex: none; display: block; }
.brand img { height: clamp(52px, 5.2vw, 74px); width: auto; }

.nav { display: flex; align-items: center; gap: clamp(10px, 1.5vw, 20px);
       margin-inline-start: auto; flex-wrap: nowrap; }
.nav > a, .nav__item > a { font-size: .8125rem; font-weight: 600; letter-spacing: .05em;
         text-transform: uppercase; color: var(--ei-text); text-decoration: none;
         padding-block: 6px; white-space: nowrap; }
.nav > a:hover, .nav__item > a:hover,
.nav a[aria-current="page"] { color: var(--ei-secondary); }

/* ---- ana menü alt kırılımları ----
   Masaüstünde hover VE klavye odağıyla açılıyor; JS kapalıyken de çalışır.
   Dokunmatikte ve mobilde ok düğmesi açıyor (JS aria-expanded'ı çeviriyor). */
.nav__item { position: relative; display: flex; align-items: center; gap: 2px; }
.nav__more { display: grid; place-items: center; width: 22px; height: 22px; padding: 0;
             border: 0; background: transparent; color: var(--ei-text-faint);
             cursor: pointer; border-radius: 50%; transition: color .16s ease, transform .16s ease; }
.nav__item:hover .nav__more, .nav__more[aria-expanded="true"] { color: var(--ei-secondary); }
.nav__more[aria-expanded="true"] { transform: rotate(180deg); }

.nav__sub a { position: relative; display: block; font-size: .8125rem; font-weight: 500;
              letter-spacing: 0; text-transform: none; line-height: 1.35; color: var(--ei-text);
              text-decoration: none; white-space: normal; padding: 12px 12px;
              border-radius: 8px; break-inside: avoid; }
.nav__sub a:hover { background: var(--ei-band); color: var(--ei-secondary); }
/* satır arası ince ayraç — hover zeminine değmesin diye 12px içeriden başlıyor */
.nav__sub a + a::before { content: ""; position: absolute; top: 0;
                          inset-inline: 12px; height: 1px; background: var(--ei-rule-soft); }
/* üzerine gelinen satırın zemini temiz kalsın: kendi ve altındaki ayraç kayboluyor */
.nav__sub a:hover::before, .nav__sub a:hover + a::before { opacity: 0; }

@media (min-width: 1280px) {
  .nav__sub { position: absolute; top: calc(100% + 10px); inset-inline-start: -12px; z-index: 200;
              display: none; width: max-content; max-width: 380px; padding: 8px;
              background: var(--ei-bg); border: 1px solid var(--ei-rule-soft);
              border-radius: 14px; box-shadow: 0 18px 44px rgba(18,51,56,.16); }
  .nav__sub--wide { max-width: 760px; columns: 2; column-gap: 28px; }
  /* İki sütunlu panelde ayraç ögenin ÜSTÜNDE değil ALTINDA duruyor. Sebep:
     CSS columns ile kırılmanın nereye düşeceği içerik uzunluğuna bağlı; üstte
     olsaydı sağ sütunun ilk satırı tek başına çizgili kalırdı. Altta olunca
     panelin tepesinde çizgi olmuyor ve iki sütun da simetrik başlıyor. */
  .nav__sub--wide a::before { content: none; }
  .nav__sub--wide a::after { content: ""; position: absolute; bottom: 0;
                             inset-inline: 12px; height: 1px; background: var(--ei-rule-soft); }
  .nav__sub--wide a:hover::after,
  .nav__sub--wide a:hover + a::after { opacity: 0; }
  /* hover köprüsü: başlık ile panel arasındaki 10px boşlukta menü kapanmasın */
  .nav__item::after { content: ""; position: absolute; top: 100%; inset-inline: -12px;
                      height: 12px; display: none; }
  .nav__item:hover::after { display: block; }
  .nav__item:hover > .nav__sub,
  .nav__item:focus-within > .nav__sub,
  .nav__more[aria-expanded="true"] + .nav__sub { display: block; }
  /* Escape'ten sonra odak hâlâ ögenin içindeyken hover/focus tekrar açmasın.
     Sonra geldiği için eşit özgüllükte kazanıyor — !important gerekmiyor. */
  .nav__item.is-suppressed > .nav__sub { display: none; }
}

/* 1280–1500 arası: sekiz başlık, logo ve araç düğmeleri tek satıra ancak sığıyor.
   Bu bantta menü tipografisi ve boşlukları bir tık daralıyor; 1500'den sonra normale dönüyor. */
@media (min-width: 1280px) and (max-width: 1499.98px) {
  .site-head__in { gap: 16px; }
  .head-tools { margin-inline-start: 12px; }
  .nav { gap: 11px; }
  .nav > a, .nav__item > a { font-size: .75rem; letter-spacing: .02em; }
  .nav__more { width: 18px; height: 18px; }
}

.head-tools { display: flex; align-items: center; gap: 10px; flex: none;
             margin-inline-start: clamp(12px, 1.8vw, 30px); }
.icon-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
            border: 1px solid var(--ei-rule); background: transparent; color: var(--ei-text); cursor: pointer; }
.icon-btn:hover { background: var(--ei-band); }
.lang { display: flex; gap: 2px; font-size: .6875rem; font-weight: 700; letter-spacing: .06em; }
.lang a { padding: 6px 8px; text-decoration: none; color: var(--ei-text-faint); border-radius: 3px; }
.lang a[aria-current="true"] { color: var(--ei-text); background: var(--ei-band); }
/* EN sürümü açılana kadar düğme pasif: aynı hizada durur ama tıklanmaz */
.lang__pasif { padding: 6px 8px; color: var(--ei-text-faint); opacity: .5; cursor: default; }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding: clamp(10px, 1.2vw, 18px) 0 0; }
.hero__frame {
  position: relative; border-radius: clamp(14px, 1.6vw, 22px); overflow: hidden;
  min-height: clamp(460px, 74vh, 700px); display: flex; align-items: center;
  background: var(--ei-bg-dark);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
                   opacity: 0; transition: opacity 1.1s ease; }
.hero__media img.is-active { opacity: 1; }

/* Görsel net kalsın: yalnızca metnin oturduğu sol tarafa camgöbeği geçiş.
   Sağ taraf neredeyse açıkta — fotoğraf kendini gösteriyor. */
.hero__frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(14,157,188,.87) 0%, rgba(15,149,177,.61) 34%,
                            rgba(48,186,215,.16) 58%, rgba(9,28,32,0) 82%, rgba(9,28,32,0) 100%),
    linear-gradient(to top, rgba(30,178,210,0) 0%, rgba(25,178,210,0) 34%);
}

.hero__in { position: relative; z-index: 2; width: 100%;
            padding: clamp(30px, 4.4vw, 62px) clamp(22px, 3.4vw, 58px); }
.hero__body { display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
              max-width: 40rem; color: #fff; }

/* üst duyuru satırı — referanstaki "News" rozeti gibi */
.hero__news { display: inline-flex; align-items: center; gap: 14px; text-decoration: none;
              color: rgba(255,255,255,.9); font-size: .8125rem; }
.hero__news b { position: relative; display: inline-block; background: rgba(255,255,255,.94);
                color: var(--ei-text); border-radius: 6px;
                padding: 5px 11px; font-size: .6875rem; font-weight: 700; letter-spacing: .06em;
                text-transform: uppercase; }
/* "YENİ" rozeti dikkat çeksin: rozetin üstünden geçen sıcak renk dalgası
   ve dışa doğru sönen ince halka. İkisi de 3.6sn'de bir, aynı ritimde. */
.hero__news b { background-image: linear-gradient(115deg,
                  rgba(255,255,255,0) 24%, var(--ei-accent) 50%, rgba(255,255,255,0) 76%);
                background-repeat: no-repeat; background-size: 260% 100%;
                animation: ei-rozet-dalga 3.6s ease-in-out infinite,
                           ei-rozet-atim  3.6s ease-out    infinite; }
.hero__news b::before { content: ""; position: absolute; inset: -1px; border-radius: inherit;
                        border: 1px solid var(--ei-accent); pointer-events: none;
                        animation: ei-rozet-halka 3.6s ease-out infinite; }
@keyframes ei-rozet-dalga {
  0%, 6%   { background-position: 135% 0; }
  46%,100% { background-position: -35% 0; }
}
@keyframes ei-rozet-atim {
  0%       { transform: scale(1); }
  7%       { transform: scale(1.07); }
  20%,100% { transform: scale(1); }
}
@keyframes ei-rozet-halka {
  0%       { transform: scale(1);    opacity: .9; }
  55%,100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__news b { background-image: none; animation: none; }
  .hero__news b::before { animation: none; opacity: 0; }
}
.hero__news span { border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 2px; }
.hero__news:hover { color: #fff; }

.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--ei-mint); }
.hero__lede { font-size: clamp(1rem, 1.5vw, 1.125rem); color: rgba(255,255,255,.88);
              max-width: 44ch; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hero__cta .ei-btn { background: #fff; color: var(--ei-text); }
.hero__cta .ei-btn:hover { background: var(--ei-mint); color: var(--ei-text); }
.hero__cta .ei-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.hero__cta .ei-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.hero__dots { display: flex; gap: 8px; margin-top: 12px; }
.hero__dots button { width: 30px; height: 4px; border: 0; padding: 0; border-radius: 2px;
                     background: rgba(255,255,255,.36); cursor: pointer; }
.hero__dots button[aria-selected="true"] { background: #fff; }

/* ---------- akreditasyon şeridi (hero altı) ---------- */
.accred { border-bottom: 1px solid var(--ei-rule-soft); }
.accred__in { display: flex; align-items: center; gap: clamp(24px, 4vw, 64px);
              flex-wrap: wrap; padding-block: clamp(22px, 2.8vw, 34px); }
/* metin daha geniş: kalın satır + tek satır açıklama */
.accred__t { font-size: .9375rem; line-height: 1.5; color: var(--ei-text-muted);
             max-width: 54ch; flex: 0 1 auto; text-wrap: pretty; }
.accred__t b { display: block; color: var(--ei-text); font-weight: 700; }
/* logolar kalan genişliğe yayılıyor — ilki sola, sonuncusu sağ kenara hizalı */
.accred__logos { flex: 1 1 420px; display: flex; align-items: center;
                 justify-content: space-between; gap: clamp(14px, 2vw, 30px); flex-wrap: wrap; }
.accred__logos img { height: clamp(46px, 5vw, 64px); width: auto; }
.accred__logos img.is-wide { height: clamp(26px, 3vw, 34px); }

@media (max-width: 820px) {
  .accred__logos { margin-inline-start: 0; gap: 18px; }
  .accred__t { max-width: none; }
}

/* ---------- güven şeridi ---------- */
.trust { background: var(--ei-bg-dark); color: var(--ei-text-on-dark); }
.trust__in { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
             gap: clamp(18px, 2.4vw, 34px); padding-block: clamp(20px, 2.4vw, 30px); }
.trust__item { display: flex; flex-direction: column; gap: 5px; }
/* nane yeşili çizgi ikon açıklama satırının başında: şerit alçak kalıyor,
   ikon metnin ilk satırıyla hizalı duruyor */
.trust__l { display: flex; align-items: flex-start; gap: 8px; }
.trust__ic { color: var(--ei-mint); width: 17px; height: 17px; flex: none; margin-top: 2px; }
.trust__ic svg { width: 100%; height: 100%; display: block; }
.trust__n { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.trust__l { font-size: .8125rem; color: rgba(243,244,233,.72); line-height: 1.45; }

/* ---------- program aileleri ---------- */
.prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.prog { background: var(--ei-bg); border-radius: var(--ei-radius-card); padding: clamp(22px, 2.6vw, 28px);
        display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ei-text);
        border-top: 3px solid var(--ei-secondary); transition: transform .18s ease, box-shadow .18s ease; }
.prog:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(18,51,56,.09); color: var(--ei-text); }
.prog__k { font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
           text-transform: uppercase; color: var(--ei-secondary); }
.prog__t { font-size: 1.125rem; font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
.prog__d { font-size: .8125rem; color: var(--ei-text-muted); line-height: 1.55; flex: 1; }
.prog__go { font-size: .8125rem; font-weight: 600; color: var(--ei-secondary); }

/* ---------- kamplar slider ---------- */
.camp-sec { position: relative; }
/* sol sütun geniş: başlık 3 değil 2 satıra yayılsın */
.camp-slide { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.11fr) minmax(0,.86fr);
              gap: clamp(24px, 3.4vw, 46px); align-items: stretch; }
.camp-slide[hidden] { display: none; }
.camp-slide > * { min-width: 0; }  /* grid track'ten taşmayı engeller */

/* sol sütun */
.camp-ov { display: flex; flex-direction: column; gap: 18px; }
.camp-ov .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.camp-ov .eyebrow::before { content: "✦"; color: var(--ei-accent); font-size: 12px; }
/* slayt başlığı h3 ama görsel olarak h2 ölçüsünde — 2 satıra yayılsın diye ölçü geniş */
.camp-ov h3 { font-size: clamp(22px, 2.1vw, 34px); font-weight: 600; letter-spacing: -.018em;
              line-height: 1.15; max-width: 24ch; }
.camp-ov h3 em { font-style: normal; color: var(--ei-secondary); }
.camp-feats { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; margin: 0; padding: 0; }
.camp-feats li { display: flex; align-items: center; gap: 7px; font-size: .8125rem; font-weight: 600; }
.camp-feats li::before { content: "✓"; color: var(--ei-secondary); font-weight: 700; }
.camp-ov p { font-size: .9375rem; color: var(--ei-text-muted); max-width: 44ch; }
.camp-join { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 14px;
             text-decoration: none; color: var(--ei-text); font-size: .9375rem; font-weight: 600; align-self: flex-start; }
.camp-join i { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--ei-rule);
               display: grid; place-items: center; flex: none; transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.camp-join:hover i { background: var(--ei-primary); border-color: var(--ei-primary); color: var(--ei-on-primary); }

/* orta: görsel kart */
.camp-fig { position: relative; border-radius: 16px; overflow: hidden;
            width: 100%; height: 100%; min-height: 460px; background: var(--ei-band); }
.camp-fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.camp-fig::after { content: ""; position: absolute; inset: 0;
                   background: linear-gradient(to top, rgba(11,36,41,.86) 0%, rgba(11,36,41,.34) 42%, rgba(11,36,41,0) 70%); }
.camp-pill { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(18,51,56,.5);
             backdrop-filter: blur(6px); color: #fff; font-size: .6875rem; font-weight: 600;
             padding: 8px 15px; border-radius: var(--ei-radius-pill); }
.camp-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(18px, 2.4vw, 26px);
            color: #fff; display: flex; flex-direction: column; gap: 6px; }
.camp-cap b { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 700; letter-spacing: -.018em; line-height: 1.18; }
.camp-cap span { font-size: .8125rem; color: rgba(255,255,255,.86); }

/* oklar — görsel kartın sağ üstünde (referanstaki gibi) */
/* oklar bölüm başlığının sağında — açık zeminde, .rail-nav ile aynı dil */
.camp-head { flex-direction: row; align-items: center; justify-content: space-between;
             gap: 20px; max-width: none; }
.camp-nav { display: flex; gap: 12px; flex: none; }
.camp-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ei-rule);
                   background: transparent; color: var(--ei-text); cursor: pointer;
                   display: grid; place-items: center;
                   transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.camp-nav button:hover { background: var(--ei-primary); border-color: var(--ei-primary);
                         color: var(--ei-on-primary); }

/* sağ sütun */
.camp-side { display: flex; flex-direction: column; gap: 20px; }
.camp-specs { list-style: none; margin: 0; padding: 0; }
.camp-specs li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
                 padding: 14px 0; border-bottom: 1px solid var(--ei-rule-soft); font-size: .875rem; }
.camp-specs li:first-child { padding-top: 0; }
.camp-specs dt, .camp-specs .k { color: var(--ei-text-muted); }
.camp-specs .v { font-weight: 700; text-align: right; }
.camp-story { background: var(--ei-band); border-radius: 14px; padding: 22px;
              display: flex; flex-direction: column; gap: 16px; flex: 1; }
.camp-story__top { display: flex; align-items: center; gap: 12px; }
.camp-story__top img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain;
                       background: var(--ei-bg); padding: 5px; }
.camp-story p { font-size: .9375rem; line-height: 1.55; color: var(--ei-text); }
.camp-story a { margin-top: auto; display: flex; align-items: center; justify-content: space-between;
                gap: 14px; text-decoration: none; color: var(--ei-text); font-size: .875rem; font-weight: 600; }
.camp-story a i { width: 38px; height: 38px; border-radius: 50%; background: var(--ei-bg);
                  display: grid; place-items: center; flex: none; }
.camp-story a:hover i { background: var(--ei-primary); color: var(--ei-on-primary); }

@media (max-width: 1080px) {
  .camp-slide { grid-template-columns: 1fr 1fr; }
  .camp-side { grid-column: 1 / -1; }
  .camp-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 0 26px; }
}
@media (max-width: 720px) {
  .camp-slide { grid-template-columns: 1fr; }
  .camp-fig { height: auto; aspect-ratio: 4 / 3; min-height: 0; }
  .camp-join { margin-top: 0; }
}

/* ---------- biz kimiz ---------- */
.about-head { display: flex; flex-direction: column; align-items: center; text-align: center;
              gap: 16px; margin-bottom: clamp(34px, 5vw, 58px); }
.pill-tag { background: var(--ei-accent); color: var(--ei-text); border-radius: 7px;
            padding: 6px 14px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; }
.about-head h2 { max-width: 20ch; }
.about-head p { font-size: clamp(.9375rem, 1.4vw, 1.0625rem); color: var(--ei-text-muted);
                max-width: 62ch; }

.about-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px, 372px) minmax(0,1fr);
              gap: clamp(24px, 3.4vw, 52px); align-items: center; }
.about-col { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 54px); }

.feat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.feat__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--ei-secondary);
            color: #fff; display: grid; place-items: center; flex: none; }
.feat__ic svg { width: 21px; height: 21px; }
.feat h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.25; letter-spacing: -.012em; max-width: 16ch; }
.feat p { font-size: .875rem; line-height: 1.6; color: var(--ei-text-muted); max-width: 30ch; }

.about-fig { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ei-band); }
.about-fig img { width: 100%; height: 100%; object-fit: cover; }

.about-foot { display: flex; justify-content: center; margin-top: clamp(32px, 4.4vw, 52px); }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-fig { grid-column: 1 / -1; grid-row: 1; max-width: 340px; margin-inline: auto; }
  .about-col { gap: clamp(26px, 4vw, 40px); }
}
@media (max-width: 560px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-fig { grid-column: 1; }
}

/* ---------- eğitmenler ---------- */
.team-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(24px, 3.4vw, 36px); }
.team-head .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.team-head .eyebrow::before { content: "★"; color: var(--ei-accent); font-size: 12px; }
.team-row { display: flex; align-items: baseline; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; }
.team-row h2 { flex: none; }
.team-row .team-sub { font-size: .9375rem; color: var(--ei-text-muted); max-width: 34ch; flex: 1; min-width: 200px; }
.team-nav { display: flex; gap: 10px; margin-inline-start: auto; align-self: center; }
.team-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ei-rule);
                   background: var(--ei-bg); color: var(--ei-text); display: grid; place-items: center;
                   cursor: pointer; transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.team-nav button:hover:not(:disabled) { background: var(--ei-primary); border-color: var(--ei-primary); color: var(--ei-on-primary); }
.team-nav button:disabled { opacity: .34; cursor: default; }

.team-rail { display: flex; gap: var(--tm-gap); --tm-gap: clamp(12px, 1.6vw, 20px);
             overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
             padding: 2px 2px 16px; scrollbar-width: thin; }
.person { flex: 0 0 min(78vw, 300px); scroll-snap-align: start; position: relative;
          border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; text-decoration: none;
          display: block; background: var(--ei-band); }
@media (min-width: 700px)  { .person { flex-basis: calc((100% - var(--tm-gap))     / 2); } }
@media (min-width: 1000px) { .person { flex-basis: calc((100% - var(--tm-gap) * 2) / 3); } }
@media (min-width: 1240px) { .person { flex-basis: calc((100% - var(--tm-gap) * 3) / 4); } }

.person img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
              transition: transform .35s ease; }
.person:hover img { transform: scale(1.04); }
.person::after { content: ""; position: absolute; inset: 0;
                 background: linear-gradient(to bottom, rgba(11,36,41,.28) 0%, rgba(11,36,41,0) 26%,
                                                        rgba(11,36,41,0) 62%, rgba(11,36,41,.42) 100%); }

.person__chip { position: absolute; z-index: 2; background: rgba(18,51,56,.42);
                backdrop-filter: blur(8px); color: #fff; border-radius: var(--ei-radius-pill);
                font-size: .75rem; font-weight: 600; padding: 8px 15px; white-space: nowrap;
                max-width: calc(100% - 78px); overflow: hidden; text-overflow: ellipsis; }
.person__name { top: 14px; left: 14px; }
.person__role { bottom: 14px; right: 14px; font-size: .6875rem; font-weight: 600; }
.person__plus { position: absolute; z-index: 2; top: 14px; right: 14px; width: 36px; height: 36px;
                border-radius: 50%; background: rgba(18,51,56,.42); backdrop-filter: blur(8px);
                color: #fff; display: grid; place-items: center;
                transition: background-color .18s ease, transform .18s ease; }
.person:hover .person__plus { background: var(--ei-primary); transform: rotate(90deg); }

.team-foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
             margin-top: 10px; font-size: .8125rem; color: var(--ei-text-muted); }
.team-foot a { color: var(--ei-text); font-weight: 600; text-decoration: none; }
.team-foot a:hover { color: var(--ei-secondary); }

/* ---------- blog ---------- */
.section--dark { background: var(--ei-bg-dark); color: var(--ei-text-on-dark); }
.section--dark h2 { color: var(--ei-text-on-dark); }

.blog-head { display: flex; flex-direction: column; align-items: flex-start;
             gap: 14px; margin-bottom: clamp(28px, 3.6vw, 44px); }
.blog-head .blog-row { width: 100%; }
.blog-row { display: flex; align-items: center; justify-content: space-between;
            gap: 24px; flex-wrap: wrap; }
.blog-row .ei-btn { flex: none; }

.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: clamp(14px, 1.8vw, 24px); align-items: stretch; }
@media (min-width: 1120px) { .posts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.post { background: var(--ei-bg); border: 1px solid var(--ei-rule-soft); border-radius: 14px;
        overflow: hidden; display: flex; flex-direction: column;
        text-decoration: none; color: var(--ei-text);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.post:hover { transform: translateY(-4px); border-color: var(--ei-rule);
              box-shadow: 0 12px 28px rgba(18,51,56,.12); color: var(--ei-text); }

.post__ph { aspect-ratio: 4 / 3; background: var(--ei-band); overflow: hidden; }
.post__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post:hover .post__ph img { transform: scale(1.04); }

.post__body { padding: clamp(18px, 1.8vw, 22px); display: flex; flex-direction: column;
              gap: 11px; flex: 1; }
.post__k { align-self: flex-start; background: var(--ei-mint); color: var(--ei-text);
           border-radius: 6px; padding: 5px 11px;
           font-size: .6875rem; font-weight: 700; letter-spacing: .04em; }
.post__t { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; letter-spacing: -.012em; }
.post__d { font-size: .8125rem; line-height: 1.6; color: var(--ei-text-muted); flex: 1; }
.post__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
            font-size: .875rem; font-weight: 700; color: var(--ei-text); }
.post__go svg { width: 15px; height: 15px; transition: transform .18s ease; }
.post:hover .post__go svg { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .post, .post__ph img, .post__go svg { transition: none; }
}

/* ---------- görüşler ---------- */
.tstm { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.55fr);
        gap: clamp(28px, 4vw, 56px); align-items: start; }

/* sol sütun */
.tstm-left { display: flex; flex-direction: column; gap: 14px; }
.tstm-left .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.tstm-left .eyebrow::before { content: "★"; color: var(--ei-accent); font-size: 12px; }
.tstm-left h2 { max-width: none; text-wrap: balance; }
.tstm-left h2 em { font-style: normal; color: var(--ei-secondary); }
.tstm-sub { font-size: .9375rem; color: var(--ei-text-muted); max-width: 42ch; }

.video-card { position: relative; display: block; margin-top: clamp(18px, 3vw, 38px);
              border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 2; max-width: 320px; }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card::after { content: ""; position: absolute; inset: 0; background: rgba(11,36,41,.18); }
.video-card__play { position: absolute; inset: 0; margin: auto; z-index: 2; width: 64px; height: 64px;
                    border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center;
                    transition: transform .18s ease, background-color .18s ease; }
.video-card:hover .video-card__play { transform: scale(1.07); background: #fff; }
.video-card__play svg { fill: var(--ei-primary); margin-left: 3px; }

.video-link { display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
              color: var(--ei-text); font-size: .875rem; font-weight: 600; align-self: flex-start; }
.video-link i { width: 30px; height: 30px; border-radius: 50%; background: var(--ei-primary);
                color: var(--ei-on-primary); display: grid; place-items: center; flex: none; }
.video-link i svg { fill: currentColor; margin-left: 2px; }
.tstm-actions { display: flex; flex-wrap: wrap; justify-content: flex-end;
                gap: 10px; margin-top: 18px; }

/* sağ sütun */
.tstm-right { min-width: 0; }
.tstm-head { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.tstm-nav { display: flex; gap: 10px; }
.tstm-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ei-rule);
                   background: var(--ei-bg); color: var(--ei-text); display: grid; place-items: center;
                   cursor: pointer; transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.tstm-nav button:hover:not(:disabled) { background: var(--ei-primary); border-color: var(--ei-primary); color: var(--ei-on-primary); }
.tstm-nav button:disabled { opacity: .34; cursor: default; }

.tstm-rail { display: flex; gap: var(--t-gap); --t-gap: clamp(14px, 2vw, 22px);
             overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
             padding: 2px 2px 16px; scrollbar-width: thin; }
.tstm-card { flex: 0 0 min(84vw, 340px); scroll-snap-align: start; margin: 0;
             background: var(--ei-bg); border-radius: 14px; padding: clamp(20px, 2.4vw, 26px);
             display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 1000px) { .tstm-card { flex-basis: calc((100% - var(--t-gap)) / 2); } }

.tstm-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.tstm-ava { width: 44px; height: 44px; border-radius: 50%; background: var(--ei-mint);
            color: var(--ei-primary); display: grid; place-items: center; flex: none;
            font-size: .8125rem; font-weight: 700; letter-spacing: .02em; }
.tstm-pill { border: 1px solid var(--ei-rule); border-radius: var(--ei-radius-pill);
             padding: 6px 14px; font-size: .6875rem; font-weight: 600; color: var(--ei-text-muted); white-space: nowrap; }
.tstm-mark { font-family: Georgia, "Times New Roman", serif; font-size: 2.75rem; line-height: .6;
             color: var(--ei-secondary); height: 22px; }
.tstm-card p { font-size: .9375rem; line-height: 1.6; margin: 0; flex: 1; }
.tstm-card footer { border-left: 2px solid var(--ei-rule); padding-left: 14px;
                    display: flex; flex-direction: column; gap: 3px; }
.tstm-card footer b { font-size: .875rem; font-weight: 700; }
.tstm-card footer span { font-size: .75rem; color: var(--ei-text-muted); }

@media (max-width: 900px) {
  .tstm { grid-template-columns: 1fr; }
  .tstm-head { justify-content: flex-start; }
  .tstm-actions { justify-content: flex-start; }
  .video-card { max-width: 280px; }
}

/* ---------- SSS ---------- */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--ei-rule); }

.faq details { border-bottom: 1px solid var(--ei-rule); }

.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px clamp(16px, 1.8vw, 24px);
  font-size: 1.125rem; font-weight: 700; line-height: 1.35; letter-spacing: -.008em;
  /* space-between kullanılmıyor: summary içindeki her satır içi öge (ör.
     marka adlarını saran <span lang="en">) ayrı bir flex ögesi olur ve
     kelimeler birbirinden kopardı. Artı/eksi düğmesi auto margin ile sağa
     yaslanıyor; metin kaç parçadan oluşursa oluşsun bitişik kalıyor. */
  display: flex; align-items: center; gap: 20px;
  border-radius: 10px;
  transition: background-color .16s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(255, 255, 255, .62); }
.faq details[open] summary { background: var(--ei-mint); }

/* +/− göstergesi: seçili durumda dolu daireye dönüyor.
   Nane ile bandın parlaklık farkı 1.01 — ton farkı okunur ama
   seçili durumu tek başına taşımasın diye işaret de değişiyor. */
.faq summary::after {
  content: "+"; flex: none; margin-inline-start: auto;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--ei-rule);
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 400; line-height: 1;
  color: var(--ei-secondary); background: transparent;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.faq details[open] summary::after {
  content: "−";
  background: var(--ei-primary); border-color: var(--ei-primary); color: var(--ei-on-primary);
}

/* cevap da başlık gibi container'ın tamamına yayılıyor */
.faq p {
  padding: 4px clamp(16px, 1.8vw, 24px) 24px;
  color: var(--ei-text-muted); font-size: 1rem; line-height: 1.65;
  max-width: none;
}

/* ---------- iletişim (CTA) ---------- */
.cta-band { position: relative; background: var(--ei-bg-dark); color: var(--ei-text-on-dark);
            overflow: hidden; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
/* İçerik ortalandı. Perde neredeyse düz ve koyu: fotoğraf arka planda doku
   olarak kalıyor, metin her kadrajda aynı kontrastla okunuyor. */
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(19,51,56,.90), rgba(19,51,56,.91)); }

.cta-band__in { position: relative; z-index: 2;
                display: flex; flex-direction: column; align-items: center; text-align: center;
                padding-block: clamp(52px, 7vw, 92px); }
.cta-band__body { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-band h2 { color: #fff; max-width: 20ch; }
/* referanstaki nane vurgu */
/* fosforlu kalem izi: bant harflerin tamamını değil, gövdesini kaplıyor —
   üst kenar x-yüksekliğinin biraz üstünde, alt kenar taban çizgisinin altında.
   Yüzdeler em tabanlı metrikten geliyor, punto değişse de oran korunuyor. */
.cta-band h2 mark { background: linear-gradient(to bottom,
                      transparent 0 28%, var(--ei-mint) 28% 86%, transparent 86%);
                    color: var(--ei-text);
                    border-radius: 0; padding: .02em .2em .06em; box-decoration-break: clone;
                    -webkit-box-decoration-break: clone; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 52ch; }
.cta-band .ei-btn { background: #fff; color: var(--ei-text); }
.cta-band .ei-btn:hover { background: var(--ei-mint); color: var(--ei-text); }

.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list a, .contact-list span { color: #fff; text-decoration: none; font-size: .9375rem; }
.contact-list a:hover { color: var(--ei-mint); }
.contact-list strong { display: block; font-size: .6875rem; letter-spacing: .12em;
                       text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: 4px; }

@media (max-width: 980px) {
  .cta-band::after { background:
    linear-gradient(to top, rgba(9,28,32,.96) 0%, rgba(9,28,32,.88) 55%, rgba(9,28,32,.78) 100%); }
}

/* ---------- footer ---------- */
.site-foot { background: var(--ei-bg); border-top: 1px solid var(--ei-rule-soft); }

.foot-top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
            gap: clamp(28px, 3vw, 48px); padding-block: clamp(40px, 5vw, 64px); }

.foot-brand { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.foot-brand > img { height: 66px; width: auto; }
.foot-tag { font-size: .875rem; color: var(--ei-text-muted); max-width: 34ch; line-height: 1.55; }

.socials { display: flex; gap: 10px; }
.socials a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--ei-rule);
             display: grid; place-items: center; color: var(--ei-text);
             transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.socials a:hover { background: var(--ei-primary); border-color: var(--ei-primary); color: var(--ei-on-primary); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }
/* Instagram markası dolu değil çizgi bir işaret: dikdörtgen + halka + nokta
   olarak çiziliyor. Tek bir dolu yolla taklit edildiğinde küçük puntoda
   köşeler bozuluyordu. */
.socials .is-ig svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.socials .is-ig .is-nokta { fill: currentColor; stroke: none; }

.foot-sub { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; max-width: 34ch; }
.foot-sub h3 { font-size: .9375rem; font-weight: 700; }
.foot-sub p { font-size: .8125rem; color: var(--ei-text-muted); line-height: 1.55; }
.foot-sub form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.foot-sub input { font: inherit; font-size: .875rem; padding: 11px 15px; flex: 1; min-width: 170px;
                  border: 1px solid var(--ei-rule); border-radius: var(--ei-radius-pill);
                  background: var(--ei-bg); color: var(--ei-text); }
.foot-sub button { font: inherit; font-size: .8125rem; font-weight: 600; letter-spacing: .03em;
                   padding: 11px 22px; border: 0; border-radius: var(--ei-radius-pill);
                   background: var(--ei-primary); color: var(--ei-on-primary); cursor: pointer; }
.foot-sub button:hover { background: var(--ei-primary-hover); }
.foot-kvkk { font-size: .6875rem; color: var(--ei-text-faint); line-height: 1.5; }
.foot-kvkk a { color: var(--ei-text-muted); }

.foot-col h3 { font-size: .9375rem; font-weight: 700; margin-bottom: 16px; color: var(--ei-text);
               letter-spacing: -.005em; text-transform: none; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: .875rem; color: var(--ei-text-muted); text-decoration: none; }
.foot-col a:hover { color: var(--ei-secondary); }

/* akreditasyon logoları */
.foot-logos { border-top: 1px solid var(--ei-rule-soft); padding-block: clamp(28px, 3.4vw, 42px);
              display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.foot-logos > span { font-size: .8125rem; color: var(--ei-text-muted); }
.foot-logos__row { display: flex; align-items: center; justify-content: center;
                   gap: clamp(18px, 3vw, 42px); flex-wrap: wrap; }
.foot-logos__row img { height: 54px; width: auto; }
.foot-logos__row img.is-wide { height: 30px; }

.foot-bar { border-top: 1px solid var(--ei-rule-soft); padding-block: 20px;
            display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
            font-size: .75rem; color: var(--ei-text-faint); }
.foot-bar nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.foot-bar a { color: var(--ei-text-faint); text-decoration: none; }
/* alt barda diğer bağlantılarla aynı görünen düğme (tercih panelini açar) */
.vc-tercih { appearance: none; border: 0; background: transparent; padding: 0;
             font: inherit; font-size: .75rem; color: var(--ei-text-faint);
             cursor: pointer; }
.vc-tercih:hover { color: var(--ei-secondary); }
.foot-bar a:hover { color: var(--ei-secondary); }

@media (max-width: 1100px) {
  .foot-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp ---------- */
.wa { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 54px; height: 54px;
      border-radius: 50%; background: #25D366; display: grid; place-items: center;
      box-shadow: 0 6px 20px rgba(18,51,56,.22); }
.wa svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- arama ---------- */
.search { position: fixed; inset: 0; z-index: 200; background: rgba(18,51,56,.55);
          display: grid; place-items: start center; padding: clamp(60px, 12vh, 140px) 18px; }
.search[hidden] { display: none; }
.search__box { background: var(--ei-bg); border-radius: var(--ei-radius-card); width: min(620px, 100%);
               padding: clamp(20px, 3vw, 30px); display: flex; flex-direction: column; gap: 14px; }
.search__box input { font: inherit; font-size: 1.0625rem; padding: 14px 16px; width: 100%;
                     border: 1px solid var(--ei-rule); border-radius: var(--ei-radius-card); background: var(--ei-bg); color: var(--ei-text); }
.search__hint { font-size: .8125rem; color: var(--ei-text-muted); }
.search__hint b { color: var(--ei-secondary); }


/* ---------- eğitimlerimiz slider ---------- */
.rail-head { display: flex; flex-direction: column; align-items: center; text-align: center;
             gap: 12px; margin-bottom: clamp(28px, 4vw, 42px); }
.rail-head .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.rail-head .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%;
                              background: var(--ei-accent); flex: none; }
.rail-head h2 em { font-style: normal; color: var(--ei-secondary); }

.rail-wrap { position: relative; }
.rail { display: flex; gap: var(--rail-gap); overflow-x: auto; overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory; scroll-padding-inline: 2px;
        padding: 4px 2px 18px; scrollbar-width: thin;
        --rail-gap: clamp(14px, 2vw, 22px); }
/* flex-basis'i sabitliyoruz: flex-shrink 0 olmadan kartlar sıkışıyor */
.tcard { flex: 0 0 min(80vw, 300px); }
@media (min-width: 700px)  { .tcard { flex-basis: calc((100% - var(--rail-gap))     / 2); } }
@media (min-width: 1000px) { .tcard { flex-basis: calc((100% - var(--rail-gap) * 2) / 3); } }
@media (min-width: 1240px) { .tcard { flex-basis: calc((100% - var(--rail-gap) * 3) / 4); } }

.tcard { scroll-snap-align: start; background: var(--ei-bg); border-radius: var(--ei-radius-card);
         overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
         color: var(--ei-text); box-shadow: 0 1px 3px rgba(18,51,56,.07);
         transition: transform .18s ease, box-shadow .18s ease; }
.tcard:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(18,51,56,.11); color: var(--ei-text); }
/* flex öğesinin min-height:auto'su aspect-ratio'yu eziyordu: görseli akıştan
   çıkarıp kutuyu 16/10'a sabitliyoruz — tüm kartlarda eşit yükseklik. */
.tcard__ph { position: relative; aspect-ratio: 16 / 10; background: var(--ei-band);
             flex: none; min-height: 0; overflow: hidden; }
.tcard__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tcard__ph::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0;
                    height: 4px; background: var(--ei-secondary); }
.tcard__flag { position: absolute; top: 12px; left: 12px; background: var(--ei-accent);
               color: var(--ei-text); font-size: .625rem; font-weight: 700; letter-spacing: .09em;
               text-transform: uppercase; padding: 5px 11px; border-radius: var(--ei-radius-pill); }
.tcard__body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tcard__t { font-size: .9375rem; font-weight: 600; line-height: 1.35; letter-spacing: -.005em; }
.tcard__date { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
               background: var(--ei-band); border-radius: var(--ei-radius-pill);
               padding: 5px 11px; font-size: .75rem; font-weight: 600; line-height: 1.2;
               color: var(--ei-text); }
.tcard__date svg { flex: none; color: var(--ei-secondary); }
.tcard__meta { font-size: .75rem; color: var(--ei-text-muted); line-height: 1.45; }
.tcard__k { margin-top: auto; font-size: .625rem; font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: var(--ei-secondary); }

.rail-nav { display: flex; justify-content: center; gap: 12px; margin-top: 6px; }
.rail-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ei-rule);
                   background: var(--ei-bg); color: var(--ei-text); display: grid; place-items: center;
                   cursor: pointer; transition: background-color .18s ease, border-color .18s ease; }
.rail-nav button:hover:not(:disabled) { background: var(--ei-primary); border-color: var(--ei-primary); color: var(--ei-on-primary); }
.rail-nav button:disabled { opacity: .34; cursor: default; }

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

@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .hero__frame::after { background:
    linear-gradient(to top, rgba(9,28,32,.92) 0%, rgba(9,28,32,.72) 46%, rgba(9,28,32,.34) 100%); }
  .hero__body { max-width: none; }
}
@media (max-width: 1279px) {
  .nav-toggle { display: grid; }
  .nav { display: none; order: 10; width: 100%; flex-direction: column; gap: 0;
         border-top: 1px solid var(--ei-rule-soft); padding-block: 8px; margin-inline-start: 0; }
  .nav.is-open { display: flex; flex-wrap: wrap; }
  .nav > a, .nav__item > a { padding-block: 12px; font-size: .8125rem; }
  /* mobil: alt kırılım akordeon — ok düğmesi açıyor */
  .nav__item { flex-wrap: wrap; width: 100%; justify-content: space-between; }
  .nav__item > a { flex: 1 1 auto; }
  .nav__more { width: 40px; height: 40px; flex: none; }
  .nav__sub { display: none; width: 100%; padding: 2px 0 10px 12px;
              border-inline-start: 2px solid var(--ei-rule-soft); margin-bottom: 8px; }
  .nav__more[aria-expanded="true"] + .nav__sub { display: block; }
  .nav__sub a { padding: 10px 10px; }
  .site-head__in { flex-wrap: wrap; }
  .head-tools { margin-inline-start: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img { transition: none; }
  .prog, .tcard, .person img, .person__plus { transition: none; }
  .rail { scroll-behavior: auto; }
}

/* ==========================================================================
   PROGRAM DETAY SAYFASI
   26 program sayfası bu şablonu kullanıyor. İki sütun: solda içerik,
   sağda yapışkan künye kartı. 1000px altında künye içeriğin üstüne geçiyor.
   ========================================================================== */

/* ---------- kırıntı navigasyonu ---------- */
.crumbs { padding-block: 14px; border-bottom: 1px solid var(--ei-rule-soft); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
             margin: 0; padding: 0; list-style: none;
             font-size: var(--ei-small); color: var(--ei-text-faint); }
.crumbs li { display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "›"; color: var(--ei-text-faint); }
.crumbs a { color: var(--ei-text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--ei-secondary); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ei-text); font-weight: 500; }

/* ---------- başlık bloğu ---------- */
.phead { padding-block: clamp(30px, 4.6vw, 58px) clamp(26px, 3.6vw, 44px); }
.phead__in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
             gap: clamp(26px, 4vw, 54px); align-items: center; }
.phead__body { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
/* program adları 60+ karakter — anasayfanın 58px H1'i dört satıra taşıyor ve
   CTA'yı ekranın altına itiyor. Detay sayfasında ölçek bir kademe küçük. */
.phead__body h1 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; max-width: 20ch; }
.phead__lede { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--ei-text-muted); }
.phead__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.phead__tags li { background: var(--ei-band); color: var(--ei-text); border-radius: 7px;
                  padding: 6px 13px; font-size: .75rem; font-weight: 600; }
.phead__tags li.is-vurgu { background: var(--ei-accent); font-weight: 700; }
.phead__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.phead__fig { margin: 0; border-radius: var(--ei-radius-card); overflow: hidden;
              aspect-ratio: 4 / 3; background: var(--ei-band); }
.phead__fig img { width: 100%; height: 100%; object-fit: cover; }

/* görselin künye kartına taşındığı sayfalarda (ör. eğitmen detayı) başlık
   bloğu tek sütun; metin okunur ölçüde kalsın diye genişlik sınırlı. */
.phead__in--tek { grid-template-columns: minmax(0, 60ch); }

@media (max-width: 900px) {
  .phead__in { grid-template-columns: 1fr; }
  .phead__fig { order: -1; aspect-ratio: 16 / 9; }
}

/* ---------- iki sütunlu gövde ---------- */
/* Blok sayfa genişliğini kullanıyor: metin solda kenardan başlıyor, künye
   sağ kenara dayanıyor. Metin sütunu okunurluk için 760px'te sabit; artan
   genişliği künye alıyor (geniş ekranda künye alanları iki sütuna açılıyor,
   bkz. .pcard dl). */
.pwrap { display: grid; grid-template-columns: minmax(0, 760px) minmax(330px, 1fr);
         gap: clamp(28px, 4vw, 56px); align-items: start;
         padding-bottom: clamp(52px, 8vw, 96px); }
/* ayrı bir .phead bölümü olmayan sayfalarda (eğitmen detayı) başlık sol sütunun
   içinde duruyor; künye kartı da sayfanın en üstünden başlasın diye üst boşluk
   ızgaraya veriliyor. */
.pwrap--ustten { padding-top: clamp(30px, 4.6vw, 56px); }
.pmain { display: flex; flex-direction: column; gap: clamp(34px, 4.4vw, 52px); min-width: 0;
         max-width: 760px; }
.pmain h2 { margin-bottom: 14px; }
.pmain p + p { margin-top: 12px; }
/* metin sütunu zaten dar; gövdedeki 65ch sınırı burada satırları erken kesip
   sağda boşluk bırakıyordu. Sütunun kendisi 760px ile sınırlı, ölçü oradan geliyor. */
.pmain p, .pmain li { max-width: none; }

@media (max-width: 1000px) {
  .pwrap { grid-template-columns: 1fr; }
  .pside { order: -1; }
}

/* ---------- işaretli liste ---------- */
.plist { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 2px 26px; margin: 0; padding: 0; list-style: none; }
.plist li { position: relative; padding: 9px 0 9px 28px; line-height: 1.5;
            border-bottom: 1px solid var(--ei-rule-soft); }
.plist li::before { content: ""; position: absolute; left: 4px; top: 17px;
                    width: 8px; height: 8px; border-radius: 50%;
                    background: var(--ei-secondary); }
.plist--sayili { counter-reset: adim; }
.plist--sayili li::before { content: counter(adim); counter-increment: adim;
                            left: 0; top: 9px; width: 20px; height: 20px; border-radius: 50%;
                            display: grid; place-items: center;
                            background: var(--ei-mint); color: var(--ei-text);
                            font-size: .6875rem; font-weight: 700; }

/* ---------- künye kartı (yapışkan) ---------- */
.pside { position: sticky; top: 96px; }
.pcard { background: var(--ei-band); border-radius: var(--ei-radius-card); padding: 22px; }
/* kartın tepesine oturan portre — kart dolgusunun dışına taşıp üst köşeleri
   kartla aynı yarıçapta yuvarlanıyor. */
.pcard__foto { margin: -22px -22px 18px; aspect-ratio: 1 / 1; overflow: hidden;
               border-radius: var(--ei-radius-card) var(--ei-radius-card) 0 0;
               background: var(--ei-bg); }
.pcard__foto img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.pcard h2 { font-size: var(--ei-h3); margin-bottom: 4px; }
.pcard dl { margin: 14px 0 0; display: grid; gap: 0 26px;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.pcard dt { font-size: var(--ei-label); font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: var(--ei-secondary);
            padding-top: 12px; border-top: 1px solid var(--ei-rule-soft); }
/* Künye kartın genişliğine göre 1-3 sütuna açılıyor; hangi ögenin satır başı
   olduğu CSS'ten bilinemediği için ayraç çizgisi ögelerin tamamında duruyor.
   İlk satırdaki çizgi de başlıkla alanları ayıran kural gibi okunuyor. */
.pcard dd { margin: 3px 0 12px; font-size: .9375rem; line-height: 1.5; }
.pcard .ei-btn { display: block; text-align: center; margin-top: 6px; }
.pcard__alt { margin-top: 12px; font-size: var(--ei-small); color: var(--ei-text-muted);
              text-align: center; }
.pcard__alt a { font-weight: 600; }

/* ---------- eğitmen kartı ---------- */
.pteach { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 22px;
          align-items: start; }
.pteach img { width: 132px; height: 165px; object-fit: cover;
              border-radius: var(--ei-radius-card); }
.pteach__ad { font-size: var(--ei-h3); font-weight: 600; }
.pteach__rol { font-size: var(--ei-small); color: var(--ei-secondary); font-weight: 600;
               margin-bottom: 10px; }
@media (max-width: 560px) {
  .pteach { grid-template-columns: 1fr; }
}

/* ---------- ilgili programlar ---------- */
.prelated { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

/* ==========================================================================
   LİSTE VE İÇERİK SAYFALARI
   Kategori, eğitmenler, blog, galeri, SSS, kurumsal metin sayfaları.
   ========================================================================== */

/* ---------- sade sayfa başlığı (program detaydaki .phead'in tek sütunlu hâli) ---------- */
.lead-head { padding-block: clamp(30px, 4.6vw, 56px) clamp(6px, 1.4vw, 16px); }
.lead-head h1 { font-size: clamp(30px, 4.4vw, 50px); line-height: 1.08; max-width: 20ch; }
.lead-head .eyebrow { margin-bottom: 12px; }
.lead-head__lede { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--ei-text-muted);
                   margin-top: 16px; }

/* ---------- kart ızgaraları (rail'in ızgara karşılığı) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
             gap: clamp(14px, 2vw, 22px); }
.person-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
               gap: clamp(14px, 2vw, 22px); }

/* ---------- metin sayfası ölçüsü ---------- */
.prose { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 46px); }
.prose h2 { margin-bottom: 12px; }
.prose p + p { margin-top: 12px; }

/* ---------- değer / madde kartları ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; }
/* sabit üç sütun: öge sayısı 3'ün katıysa auto-fit'in geniş ekranda tek sıraya
   dizmesini istemiyoruz (ör. altı temel değer → 3 + 3). */
.value-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .value-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .value-grid--3 { grid-template-columns: 1fr; } }
.value { background: var(--ei-bg); border-radius: var(--ei-radius-card); padding: 22px;
         box-shadow: 0 1px 3px rgba(18,51,56,.07); }
.ei-bg .value { background: var(--ei-band); box-shadow: none; }
.value h3 { margin-bottom: 8px; }
.value p { font-size: .9375rem; color: var(--ei-text-muted); line-height: 1.55; }

/* ---------- referans listesi ---------- */
.reflist { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 26px 34px; }
.reflist h3 { font-size: 1rem; padding-bottom: 8px; border-bottom: 2px solid var(--ei-secondary);
              margin-bottom: 12px; }
.reflist ul { margin: 0; padding: 0; list-style: none; }
.reflist li { padding: 7px 0; border-bottom: 1px solid var(--ei-rule-soft);
              font-size: .9375rem; }

/* ---------- iki sütunlu anlatı (metin + görsel) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
         gap: clamp(24px, 4vw, 54px); align-items: center; }
.split figure { margin: 0; border-radius: var(--ei-radius-card); overflow: hidden;
                aspect-ratio: 4 / 3; background: var(--ei-band); }
.split figure img { width: 100%; height: 100%; object-fit: cover; }
.split--ters figure { order: -1; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split figure, .split--ters figure { order: -1; aspect-ratio: 16 / 9; }
}

/* summary bir flex kutusu: metin tek bir ögede toplanmazsa satır içi <span>'ler
   ayrı flex ögesi olur ve gap kadar birbirinden ayrılır. Yeni SSS bloklarında
   soru metnini daima .faq__q içine alın. */
.faq summary > .faq__q { min-width: 0; }

/* ==========================================================================
   YAZI, GALERİ, FORM
   ========================================================================== */

/* ---------- blog yazısı ---------- */
.article { max-width: 68ch; margin-inline: auto; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
                 font-size: var(--ei-small); color: var(--ei-text-faint); margin-top: 14px; }
.article__meta b { color: var(--ei-text-muted); font-weight: 600; }
.article__fig { margin: clamp(22px, 3vw, 34px) 0 0; border-radius: var(--ei-radius-card);
                overflow: hidden; aspect-ratio: 16 / 9; background: var(--ei-band); }
.article__fig img { width: 100%; height: 100%; object-fit: cover; }
.article__body { margin-top: clamp(26px, 3.4vw, 38px); }
.article__body > * + * { margin-top: 18px; }
.article__body h2 { font-size: clamp(21px, 2.4vw, 27px); margin-top: 34px; }
.article__body ul { margin: 0; padding-left: 22px; }
.article__body li { padding: 4px 0; }
.article__body p { max-width: none; }
.article__foot { margin-top: clamp(30px, 4vw, 44px); padding-top: 22px;
                 border-top: 1px solid var(--ei-rule); }

/* ---------- fotoğraf galerisi ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.gallery figure { margin: 0; border-radius: var(--ei-radius-card); overflow: hidden;
                  aspect-ratio: 4 / 3; background: var(--ei-band); }
.gallery img { width: 100%; height: 100%; object-fit: cover;
               transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- video galerisi (facade) ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 20px; }
.video-grid .video-card { margin-top: 0; max-width: none; }
.video-item__t { display: block; margin-top: 10px; font-weight: 600; line-height: 1.35; }
.video-item__d { display: block; margin-top: 4px; font-size: var(--ei-small); color: var(--ei-text-muted); }
.video-item a { text-decoration: none; color: var(--ei-text); }

/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
             gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
/* align-content: start olmazsa, yan yana iki alandan biri ipucu satırı taşıdığında
   satır yüksekliği eşitlenirken fazla boşluk input'a biniyor ve kutular farklı
   yükseklikte görünüyor. Satırlar doğal boyutunda kalsın. */
.field { display: grid; gap: 6px; align-content: start; }
.field > label { font-size: var(--ei-small); font-weight: 600; }
.field > label .zorunlu { color: var(--ei-secondary); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .9375rem; color: var(--ei-text);
  background: var(--ei-bg); border: 1px solid var(--ei-rule);
  border-radius: 10px; padding: 11px 13px; width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ei-secondary);
  box-shadow: 0 0 0 3px rgba(84,117,94,.18);
}
.field__ipucu { font-size: .8125rem; color: var(--ei-text-faint); }
.onay { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start;
        font-size: .8125rem; line-height: 1.5; color: var(--ei-text-muted); }
.onay input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--ei-primary); }
.form .ei-btn { justify-self: start; }

/* ---------- iletişim kartları ---------- */
.contact-cards { display: grid; gap: 14px; }
.contact-card { background: var(--ei-band); border-radius: var(--ei-radius-card); padding: 20px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: .9375rem; line-height: 1.55; }
.contact-card a { display: block; }
.map { margin-top: 18px; border-radius: var(--ei-radius-card); overflow: hidden;
       aspect-ratio: 16 / 9; background: var(--ei-band); display: grid; place-items: center;
       text-align: center; padding: 20px; }
.map p { font-size: var(--ei-small); color: var(--ei-text-faint); }

/* ---------- 404 ---------- */
.notfound { min-height: 46vh; display: flex; flex-direction: column; align-items: flex-start;
            justify-content: center; gap: 16px; padding-block: clamp(48px, 8vw, 96px); }
.notfound__kod { font-size: clamp(56px, 12vw, 118px); font-weight: 700; line-height: .9;
                 letter-spacing: -.04em; color: var(--ei-band); }


/* ---------- formda kategori başlıklı program seçimi ---------- */
.secim__baslik { font-size: var(--ei-small); font-weight: 600; }
.secim { display: grid; gap: 14px; margin-top: 4px; }
.secim__grup { border: 1px solid var(--ei-rule); border-radius: 10px;
               padding: 12px 14px 14px; margin: 0; min-width: 0; }
.secim__grup legend { padding: 0 6px; margin-left: -6px;
                      font-size: var(--ei-label); font-weight: 700; letter-spacing: .12em;
                      text-transform: uppercase; color: var(--ei-secondary); }
.secim__liste { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
                gap: 2px 18px; }
.secim__oge { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start;
              padding: 6px 0; font-size: .8125rem; line-height: 1.4; cursor: pointer; }
.secim__oge input { width: 18px; height: 18px; margin: 0; accent-color: var(--ei-primary); }
.secim__oge:hover span { color: var(--ei-secondary); }

/* ==========================================================================
   ÇEREZ ONAYI
   Venüs Ajans banner'ının site tokenlarına taşınmış hâli. Butonlar sitenin
   .ei-btn bileşenini kullanıyor; renk, yazı tipi ve yarıçap tokenlardan.
   ========================================================================== */
#vc-consent { position: fixed; inset: auto 0 0 0; z-index: 300; }

.vc-banner { display: none; width: min(980px, calc(100% - 32px)); margin: 0 auto 20px;
             padding: clamp(18px, 2.4vw, 26px);
             background: var(--ei-bg); border: 1px solid var(--ei-rule-soft);
             border-radius: 14px; box-shadow: 0 18px 44px rgba(18,51,56,.16); }
.vc-banner.vc-open { display: block; animation: vc-yukari .34s ease both; }
.vc-banner h2 { font-size: 1.0625rem; margin-bottom: 6px; }
.vc-banner p { font-size: .875rem; line-height: 1.55; color: var(--ei-text-muted);
               max-width: 76ch; margin-bottom: 16px; }

@keyframes vc-yukari { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.vc-actions, .vc-modal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.vc-modal-actions { margin-top: 20px; }

/* metin görünümlü üçüncü seçenek — .ei-btn'in yanında ağırlık yapmasın */
.vc-link { appearance: none; border: 0; background: transparent; cursor: pointer;
           font: inherit; font-size: .875rem; font-weight: 600; color: var(--ei-secondary);
           text-decoration: underline; text-underline-offset: 3px; padding: 10px 8px; }
.vc-link:hover { color: var(--ei-secondary-hover); }

.vc-overlay { position: fixed; inset: 0; z-index: 310; background: rgba(18,51,56,.55);
              display: none; align-items: center; justify-content: center; padding: 16px; }
.vc-overlay.vc-open { display: flex; }
.vc-modal { background: var(--ei-bg); border-radius: 14px; width: min(560px, 100%);
            max-height: 88vh; overflow-y: auto; padding: clamp(20px, 3vw, 28px);
            box-shadow: 0 18px 44px rgba(18,51,56,.22); }
.vc-modal.vc-open { animation: vc-yukari .3s ease both; }
.vc-modal h2 { font-size: var(--ei-h3); margin-bottom: 6px; }
.vc-modal > p { margin-bottom: 18px; }

.vc-cat { border: 1px solid var(--ei-rule); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; }
.vc-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vc-cat-head strong { font-size: .9375rem; }
.vc-cat p { margin-top: 8px; font-size: .8125rem; line-height: 1.5; color: var(--ei-text-muted); }
.vc-always { font-size: .75rem; font-weight: 600; color: var(--ei-secondary); white-space: nowrap; }

.vc-switch { position: relative; width: 44px; height: 24px; flex: none; }
.vc-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
                   opacity: 0; cursor: pointer; }
.vc-slider { position: absolute; inset: 0; border-radius: 24px; pointer-events: none;
             background: var(--ei-rule); transition: background-color .16s ease; }
.vc-slider::before { content: ""; position: absolute; left: 3px; top: 3px;
                     width: 18px; height: 18px; border-radius: 50%; background: var(--ei-bg);
                     box-shadow: 0 1px 3px rgba(18,51,56,.28);
                     transition: transform .16s ease; }
.vc-switch input:checked + .vc-slider { background: var(--ei-secondary); }
.vc-switch input:checked + .vc-slider::before { transform: translateX(20px); }
.vc-switch input:focus-visible + .vc-slider { outline: 2px solid var(--ei-primary); outline-offset: 2px; }

@media (max-width: 560px) {
  .vc-banner { width: 100%; margin: 0; border-radius: 14px 14px 0 0; border-inline: 0; border-bottom: 0; }
  .vc-actions .ei-btn { flex: 1 1 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .vc-banner.vc-open, .vc-modal.vc-open { animation: none; }
}
