/* Cese Akademi — kurumsal tasarım sistemi */
:root {
  --blue: #004aac;
  --blue-deep: #00357c;
  --blue-soft: #e8eef8;
  --navy: #071428;
  --navy-2: #0c1d38;
  --gold: #bfae6b;
  --gold-2: #d4c48a;
  --paper: #f4f1ea;
  --paper-2: #ebe6db;
  --white: #fbfaf7;
  --ink: #141820;
  --muted: #5a5f6b;
  --line: rgba(191, 174, 107, 0.42);
  --shadow: 0 18px 50px rgba(7, 20, 40, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --max: 1180px;
  --header: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover { background: var(--blue-deep); }
.btn.is-disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  pointer-events: none;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(191, 174, 107, 0.7);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-line {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-line:hover { background: var(--blue); color: #fff; }
.btn-gold-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold-line:hover { background: var(--navy); color: var(--gold-2); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: 0.25s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
  opacity: 0.55;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1280px, calc(100% - 40px));
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 210px;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(191, 174, 107, 0.18);
  flex-shrink: 0;
  background: #000;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover,
.nav a.is-active { color: var(--gold-2); }

.nav-drop {
  position: relative;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.86);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.nav-drop-toggle:hover,
.nav-drop-toggle.is-active,
.nav-drop.is-open .nav-drop-toggle {
  color: var(--gold-2);
}
.nav-drop-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform 0.18s ease;
}
.nav-drop.is-open .nav-drop-caret,
.mobile-nav-toggle[aria-expanded="true"] .nav-drop-caret {
  transform: rotate(180deg);
}
.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 32px));
  max-height: min(70vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 0 10px;
  background: #fff;
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 20, 40, 0.22);
  z-index: 50;
  scrollbar-gutter: stable;
}
.nav-drop-panel[hidden] { display: none !important; }
.nav-drop-all {
  display: block;
  padding: 10px 16px 12px;
  color: var(--blue) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-bottom: 1px solid rgba(20, 24, 32, 0.08);
}
.nav-drop-empty {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.nav-drop-group + .nav-drop-group {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(20, 24, 32, 0.06);
}
.nav-drop-cat {
  margin: 0;
  padding: 10px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.nav-drop-list {
  list-style: none;
  margin: 0;
  padding: 0 8px 6px;
}
.nav-drop-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 6px;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35;
}
.nav-drop-item:hover {
  background: rgba(0, 74, 172, 0.06);
  color: var(--blue) !important;
}
.nav-drop-thumb {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid rgba(20, 24, 32, 0.06);
}
.nav-drop-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-drop-thumb.is-empty {
  background: linear-gradient(135deg, #eef2f7, #e4e9f0);
}
.nav-drop-title {
  flex: 1;
  min-width: 0;
}

@media (min-width: 981px) {
  .nav-drop-mega {
    position: static;
    display: flex;
    align-items: center;
    align-self: stretch;
  }
  .nav-drop-mega .nav-mega-panel.nav-drop-panel {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    transform: none;
    width: 100vw;
    max-width: none;
    max-height: calc(100vh - var(--header));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 22px 0 28px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(20, 24, 32, 0.08);
    box-shadow: 0 28px 64px rgba(7, 20, 40, 0.22);
  }
  .nav-drop-mega .nav-mega-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 16px;
  }
  .nav-mega-inner {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
    text-align: left;
  }
  .nav-mega-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(20, 24, 32, 0.08);
  }
  .nav-mega-kicker {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-mega-head .nav-drop-all {
    padding: 0;
    border-bottom: 0;
  }
  .nav-mega-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 32px;
    width: 100%;
    direction: ltr;
  }
  .nav-drop-mega .nav-drop-group {
    flex: 0 0 220px;
    width: 220px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: left;
  }
  .nav-drop-mega .nav-drop-group + .nav-drop-group {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .nav-drop-mega .nav-drop-cat {
    padding: 0 8px 8px;
  }
  .nav-drop-mega .nav-drop-list {
    padding: 0;
  }
  .nav-drop-mega .nav-drop-title {
    white-space: normal;
  }
  body:has(.nav-drop-mega.is-open)::before {
    content: "";
    position: fixed;
    inset: var(--header) 0 0;
    background: rgba(7, 20, 40, 0.28);
    z-index: 39;
    pointer-events: none;
  }
}

.site-header.is-solid .nav-drop-toggle {
  color: var(--ink);
}
.site-header.is-solid .nav-drop-toggle:hover,
.site-header.is-solid .nav-drop-toggle.is-active,
.site-header.is-solid .nav-drop.is-open .nav-drop-toggle {
  color: var(--blue);
}

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn { min-height: 42px; padding: 0 16px; }
.header-cart {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
}
.header-cart svg {
  stroke: currentColor;
  color: inherit;
}
.header-cart:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.site-header.is-solid .header-cart {
  color: var(--navy);
}
.site-header.is-solid .header-cart:hover {
  background: rgba(7,20,40,0.05);
  color: var(--navy);
}
.header-cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: #c45c26;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  color: #fff;
  border-radius: 4px;
}

.site-header.is-solid {
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}
.site-header.is-solid .brand,
.site-header.is-solid .nav a,
.site-header.is-solid .menu-btn { color: var(--navy); }
.site-header.is-solid .nav a { color: var(--ink); }
.site-header.is-solid .nav a.is-active { color: var(--blue); }
.site-header.is-solid .btn-ghost {
  color: var(--navy);
  border-color: var(--gold);
}

/* Gold oval rings */
.rings {
  position: absolute;
  pointer-events: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.35;
}
.rings-lg { width: 520px; height: 420px; }
.rings::before,
.rings::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.rings::after { inset: 38px; opacity: 0.7; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header) + 40px) 0 72px;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,40,0.88) 0%, rgba(7,20,40,0.55) 48%, rgba(7,20,40,0.35) 100%),
    linear-gradient(180deg, rgba(7,20,40,0.35) 0%, rgba(7,20,40,0.72) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(44px, 7vw, 84px);
  margin: 18px 0 22px;
}
.hero .lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  width: 100%;
  max-width: none;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: none;
  width: 100%;
}
.hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-2);
  line-height: 1;
}
.hero-meta span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.hero .rings {
  right: -80px;
  top: 18%;
  width: min(560px, 52vw);
  height: min(460px, 42vw);
  z-index: 1;
}

/* Sections */
.section { padding: 92px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(32px, 4vw, 48px); max-width: 16ch; }

.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  padding: 8px 8px 8px 0;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}
.trust-item:first-child { border: 0; padding-left: 0; }
.trust-item b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--blue);
  line-height: 1;
}
.trust-item span { color: var(--muted); font-size: 13px; }

.split-paths {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
}
.path-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  background: var(--navy);
}
.path-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,20,40,0.2) 0%, rgba(7,20,40,0.55) 42%, rgba(7,20,40,0.92) 100%);
}
.path-card > * { position: relative; z-index: 1; }
.path-card h3 { font-size: 36px; margin: 8px 0 10px; }
.path-card p { color: rgba(255,255,255,0.88); margin-bottom: 18px; max-width: 36ch; }
.path-card .btn-on-dark {
  background: #fff;
  color: var(--blue-deep);
  border-color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.path-card .btn-on-dark:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--navy);
  transform: translateY(-2px);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.course-card {
  background: var(--white);
  border: 1px solid rgba(20,24,32,0.06);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: 0 1px 0 rgba(191,174,107,0.35) inset;
  transition: 0.2s ease;
}
.course-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow), 0 1px 0 var(--gold) inset;
}
.course-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.course-card h3 { font-size: 28px; margin: 12px 0 10px; }
.course-card p { color: var(--muted); flex: 1; }
.course-card .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-2);
  font-size: 13px;
  color: var(--muted);
}

.calendar {
  background: var(--navy);
  color: #fff;
}
.calendar h2 { color: #fff; }
.schedule-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.schedule-toolbar .filter-bar { margin-bottom: 0; }
.view-toggle {
  display: inline-flex;
  border: 1px solid rgba(191,174,107,0.45);
  border-radius: 4px;
  overflow: hidden;
}
.view-btn {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 650;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.view-btn + .view-btn { border-left: 1px solid rgba(191,174,107,0.35); }
.view-btn.is-on {
  background: var(--blue);
  color: #fff;
}
.cal-list { display: grid; gap: 10px; }
.cal-list[hidden],
.cal-month[hidden],
.cal-detail-modal[hidden] { display: none !important; }
.cal-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(191,174,107,0.28);
  background: rgba(12, 29, 56, 0.6);
}
.cal-row time {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2);
  line-height: 1.2;
}
.cal-row small { display: block; color: rgba(255,255,255,0.55); font-size: 12px; }
.cal-row h3 { font-size: 22px; }
.seats { color: var(--gold); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.cal-month {
  border: 1px solid rgba(191,174,107,0.28);
  background: rgba(12, 29, 56, 0.55);
  padding: 18px;
}
.cal-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.cal-month-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  text-align: center;
}
.cal-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(191,174,107,0.55);
  background: transparent;
  color: var(--gold-2);
  font-size: 22px;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
}
.cal-nav:hover { background: rgba(0,74,172,0.35); }
.cal-weekdays,
.cal-grid,
.cal-strips {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-board {
  position: relative;
}
.cal-grid {
  grid-auto-rows: minmax(92px, 1fr);
}
.cal-strips {
  position: absolute;
  inset: 0;
  grid-auto-rows: minmax(92px, 1fr);
  pointer-events: none;
  z-index: 2;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-bottom: 8px;
}
.cal-day {
  min-height: 92px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 20, 40, 0.45);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: default;
}
.cal-day.is-out {
  opacity: 0.35;
}
.cal-day.has-event {
  border-color: rgba(191,174,107,0.55);
  cursor: pointer;
}
.cal-day.has-event:hover,
.cal-day.is-selected {
  background: rgba(0,74,172,0.35);
  border-color: var(--gold);
}
.cal-day-num {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  color: rgba(255,255,255,0.88);
}
.cal-day.has-event .cal-day-num { color: var(--gold-2); }
.cal-pill {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 4px 6px;
  border-radius: 3px;
  background: rgba(0,74,172,0.55);
  color: #fff;
  border-left: 2px solid var(--gold);
}
.cal-pill.is-wait {
  background: rgba(122, 91, 18, 0.45);
}
.cal-strip {
  pointer-events: auto;
  align-self: end;
  height: 22px;
  margin: 0 3px calc(8px + (var(--track, 0) * 24px));
  padding: 0 8px;
  border: 0;
  border-radius: 3px;
  background: rgba(0, 74, 172, 0.88);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  border-left: 2px solid var(--gold);
}
.cal-strip.is-span {
  box-shadow: 0 6px 16px rgba(7, 20, 40, 0.22);
}
.cal-strip.is-cont {
  border-left-color: transparent;
}
.cal-strip.is-wait {
  background: rgba(122, 91, 18, 0.7);
}
.cal-strip:hover {
  filter: brightness(1.08);
}
.cal-detail-days {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cal-hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.cal-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
}
.cal-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(7, 20, 40, 0.72);
  cursor: pointer;
}
.cal-detail {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  margin: 0;
  padding: 28px 28px 24px;
  border: 1px solid rgba(191,174,107,0.45);
  background: #0c1d38;
  box-shadow: 0 28px 64px rgba(7, 20, 40, 0.45);
}
body.cal-detail-open { overflow: hidden; }
.cal-detail h3 {
  font-size: 28px;
  margin: 8px 0 10px;
}
.cal-detail .btn { margin-top: 14px; }
.cal-detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(191,174,107,0.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  border-radius: 4px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  padding: 8px 8px 0 0;
}
.step b {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.step h3 { font-size: 24px; margin: 10px 0 8px; }
.step p { color: var(--muted); }

.media-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 560px;
  background: var(--white);
}
.media-split figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.media-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  min-height: 420px;
}
.media-copy {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-copy h2 { font-size: clamp(32px, 4vw, 46px); margin: 12px 0 16px; }
.check { list-style: none; padding: 0; margin: 22px 0 28px; }
.check li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}
.check li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery figure:first-child {
  grid-row: 1 / span 2;
}
.gallery figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 88px 0;
}
.cta-band .rings { left: -160px; top: -80px; width: 420px; height: 340px; }
.cta-band h2 { font-size: clamp(34px, 5vw, 56px); max-width: 16ch; margin: 12px 0 16px; }

/* Inner pages */
.page-hero {
  padding: calc(var(--header) + 54px) 0 48px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(0,74,172,0.12), transparent 46%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); margin: 10px 0 12px; }
.crumbs { font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--blue); }

.prose { max-width: 68ch; }
.prose p + p { margin-top: 14px; }
.prose h2 { font-size: 34px; margin: 28px 0 10px; }

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.side-card {
  background: var(--white);
  border: 1px solid rgba(20,24,32,0.06);
  padding: 24px;
  box-shadow: 0 1px 0 var(--gold) inset;
}
.side-card h3 { font-size: 26px; margin-bottom: 10px; }
.side-card .btn { width: 100%; justify-content: center; }

.course-detail-top {
  align-items: start;
  margin-bottom: 36px;
}
.course-detail-intro .lead {
  max-width: 54ch;
}
.course-detail-body {
  max-width: none;
  width: 100%;
}
.course-blocks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.course-detail-offer {
  margin-top: 48px;
  width: 100%;
  max-width: none;
  background: var(--white);
  border-block: 1px solid rgba(20, 24, 32, 0.08);
  box-shadow: 0 1px 0 var(--gold) inset;
  padding: 28px 0;
}
.course-offer-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.6fr) minmax(180px, 0.7fr);
  gap: 28px 32px;
  align-items: start;
}
.course-offer-copy h3 {
  font-size: 28px;
  margin: 0 0 8px;
}
.course-offer-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 36ch;
}
.course-offer-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 28px;
  min-width: 0;
}
.course-detail-offer .price-box {
  margin: 0;
  padding: 4px 0;
  border-bottom: 0;
}
.course-offer-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}
.course-offer-actions .btn {
  width: 100%;
  justify-content: center;
}
.course-buy-fixed {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  display: grid;
  gap: 8px;
  width: 148px;
}
.course-buy-fixed-price {
  display: block;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(7, 20, 40, 0.12);
}
.course-buy-fixed .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  box-shadow: 0 12px 28px rgba(0, 74, 172, 0.28);
}
@media (max-width: 980px) {
  .course-offer-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .course-offer-note { max-width: none; }
  .course-buy-fixed {
    top: auto;
    bottom: 88px;
    transform: none;
    right: 16px;
    width: 132px;
  }
}
.course-detail-faq {
  margin-top: 48px;
  max-width: 760px;
}
.course-detail-faq h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 20px;
}
.course-faq-list {
  display: grid;
  gap: 8px;
}
.course-faq-item {
  background: var(--white);
  border: 1px solid rgba(20, 24, 32, 0.06);
  box-shadow: 0 1px 0 var(--gold) inset;
}
.course-faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 16px 52px 16px 18px;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.4;
}
.course-faq-item summary::-webkit-details-marker {
  display: none;
}
.course-faq-item summary::marker {
  content: "";
}
.course-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.course-faq-item[open] summary::after {
  content: "−";
}
.course-faq-item summary:hover {
  color: var(--blue);
}
.course-faq-item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.course-faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.course-faq-answer p {
  margin: 0;
}
.price-box {
  margin: 0 0 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20, 24, 32, 0.08);
}
.price-box:last-of-type {
  border-bottom: 0;
}
.price-box h4 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.price-box.is-grand h4 {
  color: var(--blue);
}
.price-lines {
  margin: 0;
  display: grid;
  gap: 6px;
}
.price-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.price-lines dt {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.price-lines dd {
  margin: 0;
  font-weight: 650;
  text-align: right;
  white-space: nowrap;
}
.price-lines .is-total dt,
.price-lines .is-total dd {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding-top: 6px;
  border-top: 1px dashed rgba(20, 24, 32, 0.12);
}
.course-block {
  margin: 0;
  width: 100%;
  clear: both;
  flex: 0 0 auto;
  isolation: isolate;
}
.course-block-hr {
  margin: 36px 0;
  border: 0;
  border-top: 1px solid rgba(20, 24, 32, 0.12);
  clear: both;
  flex: 0 0 auto;
  width: 100%;
}
.course-block.is-button {
  display: flex;
  justify-content: flex-start;
}
.course-block-btn {
  min-width: 160px;
}
.course-block.is-youtube.is-wide .course-yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1220;
  border-radius: 6px;
  overflow: hidden;
}
.course-block.is-youtube.is-short {
  display: flex;
  justify-content: center;
}
.course-block.is-youtube.is-short .course-yt {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  background: #0b1220;
  border-radius: 6px;
  overflow: hidden;
}
.course-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.course-block.has-media::after {
  content: "";
  display: table;
  clear: both;
}
.course-block-media {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
}
.course-block-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
@media (min-width: 800px) {
  .course-block.has-media .course-block-media {
    width: min(42%, 380px);
    max-width: 380px;
    margin-bottom: 12px;
  }
  .course-block.is-image-left.has-media .course-block-media {
    float: left;
    margin-right: 28px;
  }
  .course-block.is-image-right.has-media .course-block-media {
    float: right;
    margin-left: 28px;
  }
}
.course-block-copy :first-child { margin-top: 0; }
.course-block-copy p + p { margin-top: 12px; }
.course-block-copy ul,
.course-block-copy ol {
  margin: 10px 0 10px 1.2em;
  padding: 0;
}
.course-block-copy li + li { margin-top: 6px; }
.course-block-copy h2,
.course-block-copy h3 {
  clear: none;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 28px;
  border: 1px solid rgba(20,24,32,0.06);
}
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 650; }
.form input,
.form select,
.form textarea {
  min-height: 46px;
  border: 1px solid #d9d4c8;
  background: var(--paper);
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 4px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.note {
  background: var(--blue-soft);
  color: var(--blue-deep);
  padding: 12px 14px;
  font-size: 14px;
  display: none;
}
.note.show { display: block; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.chip {
  border: 1px solid var(--line);
  background: transparent;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 99px;
  font-weight: 650;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.chip.is-on,
.chip:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.calendar .chip { color: #fff; border-color: rgba(191,174,107,0.45); }
.calendar .chip.is-on { background: var(--blue); border-color: var(--blue); }

.map {
  min-height: 320px;
  width: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.login-visual {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 48px;
}
.login-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,40,0.25), rgba(7,20,40,0.88));
}
.login-visual > * { position: relative; z-index: 1; }
.login-box {
  display: flex;
  align-items: center;
  padding: 48px;
  background: var(--paper);
}

/* App shells */
.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--paper);
}
.sidebar {
  background: var(--navy);
  color: #fff;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 4px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
}
.side-link.is-on {
  background: rgba(0,74,172,0.35);
  color: var(--gold-2);
  box-shadow: inset 2px 0 0 var(--gold);
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.app-main { padding: 24px 28px 48px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  background: var(--white);
  padding: 18px;
  border: 1px solid rgba(20,24,32,0.06);
}
.stat b { display: block; font-family: var(--serif); font-size: 30px; color: var(--blue); }
.panel-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}
.table th, .table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--paper-2);
}
.table th { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ok { background: #e5f4ea; color: #176b38; }
.wait { background: #f4ead0; color: #7a5b12; }
.pay { background: var(--blue-soft); color: var(--blue); }
.badge.new { background: #e8eef8; color: var(--blue); }
.badge.err { background: #f8e8e8; color: #9b2c2c; }

.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.kanban-col {
  background: var(--white);
  min-height: 280px;
  padding: 12px;
  border: 1px solid rgba(20,24,32,0.06);
}
.kanban-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ticket {
  background: var(--paper);
  padding: 12px;
  margin-bottom: 8px;
  border-left: 2px solid var(--gold);
}
.ticket b { display: block; font-size: 14px; }
.ticket span { font-size: 12px; color: var(--muted); }

/* Canlı destek sohbeti */
.chat-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  min-height: 52px;
  padding: 0 18px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(7, 20, 40, 0.28);
  animation: aiPulse 3.2s ease-in-out infinite;
}
.chat-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.5);
  animation: pulseDot 1.8s ease-out infinite;
}
.chat-toggle.is-open {
  background: var(--blue);
  animation: none;
}
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 60;
  width: min(380px, calc(100vw - 24px));
  height: min(520px, calc(100vh - 120px));
  display: none;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  border: 1px solid rgba(191, 174, 107, 0.45);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 20, 40, 0.22);
}
.chat-widget.open { display: grid; }
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(120deg, var(--navy), #0d2a58);
  color: #fff;
}
.chat-head-meta { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  object-fit: cover;
  background: #000;
}
.chat-head strong { display: block; font-size: 15px; }
.chat-head small {
  display: block;
  margin-top: 2px;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chat-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(191, 174, 107, 0.4);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.chat-msgs {
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0, 74, 172, 0.06), transparent 45%),
    var(--paper);
}
.chat-bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(20, 24, 32, 0.06);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble.typing {
  color: var(--muted);
  font-style: italic;
}
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
  background: var(--paper);
}
.chat-quick button {
  border: 1px solid rgba(191, 174, 107, 0.55);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}
.chat-quick button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--paper-2);
  background: var(--white);
}
.chat-form input {
  min-height: 44px;
  border: 1px solid #d9d4c8;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--ink);
}
.chat-form button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.chat-form button:hover { background: var(--blue-deep); }

@media (max-width: 640px) {
  .chat-widget {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 76px;
    height: min(70vh, 520px);
  }
  .chat-toggle { right: 12px; bottom: 12px; }
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.site-footer a:hover { color: var(--gold-2); }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.foot-social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191,174,107,0.35);
  border-radius: 4px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.04);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.foot-social-link:hover {
  color: var(--navy);
  background: var(--gold-2);
  border-color: var(--gold-2);
}
.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(191,174,107,0.22);
  font-size: 12px;
}
.site-footer .rings { right: -100px; bottom: -120px; width: 340px; height: 280px; }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  z-index: 39;
  padding: 28px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.open {
  display: grid;
  gap: 18px;
  align-content: start;
}
.mobile-nav a { color: #fff; font-size: 26px; font-family: var(--serif); }
.mobile-nav-block { display: grid; gap: 8px; }
.mobile-nav-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-nav-main {
  color: #fff;
  font-size: 26px;
  font-family: var(--serif);
}
.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(191, 174, 107, 0.45);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-nav-sub {
  display: grid;
  gap: 10px;
  padding: 4px 0 8px 12px;
  border-left: 1px solid rgba(191, 174, 107, 0.35);
}
.mobile-nav-sub[hidden] { display: none !important; }
.mobile-nav-sub a {
  font-size: 18px;
  font-family: var(--sans, var(--font-sans, Manrope, sans-serif));
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.mobile-nav-cat {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans, Manrope, sans-serif);
}

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .brand { min-width: 0; }
  .nav-drop-thumb { display: none !important; }
  .trust-grid, .course-grid, .steps, .split-paths, .media-split, .two-col, .login-shell, .app, .stat-grid, .panel-grid, .kanban, .foot-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .gallery figure:first-child { grid-column: 1 / span 2; grid-row: auto; }
  .cal-row { grid-template-columns: 1fr; }
  .cal-day { min-height: 72px; padding: 6px; }
  .cal-grid, .cal-strips { grid-auto-rows: minmax(72px, 1fr); }
  .cal-strip { font-size: 10px; height: 18px; line-height: 18px; padding: 0 6px; }
  .cal-pill { font-size: 10px; padding: 3px 4px; }
  .schedule-toolbar { align-items: stretch; }
  .view-toggle { width: 100%; }
  .view-btn { flex: 1; }
  .form .row { grid-template-columns: 1fr; }
  .hero { align-items: center; min-height: 92vh; }
  .sidebar {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 12px 14px;
    gap: 4px;
  }
  .sidebar .brand { display: none; }
  .side-link { white-space: nowrap; }
  .app { display: block; }
  .app-main, .topbar { padding-inline: 16px; }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery figure { height: 220px; }
  .gallery figure:first-child { height: 280px; }
  .path-card { min-height: 300px; padding: 24px; }
  .media-copy { padding: 32px 22px; }
  .hero-meta { gap: 16px; }
  .hero-scroll { display: none; }
  .hero-promo-card.is-text {
    padding: 18px 16px;
  }
  .hero-promo-card.is-text strong {
    font-size: clamp(26px, 7vw, 34px);
  }
}

/* ========== Canlı vitrin / hareket ========== */
.home {
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(0,74,172,0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(191,174,107,0.1), transparent 50%),
    var(--paper);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-glow {
  box-shadow: 0 10px 28px rgba(0,74,172,0.35);
}
.btn-glow:hover {
  box-shadow: 0 14px 36px rgba(0,74,172,0.45);
}
.btn-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-blue:hover::after { transform: translateX(120%); }

.hero-lively {
  align-items: center;
  min-height: 100svh;
  padding-bottom: 88px;
}
.hero-lively .hero-media img {
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-lively .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-promo-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  width: 100%;
  max-width: none;
}
.hero-promo-card {
  display: block;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(191,174,107,0.4);
  background: rgba(251,250,247,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.hero-promo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191,174,107,0.75);
  background: rgba(251,250,247,0.14);
}
.hero-promo-card.is-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-promo-card.is-text {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: clamp(12px, 1.4vw, 20px);
  text-align: center;
}
.hero-promo-card.is-text strong {
  display: block;
  font-size: clamp(16px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7,20,40,0.92) 0%, rgba(7,20,40,0.62) 46%, rgba(0,74,172,0.28) 100%),
    linear-gradient(180deg, rgba(7,20,40,0.2) 0%, rgba(7,20,40,0.75) 100%);
  pointer-events: none;
}
.hero-lively .hero-media::after { display: none; }
.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}
.hero-copy {
  width: 100%;
  max-width: none;
}
.hero-copy > h1,
.hero-copy > p,
.hero-copy .kicker,
.hero-copy .lead {
  width: 100%;
  max-width: none;
}
.hero-lively h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(48px, 7.2vw, 92px);
}
.hero-lively h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
}
.rings-sm {
  width: min(280px, 34vw);
  height: min(230px, 28vw);
  left: 8%;
  bottom: 12%;
  opacity: 0.22;
  z-index: 1;
}
.rings-spin { animation: spinSlow 48s linear infinite; }
.rings-spin-rev { animation: spinSlow 64s linear infinite reverse; }

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

.hero-float {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 28px;
  width: 100%;
}
.float-card {
  width: 100%;
  max-width: none;
  padding: 22px 22px 18px;
  background: rgba(251,250,247,0.1);
  border: 1px solid rgba(191,174,107,0.45);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  animation: floatY 5.5s ease-in-out infinite;
}
.float-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 10px;
}
.float-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 0 rgba(61,214,140,0.55);
  animation: pulseDot 1.8s ease-out infinite;
}
.float-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.float-card p { color: rgba(255,255,255,0.72); font-size: 14px; }
.float-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(191,174,107,0.28);
  font-size: 13px;
}
.float-meta a { color: var(--gold-2); font-weight: 700; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-scroll span {
  width: 18px;
  height: 28px;
  border: 1px solid rgba(191,174,107,0.55);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  border-block: 1px solid rgba(191,174,107,0.35);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-lively {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), var(--white));
}
.trust-lively .trust-item {
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.trust-lively .trust-item:hover {
  transform: translateY(-4px);
}

.path-card {
  border-radius: 2px;
  transition: transform 0.35s ease;
}
.path-card img {
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.path-card:hover img { transform: scale(1.12); }
.path-card:hover { transform: translateY(-6px); }
.path-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.35s ease;
}
.path-card:hover::before { border-color: rgba(191,174,107,0.65); }

.section-soft {
  position: relative;
}
.course-grid-media .course-card {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  background: var(--white);
  border: 1px solid rgba(20,24,32,0.05);
  box-shadow: 0 1px 0 transparent;
}
.course-grid-media .course-card > :not(.course-thumb) {
  padding-inline: 22px;
}
.course-grid-media .course-card .tag { padding-top: 18px; display: inline-block; }
.course-grid-media .course-card h3 { padding-inline: 22px; }
.course-grid-media .course-card p { padding-inline: 22px; }
.course-grid-media .course-card .meta {
  margin: 18px 22px 20px;
  padding-top: 14px;
}
.course-thumb {
  display: block;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.course-thumb.is-empty {
  background: linear-gradient(135deg, #e8eef8, #ebe6db);
}
.course-thumb.is-empty::after { display: none; }
.course-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(7,20,40,0.35));
}
.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.course-card:hover .course-thumb img { transform: scale(1.1); }
.course-grid-media .course-card .meta small {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}
.course-grid-media .course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(7,20,40,0.14);
  border-color: rgba(191,174,107,0.55);
}

.calendar-lively {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(0,74,172,0.35), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(191,174,107,0.12), transparent 40%),
    var(--navy);
}
.calendar-lively .cal-row {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.calendar-lively .cal-row:hover {
  transform: translateX(6px);
  border-color: rgba(191,174,107,0.7);
  background: rgba(0,74,172,0.22);
}

.steps-line {
  position: relative;
}
.steps-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.step {
  transition: transform 0.35s ease;
}
.step:hover { transform: translateY(-4px); }
.step b {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.media-split-lively figure img {
  transition: transform 1.2s ease;
}
.media-split-lively:hover figure img { transform: scale(1.04); }

.gallery-lively figure {
  transition: transform 0.4s ease;
}
.gallery-lively figure img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.9);
}
.gallery-lively figure:hover {
  transform: translateY(-6px);
  z-index: 2;
}
.gallery-lively figure:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}
.gallery-lively figcaption {
  transform: translateY(8px);
  opacity: 0.85;
  transition: 0.35s ease;
}
.gallery-lively figure:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.cta-band-lively {
  background:
    radial-gradient(circle at 80% 20%, rgba(0,74,172,0.45), transparent 35%),
    var(--navy);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2%, -1%, 0); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes riseIn {
  to { opacity: 1; transform: none; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(61,214,140,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61,214,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,214,140,0); }
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.35; transform: translateY(8px); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 18px 50px rgba(7,20,40,0.2), 0 0 0 0 rgba(191,174,107,0.35); }
  50% { box-shadow: 0 18px 50px rgba(7,20,40,0.2), 0 0 0 10px rgba(191,174,107,0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lively .hero-media img,
  .rings-spin,
  .rings-spin-rev,
  .float-card,
  .marquee-track,
  .chat-toggle,
  .reveal-item { animation: none !important; }
  .reveal-item { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .hero-float { justify-items: start; max-width: none; }
  .hero-promo-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 14px;
  }
  .hero-promo-card.is-text {
    padding: clamp(16px, 3vw, 28px);
  }
  .hero-promo-card.is-text strong {
    font-size: clamp(22px, 4.8vw, 36px);
  }
  .steps-line::before { display: none; }
  .rings-sm { display: none; }
}

/* Teklif İste modal */
body.teklif-modal-open { overflow: hidden; }
.teklif-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.teklif-modal[hidden] { display: none !important; }
.teklif-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(7, 20, 40, 0.62);
  cursor: pointer;
}
.teklif-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  padding: 22px 20px 18px;
  box-shadow: 0 24px 60px rgba(7, 20, 40, 0.28);
}
.teklif-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.teklif-modal-head h2 {
  margin: 0;
  font-size: 28px;
}
.teklif-form {
  display: grid;
  gap: 12px;
}
.teklif-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 650;
}
.teklif-form input,
.teklif-form select {
  min-height: 44px;
  border: 1px solid #d9d4c8;
  background: var(--paper);
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
}
.teklif-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.teklif-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}
.teklif-form-msg {
  margin: 0;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
}
.teklif-form-msg.is-ok {
  background: rgba(23, 107, 56, 0.1);
  color: #176b38;
}
.teklif-form-msg.is-err {
  background: rgba(155, 44, 44, 0.1);
  color: #9b2c2c;
}
.mobile-nav-teklif {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  font-family: var(--serif);
  text-align: left;
  cursor: pointer;
}
@media (max-width: 640px) {
  .teklif-form-row { grid-template-columns: 1fr; }
}

.cart-wrap { max-width: 1100px; }
.cart-flash {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
}
.cart-flash.is-ok { background: rgba(23,107,56,.1); color: #176b38; }
.cart-flash.is-err { background: rgba(155,44,44,.1); color: #9b2c2c; }
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.cart-items { display: grid; gap: 12px; }
.cart-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.cart-item-remove {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(20, 24, 32, 0.12);
  border-radius: 6px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
}
.cart-item-remove:hover {
  border-color: #9b2c2c;
  color: #9b2c2c;
  background: rgba(155, 44, 44, 0.08);
}
.cart-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  margin-top: 14px;
}
.cart-qty label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 650;
}
.cart-qty input {
  width: 88px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #d9d4c8;
  background: var(--paper);
  border-radius: 4px;
  font: inherit;
}
.cart-pages { margin-top: 18px; }
.cart-pages h4 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(20,24,32,0.12);
  background: var(--paper);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.cart-consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.cart-consent:has(input:checked) {
  border-color: var(--blue);
  background: rgba(37, 99, 168, 0.06);
}
.cart-consent.is-invalid {
  border-color: #9b2c2c;
  background: rgba(155, 44, 44, 0.08);
  box-shadow: inset 0 0 0 1px #9b2c2c;
}
.cart-consents.has-error h4 { color: #9b2c2c; }
.cart-consent-msg {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(155, 44, 44, 0.1);
  color: #9b2c2c;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}
.cart-consent-msg[hidden] { display: none !important; }
.cart-consent-msg-submit { margin: 16px 0 0; }
.cart-page-link { margin: 0 0 8px; font-size: 14px; }

.cart-checkout-head h3 { margin: 0 0 6px; }
.cart-checkout-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 52ch;
}
.cart-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.cart-type-opt {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(20,24,32,0.12);
  background: var(--paper);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.cart-type-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cart-type-opt.is-on {
  border-color: var(--blue);
  background: rgba(37, 99, 168, 0.06);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.cart-type-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.cart-type-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.cart-checkout-form {
  padding: 0;
  border: 0;
  background: transparent;
}
.cart-field-note {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.cart-pay {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid rgba(20,24,32,0.1);
  background: var(--paper);
  border-radius: 4px;
  cursor: pointer;
}
.cart-pay:has(input:checked) {
  border-color: var(--blue);
  background: rgba(37, 99, 168, 0.06);
}
.cart-pay input { margin-top: 3px; }
.cart-pay span { display: grid; gap: 2px; }
.cart-pay strong { font-size: 14px; color: var(--ink); }
.cart-pay small { font-size: 12px; color: var(--muted); }

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-type { grid-template-columns: 1fr; }
}

.teklif-view {
  max-width: 960px;
}
.teklif-view-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--muted);
}
.teklif-view-meta p { margin: 0; }
.teklif-view-meta strong { color: var(--ink); }
.teklif-view-meta .btn { margin-left: auto; }
.teklif-pdf-frame {
  width: 100%;
  min-height: min(78vh, 920px);
  height: 78vh;
  border: 1px solid rgba(20, 24, 32, 0.1);
  background: #fff;
  overflow: hidden;
}
.teklif-pdf-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 640px;
  margin: 0 auto;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #071428;
  color: #fff;
  border: 1px solid rgba(191,174,107,0.35);
  box-shadow: 0 18px 40px rgba(7,20,40,0.28);
}
.cookie-consent-inner p {
  margin: 0;
  flex: 1 1 240px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}
.cookie-consent-inner a {
  color: var(--gold-2, #d4c48a);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-inner .btn {
  flex: 0 0 auto;
}
