/* ============================================================
   index.css — Ana sayfa (homepage) stilleri
   ============================================================ */

/* ── Hero Slider ─────────────────────────────────────────── */
.heroStatic {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--ackg-dark);
  display: block;
  width: 100%;
}
.heroStaticBg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.heroStaticBg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transform: scale(1.01);
}
.heroStaticBg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(8,13,23,.82) 0%, rgba(8,13,23,.70) 34%,
    rgba(8,13,23,.34) 62%, rgba(8,13,23,.55) 100%);
  pointer-events: none;
}
.heroStaticContainer {
  max-width: 1280px; margin: 0 auto;
  padding: 96px 24px 118px;
  position: relative; z-index: 2;
  min-height: 590px;
  display: flex; align-items: center;
  box-sizing: border-box;
}
.heroStaticContent { max-width: 610px; z-index: 3; color: #fff; }
.heroStaticTitle {
  font-size: clamp(42px,5.6vw,72px);
  font-weight: 950; color: #ffffff;
  line-height: .98; letter-spacing: -2.2px;
  margin: 0 0 18px;
  text-shadow: 0 18px 42px rgba(0,0,0,.38);
}
.heroStaticSubtitle {
  font-size: clamp(17px,2vw,23px);
  color: var(--ackg-gold); font-weight: 900;
  margin: 0 0 22px; line-height: 1.35;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.heroStaticDesc {
  font-size: 17px; color: rgba(255,255,255,.90);
  line-height: 1.72; margin: 0 0 34px;
  max-width: 560px; font-weight: 650;
  text-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.heroStaticButtons { display: flex; gap: 16px; flex-wrap: wrap; }
.heroStaticBtn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 28px;
  border-radius: 12px; font-weight: 950;
  font-size: 14px; text-decoration: none;
  text-transform: uppercase; letter-spacing: .35px;
  transition: all .25s ease; border: 2px solid transparent;
}
.heroStaticBtn--primary {
  background: var(--ackg-red); color: #fff;
  box-shadow: 0 16px 34px rgba(200,16,46,var(--_a,1));
}
.heroStaticBtn--primary:hover {
  background: var(--ackg-red-hover); transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(200,16,46,var(--_a,1));
}
.heroStaticBtn--outline {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
}
.heroStaticBtn--outline:hover {
  background: #fff; color: #111827; transform: translateY(-3px);
}
.heroStaticBtn--dark {
  background: rgba(15,23,42,.88); color: #fff;
  border-color: rgba(255,255,255,.18);
}
.heroStaticBtn--dark:hover { background: #020617; transform: translateY(-3px); }
.heroStaticArrow { transition: transform .25s ease; }
.heroStaticBtn:hover .heroStaticArrow { transform: translateX(5px); }

/* ── Value Kartları ──────────────────────────────────────── */
.heroValues {
  position: relative; z-index: 6;
  width: 100%; box-sizing: border-box;
  display: block; margin-top: -104px;
  padding: 0 20px; background: transparent;
}
.heroValuesContainer {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(5,10,18,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -18px 48px rgba(0,0,0,.20);
}
.heroValuesItem {
  display: grid; grid-template-columns: 44px 1fr;
  align-items: flex-start; gap: 14px;
  color: #fff; padding: 24px 26px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.heroValuesItem:last-child { border-right: 0; }
.heroValuesIcon {
  font-size: 26px; color: var(--ackg-gold);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.25);
  box-shadow: inset 0 0 0 1px rgba(245,197,24,.12), 0 0 12px rgba(245,197,24,.15);
  transition: all .25s ease;
}
.heroValuesItem:hover .heroValuesIcon {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,197,24,.25), inset 0 0 0 1px rgba(245,197,24,.2);
}
.heroValuesBody { flex: 1; min-width: 0; }
.heroValuesTitle {
  font-size: 16px; font-weight: 950;
  margin: 0 0 5px; color: #fff;
  letter-spacing: -.35px; line-height: 1.2;
}
.heroValuesText {
  font-size: 13px; color: rgba(255,255,255,.82);
  line-height: 1.45; font-weight: 600; margin: 0;
}

/* ── À la une & Dernières actualités ─────────────────────── */
.hs-wrap { margin: 48px 0; }
.hs-head {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 2px solid #E2E8F0;
}
.hs-head-label {
  font-size: 17px; font-weight: 800; color: var(--ackg-dark);
  display: flex; align-items: center; gap: 10px;
}
.hs-head-label::before {
  content: ""; width: 4px; height: 20px;
  background: var(--ackg-red); border-radius: 3px; display: inline-block;
}
.hs-see-all {
  font-size: 11px; font-weight: 800; color: var(--ackg-red);
  text-decoration: none; letter-spacing: .5px;
  display: flex; align-items: center; gap: 4px;
}
.hs-see-all:hover { opacity: .7; }
.hs-une-card {
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-decoration: none; color: inherit;
  display: block; transition: transform .2s, box-shadow .2s;
}
.hs-une-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.hs-une-inner { display: flex; gap: 0; align-items: stretch; }
.hs-une-content {
  flex: 1; padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.hs-une-date { font-size: 11px; font-weight: 800; color: var(--ackg-red); margin-bottom: 12px; letter-spacing: .3px; }
.hs-une-title { font-size: 26px; font-weight: 800; color: var(--ackg-dark); line-height: 1.35; margin: 0 0 14px; }
.hs-une-text { font-size: 14px; color: var(--ackg-muted); line-height: 1.75; margin-bottom: 24px; flex: 1; }
.hs-une-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ackg-red); color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 800; font-size: 13px; text-decoration: none;
  text-transform: uppercase; letter-spacing: .5px;
  align-self: flex-start; transition: background .2s;
}
.hs-une-btn:hover { background: var(--ackg-red-hover); }
.hs-une-img-wrap { flex: 0 0 45%; position: relative; overflow: hidden; min-height: 320px; }
.hs-une-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hs-share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; background: var(--ackg-page-bg);
  border-top: 1px solid #F1F5F9; flex-wrap: wrap;
}
.hs-share-label { font-size: 12px; font-weight: 700; color: var(--ackg-muted); margin-right: 4px; white-space: nowrap; }
.hs-share-btns { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hs-share-btn {
  width: 34px; height: 34px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 14px; border: none;
  cursor: pointer; transition: opacity .2s, transform .2s; flex-shrink: 0;
}
.hs-share-btn:hover { opacity: .85; transform: translateY(-1px); }
.hs-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.hs-news-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none; color: inherit; display: block;
  transition: transform .2s, box-shadow .2s;
}
.hs-news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.hs-news-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #E2E8F0; }
.hs-news-body { padding: 12px 14px 16px; }
.hs-news-date { font-size: 11px; color: var(--ackg-muted); font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.hs-news-title { font-size: 14px; font-weight: 800; color: var(--ackg-dark); line-height: 1.4; margin-bottom: 6px; }
.hs-news-text { font-size: 12px; color: var(--ackg-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hs-news-link { font-size: 12px; font-weight: 700; color: var(--ackg-red); margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; }
.hs-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ackg-dark); color: #fff;
  padding: 13px 30px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; transition: background .2s;
}
.hs-more-btn:hover { background: var(--ackg-dark-hover); }

/* ── Nos valeurs / İstatistikler ─────────────────────────── */
.hm-mission {
  background: #FFFBF0; border-radius: 20px;
  padding: 40px; margin: 40px 0;
  border: 1px solid #F3E8C0;
}
.hm-mission-wrap { display: flex; gap: 40px; align-items: center; }
.hm-mission-left { flex: 0 0 260px; }
.hm-mission-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 800; color: var(--ackg-dark); margin-bottom: 16px;
}
.hm-mission-label::before { content: ''; width: 4px; height: 20px; background: var(--ackg-red); border-radius: 3px; }
.hm-mission-desc { font-size: 14px; color: var(--ackg-muted); line-height: 1.7; margin-bottom: 20px; }
.hm-mission-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ackg-red); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 800; font-size: 13px; text-decoration: none;
  text-transform: uppercase; letter-spacing: .4px; transition: background .2s;
}
.hm-mission-btn:hover { background: var(--ackg-red-hover); }
.hm-mission-right {
  flex: 1; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border-left: 1px solid #E8D89A; padding-left: 40px;
}
.hm-stat-item { text-align: center; padding: 16px 10px; border-right: 1px solid #F0E4C0; }
.hm-stat-item:last-child { border-right: none; }
.hm-stat-icon { margin-bottom: 10px; }
.hm-stat-icon img { width: 36px; height: 36px; object-fit: contain; }
.hm-stat-num { font-size: 28px; font-weight: 900; color: var(--ackg-gold-hover); line-height: 1.1; margin-bottom: 6px; }
.hm-stat-label { font-size: 12px; color: var(--ackg-muted); line-height: 1.4; font-weight: 600; }

/* ── Prochains événements ────────────────────────────────── */
.hev-section { margin: 48px 0; }
.hev-head {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 2px solid #E2E8F0;
}
.hev-head-label {
  font-size: 17px; font-weight: 800; color: var(--ackg-dark);
  display: flex; align-items: center; gap: 10px;
}
.hev-head-label::before { content: ''; width: 4px; height: 20px; background: var(--ackg-red); border-radius: 3px; }
.hev-nav { display: flex; gap: 8px; }
.hev-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #E2E8F0; background: #fff;
  font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ackg-dark); transition: all .2s;
}
.hev-nav-btn:hover { background: var(--ackg-dark); color: #fff; border-color: var(--ackg-dark); }
.hev-track-wrap { overflow: hidden; }
.hev-track {
  display: flex; gap: 16px; scroll-behavior: smooth;
  overflow-x: auto; scrollbar-width: none;
  scroll-snap-type: x mandatory; padding-bottom: 4px;
}
.hev-track::-webkit-scrollbar { display: none; }
.hev-card {
  flex: 0 0 calc(33.33% - 11px); min-width: 240px;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  scroll-snap-align: start; transition: transform .2s, box-shadow .2s;
}
.hev-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.hev-img { position: relative; height: 140px; overflow: hidden; }
.hev-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hev-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.hev-date-badge {
  position: absolute; top: 10px; left: 10px;
  background: #fff; border-radius: 10px;
  padding: 6px 10px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); min-width: 44px;
}
.hev-day { display: block; font-size: 18px; font-weight: 900; color: var(--ackg-dark); line-height: 1; }
.hev-mon { display: block; font-size: 10px; font-weight: 700; color: var(--ackg-red); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.hev-body { padding: 14px 16px 16px; }
.hev-title { font-size: 14px; font-weight: 800; color: var(--ackg-dark); line-height: 1.4; margin-bottom: 6px; }
.hev-text { font-size: 12px; color: var(--ackg-muted); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hev-loc { font-size: 11px; color: var(--ackg-muted); font-weight: 600; }

/* ── Rejoignez banner ────────────────────────────────────── */
.hj-banner {
  background-size: cover; background-position: center bottom;
  padding: 48px 0; margin-top: 48px;
  position: relative; overflow: hidden;
}
.hj-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.25); }
.hj-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.hj-text h2 { font-size: 28px; font-weight: 900; color: #fff; margin: 0 0 8px; line-height: 1.3; }
.hj-text p { font-size: 15px; color: rgba(255,255,255,.8); margin: 0; line-height: 1.6; }
.hj-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none;
  padding: 16px 36px; border-radius: 12px;
  font-weight: 800; font-size: 15px; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s; flex-shrink: 0;
}
.hj-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .heroStatic { min-height: 640px; }
  .heroStaticContainer { padding: 72px 20px 190px; min-height: 640px; }
  .heroStaticBg::after { background: linear-gradient(180deg, rgba(8,13,23,.55) 0%, rgba(8,13,23,.72) 46%, rgba(8,13,23,.88) 100%); }
  .heroStaticContent { max-width: 100%; }
  .heroValues { margin-top: -150px; }
  .heroValuesContainer { grid-template-columns: repeat(2,1fr); border-radius: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .heroValuesItem:nth-child(2) { border-right: 0; }
  .heroValuesItem:nth-child(1), .heroValuesItem:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .hs-une-inner { flex-direction: column; }
  .hs-une-img-wrap { flex: 0 0 220px; min-height: 220px; }
  .hs-une-content { padding: 22px; }
  .hs-news-grid { grid-template-columns: repeat(2,1fr); }
  .hm-mission-wrap { flex-direction: column; }
  .hm-mission-left { flex: none; width: 100%; }
  .hm-mission-right { border-left: none; border-top: 1px solid #E8D89A; padding-left: 0; padding-top: 24px; grid-template-columns: repeat(2,1fr); }
  .hev-card { flex: 0 0 calc(50% - 8px); }
  .hj-inner { flex-direction: column; text-align: center; }
  .hj-text h2 { font-size: 22px; }
}
@media (max-width: 520px) {
  .heroStatic { min-height: 700px; }
  .heroStaticContainer { padding: 58px 18px 250px; min-height: 700px; }
  .heroStaticTitle { font-size: 40px; letter-spacing: -1.2px; }
  .heroStaticDesc { font-size: 15px; }
  .heroStaticBtn { width: 100%; }
  .heroValues { margin-top: -220px; padding: 0 16px; }
  .heroValuesContainer { grid-template-columns: 1fr; }
  .heroValuesItem { padding: 16px 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .heroValuesItem:last-child { border-bottom: 0; }
  .heroValuesIcon { width: 38px; height: 38px; font-size: 23px; }
  .heroValuesTitle { font-size: 14px; }
  .heroValuesText { font-size: 12px; }
  .hm-mission-right { grid-template-columns: repeat(2,1fr); }
  .hev-card { flex: 0 0 85%; }
  .hs-news-grid { grid-template-columns: 1fr; }
}

/* === Taşındı: generator blok 1 === */
.hs-wrap { margin: 48px 0; }
/* Section başlığı */
.hs-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; padding-bottom:12px; border-bottom:2px solid #E2E8F0; }
.hs-head-label { font-size:17px; font-weight:800; color:var(--ackg-dark); display:flex; align-items:center; gap:10px; }
.hs-head-label::before { content:""; width:4px; height:20px; background:var(--ackg-red); border-radius:3px; display:inline-block; }
.hs-see-all { font-size:11px; font-weight:800; color:var(--ackg-red); text-decoration:none; letter-spacing:.5px; display:flex; align-items:center; gap:4px; }
.hs-see-all:hover { opacity:.7; }
/* À la une — tek kart, sol içerik sağ resim */
.hs-une-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,0.07); text-decoration:none; color:inherit; display:block; transition:transform .2s,box-shadow .2s; }
.hs-une-card:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,0.12); }
.hs-une-inner { display:flex; gap:0; align-items:stretch; }
.hs-une-content { flex:1; padding:32px 36px; display:flex; flex-direction:column; justify-content:center; }
.hs-une-date { font-size:11px; font-weight:800; color:var(--ackg-red); margin-bottom:12px; letter-spacing:.3px; }
.hs-une-title { font-size:26px; font-weight:800; color:var(--ackg-dark); line-height:1.35; margin:0 0 14px; }
.hs-une-text { font-size:14px; color:var(--ackg-muted); line-height:1.75; margin-bottom:24px; flex:1; }
.hs-une-btn { display:inline-flex; align-items:center; gap:6px; background:var(--ackg-red); color:#fff; padding:12px 24px; border-radius:8px; font-weight:800; font-size:13px; text-decoration:none; text-transform:uppercase; letter-spacing:.5px; align-self:flex-start; transition:background .2s; }
.hs-une-btn:hover { background:var(--ackg-red-hover); }
.hs-une-img-wrap { flex:0 0 45%; position:relative; overflow:hidden; min-height:320px; }
.hs-une-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
/* Paylaşım bar */
.hs-share-bar { display:flex; align-items:center; gap:10px; padding:14px 20px; background:#F8FAFC; border-top:1px solid #F1F5F9; flex-wrap:wrap; }
.hs-share-label { font-size:12px; font-weight:700; color:var(--ackg-muted); margin-right:4px; white-space:nowrap; }
.hs-share-btns { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.hs-share-btn { width:34px; height:34px; border-radius:9px; display:inline-flex; align-items:center; justify-content:center; text-decoration:none; font-size:14px; border:none; cursor:pointer; transition:opacity .2s,transform .2s; flex-shrink:0; }
.hs-share-btn:hover { opacity:.85; transform:translateY(-1px); }
/* Responsive */
@media(max-width:768px){ .hs-une-inner{flex-direction:column;} .hs-une-img-wrap{flex:0 0 220px;min-height:220px;} .hs-une-content{padding:22px;} }
/* Dernières actualités */
.hs-news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.hs-news-card { background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,0.06); text-decoration:none; color:inherit; display:block; transition:transform .2s,box-shadow .2s; }
.hs-news-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.12); }
.hs-news-img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; background:#E2E8F0; }
.hs-news-body { padding:12px 14px 16px; }
.hs-news-date { font-size:11px; color:var(--ackg-muted); font-weight:700; margin-bottom:6px; display:flex; align-items:center; gap:6px; }
.hs-news-title { font-size:14px; font-weight:800; color:var(--ackg-dark); line-height:1.4; margin-bottom:6px; }
.hs-news-text { font-size:12px; color:var(--ackg-muted); line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.hs-news-link { font-size:12px; font-weight:700; color:var(--ackg-red); margin-top:8px; display:inline-flex; align-items:center; gap:4px; }
/* Afficher plus */
.hs-more-btn { display:inline-flex; align-items:center; gap:8px; background:var(--ackg-dark); color:#fff; padding:13px 30px; border-radius:12px; font-weight:700; font-size:14px; text-decoration:none; transition:background .2s; }
.hs-more-btn:hover { background:var(--ackg-dark-hover); }
/* Responsive */
@media(max-width:900px){ .hs-une{flex-direction:column;} .hs-une-right{width:100%;min-height:200px;} .hs-news-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .hs-news-grid{grid-template-columns:1fr;} }


/* === Taşındı: generator blok 2 === */
.heroStatic {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #0f172a;
  display: block;
  width: 100%;
}

.heroStaticBg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.heroStaticBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
}

.heroStaticBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8, 13, 23, .82) 0%,
      rgba(8, 13, 23, .70) 34%,
      rgba(8, 13, 23, .34) 62%,
      rgba(8, 13, 23, .55) 100%
    );
  pointer-events: none;
}

.heroStaticContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 118px;
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.heroStaticContent {
  max-width: 610px;
  z-index: 3;
  color: #fff;
}

.heroStaticTitle {
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 950;
  color: #ffffff;
  line-height: .98;
  letter-spacing: -2.2px;
  margin: 0 0 18px;
  text-shadow: 0 18px 42px rgba(0,0,0,.38);
}

.heroStaticSubtitle {
  font-size: clamp(17px, 2vw, 23px);
  color: var(--ackg-gold);
  font-weight: 900;
  margin: 0 0 22px;
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.heroStaticDesc {
  font-size: 17px;
  color: rgba(255,255,255,.90);
  line-height: 1.72;
  margin: 0 0 34px;
  max-width: 560px;
  font-weight: 650;
  text-shadow: 0 10px 24px rgba(0,0,0,.28);
}

.heroStaticButtons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.heroStaticBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .35px;
  transition: all .25s ease;
  border: 2px solid transparent;
}

.heroStaticBtn--primary {
  background: var(--ackg-red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(220, 24, 24, .36);
}

.heroStaticBtn--primary:hover {
  background: var(--ackg-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(220, 24, 24, .45);
}

.heroStaticBtn--outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
}

.heroStaticBtn--outline:hover {
  background: #fff;
  color: #111827;
  transform: translateY(-3px);
}

.heroStaticBtn--dark {
  background: rgba(15,23,42,.88);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.heroStaticBtn--dark:hover {
  background: #020617;
  transform: translateY(-3px);
}

.heroStaticArrow {
  transition: transform .25s ease;
}

.heroStaticBtn:hover .heroStaticArrow {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .heroStatic {
    min-height: 640px;
  }

  .heroStaticContainer {
    padding: 72px 20px 190px;
    min-height: 640px;
  }

  .heroStaticBg::after {
    background:
      linear-gradient(180deg,
        rgba(8,13,23,.55) 0%,
        rgba(8,13,23,.72) 46%,
        rgba(8,13,23,.88) 100%
      );
  }

  .heroStaticContent {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .heroStatic {
    min-height: 700px;
  }

  .heroStaticContainer {
    padding: 58px 18px 250px;
    min-height: 700px;
  }

  .heroStaticTitle {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .heroStaticDesc {
    font-size: 15px;
  }

  .heroStaticBtn {
    width: 100%;
  }
}


/* === Taşındı: generator blok 3 === */
.hm-mission { background:#FFFBF0; border-radius:20px; padding:40px; margin:40px 0; border:1px solid #F3E8C0; }
.hm-mission-wrap { display:flex; gap:40px; align-items:center; }
.hm-mission-left { flex:0 0 260px; }
.hm-mission-label { display:flex; align-items:center; gap:8px; font-size:17px; font-weight:800; color:var(--ackg-dark); margin-bottom:16px; }
.hm-mission-label::before { content:''; width:4px; height:20px; background:var(--ackg-red); border-radius:3px; }
.hm-mission-desc { font-size:14px; color:var(--ackg-muted); line-height:1.7; margin-bottom:20px; }
.hm-mission-btn { display:inline-flex; align-items:center; gap:6px; background:var(--ackg-red); color:#fff; padding:10px 20px; border-radius:8px; font-weight:800; font-size:13px; text-decoration:none; text-transform:uppercase; letter-spacing:.4px; transition:background .2s; }
.hm-mission-btn:hover { background:var(--ackg-red-hover); }
.hm-mission-right { flex:1; display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-left:1px solid #E8D89A; padding-left:40px; }
.hm-stat-item { text-align:center; padding:16px 10px; border-right:1px solid #F0E4C0; }
.hm-stat-item:last-child { border-right:none; }
.hm-stat-icon { margin-bottom:10px; }
.hm-stat-icon img { width:36px; height:36px; object-fit:contain; }
.hm-stat-num { font-size:28px; font-weight:900; color:#D97706; line-height:1.1; margin-bottom:6px; }
.hm-stat-label { font-size:12px; color:var(--ackg-muted); line-height:1.4; font-weight:600; }
@media(max-width:900px){ .hm-mission-wrap{flex-direction:column;} .hm-mission-left{flex:none;width:100%;} .hm-mission-right{border-left:none;border-top:1px solid #E8D89A;padding-left:0;padding-top:24px;grid-template-columns:repeat(2,1fr);} }
@media(max-width:480px){ .hm-mission-right{grid-template-columns:repeat(2,1fr);} }


/* === Taşındı: generator blok 4 === */
.heroValues {
  position: relative;
  z-index: 6;
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin-top: -104px;
  padding: 0 20px;
  background: transparent;
}

.heroValuesContainer {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(5, 10, 18, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -18px 48px rgba(0,0,0,.20);
}

.heroValuesItem {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  padding: 24px 26px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.heroValuesItem:last-child {
  border-right: 0;
}

.heroValuesIcon{
  font-size: 26px;
  color: var(--ackg-gold);
  width: 46px;
  height: 46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;

  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.25);

  box-shadow:
    inset 0 0 0 1px rgba(245,197,24,.12),
    0 0 12px rgba(245,197,24,.15);

  transition: all .25s ease;
}

.heroValuesItem:hover .heroValuesIcon{
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(245,197,24,.25),
    inset 0 0 0 1px rgba(245,197,24,.2);
}

.heroValuesBody {
  flex: 1;
  min-width: 0;
}

.heroValuesTitle {
  font-size: 16px;
  font-weight: 950;
  margin: 0 0 5px;
  color: #fff;
  letter-spacing: -.35px;
  line-height: 1.2;
}

.heroValuesText {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 900px) {
  .heroValues {
    margin-top: -150px;
  }

  .heroValuesContainer {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .heroValuesItem:nth-child(2) {
    border-right: 0;
  }

  .heroValuesItem:nth-child(1),
  .heroValuesItem:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
}

@media (max-width: 520px) {
  .heroValues {
    margin-top: -220px;
    padding: 0 16px;
  }

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

  .heroValuesItem {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .heroValuesItem:last-child {
    border-bottom: 0;
  }

  .heroValuesIcon {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .heroValuesTitle {
    font-size: 14px;
  }

  .heroValuesText {
    font-size: 12px;
  }
}


/* === Taşındı: generator blok 5 === */
.hev-section { margin:48px 0; }
.hev-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; padding-bottom:12px; border-bottom:2px solid #E2E8F0; }
.hev-head-label { font-size:17px; font-weight:800; color:var(--ackg-dark); display:flex; align-items:center; gap:10px; }
.hev-head-label::before { content:''; width:4px; height:20px; background:var(--ackg-red); border-radius:3px; }
.hev-nav { display:flex; gap:8px; }
.hev-nav-btn { width:36px; height:36px; border-radius:50%; border:1px solid #E2E8F0; background:#fff; font-size:15px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--ackg-dark); transition:all .2s; }
.hev-nav-btn:hover { background:var(--ackg-dark); color:#fff; border-color:var(--ackg-dark); }
.hev-track-wrap { overflow:hidden; }
.hev-track { display:flex; gap:16px; scroll-behavior:smooth; overflow-x:auto; scrollbar-width:none; scroll-snap-type:x mandatory; padding-bottom:4px; }
.hev-track::-webkit-scrollbar { display:none; }
.hev-card { flex:0 0 calc(33.33% - 11px); min-width:240px; background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,0.07); scroll-snap-align:start; transition:transform .2s,box-shadow .2s; }
.hev-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.12); }
.hev-img { position:relative; height:140px; overflow:hidden; }
.hev-img img { width:100%; height:100%; object-fit:cover; display:block; }
.hev-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:40px; }
.hev-date-badge { position:absolute; top:10px; left:10px; background:#fff; border-radius:10px; padding:6px 10px; text-align:center; box-shadow:0 2px 8px rgba(0,0,0,0.15); min-width:44px; }
.hev-day { display:block; font-size:18px; font-weight:900; color:var(--ackg-dark); line-height:1; }
.hev-mon { display:block; font-size:10px; font-weight:700; color:var(--ackg-red); text-transform:uppercase; letter-spacing:.5px; margin-top:2px; }
.hev-body { padding:14px 16px 16px; }
.hev-title { font-size:14px; font-weight:800; color:var(--ackg-dark); line-height:1.4; margin-bottom:6px; }
.hev-text { font-size:12px; color:var(--ackg-muted); line-height:1.5; margin-bottom:8px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.hev-loc { font-size:11px; color:var(--ackg-muted); font-weight:600; }
@media(max-width:768px){ .hev-card{flex:0 0 calc(50% - 8px);} }
@media(max-width:480px){ .hev-card{flex:0 0 85%;} }
