/*
Theme Name: Vurdum Pro
Theme URI: https://vurdum42.com
Author: Vurdum Engineering
Description: Premium Vurdum giriş rehber teması — vurdum42.com renk sistemi, gerçek logo, ultra SEO optimize.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: vurdum-pro
*/

/* ══════════════════════════════════════════
   VURDUM42 EXACT DESIGN SYSTEM
   Kaynak: vurdum42.com computed styles
   ══════════════════════════════════════════ */
:root {
  /* ── Arka planlar (vurdum42'den) ── */
  --bg:         #0f1115;   /* body */
  --bg-header:  #191a24;   /* header / sidebar */
  --bg-card:    #1c1d29;   /* dark card */
  --bg-card2:   #212531;   /* mid card */
  --bg-card3:   #191a24;   /* light card */

  /* ── Brand sarı (vurdum42 primary) ── */
  --yellow:       #fec610;
  --yellow-hover: #f5a61c;
  --yellow-dark:  #d4a50e;
  --yellow-dim:   rgba(254,198,16,.15);
  --yellow-glow:  rgba(254,198,16,.3);

  /* ── Metin ── */
  --text:       rgba(243,242,242,.85);
  --text-light: rgba(243,242,242,1);
  --text-muted: rgba(243,242,242,.5);
  --text-dim:   rgba(243,242,242,.35);
  --text-white: #ffffff;

  /* ── Vurgu / Giriş butonu ── */
  --btn-login-bg:    transparent;
  --btn-login-color: rgba(243,242,242,.7);
  --btn-login-border: 1px solid rgba(243,242,242,.2);

  /* ── Yeşil (canlı/online) ── */
  --green: #1b5e20;
  --green-cta: #16a34a;
  --green-hover: #15803d;

  /* ── Border ── */
  --border: hsla(0,4%,95%,.16);
  --border-yellow: rgba(254,198,16,.3);

  /* ── Border radius (vurdum42 kullanıyor) ── */
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   9px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-pill: 999px;

  /* ── Gölgeler ── */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.5);
  --shadow-md:     0 6px 24px rgba(0,0,0,.55);
  --shadow-yellow: 0 6px 24px rgba(254,198,16,.3);
  --shadow-green:  0 6px 20px rgba(22,163,74,.3);

  /* ── Transition ── */
  --t: .18s cubic-bezier(.4,0,.2,1);

  /* ── Font ── */
  --font: Inter, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 58px; /* sticky bar */
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── LAYOUT ── */
.site-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.container  { width: min(1200px,94%); margin: 0 auto; }

/* ══════════════════════════════════════════
   TOP BAR — sarı bg, ince bilgi şeridi
   ══════════════════════════════════════════ */
.top-bar {
  background: var(--yellow);
  padding: 7px 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--bg-header);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: inherit; }
.top-bar a:hover { opacity: .8; }
.top-bar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar-left span { display: inline-flex; align-items: center; gap: 5px; }

/* ══════════════════════════════════════════
   HEADER — vurdum42 koyu (#191a24) sticky
   ══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

/* Logo — vurdum42 gerçek logosu */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.brand-logo-fallback {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-white);
  letter-spacing: -.02em;
}
.brand-logo-fallback .v-letter {
  color: var(--yellow);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text-light); background: rgba(255,255,255,.06); }
.main-nav a.active { color: var(--yellow-hover); }

/* Header butonları */
.btn-header-row { display: flex; align-items: center; gap: 8px; }

.btn-giris {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(243,242,242,.7);
  font-family: var(--font);
  font-size: .86rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(243,242,242,.2);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-giris:hover { color: var(--text-white); border-color: rgba(243,242,242,.4); }

.btn-kayit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--bg-header);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
  box-shadow: var(--shadow-yellow);
  white-space: nowrap;
}
.btn-kayit:hover { background: var(--yellow-hover); transform: translateY(-1px); box-shadow: 0 8px 28px var(--yellow-glow); }

/* Mobil menü */
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span { display: block; width: 17px; height: 2px; background: var(--text); border-radius: 2px; }

/* ══════════════════════════════════════════
   HERO — vurdum42 koyu background + sarı vurgu
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 72px 0 64px;
  background: var(--bg-header);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(254,198,16,.1), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: .35;
}
.hero > * { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  color: var(--yellow-hover);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
h1 .accent { color: var(--yellow); }

.hero-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Hero istatistik şeridi */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  font-weight: 600;
}

/* Hero sağ kartlar */
.hero-visual { display: flex; flex-direction: column; gap: 10px; width: 200px; flex-shrink: 0; }
.hero-vis-card {
  background: var(--bg-card);
  border: 1px solid var(--border-yellow);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  text-align: center;
}
.hero-vis-card .big { font-size: 1.6rem; font-weight: 900; color: var(--yellow); }
.hero-vis-card .lbl { font-size: .72rem; color: var(--text-muted); margin-top: 4px; }

/* ══════════════════════════════════════════
   BUTONLAR
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Primary — sarı (vurdum42'nin "Kayıt ol" butonu) */
.btn-primary {
  background: var(--yellow);
  color: var(--bg-header);
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-yellow);
  animation: pulse-y 2.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--yellow-glow);
  animation: none;
}
@keyframes pulse-y {
  0%,100% { box-shadow: var(--shadow-yellow); }
  50%      { box-shadow: 0 8px 36px rgba(254,198,16,.5); }
}

/* Secondary — şeffaf, borderlı (vurdum42'nin "Giriş" butonu) */
.btn-secondary {
  background: transparent;
  color: rgba(243,242,242,.7);
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--r-md);
  border: 1px solid rgba(243,242,242,.2);
}
.btn-secondary:hover {
  color: var(--text-white);
  border-color: rgba(243,242,242,.45);
  background: rgba(255,255,255,.05);
}

/* Yeşil — "Güncel Adrese Git" */
.btn-green {
  background: var(--green-cta);
  color: #fff;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-green);
  animation: pulse-g 2s ease-in-out infinite;
}
.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22,163,74,.45);
  animation: none;
}
@keyframes pulse-g {
  0%,100% { box-shadow: var(--shadow-green); }
  50%      { box-shadow: 0 8px 28px rgba(22,163,74,.5); }
}

.btn-sm  { padding: 8px 18px; font-size: .84rem; border-radius: var(--r-sm); }
.btn-lg  { padding: 15px 38px; font-size: 1.06rem; }
.btn-block { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   STİCKY YEŞİL BAR
   ══════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-cta);
  z-index: 1000;
  box-shadow: 0 -3px 20px rgba(22,163,74,.4);
}
.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: .98rem;
  padding: 15px;
  transition: background var(--t);
}
.sticky-bar a:hover { background: var(--green-hover); }
.sticky-arrow { animation: bounce-x .7s ease-in-out infinite alternate; }
@keyframes bounce-x { from{transform:translateX(0);} to{transform:translateX(6px);} }

/* ══════════════════════════════════════════
   SECTION ORTAK
   ══════════════════════════════════════════ */
.section { padding: 64px 0; }
.section-dark { background: var(--bg-header); }
.section-card { background: var(--bg-card); }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow-hover);
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.section-desc {
  font-size: .96rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.section-head.center .section-desc { margin-inline: auto; }

/* ══════════════════════════════════════════
   ÖZELLİKLER GRID
   ══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.feat-card:hover { border-color: var(--border-yellow); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(254,198,16,.1); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 46px; height: 46px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.feat-card h3 { font-size: .96rem; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.feat-card p  { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-section { padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-card); }
.stat-num  { font-size: 2rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.stat-lbl  { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); font-weight: 600; }

/* ══════════════════════════════════════════
   HAKKIMIZDA / PROTOKOL
   ══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .92rem;
  color: var(--text-muted);
}
.about-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 900;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

.protocol-box {
  background: var(--bg-card);
  border: 1px solid var(--border-yellow);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(254,198,16,.08);
}
.protocol-box h3 { font-size: .96rem; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.protocol-box .sub { font-size: .78rem; color: var(--text-dim); margin-bottom: 20px; }
.protocol-steps { display: flex; flex-direction: column; gap: 0; }
.protocol-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.protocol-step:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  color: var(--bg-header);
  flex-shrink: 0;
}
.step-body h4 { font-size: .88rem; font-weight: 700; color: var(--text-white); margin-bottom: 2px; }
.step-body p  { font-size: .8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   HABERLER
   ══════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.news-card:hover { border-color: var(--border-yellow); transform: translateY(-3px); }
.news-thumb {
  height: 148px;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border-bottom: 1px solid var(--border);
}
.news-body { padding: 18px; }
.news-meta { display: flex; gap: 10px; margin-bottom: 9px; font-size: .72rem; }
.news-date { color: var(--text-dim); }
.news-read { color: var(--yellow-hover); font-weight: 600; }
.news-card h3 { font-size: .92rem; font-weight: 700; color: var(--text-white); margin-bottom: 7px; line-height: 1.4; }
.news-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.news-link    { font-size: .8rem; font-weight: 700; color: var(--yellow-hover); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--t); }
.news-link:hover { gap: 8px; }

/* ══════════════════════════════════════════
   SSS / FAQ
   ══════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--border-yellow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color var(--t);
}
.faq-q:hover { color: var(--yellow-hover); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--yellow); color: var(--bg-header); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   CTA BOX
   ══════════════════════════════════════════ */
.cta-box {
  background: var(--bg-card2);
  border: 1px solid var(--border-yellow);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(254,198,16,.1), transparent 65%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { margin-bottom: 12px; }
.cta-box > p { color: var(--text-muted); max-width: 48ch; margin: 0 auto 26px; line-height: 1.7; }
.cta-btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 14px; }

/* ══════════════════════════════════════════
   İLETİŞİM KARTLARI
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.contact-card:hover { border-color: var(--border-yellow); transform: translateY(-3px); }
.contact-card .cc-icon {
  width: 44px; height: 44px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}
.contact-card h3 { font-size: .92rem; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.contact-card p  { font-size: .84rem; color: var(--text-muted); }
.contact-card a  { color: var(--yellow-hover); }
.contact-card a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 44px 0 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: .84rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 12px 0 16px;
}
.footer-col h4 {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .84rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--yellow-hover); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .76rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color var(--t); }
.footer-bottom a:hover { color: var(--yellow-hover); }
.footer-legal-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   SCROLL ANIMASYONU + YARDIMCILAR
   ══════════════════════════════════════════ */
.reveal { opacity: 1; transform: none; }
.js-ok .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js-ok .reveal.in-view { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSİVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-grid     { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-visual    { display: none; }
  .hero-inner     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero           { padding: 52px 0 44px; }
  h1              { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .features-grid  { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .news-grid      { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .main-nav       { display: none; }
  .mobile-menu-btn { display: flex; }
  .section        { padding: 44px 0; }
  .top-bar-left   { flex-direction: column; gap: 3px; font-size: .76rem; }
}
@media (max-width: 480px) {
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-stats   { gap: 16px; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .cta-btn-group { flex-direction: column; }
  .cta-btn-group .btn { width: 100%; }
}

/* ── ERİŞİLEBİLİRLİK ── */
a:focus-visible, button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
