/* ============================================================
   Program Detayı — page styles
   ============================================================ */

/* ---------- DETAIL HERO ---------- */
.dhero {
  position: relative; padding: calc(var(--nav-h) + 70px) 0 80px; overflow: hidden;
  background: radial-gradient(1100px 620px at 80% 0%, #EAF8FF 0%, #fff 60%);
}
.dhero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.dhero h1 { font-size: clamp(40px, 5.6vw, 70px); margin: 0; }
.dhero h1 .grad { display: block; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dhero .lead { color: var(--muted); font-size: clamp(17px,1.5vw,20px); margin-top: 22px; max-width: 560px; }
.dhero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 32px; max-width: 520px; }
.dstat { background: rgba(255,255,255,0.8); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; backdrop-filter: blur(6px); }
.dstat b { font-family: 'Manrope'; font-weight: 800; font-size: 30px; color: var(--blue-deep); display: block; line-height: 1; }
.dstat span { color: var(--muted); font-size: 14px; font-weight: 500; margin-top: 6px; display: block; }

/* route illustration (vertical) */
.dhero-route { position: relative; }
.droute { display: flex; flex-direction: column; gap: 12px; }
.droute-item {
  display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--sh-sm);
  transition: 0.3s var(--ease); position: relative;
}
.droute-item:hover { transform: translateX(6px); box-shadow: var(--sh-md); border-color: var(--blue); }
.droute-item .dn { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-brand); color: #fff; font-family: 'Manrope'; font-weight: 800; display: grid; place-items: center; flex: none; }
.droute-item .dt { font-family: 'Manrope'; font-weight: 700; color: var(--blue-ink); }
.droute-item .ds { color: var(--muted); font-size: 13px; }
.droute-item.spine { background: linear-gradient(150deg,#FFFBEF,#fff); border-color: rgba(246,180,0,0.4); }
.droute-item.spine .dn { background: linear-gradient(135deg,#F6B400,#D99800); }

/* ---------- ÖZET ---------- */
.summary { padding: 96px 0; background: #fff; }
.sum-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.sum-card {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; background: var(--paper);
  transition: 0.3s var(--ease); position: relative; overflow: hidden;
}
.sum-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); background: #fff; }
.sum-card .icon-badge { margin-bottom: 18px; }
.sum-card h3 { font-size: 21px; margin-bottom: 10px; }
.sum-card p { color: var(--muted); font-size: 15px; }
.sum-card::after { content:''; position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: var(--grad-brand); transition: width 0.4s var(--ease); }
.sum-card:hover::after { width: 100%; }

/* ---------- REPORT-INTEGRATED STORY ---------- */
.report-brief { padding: 96px 0; background: linear-gradient(180deg,#fff 0%,#F7FCFF 100%); overflow: hidden; }
.report-grid {
  display: grid; grid-template-columns: minmax(0,0.9fr) minmax(360px,1.1fr); gap: 48px; align-items: center;
}
.report-copy h2 { font-size: clamp(30px,4vw,48px); max-width: 680px; }
.report-copy p { color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 720px; margin-top: 16px; }
.report-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 28px; }
.report-facts span {
  min-height: 76px; display: flex; flex-direction: column; justify-content: center; gap: 4px;
  border: 1px solid rgba(0,159,227,0.15); border-radius: var(--r-md); background: rgba(255,255,255,0.82);
  color: var(--blue-ink); font-family: 'Manrope'; font-weight: 700; padding: 12px 14px; box-shadow: var(--sh-sm);
}
.report-facts b { color: var(--blue); font-size: 28px; line-height: 1; }
.report-media {
  margin: 0; position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border);
  background: #fff; box-shadow: var(--sh-md); transform: rotate(0.4deg);
}
.report-media::before {
  content:''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg,rgba(0,159,227,0.24),transparent 42%,rgba(88,184,50,0.16));
  pointer-events: none; z-index: 1;
}
.report-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.report-media figcaption {
  position: absolute; left: 18px; bottom: 18px; z-index: 2; max-width: calc(100% - 36px);
  background: rgba(255,255,255,0.9); color: var(--blue-ink); border: 1px solid rgba(255,255,255,0.9);
  border-radius: 100px; padding: 9px 14px; font-family:'Manrope'; font-size: 13px; font-weight: 700;
  box-shadow: var(--sh-sm); backdrop-filter: blur(8px);
}
.report-principles { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px; }
.report-principle {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--sh-sm); transition: 0.3s var(--ease); position: relative; overflow: hidden;
}
.report-principle:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(0,159,227,0.34); }
.report-principle::after {
  content:''; position: absolute; right: -36px; bottom: -44px; width: 130px; height: 130px;
  border-radius: 50%; border: 24px solid rgba(88,184,50,0.08);
}
.report-principle span {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px;
  background: var(--sky); color: var(--blue-deep); font-family:'Manrope'; font-weight: 800; margin-bottom: 18px;
}
.report-principle h3 { font-size: 21px; margin-bottom: 10px; }
.report-principle p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- STICKY MODULE NAV ---------- */
.modnav-wrap {
  position: sticky; top: 74px; z-index: 92;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,92,168,0.06); border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0,92,168,0.08);
}
.modnav { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.modnav::-webkit-scrollbar { display: none; }
.modnav button {
  flex: none; font-family: 'Manrope'; font-weight: 600; font-size: 14.5px; cursor: pointer;
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--border); background: #fff; color: var(--ink);
  transition: 0.25s var(--ease); white-space: nowrap;
}
.modnav button:hover { border-color: var(--blue); color: var(--blue-deep); }
.modnav button.on { background: var(--grad-cta); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(0,159,227,0.28); }
.mod-scope.nav-floating { padding-top: var(--modnav-h, 0px); }
.modnav-wrap.is-floating {
  position: fixed; left: 0; right: 0; top: 74px; z-index: 92;
}

/* ---------- MODULE DETAIL CARDS ---------- */
.moddetail { padding: 70px 0 90px; background: var(--grad-sky); }
.mdcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
  margin-bottom: 28px; box-shadow: var(--sh-sm); scroll-margin-top: 130px;
  display: grid; grid-template-columns: 320px 1fr;
}
.mdcard.spine { box-shadow: 0 0 0 2px rgba(246,180,0,0.25), var(--sh-sm); }
.md-side { padding: 38px; background: linear-gradient(160deg,#F4FAFF,#EAF8FF); position: relative; display: flex; flex-direction: column; }
.mdcard.spine .md-side { background: linear-gradient(160deg,#FFFBEF,#FFF6E0); }
.md-side .mdnum { font-family: 'Manrope'; font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.mdcard.spine .md-side .mdnum { color: var(--gold-deep); }
.md-side .icon-badge { width: 64px; height: 64px; margin: 16px 0 20px; background: #fff; box-shadow: var(--sh-sm); }
.md-side h3 { font-size: 28px; margin-bottom: 12px; }
.md-side .theme { display: inline-block; font-family: 'Manrope'; font-weight: 600; font-size: 13.5px; color: var(--green-deep); background: var(--green-pale); padding: 6px 13px; border-radius: 100px; align-self: flex-start; }
.mdcard.spine .md-side .theme { color: var(--gold-deep); background: #FFF6E0; }
.md-body { padding: 38px; }
.md-body .lab { font-family: 'Manrope'; font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.md-body .aim { color: var(--ink); font-size: 16.5px; margin-bottom: 24px; line-height: 1.6; }
.md-lessons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.md-lesson { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: var(--paper); border: 1px solid var(--border); border-radius: 12px; font-size: 14.5px; font-weight: 500; transition: 0.25s var(--ease); }
.md-lesson:hover { border-color: var(--blue); background: #fff; }
.md-lesson .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--sky); color: var(--blue-deep); display: grid; place-items: center; flex: none; margin-top: 1px; }
.mdcard.spine .md-lesson .tick { background: #FFF6E0; color: var(--gold-deep); }
.md-leaders { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.md-leaders .lchip { font-family: 'Manrope'; font-weight: 600; font-size: 13px; color: var(--blue-ink); background: var(--sky); padding: 7px 13px; border-radius: 100px; border: 1px solid rgba(0,159,227,0.16); }

/* ---------- PROGRAM STRUCTURE (accordion+timeline) ---------- */
.structure { padding: 96px 0; background: #fff; }
.struct-list { margin-top: 44px; position: relative; max-width: 900px; }
.struct-list::before { content:''; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--blue),var(--green)); opacity: 0.3; }
.struct-item { position: relative; padding-left: 64px; margin-bottom: 16px; }
.struct-item .sdot { position: absolute; left: 14px; top: 22px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); z-index: 2; }
.struct-item.summer .sdot { border-color: var(--gold); }
.struct-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 24px;
  transition: 0.25s var(--ease);
}
.struct-head:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.struct-item.open .struct-head { border-color: var(--blue); background: #fff; box-shadow: var(--sh-sm); }
.struct-head .sh-l { display: flex; align-items: baseline; gap: 14px; }
.struct-head .yr { font-family: 'Manrope'; font-weight: 800; font-size: 19px; color: var(--blue-ink); }
.struct-head .pd { color: var(--muted); font-size: 14px; font-weight: 500; }
.struct-head .chev { width: 32px; height: 32px; border-radius: 50%; background: var(--sky); color: var(--blue-deep); display: grid; place-items: center; flex: none; transition: transform 0.3s var(--ease); }
.struct-item.open .chev { transform: rotate(180deg); }
.struct-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.struct-body-inner { padding: 18px 24px 6px; display: flex; flex-wrap: wrap; gap: 10px; }
.struct-tag { font-family: 'Manrope'; font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 100px; background: var(--sky); color: var(--blue-deep); border: 1px solid rgba(0,159,227,0.14); }
.struct-tag.spine { background: #FFF6E0; color: var(--gold-deep); border-color: rgba(246,180,0,0.3); }
.struct-tag.trip { background: var(--green-pale); color: var(--green-deep); border-color: rgba(88,184,50,0.24); }

/* ---------- REPORT FLOW ---------- */
.report-flow { padding: 96px 0; background: var(--grad-sky); }
.flow-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.flow-step {
  min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--sh-sm); position: relative; overflow: hidden; transition: 0.3s var(--ease);
}
.flow-step::before {
  content:''; position: absolute; left: 28px; top: 28px; width: 48px; height: 48px; border-radius: 16px;
  background: linear-gradient(135deg,rgba(0,159,227,0.13),rgba(88,184,50,0.16));
}
.flow-step::after {
  content:''; position: absolute; left: 52px; top: 74px; bottom: 78px; width: 2px;
  background: linear-gradient(var(--blue),rgba(88,184,50,0.2)); opacity: 0.3;
}
.flow-step:hover { transform: translateY(-7px); border-color: rgba(0,159,227,0.34); box-shadow: var(--sh-md); }
.flow-step span {
  color: var(--green-deep); font-family:'Manrope'; font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.flow-step h3 { font-size: 21px; margin-bottom: 8px; }
.flow-step p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- ETKİ ÖLÇÜM (circular) ---------- */
.impact { padding: 100px 0; background: #fff; overflow: hidden; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 30px; }
.impact-list { display: flex; flex-direction: column; gap: 14px; }
.impact-list .il { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--paper); transition: 0.25s var(--ease); }
.impact-list .il:hover { border-color: var(--blue); background: #fff; box-shadow: var(--sh-sm); }
.impact-list .il .num { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-brand); color: #fff; font-family:'Manrope'; font-weight: 700; font-size: 14px; display: grid; place-items: center; flex: none; }
.impact-list .il p { font-size: 15px; }
.impact-list .il b { font-family:'Manrope'; color: var(--blue-ink); display: block; font-size: 15.5px; }

.cycle { position: relative; width: 420px; height: 420px; margin: 0 auto; }
.cycle .center { position: absolute; inset: 0; margin: auto; width: 140px; height: 140px; border-radius: 50%; background: var(--grad-cta); color: #fff; display: grid; place-items: center; text-align: center; font-family: 'Manrope'; font-weight: 800; z-index: 3; box-shadow: 0 16px 40px rgba(0,159,227,0.35); }
.cycle .center span { font-size: 17px; padding: 0 18px; }
.cycle .ring-dash { position: absolute; inset: 0; margin: auto; width: 360px; height: 360px; border-radius: 50%; border: 2px dashed rgba(0,159,227,0.25); animation: spinSlow 50s linear infinite; }
.cycle .cnode {
  position: absolute; transform: translate(-50%,-50%); background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 15px; font-family: 'Manrope'; font-weight: 600; font-size: 13px; color: var(--blue-ink);
  box-shadow: var(--sh-sm); white-space: nowrap; z-index: 2; display: flex; align-items: center; gap: 7px;
}
.cycle .cnode .cd { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ---------- KURUMSAL BİRLİKTELİK (partnership panels) ---------- */
.partnership-panels { padding: 96px 0 100px; background: #fff; }
.pp-visual {
  margin: 40px 0 0; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--sh-md); background: #fff; line-height: 0;
}
.pp-visual img { width: 100%; height: auto; display: block; }
.pp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 44px; }
.pp-panel {
  position: relative; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--border);
  padding: 44px 38px; transition: 0.3s var(--ease); box-shadow: var(--sh-sm);
}
.pp-panel:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.pp-panel.pp-hamilik {
  background:
    radial-gradient(520px 320px at 100% 0%, rgba(0,159,227,0.12), transparent 60%),
    linear-gradient(160deg,#F4FAFF,#fff 60%);
}
.pp-panel.pp-ahievran {
  background:
    radial-gradient(520px 320px at 100% 0%, rgba(88,184,50,0.12), transparent 60%),
    linear-gradient(160deg,var(--green-pale),#fff 60%);
}
.pp-panel::after {
  content:''; position: absolute; right: -50px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%;
  border: 26px solid rgba(0,159,227,0.06);
}
.pp-panel.pp-ahievran::after { border-color: rgba(88,184,50,0.08); }
.pp-logo {
  width: 76px; height: 76px; border-radius: 22px; background: #fff; border: 1px solid var(--border);
  display: grid; place-items: center; box-shadow: var(--sh-sm); margin-bottom: 22px; position: relative; z-index: 1;
}
.pp-logo img { max-width: 56px; max-height: 56px; object-fit: contain; }
.pp-panel h3 { font-size: 23px; margin-bottom: 12px; position: relative; z-index: 1; }
.pp-panel p { color: var(--muted); font-size: 15.5px; line-height: 1.7; position: relative; z-index: 1; }
.pp-coord {
  margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  border: 1px solid rgba(246,180,0,0.3); border-radius: var(--r-lg); padding: 24px 30px;
  background: linear-gradient(120deg,#FFFBEF,#fff);
}
.pp-coord-badge {
  flex: none; font-family: 'Manrope'; font-weight: 800; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep); background: #FFF6E0; padding: 9px 16px; border-radius: 100px;
}
.pp-coord p { color: var(--ink); font-size: 15px; line-height: 1.65; margin: 0; }
.pp-coord p strong { color: var(--blue-ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .dhero-grid { grid-template-columns: 1fr; gap: 40px; }
  .sum-grid, .report-principles { grid-template-columns: 1fr 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .report-media { transform: none; }
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .mdcard { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cycle { width: 340px; height: 340px; }
  .cycle .ring-dash { width: 290px; height: 290px; }
  .modnav-wrap { top: 74px; }
  .pp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sum-grid, .report-principles, .flow-grid { grid-template-columns: 1fr; }
  .report-facts { grid-template-columns: 1fr 1fr; }
  .report-brief, .report-flow, .partnership-panels { padding: 72px 0; }
  .report-media figcaption { position: static; border-radius: 0; max-width: none; box-shadow: none; }
  .md-lessons { grid-template-columns: 1fr; }
  .dhero { padding: calc(var(--nav-h) + 46px) 0 64px; }
  .dhero-grid, .droute, .droute-item { min-width: 0; max-width: 100%; }
  .dhero h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.12;
    text-wrap: auto;
    overflow-wrap: anywhere;
  }
  .dhero .lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: break-word;
  }
  .dhero-stats { grid-template-columns: 1fr; max-width: 100%; }
  .droute-item { padding: 14px 16px; gap: 12px; }
  .droute-item .dt, .droute-item .ds { overflow-wrap: anywhere; }
  .modnav-wrap { top: 74px; }
  /* Touch-friendly chips + a small edge inset so chips are not cut flush to
     the screen edge (a subtle scrollability hint); strip stays horizontal-only. */
  .modnav { padding: 11px 4px; gap: 7px; overflow-y: hidden; }
  .modnav button { padding: 10px 16px; min-height: 40px; }
  .md-side, .md-body { padding: 26px; }
  .cycle { width: 290px; height: 290px; transform: scale(0.95); }
  .pp-panel { padding: 30px 26px; }
  .pp-coord { padding: 20px 22px; }
  .pp-visual { margin-top: 28px; border-radius: var(--r-lg); }
}
