.site-footer {
  background: var(--emerald);
  color: #fff;
  padding: 40px 0 24px;
  margin-top: 56px;
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; align-items: start; }
.footer-col h4 { font-size: 16px; margin: 0 0 10px 0; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; padding-left: 8px; }
.footer-brand img {
  height: 56px; /* sadece yükseklik ver, orijinal oran korunsun */
  width: auto;
  max-width: 35%;
  display: block;
}
.footer-brand p { margin: 0; opacity: 0.95; max-width: 520px; }
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-links a, .footer-contact a { color: #fff; text-decoration: none; opacity: 0.95; }
.footer-links a:hover, .footer-contact a:hover { text-decoration: underline; }
.footer-bottom { text-align: center; opacity: 0.9; margin-top: 20px; }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; align-items: center; padding-left: 0; }
}
/* Global styles */
:root {
  --emerald: #059669; /* zümrüt yeşili */
  --cream: #f5efe6;   /* krem */
  --text-dark: #0f172a;
}

@font-face {
  font-family: 'Vogun';
  src: url('assets/fonts/Vogun-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', 'Noto Sans', Arial, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
  line-height: 1.5;
  overflow-x: hidden; /* yatay tasmalari engelle */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scrollbar - emerald tema */
html { scrollbar-color: var(--emerald) #e5e7eb; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e5e7eb; }
::-webkit-scrollbar-thumb { background-color: var(--emerald); border-radius: 8px; border: 2px solid #e5e7eb; }
::-webkit-scrollbar-thumb:hover { background-color: #047857; }

body.menu-open {
  overflow: hidden;
}

.nav {
  width: 100%;
}

.nav--top {
  background-color: var(--cream);
  color: var(--text-dark);
  font-size: 10px;
  padding: 0; /* en kısa mini nav */
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav--main {
  background-color: var(--emerald);
  color: #ffffff;
  padding: 12px 0; /* büyük logo ile uyumlu boşluk */
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.nav .container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto; /* nav içindeki dikey boşluğu sıfırla */
  padding: 0 16px; /* simetrik yatay boşluk */
  max-width: 1100px; /* eski merkezli düzeni geri getir */
}

.nav--top .container {
  min-height: 34px; /* 20px'in 0,7 katı kadar artırıldı (1.7x) */
  justify-content: space-between;
}

.nav--main .container {
  justify-content: space-between;
}

.main-menu {
  gap: 20px; /* sayfa isimleri arasında daha fazla boşluk */
}

.top-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mail-label {
  opacity: 0.75;
}

.mail-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px; /* biraz büyütüldü */
}

.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.social,
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social a,
.menu a {
  color: inherit;
  text-decoration: none;
  font-size: 15px; /* daha belirgin */
  font-weight: 600; /* inter ile vurgulu */
}

/* Sosyal ikonlar - emerald renk, arkaplansız */
.nav--top .social a i {
  color: var(--emerald);
  font-size: 20px;
}

/* Ana nav link hover efekti */
.nav--main .menu a {
  opacity: 0.9;
  transition: opacity 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav--main .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.2s ease;
}

.nav--main .menu a:hover {
  opacity: 1;
}

.nav--main .menu a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px; /* daha geniş buton */
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px; /* menü başlıkları ile aynı boyut */
}

.btn-join {
  background: var(--cream);
  color: var(--emerald);
}

.brand {
  font-weight: 700;
}

.brand img {
  height: 70px; /* 2.5x büyütüldü (28px → 70px) */
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mainnav {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Close (X) butonu varsayılan olarak gizli (sadece mobilde gösterilecek) */
.close-menu { display: none; }

/* Masaüstü merkezleme */
@media (min-width: 769px) {
  .nav--main .container {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto; /* logo | merkez menü | buton */
    align-items: center;
    padding: 0 16px;
    margin-right: 0; /* sağ boşluk hilesini kaldır */
    margin-left: auto;
    margin-right: auto; /* ortaya al */
  }
  /* Desktop: hamburger gizli, .mainnav içerikleri üst gride dağılacak */
  .nav--main .mainnav { display: contents; }
  .nav--main .main-menu { grid-column: 2; justify-self: center; }
  .nav--main .btn-join { grid-column: 3; justify-self: end; }
  .nav--main .brand { grid-column: 1; justify-self: start; }
}

/* Mobil düzen - sağdan kayan panel */
@media (max-width: 768px) {
  .hamburger { display: inline-block; }
  .mainnav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 360px;
    background: var(--emerald);
    flex-direction: column;
    gap: 12px;
    padding: 56px 20px 24px; /* üstte X butonu için boşluk, içerik daha yukarı */
    border-left: 1px solid rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    justify-content: flex-start; /* içerikleri üstten başlat */
  }
  .mainnav .close-menu {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 28px;
    color: #fff;
    background: transparent;
    border: 0;
    line-height: 1;
    cursor: pointer;
    display: block; /* mobilde görünür */
  }
  .mainnav.open { transform: translateX(0); }
  .main-menu {
    flex-direction: column;
    gap: 16px;
    margin-top: 0; /* ortalama ile birlikte üst boşluğu kaldır */
  }
  .btn-join { width: 100%; justify-content: center; }
}

/* Backdrop */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1000;
}

.backdrop.open { display: block; }

/* Üst mini nav: Üye girişi butonu */
.nav--top .btn-login {
  background: var(--emerald);
  color: var(--cream);
  height: 24px;
  padding: 0 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

.btn-login .label-short { display: none; }

@media (max-width: 420px) {
  .btn-login .label-full { display: none; }
  .btn-login .label-short { display: inline; }
}

.header {
  /* Şimdilik minimal, gerekirse genişletilir */
}

.container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px;
}

main.container { flex: 1; }

/* Feature block */
.feature { margin: 40px 0; }
/* Gallery */
.gallery { margin: 48px 0 24px; }
/* Contact */
.contact { margin: 48px 0 60px; }
/* Wizard */
.wizard { margin: 24px 0 48px; }
.wizard-steps { 
  display: grid; 
  grid-template-columns: repeat(9, 1fr); 
  align-items: center; 
  gap: 8px; 
  margin-bottom: 20px; 
  height: 72px; 
  min-height: 72px;
  max-height: 72px;
  overflow: hidden; 
  position: sticky; 
  top: 0; 
  z-index: 5; 
  background: var(--cream); 
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  flex-shrink: 0; /* flex parent icinde boyut korunsun */
}
.wizard-steps .step { display: grid; justify-items: center; gap: 6px; width: 100%; min-width: 0; }
.wizard-steps .label { font-size: 12px; line-height: 16px; height: 16px; color: #334155; text-align: center; white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.wizard-steps .dot { width: 28px; height: 28px; border-radius: 999px; background: #e5e7eb; position: relative; overflow: hidden; display: grid; place-items: center; }
.wizard-steps .dot i { color: #0f172a; font-size: 13px; z-index: 1; }
.wizard-steps .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--emerald); transition: width 0.35s ease; }
.wizard-steps .connector { height: 4px; background: #e5e7eb; align-self: center; position: relative; overflow: hidden; top: 0; transform: translateY(-11px); }
.wizard-steps .connector::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--conn-width, 0%); background: var(--emerald); transition: width 0.35s ease; }
.wizard-steps .step.is-active .fill { width: 100%; }
.wizard-steps .step.is-complete .dot { background: var(--emerald); }
.wizard-steps .step.is-complete .dot i { color: #fff; }
.wizard-steps .step.is-active .dot i { color: #fff; }

.wizard-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wizard-form .form-span { grid-column: span 2; }
.wizard-form textarea { min-height: 140px; }
.wizard-form .panel { display: none; grid-template-columns: inherit; gap: inherit; }
.wizard-form .panel.is-active { display: grid; }
.profile-card { display: grid; grid-template-columns: 140px 1fr; gap: 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 12px; }
.avatar-box { width: 140px; height: 140px; border: 2px dashed #cbd5e1; border-radius: 12px; display: grid; place-items: center; overflow: hidden; background: #f8fafc; }
.avatar-box img { width: 100%; height: 100%; object-fit: cover; display: none; }
.avatar-placeholder { font-size: 12px; color: #64748b; text-align: center; padding: 0 8px; }
.pill-group { display: grid; align-content: start; gap: 8px; padding-top: 6px; }
.pill { display: inline-block; height: 12px; width: 90px; border-radius: 999px; background: #e2e8f0; }
.pill.wide { width: 160px; }
.upload-actions { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.hidden-file-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.btn-upload { background: var(--emerald); color: #fff; border: 0; border-radius: 10px; height: 40px; padding: 0 16px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; box-shadow: 0 8px 18px -12px rgba(5,150,105,0.7); transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn-upload:hover { background: #047857; box-shadow: 0 10px 22px -12px rgba(4,120,87,0.75); }
.btn-upload:active { transform: translateY(1px); }
.btn-upload i { font-size: 16px; }
.membership-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.membership-card { display: block; background: var(--cream); color: var(--emerald); border-radius: 12px; padding: 14px; border: 2px solid transparent; cursor: pointer; transition: transform 180ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.membership-card input { display: none; }
.membership-card .title { font-weight: 700; margin-bottom: 6px; }
.membership-card .price { font-family: 'Vogun', 'Inter', system-ui; font-size: 22px; }
.membership-card .desc { color: #065f46; opacity: 0.9; font-size: 13px; }
.membership-card:hover { transform: translateY(-1px); }
.membership-card:has(input:checked) { border-color: var(--emerald); box-shadow: 0 0 0 2px rgba(5,150,105,0.2) inset, 0 8px 22px -12px rgba(5,150,105,0.5); transform: translateY(-2px) scale(1.02); }
@media (max-width: 700px) { .membership-options { grid-template-columns: 1fr; } }
.wizard-actions { margin-top: 60px; display: flex; justify-content: flex-end; gap: 12px; }

/* File input'un layout bozmasini engelle */
.wizard-form input[type="file"] { max-width: 100%; }
.btn-prev, .btn-next { background: var(--emerald); color: #fff; border: 0; border-radius: 10px; height: 42px; padding: 0 20px; cursor: pointer; font-family: 'Vogun', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; }
.btn-prev { background: #10b981; }
.btn-next.is-disabled { background: #cbd5e1; color: #475569; cursor: not-allowed; }
.input-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.btn-verify { background: var(--emerald); color: #fff; border: 0; border-radius: 10px; height: 38px; padding: 0 14px; cursor: pointer; }
.btn-verify.is-success { background: #10b981; }
.verify-status { margin-top: 6px; font-size: 12px; color: #065f46; min-height: 16px; }
.char-counter { margin-top: 6px; font-size: 12px; color: #475569; }
.form-field { min-width: 0; }
.input-row input { min-width: 0; width: 100%; }
@media (max-width: 520px) {
  .input-row { grid-template-columns: 1fr; }
  .btn-verify { width: 100%; }
}

/* OTP Modal */
.otp-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.45); display: none; z-index: 3000; padding: 20px; }
.otp-modal.open { display: grid; align-items: center; justify-items: center; }
.otp-card { width: 100%; max-width: 420px; background: #fff; border-radius: 14px; padding: 18px; box-shadow: 0 16px 40px -20px rgba(0,0,0,0.45); position: relative; }
.otp-close { position: absolute; top: 8px; right: 10px; background: transparent; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: #334155; }
.otp-title { margin: 4px 0 8px; font-family: 'Vogun', 'Inter', system-ui; font-size: 22px; color: var(--text-dark); }
.otp-desc { margin: 0 0 12px; color: #334155; font-size: 14px; }
.otp-field { display: grid; gap: 6px; margin-bottom: 10px; }
.otp-field input { background: transparent; border: 0; border-radius: 0; padding: 8px 4px 10px 0; font-size: 16px; color: #0f172a; box-shadow: inset 0 -2px 0 rgba(5,150,105,0.7); transition: box-shadow 0.25s ease, transform 0.12s ease; }
.otp-field input:focus { outline: none; box-shadow: inset 0 -3px 0 #047857; transform: translateY(-1px); }
.otp-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-resend { background: #e2e8f0; color: #0f172a; border: 0; border-radius: 10px; height: 38px; padding: 0 14px; cursor: pointer; }
.btn-resend[disabled] { opacity: 0.6; cursor: not-allowed; }
.otp-status { margin-top: 8px; font-size: 13px; color: #065f46; min-height: 18px; }
.otp-timer { margin-top: 6px; font-size: 12px; color: #64748b; text-align: right; }
.contact-title {
  font-family: 'Vogun', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--text-dark);
  text-align: center;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px; /* alanlar arasi boslugu arttir */
}
.contact-form .form-span { grid-column: span 2; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 13px; color: #334155; }
.form-field input,
.form-field textarea {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 4px 10px 0;
  font-size: 14px;
  color: #0f172a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  /* animasyonlu alt cizgi */
  box-shadow: inset 0 -2px 0 rgba(5,150,105,0.7);
  transition: box-shadow 0.25s ease, transform 0.12s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: inset 0 -3px 0 #047857;
  transform: translateY(-1px);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #64748b; opacity: 0.8; }
.form-field textarea { resize: none; }
.pw-meter { width: 100%; height: 8px; background: #fee2e2; border-radius: 999px; overflow: hidden; margin-top: 6px; }
.pw-meter__bar { height: 100%; width: 0%; background: #ef4444; transition: width 0.25s ease, background-color 0.25s ease; }
.pw-hint { font-size: 12px; color: #475569; margin-top: 6px; }
.btn-send {
  background: var(--emerald);
  color: #fff;
  border: 0;
  border-radius: 12px;
  height: 44px;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 6px 14px -8px rgba(5,150,105,0.6);
}
.btn-send:hover { background: #047857; box-shadow: 0 8px 18px -8px rgba(4,120,87,0.7); }
.btn-send:active { transform: translateY(1px); }
.form-status { margin-top: 10px; font-size: 14px; color: #065f46; font-weight: 600; }
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--text-dark);
  border: 2px dashed var(--emerald);
  border-radius: 12px;
  padding: 12px 16px;
  z-index: 3000;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.25);
  display: none;
  max-width: 90vw;
}
.toast.show { display: block; animation: toastIn 180ms ease-out; }
.toast--error { border-color: #dc2626; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(-8px);} to { opacity: 1; transform: translateX(-50%) translateY(0);} }

@media (max-width: 700px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .form-span { grid-column: span 1; }
  .wizard-form { grid-template-columns: 1fr; }
}
.gallery-title {
  font-family: 'Vogun', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--text-dark);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* daha fazla kart goster */
  gap: 10px;
}
.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; /* kare ve daha kucuk */
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 2000;
}
.lightbox-backdrop.open { display: grid; place-items: center; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.lightbox-content img { width: 100%; height: auto; display: block; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* ikonları tam merkezle */
  z-index: 1;
}
.lightbox-close { right: 10px; font-size: 28px; line-height: 1; }
.lightbox-prev { left: 10px; top: 50%; transform: translateY(-50%); font-size: 22px; }
.lightbox-next { right: 10px; top: 50%; transform: translateY(-50%); font-size: 22px; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-banner {
  background: var(--emerald);
  color: #fff;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px; /* başlıkla araya nefes */
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* resimler biraz daraltıldı, metne daha çok alan */
  gap: 2px; /* yazıları görsellere yaklaştır */
  align-items: start; /* banner'i başlık üstüne hizalamak için */
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; /* karelerin yüksekliği içerikten (aspect-ratio) gelir */
  gap: 16px;
  transform: translateX(-130px); /* görselleri sola kaydır (boyutu değiştirmez) */
}

.feature-images .tall {
  grid-row: 1 / span 2; /* iki satiri kaplasin */
  border-radius: 12px;
  overflow: hidden;
}

.feature-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-images .square {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

/* Sağdaki iki görsel kesin kare ve yuvarlatılmış köşeli */
.feature-images .stack img {
  height: auto; /* kare hesaplanması için otomatik */
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

/* Soldaki dikey görsel tüm yüksekligi kaplar, taşmaları gizle */
.feature-images .tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: 'Vogun', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.feature-text p {
  font-size: 16px;
  color: #334155;
  margin-bottom: 12px; /* paragraflar arasi daha ferah */
}

.feature-text .lead {
  font-size: 17px;
  color: #1f2937;
  margin-bottom: 14px; /* lead ile alt madde arasi ferah */
}

.feature-list {
  margin: 12px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px; /* madde araliklarini artir */
}

.feature-list li {
  list-style: disc;
  line-height: 1.6;
  color: #334155;
}

/* Metin bloğunu görsellere 10px yaklaştır */
.feature-text {
  position: relative;
  left: -50px;
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-images { transform: none; }
  .feature-text {
    left: 0;
    text-align: center; /* baslik ve metin ortali */
    margin-top: 20px; /* resimlerle kutu arasina ekstra bosluk */
  }
  .feature-banner { margin-left: auto; margin-right: auto; }
  .feature-list { margin-left: 0; text-align: left; display: inline-grid; }
}

/* Hero Slider - Yeni Temiz Tasarım */
.hero-section {
  position: relative;
  width: 100vw;
  height: 90vh;
  min-height: 680px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.show {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 90%;
  backdrop-filter: none;
}

.hero-text h1 {
  font-family: 'Vogun', 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Progress ring sağ üst */
.hero-section .progress {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  z-index: 10;
}
.hero-section .progress-ring .bg {
  fill: none;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 3;
}
.hero-section .progress-ring .fg {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1; /* ikon tam merkezde olsun */
  padding: 0; /* ekstra ic bosluk olmasin */
  cursor: pointer;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-nav:hover {
  background: rgba(0,0,0,0.75);
  border-color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.hero-nav.prev {
  left: 30px;
}

.hero-nav.next {
  right: 30px;
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: white;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 480px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .hero-text {
    padding: 25px;
  }
  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .hero-nav.prev {
    left: 15px;
  }
  .hero-nav.next {
    right: 15px;
  }
}

/* Brand ticker (dinamik) */
.brand-ticker {
  margin-top: 24px;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transform: translateY(9px); /* 9px aşağı */
}

.brand-lane {
  position: relative;
  width: 100vw;
  height: 72px; /* 56px logo + boşluk */
}

.brand-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  will-change: transform;
}

.brand-item img {
  height: 56px;
  width: auto;
  display: block;
}
