/* =================================================================
   ATAK Sınav Merkezi — Tasarım sistemi
   Konsept: optik form / sınav materyali estetiği.
   Kodlama baloncukları, kenar zamanlama işaretleri, karne tipografisi.
   ================================================================= */

:root {
  /* Marka */
  --claret:      #8E1529;
  --claret-dark: #6E0F1F;
  --claret-soft: #FBEFF1;
  --pine:        #1D4D35;
  --pine-dark:   #123626;
  --pine-soft:   #EAF2ED;
  --brass:       #A8801F;
  --brass-soft:  #FAF3E2;

  /* Zemin */
  --paper:   #F4F3EF;
  --paper-2: #FAFAF8;
  --white:   #FFFFFF;

  /* Metin */
  --ink:     #12161C;
  --ink-2:   #5C6673;
  --ink-3:   #8A93A0;

  /* Çizgi */
  --line:      #E2E0D9;
  --line-soft: #EDEBE5;
  --line-hard: #CFCCC2;

  /* Tipografi */
  --font-display: 'Archivo', 'Archivo Expanded', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-data:    'JetBrains Mono', 'SF Mono', 'Consolas', ui-monospace, monospace;

  /* Ölçü */
  --wrap: 1240px;
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;

  /* Navbar yüksekliği: mobil menünün açılma noktası da buna bağlı,
     tek yerden değiştirilsin diye değişken. */
  --nav-h: 84px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Gölge — kağıt hissi için düşük ve sıcak */
  --sh-1: 0 1px 2px rgba(18,22,28,.05), 0 1px 1px rgba(18,22,28,.03);
  --sh-2: 0 2px 6px rgba(18,22,28,.06), 0 8px 24px rgba(18,22,28,.05);
  --sh-3: 0 12px 40px rgba(18,22,28,.10), 0 2px 8px rgba(18,22,28,.05);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------- Sıfırlama ---------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
p  { margin: 0 0 1em; }

::selection { background: var(--claret); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* ---------------- Yerleşim ---------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--paper { background: var(--paper-2); }
.section--white { background: var(--white); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-3 > .pkg, .grid-2 > .pkg { height: 100%; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stack   { display: flex; flex-direction: column; gap: 16px; }
.row     { display: flex; align-items: center; gap: 12px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.spacer  { flex: 1; }

/* =================================================================
   İMZA ÖĞESİ — Optik form dili
   ================================================================= */

/* Kodlama baloncuğu: sınav türü rozetleri bunun üzerine kurulu */
.bubble {
  --bubble: var(--claret);
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 2px solid var(--bubble);
  flex: 0 0 auto;
  position: relative;
}
.bubble--filled { background: var(--bubble); box-shadow: inset 0 0 0 2px var(--white); }
.bubble--pine   { --bubble: var(--pine); }
.bubble--brass  { --bubble: var(--brass); }

/* Kenar zamanlama işaretleri — gerçek optik formun kenarındaki siyah bloklar */
.timing-marks {
  display: flex; gap: 5px; align-items: center;
}
.timing-marks i {
  display: block;
  width: 3px; height: 11px;
  background: var(--ink);
  opacity: .18;
  border-radius: 1px;
}
.timing-marks i:nth-child(3n) { opacity: .38; height: 14px; }

/* Optik form şeridi — hero karnesinin üst bandı */
.optic-strip {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  background: repeating-linear-gradient(
    90deg, transparent 0 9px, rgba(18,22,28,.07) 9px 12px
  );
  border-block: 1px solid var(--line);
}

/* Bölüm etiketi: optik formdaki alan başlığı gibi */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-data);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--claret); flex: 0 0 auto;
}
.eyebrow--pine::before  { background: var(--pine); }
.eyebrow--brass::before { background: var(--brass); }

/* Kayıt köşe işareti — optik formun 3 köşesindeki hizalama kareleri */
.corner-marks { position: relative; }
.corner-marks::before,
.corner-marks::after {
  content: ''; position: absolute; width: 9px; height: 9px;
  background: var(--ink); opacity: .82; border-radius: 1px;
  pointer-events: none;
}
.corner-marks::before { top: 12px; left: 12px; }
.corner-marks::after  { top: 12px; right: 12px; }

/* =================================================================
   Bileşenler
   ================================================================= */

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  background: var(--claret);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center;
}
.btn:hover  { background: var(--claret-dark); transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }

.btn--pine    { background: var(--pine); }
.btn--pine:hover { background: var(--pine-dark); }
.btn--ghost   { background: transparent; color: var(--ink); border-color: var(--line-hard); }
.btn--ghost:hover { background: var(--white); border-color: var(--ink); box-shadow: var(--sh-1); }
.btn--light   { background: var(--white); color: var(--claret); }
.btn--light:hover { background: var(--paper); }
.btn--sm      { padding: 8px 15px; font-size: .82rem; border-radius: var(--r-xs); }
.btn--xs      { padding: 5px 11px; font-size: .74rem; border-radius: var(--r-xs); gap: 5px; }
.btn--block   { width: 100%; }
.btn--danger  { background: #A32424; }
.btn--danger:hover { background: #7E1A1A; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

/* ---- Rozetler ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 7px;
  border-radius: 100px;
  font-family: var(--font-data);
  font-size: .7rem; font-weight: 600; letter-spacing: .05em;
  background: var(--claret-soft); color: var(--claret-dark);
  border: 1px solid rgba(142,21,41,.16);
  white-space: nowrap;
}
.badge--pine  { background: var(--pine-soft);  color: var(--pine-dark);  border-color: rgba(29,77,53,.18); }
.badge--brass { background: var(--brass-soft); color: #6E5311;           border-color: rgba(168,128,31,.22); }
.badge--muted { background: var(--paper);      color: var(--ink-2);      border-color: var(--line); }
.badge .bubble { width: 9px; height: 9px; border-width: 1.5px; }

/* ---- Kartlar ---- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card--hover:hover { border-color: var(--line-hard); box-shadow: var(--sh-2); transform: translateY(-2px); }
.card--flat { box-shadow: none; }
.card__title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; margin: 0 0 6px; }
.card__meta  { font-family: var(--font-data); font-size: .74rem; color: var(--ink-3); letter-spacing: .04em; }

/* ---- Veri tipografisi (karne hissi) ---- */
.data     { font-family: var(--font-data); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.data-xl  { font-family: var(--font-data); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; letter-spacing: -.045em; line-height: 1; }
.data-lg  { font-family: var(--font-data); font-size: 1.5rem; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.data-sm  { font-family: var(--font-data); font-size: .78rem; letter-spacing: .02em; }

/* =================================================================
   Duyuru şeridi + Navbar
   ================================================================= */
.announce {
  background: var(--pine);
  color: #E8F0EA;
  font-size: .82rem;
  padding: 9px 0;
  overflow: hidden;
}
.announce .wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.announce b { color: #fff; font-weight: 700; }
.announce .data-sm { color: #B9D4C2; }
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,248,.93);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.nav__logo  { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.nav__logo img { height: 54px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.05; }
.nav__logo-text strong {
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 800;
  letter-spacing: -.03em; color: var(--claret);
}
.nav__logo-text span {
  font-family: var(--font-data); font-size: .63rem; letter-spacing: .17em;
  text-transform: uppercase; color: var(--pine); font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav__links a {
  padding: 9px 14px; border-radius: var(--r-xs);
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: rgba(18,22,28,.04); }
.nav__links a.is-active { color: var(--claret); background: var(--claret-soft); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.nav__toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line-hard); border-radius: var(--r-xs);
  background: var(--white); cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle span { display: block; width: 17px; height: 2px; background: var(--ink); position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0; width: 17px; height: 2px; background: var(--ink);
}
.nav__toggle span::before { top: -5px; } .nav__toggle span::after { top: 5px; }

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 460px at 88% -12%, rgba(29,77,53,.07), transparent 62%),
    radial-gradient(760px 380px at 4% 8%, rgba(142,21,41,.055), transparent 58%),
    var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
  padding-block: clamp(48px, 6.5vw, 88px);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal; color: var(--claret);
  position: relative; white-space: nowrap;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .08em; height: .28em;
  background: rgba(168,128,31,.24); z-index: -1; border-radius: 2px;
}
.hero__lead { font-size: 1.09rem; color: var(--ink-2); max-width: 52ch; margin-bottom: 28px; }
.hero__cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__note {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-data); font-size: .74rem; color: var(--ink-3); letter-spacing: .03em;
}

/* Hero karnesi — sayfanın tezi: "geri aldığınız şey bu" */
.report {
  background: var(--white);
  border: 1px solid var(--line-hard);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
  position: relative;
}
.report__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 20px 22px 16px;
}
.report__title { font-family: var(--font-display); font-size: 1.02rem; font-weight: 800; margin: 0 0 3px; }
.report__sub   { font-family: var(--font-data); font-size: .68rem; color: var(--ink-3); letter-spacing: .07em; text-transform: uppercase; }
.report__score { text-align: right; flex: 0 0 auto; }
.report__score .data-xl { color: var(--claret); }
.report__score span { display: block; font-family: var(--font-data); font-size: .63rem; letter-spacing: .13em; color: var(--ink-3); text-transform: uppercase; }

.report__body { padding: 18px 22px 22px; }

.subject-row {
  display: grid; grid-template-columns: 108px 1fr 52px; gap: 12px; align-items: center;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
}
.subject-row:last-of-type { border-bottom: 0; }
.subject-row__name { font-size: .84rem; font-weight: 600; color: var(--ink-2); }
.subject-row__bar  { height: 7px; background: var(--line-soft); border-radius: 100px; overflow: hidden; }
.subject-row__fill {
  height: 100%; border-radius: 100px; background: var(--pine);
  transform-origin: left; animation: growBar 1.1s var(--ease) both;
}
.subject-row__fill--claret { background: var(--claret); }
.subject-row__fill--brass  { background: var(--brass); }
.subject-row__net {
  font-family: var(--font-data); font-size: .84rem; font-weight: 700;
  text-align: right; font-variant-numeric: tabular-nums;
}

@keyframes growBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.report__foot {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 14px 22px; background: var(--paper);
  border-top: 1px solid var(--line);
}
.report__stat { text-align: center; flex: 1; }
.report__stat b { display: block; font-family: var(--font-data); font-size: 1.02rem; font-weight: 700; letter-spacing: -.02em; }
.report__stat span { font-family: var(--font-data); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* Hero carousel */
.hero__slides { position: relative; }
.hero__slide  { display: none; }
.hero__slide.is-active { display: block; animation: fadeSlide .5s var(--ease) both; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.hero__dots { display: flex; gap: 7px; justify-content: center; margin-top: 18px; }
.hero__dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%;
  border: 1.5px solid var(--line-hard); background: transparent; cursor: pointer;
  transition: all .2s var(--ease);
}
.hero__dots button.is-active { background: var(--claret); border-color: var(--claret); width: 24px; border-radius: 100px; }

/* =================================================================
   İstatistik şeridi
   ================================================================= */
.stats { border-block: 1px solid var(--line); background: var(--white); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 30px 24px; border-right: 1px solid var(--line); text-align: center; }
.stats__item:last-child { border-right: 0; }
.stats__item b {
  display: block; font-family: var(--font-data); font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 700; letter-spacing: -.045em; color: var(--claret); line-height: 1;
}
.stats__item span { display: block; margin-top: 7px; font-size: .82rem; color: var(--ink-2); }

/* =================================================================
   Bento
   ================================================================= */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bento__cell {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px; position: relative; overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.bento__cell:hover { border-color: var(--line-hard); box-shadow: var(--sh-2); }
.bento__cell--wide { grid-column: span 2; }
.bento__cell--pine  { background: var(--pine); border-color: var(--pine); color: #E6EFE9; }
.bento__cell--pine h3 { color: #fff; }
.bento__cell--pine p  { color: #B9D4C2; }
.bento__num {
  font-family: var(--font-data); font-size: .66rem; letter-spacing: .16em;
  color: var(--ink-3); text-transform: uppercase; margin-bottom: 14px; display: block;
}
.bento__cell--pine .bento__num { color: rgba(255,255,255,.5); }
.bento__cell h3 { font-size: 1.1rem; margin-bottom: 8px; }
.bento__cell p  { font-size: .92rem; color: var(--ink-2); margin: 0; }

/* =================================================================
   Paket kartları
   ================================================================= */
/* ============================================================
   Paket kartları
   ============================================================
   Kart içeriği dört sabit bölgeye ayrıldı: başlık, sayılar,
   maddeler, buton. Izgara satırı içindeki kartlar aynı yüksekliği
   paylaşır; maddeler bölümü esneyerek butonu daima alta yaslar. */
.pkg {
  --pkg-tint: var(--claret);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; height: 100%;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.pkg:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--line-hard); }

/* Seviye rengi: aynı tonun %15 opaklıklı zemini */
.pkg--claret { --pkg-tint: #8E1529; }
.pkg--pine   { --pkg-tint: #1D4D35; }
.pkg--brass  { --pkg-tint: #A8801F; }

.pkg__head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  padding: 24px 24px 20px;
  background: var(--paper-2);
  background: color-mix(in srgb, var(--pkg-tint) 15%, #fff);
  border-bottom: 1px solid var(--line);
  border-bottom-color: color-mix(in srgb, var(--pkg-tint) 22%, #fff);
  min-height: 132px;
}
.pkg h3 {
  font-size: 1.14rem; margin: 0; line-height: 1.25;
  letter-spacing: -.01em;
}
.pkg__pub {
  font-family: var(--font-data); font-size: .68rem; color: var(--ink-2);
  letter-spacing: .05em; margin: 0; text-transform: uppercase;
}

/* Öne çıkan kart: aynı iskelet, güçlü çerçeve */
.pkg--featured { border: 2px solid var(--pkg-tint); box-shadow: var(--sh-2); }
.pkg--featured::before {
  content: attr(data-flag);
  position: absolute; top: 0; right: 0;
  background: var(--pkg-tint); color: #fff;
  padding: 5px 14px; border-radius: 0 0 0 12px;
  font-family: var(--font-data); font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  z-index: 1;
}
.pkg--featured .pkg__head { padding-right: 108px; }

.pkg__facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.pkg__fact { display: flex; flex-direction: column; gap: 2px; text-align: center; min-width: 0; }
.pkg__fact + .pkg__fact { border-left: 1px solid var(--line-soft); }
.pkg__fact b {
  font-family: var(--font-data); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--pkg-tint); line-height: 1.2;
}
.pkg__fact span {
  font-size: .66rem; color: var(--ink-3);
  letter-spacing: .06em; text-transform: uppercase;
}

.pkg__list {
  list-style: none; margin: 0; padding: 20px 24px;
  display: flex; flex-direction: column; gap: 9px;
  flex: 1;
}
.pkg__list li {
  position: relative; padding-left: 20px;
  font-size: .85rem; line-height: 1.45; color: var(--ink-2);
}
.pkg__list li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  background: color-mix(in srgb, var(--pkg-tint) 22%, #fff);
  border: 1.5px solid var(--pkg-tint);
}

.pkg__foot {
  padding: 0 24px 22px;
  display: flex; flex-direction: column; gap: 9px;
}
.pkg__note {
  margin: 0; font-size: .72rem; line-height: 1.45;
  color: var(--ink-3); text-align: center;
}

/* Öne çıkan kartın butonu seviye rengini alsın */
.pkg--featured .btn:not(.btn--ghost) {
  background: var(--pkg-tint); border-color: var(--pkg-tint);
}
.pkg--featured .btn:not(.btn--ghost):hover { filter: brightness(1.08); }

@media (max-width: 900px) {
  .pkg__head { min-height: 0; padding: 20px 20px 16px; }
  .pkg--featured .pkg__head { padding-right: 100px; }
  .pkg__facts { padding: 14px 18px; }
  .pkg__list { padding: 16px 20px; }
  .pkg__foot { padding: 0 20px 18px; }
}
.pkg__fact { flex: 1; }
.pkg__fact b { display: block; font-family: var(--font-data); font-size: 1.1rem; font-weight: 700; }
.pkg__fact span { font-size: .72rem; color: var(--ink-3); }

/* =================================================================
   Takvim
   ================================================================= */
.cal { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--paper-2);
  flex-wrap: wrap;
}
.cal__month { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin: 0; }
.cal__nav { display: flex; gap: 8px; }
.cal__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.cal__weekdays span {
  padding: 11px 8px; text-align: center;
  font-family: var(--font-data); font-size: .68rem; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-2); font-weight: 600;
}
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal__day {
  min-height: 106px; padding: 8px; border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft); position: relative;
}
.cal__day:nth-child(7n) { border-right: 0; }
.cal__day--other { background: var(--paper-2); }
.cal__day--today { background: var(--brass-soft); }
.cal__day--today .cal__num { color: var(--brass); font-weight: 700; }
.cal__num { font-family: var(--font-data); font-size: .82rem; color: var(--ink-2); display: block; margin-bottom: 6px; }
.cal__day--other .cal__num { color: var(--ink-3); opacity: .5; }

.cal__exam {
  display: block; padding: 5px 7px; margin-bottom: 4px;
  border-radius: var(--r-xs); border-left: 3px solid var(--claret);
  background: var(--claret-soft); font-size: .72rem; line-height: 1.35;
  color: var(--claret-dark); font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cal__exam--pine  { border-left-color: var(--pine);  background: var(--pine-soft);  color: var(--pine-dark); }
.cal__exam--brass { border-left-color: var(--brass); background: var(--brass-soft); color: #6E5311; }
.cal__exam time { font-family: var(--font-data); font-size: .66rem; opacity: .8; }

.cal__dot-list { display: none; gap: 4px; flex-wrap: wrap; }

/* Filtre sekmeleri */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tabs a {
  padding: 8px 16px; border-radius: 100px; border: 1.5px solid var(--line);
  font-size: .84rem; font-weight: 600; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .18s var(--ease); background: var(--white);
}
.tabs a:hover { border-color: var(--line-hard); }
.tabs a.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tabs a.is-active .bubble { --bubble: #fff; }

/* =================================================================
   Tablolar
   ================================================================= */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); }
table.tbl { width: 100%; border-collapse: collapse; font-size: .89rem; }
.tbl thead th {
  text-align: left; padding: 13px 16px; background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-data); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-2); font-weight: 600; white-space: nowrap;
}
.tbl tbody td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--paper-2); }
.tbl .num { font-family: var(--font-data); font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.tbl .actions { display: flex; gap: 6px; justify-content: flex-end; flex-wrap: wrap; }

/* =================================================================
   Formlar
   ================================================================= */
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: .82rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.005em;
}
.field label .req { color: var(--claret); }
.field .hint { font-size: .76rem; color: var(--ink-3); margin-top: 6px; display: block; }

.input, select.input, textarea.input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line-hard); border-radius: var(--r-sm);
  background: var(--white); font-size: .95rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
  appearance: none;
}
select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6673' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.input:focus { outline: none; border-color: var(--claret); box-shadow: 0 0 0 3px rgba(142,21,41,.11); }
.input::placeholder { color: var(--ink-3); }
.input[readonly] { background: var(--paper); color: var(--ink-2); }
textarea.input { min-height: 108px; resize: vertical; line-height: 1.6; }

.input-group { display: flex; }
.input-group__pre {
  display: flex; align-items: center; padding: 0 13px;
  background: var(--paper); border: 1.5px solid var(--line-hard); border-right: 0;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  font-family: var(--font-data); font-size: .88rem; color: var(--ink-2);
}
.input-group .input { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

/* Seçim kartları (paket / merkez / kulüp) */
.choice-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.choice {
  position: relative; display: block; cursor: pointer;
  border: 1.5px solid var(--line-hard); border-radius: var(--r-sm);
  padding: 15px 16px 15px 44px; background: var(--white);
  transition: all .18s var(--ease);
}
.choice:hover { border-color: var(--ink-3); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__dot {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border: 2px solid var(--line-hard); border-radius: 50%;
  transition: all .18s var(--ease);
}
.choice input:checked ~ .choice__dot { border-color: var(--claret); background: var(--claret); box-shadow: inset 0 0 0 3px var(--white); }
.choice:has(input:checked) { border-color: var(--claret); background: var(--claret-soft); }
.choice input:focus-visible ~ .choice__dot { outline: 3px solid var(--brass); outline-offset: 2px; }
.choice__title { display: block; font-weight: 700; font-size: .92rem; }
.choice__meta  { display: block; font-family: var(--font-data); font-size: .72rem; color: var(--ink-3); margin-top: 2px; }

/* Onay kutusu */
.check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; font-size: .88rem; }
.check input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--claret); flex: 0 0 auto; cursor: pointer; }

/* Adım göstergesi — optik form alan numaralandırması */
.steps { display: flex; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.step {
  display: flex; align-items: center; gap: 9px; padding: 0 18px 0 0; position: relative;
  font-family: var(--font-data); font-size: .74rem; color: var(--ink-3); letter-spacing: .04em;
}
.step b {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-hard);
  display: grid; place-items: center; font-size: .7rem; flex: 0 0 auto;
}
.step.is-done b   { background: var(--pine); border-color: var(--pine); color: #fff; }
.step.is-active   { color: var(--claret); }
.step.is-active b { background: var(--claret); border-color: var(--claret); color: #fff; }

/* Uyarı kutuları */
.alert {
  padding: 14px 18px; border-radius: var(--r-sm); font-size: .89rem;
  border: 1px solid; display: flex; gap: 11px; align-items: flex-start; margin-bottom: 18px;
}
.alert--ok    { background: var(--pine-soft);   border-color: rgba(29,77,53,.22);  color: var(--pine-dark); }
.alert--error { background: var(--claret-soft); border-color: rgba(142,21,41,.22); color: var(--claret-dark); }
.alert--info  { background: var(--brass-soft);  border-color: rgba(168,128,31,.26); color: #6E5311; }
.alert b { font-weight: 700; }

/* Boş durum */
.empty {
  text-align: center; padding: 56px 24px; border: 1.5px dashed var(--line-hard);
  border-radius: var(--r-md); background: var(--paper-2);
}
.empty__marks { display: flex; gap: 5px; justify-content: center; margin-bottom: 16px; }
.empty h3 { font-size: 1.05rem; margin-bottom: 6px; }
.empty p { color: var(--ink-2); font-size: .92rem; margin: 0 auto 18px; max-width: 46ch; }

/* =================================================================
   Merkez kartı
   ================================================================= */
.center-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.center-card:hover { border-color: var(--line-hard); box-shadow: var(--sh-2); }
.center-card__city {
  font-family: var(--font-data); font-size: .68rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--pine); font-weight: 600;
}
.center-card h3 { font-size: 1.05rem; margin: 0; }
.center-card__addr { font-size: .87rem; color: var(--ink-2); margin: 0; flex: 1; }
.center-card__foot { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--line-soft); }

/* =================================================================
   Yayınevi logo şeridi
   ================================================================= */
.marquee { overflow: hidden; padding: 8px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 52px; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 700;
  color: var(--ink-3); letter-spacing: -.02em; white-space: nowrap; opacity: .62;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.marquee__item:hover { opacity: 1; color: var(--pine); }
@keyframes slide { to { transform: translateX(-50%); } }

/* =================================================================
   CTA bandı
   ================================================================= */
.cta-band {
  background: var(--claret); color: #fff; border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px); position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,.045) 26px 30px);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p  { color: rgba(255,255,255,.82); max-width: 56ch; position: relative; }
.cta-band .btn { position: relative; }

/* =================================================================
   Footer
   ================================================================= */
.footer { background: var(--ink); color: #A9B2BE; padding-block: 56px 28px; margin-top: auto; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 {
  color: #fff; font-family: var(--font-data); font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; margin: 0 0 16px; font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a { font-size: .88rem; color: #A9B2BE; transition: color .16s var(--ease); }
.footer a:hover { color: #fff; }
.footer__brand img { height: 52px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { font-size: .88rem; color: #8A93A0; max-width: 34ch; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-data); font-size: .74rem; color: #6E7885;
}

/* =================================================================
   Panel (admin / temsilci / öğrenci)
   ================================================================= */
.panel { display: grid; grid-template-columns: 258px 1fr; min-height: 100vh; }
.panel__side {
  background: var(--ink); color: #A9B2BE; padding: 22px 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.panel__brand { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 16px; }
.panel__brand a { display: flex; align-items: center; gap: 10px; }
.panel__brand img { height: 36px; filter: brightness(0) invert(1); }
.panel__brand strong { font-family: var(--font-display); color: #fff; font-size: .95rem; letter-spacing: -.02em; }
.panel__brand span { display: block; font-family: var(--font-data); font-size: .58rem; letter-spacing: .16em; color: #6E7885; text-transform: uppercase; }

.panel__nav { padding: 0 12px; }
.panel__group {
  font-family: var(--font-data); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: #565F6B; padding: 16px 10px 7px;
}
.panel__nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r-xs); font-size: .87rem; font-weight: 600;
  color: #A9B2BE; transition: background .16s var(--ease), color .16s var(--ease);
}
.panel__nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.panel__nav a.is-active { background: var(--claret); color: #fff; }
.panel__nav a .count {
  margin-left: auto; font-family: var(--font-data); font-size: .68rem;
  background: rgba(255,255,255,.14); padding: 1px 7px; border-radius: 100px;
}
.panel__nav a.is-active .count { background: rgba(255,255,255,.24); }

.panel__main { background: var(--paper); min-width: 0; }
.panel__top {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 16px 28px; display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 30; flex-wrap: wrap;
}
.panel__top h1 { font-size: 1.28rem; margin: 0; }
.panel__top .sub { font-family: var(--font-data); font-size: .72rem; color: var(--ink-3); letter-spacing: .04em; }
.panel__body { padding: 28px; }

.panel__mobile-toggle { display: none; }

/* KPI kartları */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 26px; }
.kpi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px; position: relative; overflow: hidden;
  /* span ve b satır içi öğeler; sütun akışı olmadan etiket ile
     tutar yan yana diziliyordu. */
  display: flex; flex-direction: column; justify-content: center;
  min-height: 104px;
}
.kpi::after {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--claret);
}
.kpi--pine::after  { background: var(--pine); }
.kpi--brass::after { background: var(--brass); }
.kpi__label { display: block; font-family: var(--font-data); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.kpi__value { display: block; font-family: var(--font-data); font-size: 1.7rem; font-weight: 700; letter-spacing: -.04em; margin: 7px 0 2px; line-height: 1.1; }
.kpi__sub   { display: block; font-size: .78rem; color: var(--ink-2); }

/* Grafik (saf CSS sütun) */
.chart { display: flex; align-items: flex-end; gap: 5px; height: 168px; padding-top: 12px; }
.chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 0; }
.chart__bar {
  width: 100%; background: linear-gradient(180deg, var(--claret), var(--claret-dark));
  border-radius: 3px 3px 0 0; min-height: 3px; position: relative;
  transition: opacity .16s var(--ease);
}
.chart__col:hover .chart__bar { opacity: .78; }
.chart__bar b {
  position: absolute; top: -19px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-data); font-size: .64rem; color: var(--ink-2); white-space: nowrap;
}
.chart__label { font-family: var(--font-data); font-size: .6rem; color: var(--ink-3); white-space: nowrap; }

/* Cari hesap satırı */
.ledger-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.ledger-row__desc { font-size: .88rem; }
.ledger-row__date { font-family: var(--font-data); font-size: .72rem; color: var(--ink-3); }
.ledger-row__amt  { font-family: var(--font-data); font-weight: 700; white-space: nowrap; }
.ledger-row__amt--debit  { color: var(--claret); }
.ledger-row__amt--credit { color: var(--pine); }

/* =================================================================
   Sınav Giriş Belgesi
   ================================================================= */
.entry-doc {
  background: var(--white); border: 2px solid var(--ink);
  border-radius: var(--r-md); overflow: hidden; max-width: 760px; margin-inline: auto;
}
.entry-doc__head {
  background: var(--ink); color: #fff; padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.entry-doc__head img { height: 46px; filter: brightness(0) invert(1); }
.entry-doc__head h2 { color: #fff; font-size: 1.15rem; margin: 0; }
.entry-doc__head span { font-family: var(--font-data); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); }

.entry-doc__rows { padding: 8px 26px 20px; }
.entry-row {
  display: grid; grid-template-columns: 168px 1fr; gap: 16px;
  padding: 13px 0; border-bottom: 1px dashed var(--line);
}
.entry-row:last-child { border-bottom: 0; }
.entry-row dt {
  font-family: var(--font-data); font-size: .68rem; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-2); padding-top: 3px;
}
.entry-row dd { margin: 0; font-size: 1rem; font-weight: 600; }
.entry-row dd small { display: block; font-weight: 450; font-size: .84rem; color: var(--ink-2); margin-top: 2px; }
.entry-row--big dd { font-family: var(--font-data); font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; }

.entry-doc__warn {
  background: var(--brass-soft); border-top: 1px solid rgba(168,128,31,.3);
  padding: 16px 26px; font-size: .85rem; color: #6E5311;
}
.entry-doc__warn b { display: block; margin-bottom: 4px; }
.entry-doc__actions { display: flex; gap: 10px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* =================================================================
   Yazdırma görünümü
   ================================================================= */
@media print {
  .nav, .announce, .footer, .panel__side, .panel__top,
  .entry-doc__actions, .no-print { display: none !important; }
  body { background: #fff; }
  .panel { display: block; }
  .panel__body { padding: 0; }
  .entry-doc { border: 1.5px solid #000; box-shadow: none; max-width: 100%; }
  .entry-doc__head { background: #fff !important; color: #000 !important; border-bottom: 1.5px solid #000; }
  .entry-doc__head h2, .entry-doc__head span { color: #000 !important; }
  .entry-doc__head img { filter: none !important; }
  a[href]::after { content: ''; }
  @page { margin: 14mm; }
}

/* =================================================================
   Yardımcı sınıflar
   ================================================================= */
.muted    { color: var(--ink-2); }
.dim      { color: var(--ink-3); }
.small    { font-size: .84rem; }
.tiny     { font-size: .74rem; }
.center   { text-align: center; }
.right    { text-align: right; }
.mt-0 { margin-top: 0; }    .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }  .mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; } .mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; } .mb-3 { margin-bottom: 24px; }
.mt-4 { margin-top: 36px; } .mb-4 { margin-bottom: 36px; }
.claret { color: var(--claret); } .pine { color: var(--pine); } .brass { color: var(--brass); }
.nowrap { white-space: nowrap; }
.hide   { display: none !important; }

.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head p { color: var(--ink-2); font-size: 1.02rem; margin: 0; }
.section-head--center { margin-inline: auto; text-align: center; }

.divider { height: 1px; background: var(--line); border: 0; margin-block: 28px; }

.prose { max-width: 68ch; }
.prose p { font-size: 1.02rem; color: var(--ink-2); line-height: 1.75; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-size: 1.15rem; }
.prose ul, .prose ol { color: var(--ink-2); padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }

/* =================================================================
   Duyarlılık
   ================================================================= */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .panel { grid-template-columns: 1fr; }
  .panel__side {
    position: fixed; left: 0; top: 0; width: 258px; z-index: 90;
    transform: translateX(-100%); transition: transform .26s var(--ease);
    box-shadow: var(--sh-3);
  }
  .panel__side.is-open { transform: none; }
  .panel__mobile-toggle { display: inline-flex; }
}

@media (max-width: 980px) {
  .nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 12px; gap: 2px;
    display: none; box-shadow: var(--sh-2);
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { gap: 16px; }
  /* Dar ekranda logo yine büyük ama şerit alçalır */
  :root { --nav-h: 72px; }
  .nav__logo img { height: 46px; }
  .nav__logo-text strong { font-size: 1.1rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2n) { border-right: 0; }
  .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .bento__cell--wide { grid-column: span 2; }
  .entry-row { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 700px) {
  .wrap { padding-inline: 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .panel__body { padding: 18px; }
  .panel__top { padding: 14px 18px; }

  /* Takvim mobilde grid'i korur; sınavlar noktaya döner (§6) */
  .cal__day { min-height: 62px; padding: 5px 4px; }
  .cal__exam { display: none; }
  .cal__dot-list { display: flex; }
  .cal__dot-list .bubble { width: 8px; height: 8px; border-width: 1.5px; }
  .cal__weekdays span { font-size: .58rem; letter-spacing: .05em; padding: 8px 2px; }
  .cal__num { font-size: .74rem; margin-bottom: 3px; }

  .subject-row { grid-template-columns: 84px 1fr 44px; gap: 8px; }
  .report__foot { flex-wrap: wrap; }
  .ledger-row { grid-template-columns: 1fr auto; }
}

@media (max-width: 560px) {
  .hero__cta .btn { width: 100%; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps { gap: 4px; }
  .step span { display: none; }
  .step { padding-right: 8px; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.85rem; }
  .card { padding: 18px; }
  :root { --nav-h: 66px; }
  .nav__logo img { height: 40px; }
  .nav__logo { gap: 10px; }
  .nav__logo-text strong { font-size: 1rem; }
  .nav__logo-text span { font-size: .56rem; letter-spacing: .14em; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
}

/* ============================================================
   Paket grupları (ana sayfa)
   ============================================================ */
.pkg-group { margin-bottom: 42px; }
.pkg-group:last-of-type { margin-bottom: 0; }

.pkg-group__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pkg-group__head h3 {
  margin: 0; font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: -.01em;
}
.pkg-group__head .data-sm { margin-left: auto; }

@media (max-width: 700px) {
  .pkg-group { margin-bottom: 32px; }
}

/* ============================================================
   Panel özet ekranı — bantlı yerleşim
   ============================================================ */
.dash { display: flex; flex-direction: column; gap: 26px; }

/* Sıradaki oturum bandı */
.dash__banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 3px solid var(--claret);
  border-radius: 14px; padding: 16px 20px;
}
.dash__banner-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dash__banner-title { font-family: var(--font-display); font-size: 1.05rem; }
.dash__banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Bant başlıkları */
.dash__row { display: flex; flex-direction: column; gap: 12px; }
.dash__label {
  margin: 0; font-family: var(--font-body); font-weight: 600;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}

/* Eşit genişlikte kart ızgarası — kartlar aynı yükseklikte hizalanır */
.dash__cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.statcard {
  display: flex; flex-direction: column; gap: 5px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  min-height: 104px; justify-content: center;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
a.statcard:hover {
  border-color: var(--claret); transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 22, 28, .07);
}
.statcard--static { cursor: default; }
.statcard--accent { border-color: rgba(168, 128, 31, .45); background: #FDFBF5; }
.statcard--claret .statcard__value { color: var(--claret); }

.statcard__label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.statcard__value {
  font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700;
  line-height: 1.15; letter-spacing: -.02em;
}
.statcard__hint { font-size: .76rem; color: var(--ink-3); }

/* Alt bölüm: listeler + yan sütun */
.dash__main {
  display: grid; gap: 22px;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
}
.dash__lists { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dash__side  { display: flex; flex-direction: column; gap: 18px; }

/* Başlık + gövde + alt aksiyon yapısı olan kart */
.panel-card--flush { padding: 0; display: flex; flex-direction: column; }
.panel-card__head {
  display: flex; align-items: center; gap: 9px;
  padding: 15px 18px; border-bottom: 1px solid var(--line);
}
.panel-card__head h3 { margin: 0; font-size: 1rem; font-family: var(--font-display); }
.panel-card__head > a:last-child { margin-left: auto; }
.panel-card__empty { margin: 0; padding: 22px 18px; font-size: .87rem; color: var(--ink-3); }
.panel-card__foot { padding: 12px 18px; border-top: 1px solid var(--line); }

/* Liste akışı */
.feed { list-style: none; margin: 0; padding: 0; }
.feed__item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 18px; border-bottom: 1px solid var(--line-soft);
}
.feed__item:last-child { border-bottom: 0; }
.feed__body { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.feed__body strong {
  font-size: .89rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.feed__meta {
  font-size: .74rem; color: var(--ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.feed__side { text-align: right; flex: 0 0 auto; display: flex; flex-direction: column; gap: 1px; }

/* Sık kullanılan bağlantılar */
.quick { display: flex; flex-direction: column; gap: 2px; }
.quick__item {
  display: flex; flex-direction: column; gap: 1px;
  padding: 10px 12px; border-radius: 9px;
  transition: background .16s ease;
}
.quick__item:hover { background: var(--claret-soft); }
.quick__title { font-size: .87rem; font-weight: 600; }
.quick__desc  { font-size: .74rem; color: var(--ink-3); }

/* Yönetim kısayolları */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: .78rem; padding: 6px 11px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-2);
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}
.chip:hover { border-color: var(--claret); color: var(--claret); background: var(--claret-soft); }

@media (max-width: 1080px) {
  .dash__main  { grid-template-columns: 1fr; }
  .dash__side  { flex-direction: row; flex-wrap: wrap; }
  .dash__side > * { flex: 1 1 280px; }
}
@media (max-width: 760px) {
  .dash { gap: 20px; }
  .dash__lists { grid-template-columns: 1fr; }
  .dash__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .statcard { min-height: 92px; padding: 13px 14px; }
  .statcard__value { font-size: 1.35rem; }
  .dash__banner { flex-direction: column; align-items: flex-start; }
  .dash__side { flex-direction: column; }
}
@media (max-width: 420px) {
  .dash__cards { grid-template-columns: 1fr; }
}

/* Kayan şeritte yayınevi logoları */
.marquee__item--logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 26px;
}
.marquee__item--logo img {
  max-height: 40px; max-width: 132px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .55;
  transition: filter .22s ease, opacity .22s ease;
}
.marquee:hover .marquee__item--logo img,
.marquee__item--logo:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 560px) {
  .marquee__item--logo { height: 42px; padding: 0 16px; }
  .marquee__item--logo img { max-height: 30px; max-width: 100px; }
}

/* ============================================================
   Yönetim ekranı: form solda, liste sağda
   ============================================================
   Formlar DOM'da listeden sonra geliyor (mobilde önce içeriği
   görmek doğru). Masaüstünde `order` ile sola alınıyor; böylece
   HTML'i bozmadan iki farklı okuma sırası elde ediliyor. */
.panel-split {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.panel-split > :first-child { order: 2; min-width: 0; }
.panel-split > :last-child  { order: 1; min-width: 0; }

/* DOM sırası zaten doğru olan ekranlar (form önce yazılmış) */
.panel-split--keep { grid-template-columns: minmax(0, 1fr) 340px; }
.panel-split--keep > :first-child { order: 1; }
.panel-split--keep > :last-child  { order: 2; }

/* Form sütunu ekranla birlikte kayar, uzun listelerde kaybolmaz */
.panel-split > :last-child > .panel-card:first-child { position: sticky; top: 88px; }
.panel-split--keep > :last-child > .panel-card:first-child { position: sticky; top: 88px; }

@media (max-width: 1100px) {
  .panel-split,
  .panel-split--keep { grid-template-columns: 1fr; }
  /* Tek sütuna düşünce form yeniden yukarı alınır: ekleme yapmaya
     gelen kullanıcı listeyi kaydırmak zorunda kalmasın. */
  .panel-split > :first-child { order: 2; }
  .panel-split > :last-child  { order: 1; }
  .panel-split > * > .panel-card:first-child,
  .panel-split--keep > * > .panel-card:first-child { position: static; }
}

/* ============================================================
   Yönetim kartları ve araç çubuğu
   ============================================================ */
.panel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  position: relative;
}
.panel-card + .panel-card { margin-top: 18px; }

/* Form kartı: sol sütunda dururken kendini belli etsin */
.panel-card:has(> form),
form.panel-card {
  border-color: var(--line-hard);
  box-shadow: 0 1px 2px rgba(18, 22, 28, .04), 0 8px 24px rgba(18, 22, 28, .05);
}
form.panel-card::before,
.panel-card:has(> form)::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: var(--claret); border-radius: var(--r-md) 0 0 var(--r-md);
}

.panel-card--flush { padding: 0; overflow: hidden; }
.panel-card--flush::before { display: none; }

.panel-card__head {
  background: linear-gradient(180deg, var(--paper-2), var(--white));
}

/* Üstteki filtre / aksiyon şeridi */
.panel-toolbar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px 16px;
}
.panel-toolbar .input { min-width: 0; }

/* KPI kartlarını dashboard kartlarıyla aynı dile getir */
.kpi {
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.kpi:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(18, 22, 28, .07); }
.kpi__hint { display: block; font-size: .76rem; color: var(--ink-3); margin-top: 2px; }
.kpi--accent { background: #FDFBF5; border-color: rgba(168, 128, 31, .4); }
.kpi--accent::after { background: var(--brass); }

/* Tabloyu kart içine gömerken çift çerçeve oluşmasın */
.panel-card > .table-wrap { border: 0; border-radius: 0; margin: 0 -22px -22px; width: auto; }
.panel-card > .table-wrap:first-child { margin-top: -22px; }

/* Tablo okunabilirliği */
.tbl thead th {
  background: var(--paper-2);
  position: sticky; top: 0; z-index: 2;
}
.tbl tbody tr { transition: background .14s var(--ease); }
.tbl tfoot th {
  background: var(--paper-2); font-family: var(--font-data);
  padding: 12px 16px; border-top: 2px solid var(--line-hard);
}

/* Açılır kayıt satırları (ön kayıt / kayıt listesi) */
details.panel-card > summary { border-radius: var(--r-md); transition: background .14s var(--ease); }
details.panel-card > summary::-webkit-details-marker { display: none; }
details.panel-card > summary::after {
  content: '⌄'; margin-left: 10px; color: var(--ink-3);
  font-size: 1.1rem; line-height: 1; transition: transform .18s var(--ease);
}
details.panel-card[open] > summary::after { transform: rotate(180deg); }
details.panel-card > summary:hover { background: var(--paper-2); }
details.panel-card[open] { border-color: var(--line-hard); }
details.panel-card[open] > summary { background: var(--paper-2); }

/* Boş durum kutusu panelde daha sakin */
.panel__body .empty { background: var(--white); border: 1px dashed var(--line-hard); border-radius: var(--r-md); }

@media (max-width: 760px) {
  .panel__body { padding: 18px 14px; }
  .panel-card { padding: 16px; }
  .panel-card > .table-wrap { margin: 0 -16px -16px; }
  .panel-toolbar { padding: 10px 12px; }
}

/* ============================================================
   Ön kayıt kartı — bilgi / atama / açıklama / onay
   ============================================================ */
.reg { padding: 0; overflow: hidden; }
.reg::before { display: none; }

.reg__summary {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; cursor: pointer; list-style: none;
}
.reg__summary::-webkit-details-marker { display: none; }

.reg__avatar {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--claret-soft); color: var(--claret);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.reg__ident { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.reg__ident strong { font-size: .95rem; }
.reg__meta {
  font-size: .76rem; color: var(--ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.reg__tags { display: flex; gap: 5px; flex-wrap: wrap; flex: 0 0 auto; }
.reg__money { flex: 0 0 auto; text-align: right; display: flex; flex-direction: column; gap: 1px; }

.reg[open] .reg__summary { background: var(--paper-2); border-bottom: 1px solid var(--line); }

.reg__body { padding: 0; }

.reg__section { padding: 18px; border-bottom: 1px solid var(--line-soft); }
.reg__section:last-of-type { border-bottom: 0; }
.reg__section--approve { background: var(--paper-2); }

.reg__h {
  margin: 0 0 14px; font-family: var(--font-data);
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}

/* Başvuru bilgileri: etiket üstte, değer altta */
.infogrid {
  display: grid; gap: 14px 22px; margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.infogrid > div { min-width: 0; }
.infogrid dt {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 3px;
}
.infogrid dd {
  margin: 0; font-size: .89rem; line-height: 1.4;
  display: flex; flex-direction: column; gap: 1px;
  overflow-wrap: anywhere;
}
.infogrid dd .tiny { line-height: 1.3; }

/* Yan yana alan dizilimi */
.reg__form {
  display: grid; gap: 0 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: end;
}
.reg__form .field { margin-bottom: 12px; }
.field--action { display: flex; align-items: flex-end; }

/* Silme şeridi */
.reg__danger {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: 12px 18px; border-top: 1px solid var(--line);
  background: #FDF7F8;
}

@media (max-width: 700px) {
  .reg__summary { flex-wrap: wrap; gap: 10px; }
  .reg__money { width: 100%; text-align: left; flex-direction: row; gap: 10px; align-items: baseline; }
  .reg__section { padding: 14px; }
  .infogrid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px 16px; }
}

/* NOT: Öne çıkan kartlar eskiden koyu zeminliydi ve metinleri beyaza
   çevriliyordu. Kart artık beyaz zeminli; o kural kaldırıldı, aksi hâlde
   madde işaretleri ve alt not görünmez oluyordu. */

/* Menüdeki dış bağlantı */
.nav__external { display: inline-flex; align-items: center; gap: 5px; }
.nav__external span { font-size: .78em; opacity: .55; }
.nav__external:hover span { opacity: 1; }

/* ============================================================
   Duyuru penceresi
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 20px;
  opacity: 0; transition: opacity .2s var(--ease);
}
.modal.is-open { opacity: 1; }
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(18, 22, 28, .58);
  backdrop-filter: blur(3px);
}

.modal__box {
  position: relative; z-index: 1;
  width: min(480px, 100%); max-height: 88vh; overflow: auto;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(18, 22, 28, .28);
  transform: translateY(14px) scale(.98);
  transition: transform .24s var(--ease);
}
.modal.is-open .modal__box { transform: none; }

.modal__x {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .85); color: var(--ink-2);
  font-size: 1.35rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.modal__x:hover { background: var(--claret); color: #fff; }

.modal__img { display: block; width: 100%; height: auto; }
.modal__body { padding: 26px 26px 22px; }
.modal__body h2 { font-size: 1.32rem; margin: 6px 0 10px; }
.modal__body p { font-size: .92rem; color: var(--ink-2); margin: 0 0 8px; }

.modal__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}
.modal__actions .btn { flex: 1; min-width: 120px; }

/* Geri sayım */
.modal__timer { margin-top: 14px; }
.modal__bar {
  display: block; height: 3px; border-radius: 100px;
  background: var(--line); overflow: hidden;
}
.modal__bar i {
  display: block; height: 100%; width: 100%;
  background: var(--claret); border-radius: 100px;
}
.modal__count {
  display: block; margin-top: 7px;
  font-size: .72rem; color: var(--ink-3); text-align: center;
}
.modal__timer.is-paused .modal__count::after { content: " — duraklatıldı"; }

/* ============================================================
   Ana ekrana ekleme çubuğu
   ============================================================ */
.a2hs {
  position: fixed; z-index: 190;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 460px; margin-inline: auto;
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line-hard);
  border-radius: var(--r-lg); padding: 14px 16px;
  box-shadow: 0 14px 40px rgba(18, 22, 28, .18);
  transform: translateY(140%); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.a2hs.is-open { transform: none; opacity: 1; }
.a2hs[hidden] { display: none; }

.a2hs img { border-radius: 11px; flex: 0 0 auto; }
.a2hs__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.a2hs__text strong { font-size: .9rem; }
.a2hs__text span { font-size: .76rem; color: var(--ink-3); line-height: 1.4; }
.a2hs__actions { display: flex; flex-direction: column; gap: 6px; flex: 0 0 auto; }

@media (max-width: 520px) {
  .a2hs { flex-wrap: wrap; gap: 12px; }
  .a2hs__actions { flex-direction: row; width: 100%; }
  .a2hs__actions .btn { flex: 1; }
  .modal__body { padding: 20px 18px 18px; }
  .modal__actions .btn { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .modal, .modal__box, .a2hs { transition: none; }
  .modal__bar i { transition: none !important; }
}

/* ============================================================
   Kayıt formu — kargo tercihi ve uyarı şeridi
   ============================================================ */
.notice-strip {
  background: var(--brass-soft);
  border: 1px solid rgba(168, 128, 31, .45);
  border-left: 3px solid var(--brass);
  border-radius: 10px;
  padding: 12px 16px; margin-bottom: 18px;
  font-size: .88rem; color: #6B5210;
}

.ship-grid { display: flex; flex-direction: column; gap: 10px; }

.ship {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--white);
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.ship:hover { border-color: var(--line-hard); }
.ship input { position: absolute; opacity: 0; width: 0; height: 0; }

.ship__dot {
  flex: 0 0 auto; margin-top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line-hard); background: #fff;
  position: relative; transition: border-color .16s var(--ease);
}
.ship input:checked + .ship__dot { border-color: var(--claret); }
.ship input:checked + .ship__dot::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--claret);
}
.ship input:focus-visible + .ship__dot { outline: 2px solid var(--claret); outline-offset: 2px; }

.ship__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ship__text b { font-size: .89rem; font-weight: 600; line-height: 1.4; }
.ship__text small { font-size: .8rem; color: var(--ink-3); }

/* Ücretli / ücretsiz vurguları */
.ship__warn {
  color: #B45309 !important; font-weight: 600;
}
.ship__free {
  color: var(--claret) !important; font-weight: 700;
  letter-spacing: .01em;
}

/* Seçili kart kendi rengini alsın */
.ship--weekly.is-on  { border-color: #B45309; background: #FFF8F0; }
.ship--monthly.is-on { border-color: var(--claret); background: var(--claret-soft); }
.ship--weekly.is-on .ship input:checked + .ship__dot,
.ship--weekly.is-on .ship__dot { border-color: #B45309; }
.ship--weekly.is-on .ship__dot::after { background: #B45309; }

/* ============================================================
   Başvuru detay belgesi (çıktı alınabilir)
   ============================================================ */
.regdoc {
  background: var(--white); border: 1px solid var(--line-hard);
  border-radius: var(--r-lg); overflow: hidden; max-width: 860px;
}
.regdoc__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 18px 22px; background: var(--claret); color: #fff;
}
.regdoc__head h2 { margin: 0; font-size: 1.1rem; color: #fff; }
.regdoc__head span { font-family: var(--font-data); font-size: .72rem; opacity: .82; }
.regdoc__head img { background: #fff; border-radius: 10px; padding: 4px; }
.regdoc__status { text-align: right; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.regdoc__status .tiny { color: rgba(255, 255, 255, .78); }

.regdoc__section { padding: 18px 22px; border-bottom: 1px solid var(--line-soft); }
.regdoc__section:last-of-type { border-bottom: 0; }
.regdoc__section h3 {
  margin: 0 0 14px; font-family: var(--font-data);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}

/* Kargo tercihi vurgusu */
.regdoc__ship {
  margin: 0; padding: 10px 14px; border-radius: 10px;
  font-size: .89rem; font-weight: 600; display: inline-block;
}
.regdoc__ship--none    { background: var(--paper-2); color: var(--ink-2); }
.regdoc__ship--weekly  { background: #FFF8F0; color: #B45309; border: 1px solid rgba(180, 83, 9, .3); }
.regdoc__ship--monthly { background: var(--claret-soft); color: var(--claret); border: 1px solid rgba(142, 21, 41, .28); }

.regdoc__foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 18px 22px; background: var(--paper-2); border-top: 1px solid var(--line);
}
.regdoc__sign {
  min-width: 200px; text-align: center;
  border-top: 1px dashed var(--ink-3); padding-top: 6px;
}
.regdoc__sign span { font-size: .72rem; color: var(--ink-3); }

@media print {
  .regdoc { border: 0; max-width: 100%; }
  .regdoc__head { background: #fff !important; color: var(--ink) !important; border-bottom: 2px solid var(--claret); }
  .regdoc__head h2, .regdoc__head span { color: var(--ink) !important; }
  .regdoc__status .tiny { color: var(--ink-3) !important; }
  .regdoc__section { break-inside: avoid; }
}

/* Kargo bölümü sarmalayıcı — merkez seçimine göre açılıp kapanır */
.ship-wrap { animation: shipIn .22s var(--ease); }
@keyframes shipIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ship-wrap { animation: none; } }

/* ============================================================
   Takvim hücresindeki sınav kartı: ad · yayın · paket
   ============================================================ */
.cal__exam {
  display: flex; flex-direction: column; gap: 1px;
  line-height: 1.25;
}
.cal__exam time { font-weight: 700; opacity: .85; }
.cal__exam b { font-weight: 600; }
.cal__exam i {
  font-style: normal; font-size: .92em; opacity: .72;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Sınav → paket seçim kutuları */
.pkgpick {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 230px; overflow-y: auto;
  border: 1px solid var(--line); border-radius: 12px; padding: 8px;
  background: var(--paper-2);
}
.pkgpick__item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 9px; border-radius: 8px; cursor: pointer;
  background: var(--white); border: 1px solid transparent;
  transition: border-color .14s var(--ease);
}
.pkgpick__item:hover { border-color: var(--line-hard); }
.pkgpick__item input { position: absolute; opacity: 0; width: 0; height: 0; }

.pkgpick__box {
  flex: 0 0 auto; width: 17px; height: 17px; border-radius: 5px;
  border: 2px solid var(--line-hard); background: #fff; position: relative;
  transition: background .14s var(--ease), border-color .14s var(--ease);
}
.pkgpick__item input:checked + .pkgpick__box {
  background: var(--claret); border-color: var(--claret);
}
.pkgpick__item input:checked + .pkgpick__box::after {
  content: ""; position: absolute; left: 4px; top: 1px;
  width: 4px; height: 8px; border: solid #fff;
  border-width: 0 2px 2px 0; transform: rotate(42deg);
}
.pkgpick__item input:focus-visible + .pkgpick__box { outline: 2px solid var(--claret); outline-offset: 2px; }

.pkgpick__text { display: flex; flex-direction: column; gap: 0; min-width: 0; }
.pkgpick__text b { font-size: .84rem; font-weight: 600; }
.pkgpick__text small { font-size: .7rem; color: var(--ink-3); }

@media (max-width: 700px) {
  .cal__exam i { display: none; }
}

/* ============================================================
   Haftanın Sınavı
   ============================================================ */
.wk-day { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.wk-day:last-child { border-bottom: 0; padding-bottom: 0; }
.wk-day__head {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.wk-day__list { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.wk-exam {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper-2);
}
.wk-exam__time {
  flex: 0 0 auto; font-family: var(--font-data); font-weight: 700;
  font-size: .88rem; color: var(--claret);
}
.wk-exam__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.wk-exam__body b { font-size: .87rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wk-exam__body small { font-size: .72rem; color: var(--ink-3); display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.wk-exam__count { flex: 0 0 auto; text-align: center; }
.wk-exam__count b { display: block; font-family: var(--font-data); font-size: 1.1rem; }
.wk-exam__count small { font-size: .66rem; color: var(--ink-3); }

/* ============================================================
   Öğrenci paneli — sonuç / analiz kutucukları
   ============================================================ */
.tiles { display: flex; flex-direction: column; gap: 9px; }

.tile {
  --tile: var(--claret);
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; border-radius: 13px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.tile:hover {
  border-color: var(--tile); transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 22, 28, .08);
}
.tile--claret { --tile: #8E1529; }
.tile--pine   { --tile: #1D4D35; }
.tile--brass  { --tile: #A8801F; }

.tile__icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; gap: 3px;
  background: color-mix(in srgb, var(--tile) 14%, #fff);
}
.tile__icon .bubble { width: 7px; height: 7px; }
.tile__icon .timing-marks { flex-direction: column; gap: 2px; }
.tile__icon .timing-marks i { width: 14px; height: 2px; background: var(--tile); opacity: .75; }

/* Analiz kutucuğundaki mini sütun grafik */
.tile__bar {
  width: 5px; border-radius: 2px; background: var(--tile);
  opacity: .8; align-self: flex-end; margin-bottom: 10px;
}

.tile__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.tile__text b { font-size: .9rem; font-weight: 600; }
.tile__text small { font-size: .74rem; color: var(--ink-3); line-height: 1.35; }

.tile__go {
  flex: 0 0 auto; color: var(--ink-3); font-size: 1rem;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
.tile:hover .tile__go { color: var(--tile); transform: translateX(2px); }
