/* ==================================================
   NOVENTRA — Editorial Dark Design System
   ================================================== */

:root {
  /* ── Brand Colors ── */
  --sb-green: #2563eb;        /* Elektrik mavisi — ana marka */
  --sb-green-deep: #0f172a;   /* Koyu lacivert — başlıklar, footer */
  --sb-green-light: #dbeafe;  /* Açık mavi — vurgular */
  --sb-gold: #06b6d4;         /* Cyan — ikincil aksent */

  /* ── Backgrounds ── */
  --bg-white: #ffffff;
  --bg-cream: #f0f9ff;   /* sky-50 */
  --bg-sage: #e0f2fe;    /* sky-100 */
  --bg-grey: #f1f5f9;    /* slate-100 */
  --bg-dark: #0f172a;    /* slate-900 */

  /* ── Text ── */
  --text-main: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-body: rgba(0, 0, 0, 0.72);
  --text-grey: #6b7280;
  --text-white: #ffffff;

  /* ── Accent / Extra ── */
  --accent: var(--sb-green);
  --mavi: #7c3aed;             /* Violet — \u00fcçüncül aksent */
  --mavi-saf: rgba(124, 58, 237, 0.6);
  --beyaz: #ffffff;
  --sinir: rgba(15, 23, 42, 0.08);

  /* ── Glass / Borders ── */
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(0, 0, 0, 0.08);

  /* ── Shadows ── */
  --shadow-s: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-p: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* ── Typography ── */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ── Layout ── */
  --nav-h: 130px;
  --nav-h-compact: 72px;
  --nav: 130px;
  --max-w: 1280px;
  --max: 1280px;
  --r-pill: 50px;
  --r-card: 12px;
  --r-s: 8px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Utility ── */
.konteyner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.goster {
  opacity: 1;
  transform: none;
}

/* Vurgu — Temiz ve tutarlı */
em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  color: var(--mavi);
  color: var(--accent);
}

/* ==================================================
   NAVBAR - Starbucks Style
   ================================================== */
.navbar {
  height: var(--nav-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--t);
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar>.konteyner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--t);
  z-index: 10;
}

.logo img {
  height: 110px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: var(--t);
  flex-wrap: nowrap;
}

/* Sticky Durumunda (SABİT) Navbar Revizyonu */
.navbar.sabit {
  height: var(--nav-h-compact);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.sabit .logo img {
  height: 56px;
}

.navbar.sabit .nav-links {
  gap: 18px;
}

.nl {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-main);
  transition: var(--t);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sb-green);
  transition: var(--t);
}

.nl:hover {
  color: var(--sb-green);
}

.nl:hover::after {
  width: 100%;
}

.nl-cta {
  background: var(--sb-green);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.nl-cta:hover {
  background: var(--sb-green-deep);
  transform: scale(1.02);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--t);
}

/* ==================================================
   BUTONLAR
   ================================================== */
/* ==================================================
   BUTONLAR - Starbucks Style
   ================================================== */
.btn-birincil {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--sb-green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: var(--t);
  border: 2px solid var(--sb-green);
}

.btn-birincil:hover {
  background: var(--sb-green-deep);
  border-color: var(--sb-green-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.btn-metin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 2px solid var(--text-main);
  transition: var(--t);
}

.btn-metin:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-wp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: var(--t);
}

/* ==================================================
   SECTION ORTAK
   ================================================== */
.bolum {
  padding: 140px 0;
}

.kucuk-etiket {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.10);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}

.bolum-ust {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.bolum-ust h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--sb-green-deep);
  margin-bottom: 24px;
}

.bolum-ust p {
  font-size: 1.25rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==================================================
   HERO — TAM EKRAN RESİM SLIDER
   ================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Arka plan slaytı ── */
.hero-bg-kaydirma {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 0.8s ease;
  transform: scale(1.0);
}

.hero-bg-item.aktif {
  opacity: 1;
}

/* Hover: aktif resim yakınlaşsın */
.hero:hover .hero-bg-item.aktif {
  transform: scale(1.06);
}

/* ── Karanlık degrade üst katman ── */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.30) 75%,
      rgba(0, 0, 0, 0.15) 100%);
}

/* ── Sol / sağ ok butonları ── */
.hero-bg-ok {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.40);
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-bg-ok:hover {
  background: var(--sb-green);
  border-color: var(--sb-green);
  transform: translateY(-50%) scale(1.1);
}

.hero-bg-sol {
  left: 28px;
}

.hero-bg-sag {
  right: 28px;
}

/* ── Nokta indikatörler ── */
.hero-bg-noktalar {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-bg-nokta {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-bg-nokta.aktif {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* ── İçerik üst katman ── */
.hero-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 80px 0;
}

.hero-icerik {
  max-width: 680px;
  pointer-events: all;
}

.hero-baslik {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hb-ikinci {
  color: var(--sb-green-light);
  display: block;
}

.hero-alt {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-metin-beyaz {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.btn-metin-beyaz:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
}

/* ==================================================
   NE ZAMAN GELİRLER
   ================================================== */
/* ==================================================
   NE ZAMAN GELİRLER (Senaryolar) - Starbucks Block Style
   ================================================== */
.ne-zaman {
  background: var(--bg-cream);
  padding: 100px 0;
}

.senaryo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.senaryo {
  background: #ffffff;
  padding: 44px 40px;
  border-radius: var(--r-card);
  border: 1px solid var(--sinir);
  box-shadow: var(--shadow-s);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.senaryo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sb-green);
  opacity: 0;
  transition: var(--t);
}

.senaryo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-p);
  border-color: var(--sb-green-light);
}

.senaryo:hover::before {
  opacity: 1;
}

.senaryo h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sb-green-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.senaryo p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==================================================
   NE YAPIYORUZ
   ================================================== */
.ne-yapiyoruz {
  background: var(--bg-white);
}

.problem-liste {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.problem-kart {
  display: flex;
  flex-direction: column;
  background: var(--bg-grey);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--sinir);
  transition: var(--t);
}

.problem-kart:hover {
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
  border-color: var(--sb-green-light);
}

.pk-sol {
  padding: 36px 40px;
  background: rgba(37, 99, 235, 0.04);
  border-bottom: 1px solid var(--sinir);
}

.pk-sag {
  padding: 36px 40px;
}

.pk-no {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--sb-green);
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pk-problem {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sb-green-deep);
  margin-bottom: 14px;
  line-height: 1.25;
}

.pk-cozum-etiket {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--sb-green);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pk-aciklama,
.pk-sag p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==================================================
   PROJELER
   ================================================== */
.projeler {
  background: var(--bg-white);
  padding: 100px 0;
}

.proje-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.proje-kart {
  background: var(--bg-white);

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: var(--t);
  box-shadow: var(--shadow-s);
}

.proje-kart:hover {
  transform: translateY(-8px);
  border-color: var(--sb-green);
  box-shadow: var(--shadow-p);
}

.proje-gorsel {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
}

.proje-emoji {
  font-size: 5rem;
  transition: var(--t);
  display: inline-block;
}

.proje-kart:hover .proje-emoji {
  transform: scale(1.2) rotate(6deg);
}

.proje-bilgi {
  padding: 40px;
}

.proje-kat {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sb-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.proje-kart h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sb-green-deep);
  margin-bottom: 12px;
}

.proje-kart p {
  font-size: 1.05rem;
  color: var(--text-body);
}

/* ==================================================
   SÜREÇ
   ================================================== */
/* ==================================================
   SÜREÇ
   ================================================== */
/* ==================================================
   SÜREÇ - Starbucks Sage Block
   ================================================== */
.surec {
  background: var(--bg-sage);
  padding: 100px 0;
}

.surec-adimlar {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.s-adim {
  padding: 40px;
  background: #ffffff;
  border-radius: var(--r-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--t);
  box-shadow: var(--shadow-s);
}

.s-adim:hover {
  transform: translateY(-5px);
  border-color: var(--sb-green);
  box-shadow: var(--shadow-p);
}

.s-adim:hover .s-no {
  color: var(--sb-gold);
  letter-spacing: 0.15em;
}

.s-no {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sb-green);
  margin-bottom: 16px;
  display: block;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.s-icerik h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sb-green-deep);
  margin-bottom: 16px;
}

.s-icerik p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}

.s-not {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--sb-green);
  background: rgba(37, 99, 235, 0.08);
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 700;
}

/* ==================================================
   NEDEN NOVENTRA
   ================================================== */
/* ==================================================
   NEDEN NOVENTRA
   ================================================== */
/* ==================================================
   NEDEN NOVENTRA - Starbucks White Block
   ================================================== */
.neden {
  background: var(--bg-white);
  padding: 100px 0;
}

.neden-ic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.neden-sol h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--sb-green-deep);
  margin-bottom: 24px;
}

.neden-sag {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.madde {
  background: var(--bg-cream);
  padding: 32px;
  border-radius: var(--r-card);
  transition: var(--t);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.madde:hover {
  background: #ffffff;
  border-color: var(--sb-green-light);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.10);
  transform: translateY(-5px);
}

.madde:hover h4 {
  color: var(--sb-gold);
}

.madde h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sb-green);
  margin-bottom: 12px;
  transition: color var(--t);
}

.madde p {
  font-size: 1rem;
  color: var(--text-body);
}

/* ==================================================
   YORUMLAR
   ================================================== */
/* ==================================================
   YORUMLAR - Starbucks Sage Block
   ================================================== */
.yorumlar {
  background: var(--bg-sage);
  padding: 100px 0;
}

.yorum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.yorum {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-s);
  border: 1px solid transparent;
  transition: var(--t);
}

.yorum:hover {
  transform: translateY(-6px);
  border-color: var(--sb-green-light);
  box-shadow: 0 20px 56px rgba(37, 99, 235, 0.12);
}

.yorum-metin {
  font-size: 1.1rem;
  color: var(--sb-green-deep);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.yorum-kisi strong {
  color: var(--sb-green);
  font-weight: 800;
}

/* ==================================================
   SON CTA
   ================================================== */
/* ==================================================
   SON CTA - Starbucks Green Block
   ================================================== */
.son-cta {
  background: var(--sb-green);
  color: #ffffff;
  padding: 80px 0;
}

.son-cta-ic h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.son-cta-ic p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.son-cta .btn-metin {
  color: #ffffff;
  border-color: #ffffff;
}

.son-cta .btn-metin:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==================================================
   İLETİŞİM
   ================================================== */
/* ==================================================
   İLETİŞİM & FOOTER
   ================================================== */
/* ==================================================
   İLETİŞİM - Starbucks White Block
   ================================================== */
.iletisim {
  background: var(--bg-white);
  padding: 100px 0;
}

.iletisim-form {
  padding: 48px;
  background: var(--bg-cream);
  border-radius: var(--r-card);
}

.f-grup input,
.f-grup textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px;
  border-radius: 8px;
}

.f-grup input:focus {
  border-color: var(--sb-green);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* ==================================================
   FOOTER - Starbucks Deep Green
   ================================================== */
.footer {
  background: var(--sb-green-deep);
  color: #ffffff;
  padding: 80px 0 40px;
}

.fl-kolon h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.fl-kolon a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.fl-kolon a:hover {
  color: #ffffff;
  transform: translateX(4px);
  display: inline-flex;
}

.footer-alt {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ==================================================
   MOBİL BAR
   ================================================== */
.mobil-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--sinir);
  padding: 10px 16px;
  gap: 10px;
}

.mb-wp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  background: #25d366;
  color: #000;
  border-radius: var(--r-s);
  font-size: 0.875rem;
  font-weight: 600;
}

.mb-ana {
  flex: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--beyaz);
  color: #000;
  border-radius: var(--r-s);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==================================================
   FORM
   ================================================== */
.iletisim-ic {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.iletisim-kanallar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.kanal {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-cream);
  border-radius: var(--r-card);
  border: 1px solid var(--sinir);
  transition: var(--t);
}

.kanal:hover {
  background: #ffffff;
  border-color: var(--sb-green-light);
  box-shadow: var(--shadow-s);
  transform: translateX(6px);
}

.kanal:hover .kanal-i {
  transform: scale(1.25) rotate(-5deg);
  display: inline-block;
}

.kanal-i {
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  display: inline-block;
}

.kanal-etiket {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sb-green);
  margin-bottom: 2px;
}

.kanal-deger {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.f-ikili {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-grup {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.f-grup label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.f-grup input,
.f-grup textarea,
.f-grup select {
  width: 100%;
  padding: 13px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--t);
  outline: none;
}

.f-grup input::placeholder,
.f-grup textarea::placeholder {
  color: #9ca3af;
}

.f-grup select {
  cursor: pointer;
}

.f-grup textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-tam {
  width: 100%;
  justify-content: center;
}

.f-basari {
  display: none;
  text-align: center;
  font-weight: 600;
  color: var(--sb-green);
  background: rgba(37, 99, 235, 0.08);
  padding: 12px;
  border-radius: var(--r-s);
}

.f-basari.goster {
  display: block;
}

/* ==================================================
   SON CTA - layout
   ================================================== */
.son-cta-ic {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.son-cta-ic h2 .hb-ikinci {
  color: var(--sb-gold);
}

.son-cta-butonlar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================================================
   FOOTER - layout
   ================================================== */
.footer-ic {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer-sol>p {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
}

.footer-acik {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 8px;
}

.footer-linkler {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fl-kolon ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==================================================
   YORUMLAR - layout
   ================================================== */
.yorum-kisi {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--sinir);
}

.yorum-harf {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sb-green);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yorum-kisi>div strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.yorum-kisi>div span {
  font-size: 0.82rem;
  color: var(--text-grey);
}

/* ==================================================
   NEDEN - layout
   ================================================== */
.madde-ust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.madde-harf {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sb-green);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==================================================
   RESPONSIVE
   ================================================== */
/* ==================================================
   RESPONSIVE — 1024px
   ================================================== */
@media (max-width: 1024px) {
  :root {
    --nav-h: 100px;
    --nav: 100px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-iki-sutun {
    gap: 40px;
  }

  .hero-logo-ic {
    padding: 36px 28px;
  }

  .hero-logo-img {
    max-width: 180px;
  }

  .neden-ic {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .neden-sag {
    grid-template-columns: repeat(2, 1fr);
  }

  .senaryo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pk-sol {
    border-bottom: 1px solid var(--sinir);
  }

  .iletisim-ic {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-ic {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .surec-adimlar {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

/* ==================================================
   RESPONSIVE — 768px
   ================================================== */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --nav: 68px;
  }

  .konteyner {
    padding: 0 20px;
  }

  .bolum {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    padding: 60px 0;
  }

  .hero-bg-ok {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .hero-bg-sol {
    left: 12px;
  }

  .hero-bg-sag {
    right: 12px;
  }

  /* Mobile nav dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sinir);
    padding: 12px;
    gap: 2px;
    z-index: 899;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  .nav-links.acik {
    display: flex;
  }

  .nl {
    padding: 12px 14px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .nl:hover {
    background: var(--bg-cream);
  }

  .nl-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

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

  .problem-liste {
    grid-template-columns: 1fr;
  }

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

  .neden-sag {
    grid-template-columns: 1fr;
  }

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

  .surec-adimlar {
    grid-template-columns: 1fr;
  }

  .mobil-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .footer-linkler {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-alt {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .son-cta-butonlar {
    flex-direction: column;
    align-items: stretch;
  }

  .son-cta-butonlar .btn-birincil,
  .son-cta-butonlar .btn-metin {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================================
   RESPONSIVE — 480px
   ================================================== */
@media (max-width: 480px) {
  .hero-baslik {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn-birincil,
  .hero-cta .btn-metin {
    justify-content: center;
  }

  .f-ikili {
    grid-template-columns: 1fr;
  }

  .iletisim-form {
    padding: 24px 18px;
  }

  .footer-linkler {
    grid-template-columns: 1fr;
  }

  .proje-gorsel {
    height: 160px;
  }
}