/* ===========================================================
   ASM Eğitim — Landing Page styles
   Brand: orange (#EE7C1B) + royal/navy blue (#1F5096) on warm white
   Type: Sora (display) + Plus Jakarta Sans (text)
   =========================================================== */

:root {
  --orange: #ee7c1b;
  --orange-600: #d96a0c;
  --orange-700: #b9580a;
  --orange-tint: #fff3e3;
  --orange-tint-2: #ffe7cb;

  --blue: #1f5096;
  --blue-600: #1a447f;
  --navy: #14305c;
  --navy-900: #0d2244;
  --navy-ink: #0b1d3a;

  --ink: #16223a;
  --muted: #586781;
  --muted-2: #8492a8;

  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f6f3ed;
  --line: #ece6db;
  --line-2: #e2dccf;

  --ring: rgba(31, 80, 150, 0.16);
  --shadow-sm: 0 1px 2px rgba(20, 48, 92, 0.06), 0 2px 6px rgba(20, 48, 92, 0.05);
  --shadow-md: 0 4px 14px rgba(20, 48, 92, 0.08), 0 12px 30px rgba(20, 48, 92, 0.07);
  --shadow-lg: 0 18px 50px rgba(20, 48, 92, 0.16);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --font-display: "Sora", system-ui, sans-serif;
  --font-text: "Plus Jakarta Sans", system-ui, sans-serif;

  /* accent is themeable via tweaks */
  --accent: var(--orange);
  --accent-600: var(--orange-600);
  --accent-700: var(--orange-700);
  --accent-tint: var(--orange-tint);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17.5px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(64px, 9vw, 128px); }

/* ---------- Reveal on scroll ---------- */
/* Hidden state only applies when JS is active (.js on <html>); without JS,
   content stays fully visible so sections never appear empty. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.in,
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow.center::before { display: none; }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.9vw, 52.5px);
  margin-top: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(18.5px, 1.7vw, 21px);
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 18px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(238, 124, 27, 0.28);
}
.btn-primary:hover { background: var(--accent-600); box-shadow: 0 12px 26px rgba(238,124,27,.34); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--navy); background: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f1f4fa; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(20,48,92,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand .brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--surface-2); color: var(--navy); }

/* Dropdown menus */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-trigger {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  font-weight: 600; font-size: 15px; color: var(--ink); padding: 9px 14px; border-radius: 999px;
  transition: background .2s, color .2s; background: none; border: none; font-family: inherit;
}
.nav-item > .nav-trigger svg { width: 15px; height: 15px; transition: transform .25s; opacity: .7; }
.nav-item:hover > .nav-trigger { background: var(--surface-2); color: var(--navy); }
.nav-item:hover > .nav-trigger svg { transform: rotate(180deg); }
.nav-item.has-active > .nav-trigger { color: var(--navy); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 60;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.dropdown a .di { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; flex-shrink: 0; }
.dropdown a .di svg { width: 17px; height: 17px; }
.dropdown a .dt { display: flex; flex-direction: column; line-height: 1.25; }
.dropdown a .dt small { font-size: 11.5px; font-weight: 500; color: var(--muted-2); }
.dropdown a:hover { background: var(--surface-2); color: var(--navy); }
.dropdown a:hover .di { background: var(--accent); color: #fff; }

/* Mobile submenu */
.mm-group { border-bottom: 1px solid var(--line); }
.mm-group > .mm-head {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 13px 8px; font-weight: 700; font-size: 15px; color: var(--navy);
  background: none; border: none; font-family: inherit; cursor: pointer;
}
.mm-group > .mm-head svg { width: 18px; height: 18px; transition: transform .25s; }
.mm-group.open > .mm-head svg { transform: rotate(180deg); }
.mm-sub { display: none; flex-direction: column; padding: 0 0 8px 14px; }
.mm-group.open .mm-sub { display: flex; }
.mm-sub a { padding: 10px 8px !important; font-weight: 600; font-size: 14px; border-bottom: none !important; color: var(--muted) !important; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 20px; font-size: 14.5px; }
.nav-call {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  background: #fff; color: var(--navy); border: 1.5px solid var(--line-2);
  transition: border-color .18s, background .18s, color .18s, transform .18s;
}
.nav-call:hover { border-color: var(--orange); background: var(--orange); color: #fff; transform: translateY(-2px); }
.nav-call svg { width: 19px; height: 19px; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: 12px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gut) 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 8px; font-weight: 600; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 10px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(56px, 7vw, 110px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg .blob {
  position: absolute; border-radius: 50%;
  filter: blur(10px); opacity: .5;
}
.hero-bg .b1 { width: 520px; height: 520px; right: -160px; top: -180px;
  background: radial-gradient(circle at 30% 30%, var(--orange-tint-2), transparent 70%); opacity: .9; }
.hero-bg .b2 { width: 420px; height: 420px; left: -160px; bottom: -160px;
  background: radial-gradient(circle at 50% 50%, #e3ecfa, transparent 70%); }
.hero-bg .arc {
  position: absolute; right: -10%; top: 8%;
  width: 60vw; max-width: 760px; aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(31,80,150,.14);
}

.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 999px; padding: 7px 16px 7px 7px;
  font-size: 16px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero-badge .pill {
  background: var(--accent-tint); color: var(--accent-600);
  font-weight: 700; font-size: 15px; padding: 5px 12px; border-radius: 999px;
  letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(40px, 6.7vw, 73.5px);
  font-weight: 800;
  margin-top: 24px;
  letter-spacing: -0.03em;
}
.hero h1 .hl { color: var(--accent); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6%;
  height: 28%; background: var(--accent-tint); z-index: -1; border-radius: 4px;
}
.hero-sub {
  font-size: clamp(18.5px, 1.9vw, 22px);
  color: var(--muted);
  max-width: 540px;
  margin-top: 24px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-trust .ht {
  display: flex; flex-direction: column;
}
.hero-trust .ht b { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); }
.hero-trust .ht span { font-size: 16px; color: var(--muted); font-weight: 500; }
.hero-trust .div { width: 1px; height: 38px; background: var(--line-2); }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  border: 8px solid #fff;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.float-card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-card b { font-family: var(--font-display); font-weight: 800; font-size: 19.5px; color: var(--navy); display: block; line-height: 1.1; }
.float-card span { font-size: 15px; color: var(--muted); font-weight: 600; }
.float-1 { top: 26px; left: -28px; }
.float-2 { bottom: 36px; right: -26px; }
.float-3 { bottom: -22px; left: 36px; }
@media (max-width: 560px) { .float-1, .float-2, .float-3 { display: none; } }

/* =========================================================
   PLACEHOLDER (image slots)
   ========================================================= */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, #eef1f6 0 14px, #e7ebf2 14px 28px);
  display: grid; place-items: center;
  color: #93a0b5;
}
.ph.warm {
  background: repeating-linear-gradient(135deg, #fdeede 0 14px, #fbe5cc 14px 28px);
  color: #c89055;
}
.ph .ph-label {
  font-family: "Sora", monospace;
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.75);
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.05);
}

/* =========================================================
   LOGO STRIP / trust band
   ========================================================= */
.band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 26px; }
.band .band-label { font-size: 15.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.band .band-items { display: flex; gap: clamp(20px, 4vw, 54px); flex-wrap: wrap; }
.band .band-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: 17.5px; }
.band .band-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* =========================================================
   PROGRAMS
   ========================================================= */
.programs { background: var(--bg); }
.prog-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.tabs { display: inline-flex; background: var(--surface-2); border-radius: 999px; padding: 5px; gap: 4px; border: 1px solid var(--line); }
.tab {
  border: none; background: transparent; border-radius: 999px;
  padding: 10px 20px; font-weight: 700; font-size: 16.5px; color: var(--muted);
  transition: background .2s, color .2s, box-shadow .2s;
}
.tab.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px 28px;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s, border-color .28s;
  position: relative;
  overflow: hidden;
}
.prog-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--accent); transition: width .35s cubic-bezier(.22,.61,.36,1);
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.prog-card:hover::after { width: 100%; }
.prog-card[hidden] { display: none; }
.prog-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18.5px;
  margin-bottom: 22px;
}
.prog-ico.o { background: var(--orange-tint); color: var(--orange-700); }
.prog-ico.b { background: #e8eefa; color: var(--blue); }
.prog-card h3 { font-size: 24px; }
.prog-card .lvl {
  display: inline-block; margin-bottom: 14px;
  font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted-2);
}
.prog-card p { color: var(--muted); font-size: 17.5px; margin: 12px 0 0; }
.prog-card .more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  font-weight: 700; font-size: 16.5px; color: var(--accent-600);
}
.prog-card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.prog-card:hover .more svg { transform: translateX(4px); }

/* =========================================================
   GRADE TRACK
   ========================================================= */
.levels { background: var(--surface); border-block: 1px solid var(--line); }
.levels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.level-card {
  border-radius: var(--r-lg); padding: 34px 32px; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.level-card.ortaokul { background: linear-gradient(160deg, #fff7ee, #fff); }
.level-card.lise { background: linear-gradient(160deg, #eff4fc, #fff); }
.level-card h3 { font-size: 28px; }
.level-card .grade-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0 18px; }
.grade-pill {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18.5px;
  background: #fff; border: 1px solid var(--line-2); color: var(--navy);
}
.level-card.ortaokul .grade-pill.exam { background: var(--orange); color: #fff; border-color: var(--orange); }
.level-card.lise .grade-pill.exam { background: var(--blue); color: #fff; border-color: var(--blue); }
.level-card p { color: var(--muted); font-size: 18px; margin: 0; }
.level-card .tagline { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 17.5px; }

/* =========================================================
   WHY ASM (features)
   ========================================================= */
.why { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px;
  transition: transform .25s, box-shadow .25s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-600); margin-bottom: 18px;
}
.feat .ic svg { width: 24px; height: 24px; }
.feat h3 { font-size: 21px; }
.feat p { color: var(--muted); font-size: 16.5px; margin-top: 10px; }

/* =========================================================
   RESULTS / DENEME (dark band)
   ========================================================= */
.results {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(238,124,27,.22), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-900));
  color: #fff; position: relative; overflow: hidden;
}
.results h2 { color: #fff; }
.results .section-head p { color: rgba(255,255,255,.74); }
.results .eyebrow { color: #ffb978; }
.results .eyebrow::before { background: var(--orange); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  backdrop-filter: blur(4px);
}
.stat .num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5.6vw, 54.5px);
  color: #fff; line-height: 1; letter-spacing: -0.03em;
}
.stat .num .suf { color: var(--orange); }
.stat .lbl { color: rgba(255,255,255,.72); font-size: 16.5px; margin-top: 12px; font-weight: 500; }
.deneme-cta {
  margin-top: 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 28px 32px;
}
.deneme-cta .dc-text h3 { color: #fff; font-size: 24px; }
.deneme-cta .dc-text p { color: rgba(255,255,255,.7); margin: 8px 0 0; font-size: 17.5px; }

/* =========================================================
   CHAMPIONS / BİRİNCİLER
   ========================================================= */
.champions {
  background:
    radial-gradient(900px 460px at 88% -12%, rgba(238,124,27,.10), transparent 60%),
    radial-gradient(760px 420px at 6% 120%, rgba(31,80,150,.07), transparent 60%),
    var(--surface-2);
  position: relative;
}
.champions .ch-flag {
  display: inline-flex; align-items: center; gap: 9px; align-self: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15.5px; letter-spacing: .04em;
  color: var(--orange-700); background: var(--orange-tint); border: 1px solid #f6d9bd;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
}
.champions .ch-flag svg { width: 17px; height: 17px; }
.champions h2 .gold { color: var(--orange); }

.champions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.champ-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 44px 28px 30px; text-align: center; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .26s, box-shadow .26s; overflow: hidden;
}
.champ-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #f6c043, #ee7c1b, #f6c043);
}
.champ-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Award medal */
.champ-medal { position: relative; width: 96px; height: 116px; margin: 0 auto; }
.champ-medal::before, .champ-medal::after {
  content: ""; position: absolute; top: 56px; width: 22px; height: 56px; z-index: 1;
  background: linear-gradient(var(--orange), var(--orange-600));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 74%, 0 100%);
}
.champ-medal::before { left: 25px; transform: rotate(10deg); }
.champ-medal::after { right: 25px; transform: rotate(-10deg); }
.champ-medal .disc {
  position: absolute; top: 0; left: 4px; width: 88px; height: 88px; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 36% 30%, #fff1c4, #f6c043 44%, #e0950f 78%, #c97f08);
  border: 3px solid #ffe08a;
  box-shadow: 0 10px 22px rgba(201,127,8,.34), inset 0 2px 5px rgba(255,255,255,.7), inset 0 -3px 7px rgba(150,90,0,.32);
  display: grid; place-items: center;
}
.champ-medal .disc b { font-family: var(--font-display); font-weight: 800; font-size: 42px; color: #7c4a05; line-height: 1; text-shadow: 0 1px 0 rgba(255,255,255,.45); }

.champ-card .cname { font-family: var(--font-display); font-weight: 800; font-size: 23px; color: var(--navy); margin-top: 22px; letter-spacing: -.01em; }
.champ-card .cexam { color: var(--muted); font-size: 17px; margin-top: 10px; line-height: 1.5; min-height: 42px; }
.champ-card .cbadge {
  display: inline-block; margin-top: 16px; font-family: var(--font-display);
  font-weight: 700; font-style: italic; font-size: 18.5px; color: var(--orange-700);
  background: var(--orange-tint); padding: 7px 20px; border-radius: 999px;
}
.champions .ch-note { text-align: center; margin-top: 30px; font-size: 16px; color: var(--muted-2); }

@media (max-width: 820px) { .champions-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* Champions + portrait video layout (cards left, video right) */
.champions-wrap { display: grid; grid-template-columns: 1fr minmax(280px, 340px); gap: 40px; align-items: center; margin-top: 52px; }
.champions-wrap .champions-grid { display: flex; flex-direction: column; gap: 18px; margin-top: 0; }
.champions-wrap .champ-card { display: flex; align-items: center; gap: 22px; text-align: left; padding: 22px 26px; }
.champions-wrap .champ-card .champ-medal { margin: 0; flex-shrink: 0; }
.champions-wrap .champ-card .cinfo { min-width: 0; }
.champions-wrap .champ-card .cname { margin-top: 0; font-size: 22px; }
.champions-wrap .champ-card .cexam { margin-top: 5px; min-height: 0; }
.champions-wrap .champ-card .cbadge { margin-top: 9px; font-size: 17px; padding: 5px 16px; }
.champions-video { width: 100%; max-width: 340px; margin-inline: auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #0a1b38; }
.champions-video video { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .champions-wrap { grid-template-columns: 1fr; gap: 30px; max-width: 480px; margin-inline: auto; }
  .champions-wrap .champions-grid { margin-bottom: 4px; }
}

/* Home contact CTA band */
.enroll-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.enroll-cta .cta-meta { display: flex; gap: 14px 36px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.enroll-cta .cta-meta .m { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: 16.5px; font-weight: 500; }
.enroll-cta .cta-meta .m svg { width: 18px; height: 18px; color: #ffb978; flex-shrink: 0; }

/* =========================================================
   NEWS / DUYURULAR
   ========================================================= */
.news { background: var(--bg); }
.news-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.news-top .all-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17.5px; color: var(--accent-600); }
.news-top .all-link svg { width: 17px; height: 17px; transition: transform .2s; }
.news-top .all-link:hover svg { transform: translateX(4px); }

.news-grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: 26px; }

/* featured */
.news-feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s; text-decoration: none;
}
.news-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-feature .nf-media { aspect-ratio: 16/9; position: relative; }
.news-feature .nf-media img { width: 100%; height: 100%; object-fit: cover; }
.news-feature .nf-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.news-feature h3 { font-size: 28px; margin: 16px 0 0; }
.news-feature p { color: var(--muted); font-size: 18px; margin: 14px 0 0; }
.news-feature .nf-foot { margin-top: 22px; display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--muted-2); font-weight: 600; }
.news-feature .nf-foot .read { color: var(--accent-600); margin-left: auto; display: inline-flex; align-items: center; gap: 7px; }
.news-feature .nf-foot .read svg { width: 16px; height: 16px; transition: transform .2s; }
.news-feature:hover .nf-foot .read svg { transform: translateX(4px); }

/* category pill */
.cat {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 14.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.cat.kayit { background: var(--orange-tint); color: var(--orange-700); }
.cat.deneme { background: #e8eefa; color: var(--blue); }
.cat.etut { background: #e6f3ec; color: #1f7a4d; }
.cat.etkinlik { background: #f3eafb; color: #7a44b3; }

/* list */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
  display: flex; gap: 18px; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 20px; text-decoration: none;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.news-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.date-block {
  flex-shrink: 0; width: 60px; border-radius: 12px; background: var(--navy); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 0;
}
.date-block .d { font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1; }
.date-block .m { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.news-item:nth-child(2n) .date-block { background: var(--accent); }
.ni-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ni-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy); margin: 0; line-height: 1.25; }
.ni-body .ni-meta { font-size: 15.5px; color: var(--muted); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi { background: var(--surface); border-block: 1px solid var(--line); overflow: hidden; }
.quote {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; background: var(--surface);
  display: flex; flex-direction: column;
}

/* Testimonials coverflow carousel */
.testi-carousel { position: relative; max-width: 920px; margin: 0 auto; min-height: 300px; transition: height .45s cubic-bezier(.22,.61,.36,1); }
.testi-carousel .quote {
  position: absolute; top: 50%; left: 50%; margin: 0;
  width: min(520px, 82%);
  transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .5s, box-shadow .5s, filter .5s;
  will-change: transform, opacity; -webkit-user-select: none; user-select: none;
}
.testi-carousel .quote.is-active { transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 3; box-shadow: var(--shadow-lg); }
.testi-carousel .quote.is-prev  { transform: translate(calc(-50% - 234px), -50%) scale(.8); opacity: .4; z-index: 1; filter: saturate(.7); cursor: pointer; }
.testi-carousel .quote.is-next  { transform: translate(calc(-50% + 234px), -50%) scale(.8); opacity: .4; z-index: 1; filter: saturate(.7); cursor: pointer; }
.testi-carousel .quote.is-hidden { transform: translate(-50%, -50%) scale(.6); opacity: 0; z-index: 0; pointer-events: none; }
.testi-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line-2); display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--navy); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.testi-nav svg { width: 20px; height: 20px; }
.testi-nav.prev { left: 0; }
.testi-nav.next { right: 0; }
.testi-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.testi-dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; background: var(--line-2); border: none; cursor: pointer; transition: width .25s, background .25s, border-radius .25s; }
.testi-dots button.active { background: var(--accent); width: 26px; border-radius: 5px; }
/* Video testimonial as a carousel slide */
.quote-video { padding: 16px; }
.quote-video .qv-media { border-radius: 12px; overflow: hidden; background: #0a1b38; line-height: 0; }
.quote-video .qv-media video { width: 100%; height: auto; display: block; }
.quote-video .who { margin-top: 16px; }
.testi-carousel .quote:not(.is-active) video { pointer-events: none; }
@media (max-width: 780px) {
  .testi-carousel .quote { width: min(440px, 88%); }
  .testi-carousel .quote.is-prev { transform: translate(calc(-50% - 116px), -50%) scale(.66); opacity: .16; }
  .testi-carousel .quote.is-next { transform: translate(calc(-50% + 116px), -50%) scale(.66); opacity: .16; }
  .testi-nav { width: 38px; height: 38px; }
}
.quote .stars { color: var(--orange); letter-spacing: 2px; font-size: 17.5px; margin-bottom: 16px; }
.quote p { font-size: 18.5px; color: var(--ink); margin: 0; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.quote .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(140deg, var(--orange-tint-2), #e8eefa);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--navy);
}
.quote .who b { display: block; font-size: 17.5px; color: var(--navy); font-family: var(--font-display); }
.quote .who span { font-size: 15.5px; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy);
}
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-2); flex-shrink: 0;
  display: grid; place-items: center; position: relative; transition: background .25s, border-color .25s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--navy); border-radius: 2px; transition: transform .25s, background .25s; }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .pm { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); font-size: 18px; margin: 0 4px 24px; }

/* =========================================================
   CONTACT / ENROLL
   ========================================================= */
.enroll { background: var(--surface); border-top: 1px solid var(--line); }
.enroll-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.enroll-info .contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-row .ci {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-600); display: grid; place-items: center;
}
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 18.5px; }
.contact-row span { color: var(--muted); font-size: 16.5px; }
.contact-map { margin-top: 30px; border-radius: var(--r-lg); overflow: hidden; height: 200px; border: 1px solid var(--line); }

.enroll-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-md);
}
.enroll-card h3 { font-size: 27px; }
.enroll-card .sub { color: var(--muted); font-size: 17.5px; margin: 10px 0 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 17.5px; color: var(--ink);
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line-2); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enroll-card .btn { width: 100%; margin-top: 8px; }
.enroll-card .fineprint { font-size: 15px; color: var(--muted-2); text-align: center; margin-top: 16px; }
.enroll-success {
  display: none; text-align: center; padding: 30px 10px;
}
.enroll-success.show { display: block; }
.enroll-success .check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; margin: 0 auto 20px;
}
.enroll-success h3 { margin-bottom: 10px; }
.enroll-success p { color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding-block: 64px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand .brand-name { color: #fff; }
.site-footer .brand img { background: #fff; border-radius: 50%; }
.footer-about { margin-top: 20px; font-size: 16.5px; max-width: 320px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 17.5px; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col a { display: block; padding: 7px 0; font-size: 16.5px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 16px; color: rgba(255,255,255,.5);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { padding: 9px 15px; font-size: 13.5px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .prog-grid, .feat-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .levels-grid, .enroll-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .brand-sub { display: none; }
  .nav-cta { gap: 7px; }
  .nav-cta .btn-primary { padding: 8px 14px; font-size: 13px; }
  .prog-grid, .feat-grid, .testi-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-trust .div:nth-of-type(2) { display: none; }
  .prog-head { align-items: flex-start; }
}

/* =========================================================
   INNER PAGES — shared
   ========================================================= */
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; }

/* Page hero banner */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  color: #fff;
  padding-block: clamp(54px, 8vw, 96px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 320px at 88% -10%, rgba(238,124,27,.30), transparent 60%),
    radial-gradient(620px 360px at 6% 120%, rgba(31,80,150,.55), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.crumb a { color: rgba(255,255,255,.78); transition: color .2s; }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }
.crumb .cur { color: #ffb978; }
.page-hero .ph-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #ffb978; margin-bottom: 16px;
}
.page-hero h1 { color: #fff; font-size: clamp(35.5px, 6vw, 63px); max-width: 16ch; }
.page-hero .ph-sub { color: rgba(255,255,255,.78); font-size: clamp(18.5px, 1.8vw, 22px); margin-top: 20px; max-width: 60ch; line-height: 1.6; }
.page-hero .ph-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; }
.page-hero .ph-stats .s b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 35.5px; color: #fff; }
.page-hero .ph-stats .s span { font-size: 16px; color: rgba(255,255,255,.66); }

/* About page */
.about-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; }
.about-photo .ph { min-height: 100%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-lead { font-size: clamp(20px, 2.1vw, 24px); color: var(--ink); font-weight: 500; line-height: 1.55; margin: 22px 0 18px; }
.about-text p { color: var(--muted); font-size: 18.5px; margin: 0 0 16px; }
.about-sign { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-sign .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.about-sign b { display: block; font-family: var(--font-display); color: var(--navy); }
.about-sign span { font-size: 16px; color: var(--muted); }

/* Values cards */
.values { background: var(--surface); border-top: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.value-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: transform .25s, box-shadow .25s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .vn { font-family: var(--font-display); font-weight: 800; font-size: 17.5px; color: var(--accent); letter-spacing: .04em; }
.value-card h3 { font-size: 23px; margin: 14px 0 10px; }
.value-card p { color: var(--muted); font-size: 17.5px; margin: 0; }

/* Timeline */
.timeline { max-width: 760px; margin: 56px auto 0; position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--line-2); }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -32px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent); }
.tl-item .yr { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 17.5px; }
.tl-item h3 { font-size: 21px; margin: 6px 0 8px; }
.tl-item p { color: var(--muted); font-size: 17.5px; margin: 0; }

/* Program detail rows */
.prog-detail { padding-block: 0; }
.pd-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}
.pd-row:nth-child(odd) .pd-media { order: 2; }
.pd-badge { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .04em; padding: 8px 16px; border-radius: 999px; }
.pd-badge.o { background: var(--orange-tint); color: var(--orange-700); }
.pd-badge.b { background: #e8eefa; color: var(--blue); }
.pd-row h2 { font-size: clamp(30px, 3.9vw, 42px); margin: 18px 0 0; }
.pd-row > div > .lvl { display: inline-block; margin-top: 12px; font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
.pd-row p.desc { color: var(--muted); font-size: 19px; margin: 18px 0 24px; max-width: 52ch; }
.pd-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.pd-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 18px; color: var(--ink); }
.pd-list li svg { width: 21px; height: 21px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pd-media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3.2; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.pd-media .ph { min-height: 100%; }
.pd-media img { width: 100%; height: 100%; object-fit: cover; }

/* News page */
.news-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.np-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .26s, box-shadow .26s; }
.np-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.np-media { aspect-ratio: 16/10; }
.np-media .ph { min-height: 100%; }
.np-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.np-body .np-date { font-size: 15.5px; color: var(--muted-2); font-weight: 600; margin: 14px 0 0; }
.np-body h3 { font-size: 21px; margin: 8px 0 0; line-height: 1.25; }
.np-body p { color: var(--muted); font-size: 16.5px; margin: 12px 0 0; }
.np-body .read { margin-top: auto; padding-top: 18px; color: var(--accent-600); font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; gap: 7px; }
.np-body .read svg { width: 16px; height: 16px; transition: transform .2s; }
.np-card:hover .read svg { transform: translateX(4px); }
.news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }

/* Contact page */
.contact-page-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(34px, 5vw, 68px); align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 28px; }
.cc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.cc .ci { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-tint); color: var(--accent-600); display: grid; place-items: center; margin-bottom: 16px; }
.cc .ci svg { width: 22px; height: 22px; }
.cc b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 18.5px; margin-bottom: 5px; }
.cc span, .cc a { color: var(--muted); font-size: 16.5px; line-height: 1.5; }
.cc a:hover { color: var(--accent-600); }
.contact-hours { background: var(--navy); color: #fff; border-radius: var(--r-md); padding: 24px 26px; }
.contact-hours h3 { color: #fff; font-size: 20px; margin-bottom: 16px; }
.contact-hours .hr { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16.5px; }
.contact-hours .hr:last-child { border-bottom: none; }
.contact-hours .hr span:last-child { color: #ffb978; font-weight: 600; }
.map-full { border-radius: var(--r-lg); overflow: hidden; height: clamp(280px, 38vw, 440px); border: 1px solid var(--line); margin-top: 8px; }
.map-full .ph { min-height: 100%; }

@media (max-width: 960px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; max-width: 520px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pd-row { grid-template-columns: 1fr; gap: 28px; }
  .pd-row:nth-child(odd) .pd-media { order: 0; }
  .pd-media { order: -1; max-width: 540px; }
  .news-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .values-grid { grid-template-columns: 1fr; }
  .news-page-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .page-hero .ph-stats { gap: 26px; }
}

/* =========================================================
   NEWS DETAIL / ARTICLE
   ========================================================= */
.article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.article { max-width: 760px; }
.article-hero-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/8; box-shadow: var(--shadow-md); margin-bottom: 38px; border: 1px solid var(--line); }
.article-hero-img .ph { min-height: 100%; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; font-size: 16px; color: var(--muted); }
.article-meta .author { display: flex; align-items: center; gap: 10px; }
.article-meta .author .av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; }
.article-meta .author b { display: block; color: var(--navy); font-family: var(--font-display); font-size: 17px; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

.prose > * { margin: 0 0 22px; }
.prose p { color: var(--ink); font-size: 19.5px; line-height: 1.72; }
.prose .lead { font-size: 22px; line-height: 1.6; color: var(--navy); font-weight: 500; }
.prose h2 { font-size: 28px; margin: 38px 0 16px; }
.prose h3 { font-size: 22px; margin: 30px 0 12px; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 12px; }
.prose ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--ink); }
.prose ul li svg { width: 21px; height: 21px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.prose blockquote {
  border-left: 4px solid var(--accent); background: var(--surface); margin: 30px 0;
  padding: 22px 26px; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 20px; color: var(--navy); font-style: italic;
}
.callout {
  display: flex; gap: 16px; background: var(--accent-tint); border: 1px solid #f6d9bd;
  border-radius: var(--r-md); padding: 22px 24px; margin: 30px 0;
}
.callout .ci { width: 42px; height: 42px; border-radius: 11px; background: #fff; color: var(--accent-700); display: grid; place-items: center; flex-shrink: 0; }
.callout .ci svg { width: 22px; height: 22px; }
.callout b { font-family: var(--font-display); color: var(--navy); display: block; margin-bottom: 4px; }
.callout p { margin: 0; font-size: 17.5px; color: var(--muted); }

.article-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0; padding-top: 28px; border-top: 1px solid var(--line); }
.article-tags .tg { font-size: 15.5px; font-weight: 600; color: var(--muted); background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 15px; transition: all .18s; }
.article-tags .tg:hover { border-color: var(--navy); color: var(--navy); }

.share-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.share-row span { font-size: 16px; font-weight: 700; color: var(--muted); }
.share-row a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--navy); transition: all .18s; }
.share-row a:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.share-row a svg { width: 18px; height: 18px; }

/* sidebar */
.article-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.side-card h4 { font-size: 18.5px; margin-bottom: 18px; }
.side-card.navy { background: var(--navy); }
.side-card.navy h4 { color: #fff; }
.side-card.navy p { color: rgba(255,255,255,.78); font-size: 17px; margin: 0 0 18px; }
.side-info { display: flex; flex-direction: column; gap: 14px; }
.side-info .si { display: flex; align-items: flex-start; gap: 12px; }
.side-info .si .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; flex-shrink: 0; }
.side-info .si .ic svg { width: 18px; height: 18px; }
.side-info .si .sk { font-size: 15px; color: var(--muted-2); font-weight: 600; }
.side-info .si .sv { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 16.5px; }

.related-item { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item .rthumb { width: 56px; height: 56px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; font-size: 22px; }
.related-item .rt { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.3; }
.related-item .rd { font-size: 15px; color: var(--muted-2); margin-top: 4px; }
.related-item:hover .rt { color: var(--accent-700); }

/* prev-next */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }
.post-nav a { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); transition: all .2s; }
.post-nav a:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.post-nav a.next { text-align: right; align-items: flex-end; }
.post-nav .pn-dir { font-size: 15px; font-weight: 700; color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; }
.post-nav .pn-title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 17.5px; }

@media (max-width: 940px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .article-side .side-card { flex: 1; min-width: 240px; }
}
@media (max-width: 560px) {
  .post-nav { grid-template-columns: 1fr; }
  .article-side { flex-direction: column; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 16px;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  border: 1px solid var(--line); cursor: pointer; background: var(--surface-2);
}
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item .ph { min-height: 100%; height: 100%; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; opacity: 0; transition: opacity .28s;
  background: linear-gradient(to top, rgba(10,27,56,.78), rgba(10,27,56,.12) 55%, transparent);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay .gcat { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #ffb978; }
.gal-overlay .gt { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18.5px; margin-top: 4px; }
.gal-overlay .gzoom { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; }
.gal-overlay .gzoom svg { width: 18px; height: 18px; }

.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(8,18,38,.92); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox .lb-stage { max-width: 1000px; width: 100%; text-align: center; }
.lightbox .lb-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; background: var(--surface-2); }
.lightbox .lb-frame .ph { min-height: 100%; }
.lightbox .lb-frame img { width: 100%; height: 100%; object-fit: contain; background: #0a1b38; }
.lightbox .lb-cap { color: #fff; margin-top: 18px; font-family: var(--font-display); font-weight: 600; font-size: 18.5px; }
.lightbox .lb-cap span { display: block; color: rgba(255,255,255,.55); font-size: 15.5px; font-weight: 500; margin-top: 4px; font-family: var(--font-text); }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: grid; place-items: center; color: #fff; transition: background .18s;
}
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-prev { left: 3vw; }
.lb-next { right: 3vw; }
.lb-close { position: absolute; top: 4vh; right: 4vw; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; transition: background .18s; }
.lb-close:hover { background: rgba(255,255,255,.24); }
.lb-close svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-item.wide { grid-column: span 1; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gal-item.tall { grid-row: span 1; }
  .lb-prev { left: 2vw; } .lb-next { right: 2vw; }
}

/* =========================================================
   TEAM / AİLEMİZ
   ========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .26s, box-shadow .26s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 4/4.2; position: relative; overflow: hidden; background: var(--surface-2); }
.team-photo .ph { min-height: 100%; height: 100%; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .tp-tag { position: absolute; top: 14px; left: 14px; font-size: 14.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--navy); backdrop-filter: blur(4px); }
.team-body { padding: 20px 22px 22px; }
.team-body h3 { font-size: 21px; }
.team-body .role { font-size: 16px; font-weight: 600; color: var(--accent-700); margin-top: 4px; }
.team-body p { font-size: 17px; color: var(--muted); margin: 12px 0 0; }
.team-body .branch { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 15px; font-weight: 600; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 8px; }
.team-body .branch svg { width: 14px; height: 14px; color: var(--accent); }

.team-section-label { display: flex; align-items: center; gap: 16px; margin: 8px 0 32px; }
.team-section-label h2 { font-size: clamp(24px, 3.1vw, 32px); white-space: nowrap; }
.team-section-label .ln { flex: 1; height: 1px; background: var(--line); }

/* leadership feature */
.lead-card {
  display: grid; grid-template-columns: 300px 1fr; gap: 0; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-md);
}
.lead-card .lc-photo { background: var(--surface-2); min-height: 100%; }
.lead-card .lc-photo .ph { min-height: 100%; height: 100%; }
.lead-card .lc-photo img { width: 100%; height: 100%; object-fit: cover; }
.lead-card .lc-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.lead-card .lc-body .role { font-size: 15.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); }
.lead-card .lc-body h2 { font-size: clamp(28px, 3.8vw, 38px); margin: 12px 0 0; }
.lead-card .lc-body .lead-quote { font-size: 19.5px; color: var(--ink); line-height: 1.7; margin: 18px 0 0; }
.lead-card .lc-body .sign { margin-top: 22px; font-family: var(--font-display); font-weight: 700; color: var(--navy); }

@media (max-width: 920px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-card { grid-template-columns: 1fr; }
  .lead-card .lc-photo { aspect-ratio: 16/9; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}
