/* ============================================================
   Ritim Dil Kampı — yaz yoğun dil kampı
   Palet: bg #F0F7F4 · surface #FFF · ink #13241D · accent #0D9488 · accent-2 #F59E0B
   ============================================================ */

:root {
  --bg: #F0F7F4;
  --surface: #FFFFFF;
  --surface-2: #E7F1ED;
  --ink: #13241D;
  --ink-soft: #41564C;
  --accent: #0D9488;
  --accent-deep: #0B7A70;
  --accent-2: #F59E0B;
  --accent-2-deep: #C77F08;
  --line: rgba(19, 36, 29, 0.12);
  --line-strong: rgba(19, 36, 29, 0.22);
  --shadow: 0 18px 40px -28px rgba(11, 56, 47, 0.55);
  --header-h: 76px;
  --maxw: 1240px;
  --pad: clamp(16px, 4vw, 56px);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1rem; }
a { color: var(--accent-deep); text-decoration: none; }

.tnum { font-variant-numeric: tabular-nums; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { position: relative; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent-2);
}

/* ============================================================
   Header + nav
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(240, 247, 244, 0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, box-shadow .24s ease, height .24s ease, border-color .24s ease;
}
.site-header.is-scrolled {
  background: rgba(240, 247, 244, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .18);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px;
  flex: none;
  display: grid; place-items: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .nav-desktop a {
    position: relative;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: .94rem;
    padding: 6px 0;
    transition: color .2s ease;
  }
  /* nav-link rule above zeroes horizontal padding; restore the CTA pill's side padding */
  .nav-desktop a.nav-cta { padding: 10px 18px; }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--accent);
    transition: right .25s cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { right: 0; }
  .nav-desktop a.is-active { color: var(--ink); }
  .nav-desktop .nav-cta::after { display: none; }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .22s ease, transform .22s ease, color .22s ease;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-2px);
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 48px; height: 48px;
  display: inline-grid;
  place-items: center;
  gap: 5px;
  /* High-contrast, ink-filled control so the menu is unmistakable on mobile
     (a faint white-on-mint box read as "no menu" to both users and audits) */
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 13px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 22px -10px rgba(11,56,47,.6);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 26px -12px rgba(13,148,136,.75);
  transform: translateY(-1px);
}
.nav-toggle[aria-expanded="true"] { background: var(--accent); border-color: var(--accent); }
.nav-toggle span {
  display: block;
  width: 23px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, background .2s ease;
}
.nav-toggle span:nth-child(1) { margin-bottom: 5px; }
.nav-toggle span:nth-child(3) { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 18px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Fraunces', serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 18px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border-bottom: 0;
}
.drawer .drawer-cta:hover { background: var(--accent-deep); color: #fff; }
.drawer-foot {
  margin-top: auto;
  font-size: .85rem;
  color: var(--ink-soft);
  font-family: 'Nunito Sans', sans-serif;
}
.drawer-foot a { font-size: .9rem; font-family: 'Nunito Sans', sans-serif; border: 0; padding: 2px 0; color: var(--accent-deep); }

main { padding-top: var(--header-h); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-align: center;
}
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(13, 148, 136, .8);
}
.btn-primary .arrow { transition: transform .22s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-accent { background: var(--accent-2); color: var(--ink); }
.btn-accent:hover, .btn-accent:focus-visible { background: var(--accent-2-deep); color: #fff; transform: translateY(-2px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 84px) 0 clamp(36px, 5vw, 60px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(245,158,11,.16), transparent 55%),
    radial-gradient(90% 80% at 8% 110%, rgba(13,148,136,.16), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }

/* week date strip atop hero */
.week-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  margin-bottom: 26px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.week-strip::-webkit-scrollbar { height: 6px; }
.week-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }
.week-chip {
  flex: none;
  min-width: 124px;
  padding: 11px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: 'Nunito Sans', sans-serif;
  box-shadow: 0 10px 24px -22px rgba(11,56,47,.6);
}
.week-chip .wk {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-deep);
}
.week-chip .dt {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
}
.week-chip .th { font-size: .8rem; color: var(--ink-soft); }
.week-chip.is-now { border-color: var(--accent); box-shadow: 0 14px 28px -18px rgba(13,148,136,.7); }
.week-chip.is-now .dt { color: var(--accent-deep); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.06fr .94fr; }
}
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.5rem);
  margin-bottom: 18px;
}
.hero h1 .hl {
  color: var(--accent-deep);
  position: relative;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 26px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 0; padding: 0;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-strip svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* hero media — video-loop placeholder */
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13,148,136,.92), rgba(11,122,112,.96)),
    var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(255,255,255,.05) 34px 35px),
    radial-gradient(70% 60% at 30% 20%, rgba(245,158,11,.28), transparent 60%);
  z-index: -1;
}
.hero-media .loop-orb {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.5);
  display: grid; place-items: center;
  color: #fff;
  animation: breathe 5s ease-in-out infinite;
}
.hero-media .loop-orb svg { width: 34px; height: 34px; margin-left: 4px; }
.hero-media figcaption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
}
.hero-media figcaption strong { font-size: 1.02rem; }
.hero-media figcaption span { display: block; font-size: .82rem; opacity: .85; }
.hero-media .live-tag {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(19,36,29,.5);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-media .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* hero scroll-progress timeline ribbon */
.hero-progress {
  margin-top: clamp(34px, 5vw, 56px);
  position: relative;
}
.hero-progress .rail {
  position: relative;
  height: 3px;
  background: var(--surface-2);
  border-radius: 99px;
}
.hero-progress .rail .fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--scroll-progress, 4%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
  transition: width .15s linear;
}
.hero-progress .label {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--ink-soft);
  font-family: 'Nunito Sans', sans-serif;
}
.hero-progress .label b { color: var(--accent-deep); font-variant-numeric: tabular-nums; }

/* ============================================================
   Section shell
   ============================================================ */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-head {
  max-width: 60ch;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: 8px;
}
.band { background: var(--ink); color: #fff; }
.band h2, .band h3 { color: #fff; }
.band .section-head p { color: rgba(255,255,255,.78); }
.band .eyebrow { color: var(--accent-2); }

/* ============================================================
   #takvim — 8-week horizontal timeline
   ============================================================ */
.timeline-wrap {
  margin-top: 8px;
  overflow-x: auto;
  padding: 30px 4px 26px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.timeline-wrap::-webkit-scrollbar { height: 8px; }
.timeline-wrap::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }
.timeline {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(196px, 1fr);
  gap: 0;
  min-width: 1040px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px; right: 28px;
  top: 19px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 14px);
}
.tl-node {
  position: relative;
  padding: 0 14px;
  text-align: left;
}
.tl-dot {
  position: relative;
  z-index: 1;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.tl-node.is-active .tl-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.08);
}
.tl-node.is-active.is-current .tl-dot {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(245,158,11,.22);
}
.tl-date {
  margin-top: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: .92rem;
  color: var(--accent-deep);
}
.tl-theme {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.06rem;
  margin: 4px 0 6px;
}
.tl-desc { font-size: .86rem; color: var(--ink-soft); margin: 0; }
.tl-arrow {
  position: absolute;
  top: 12px;
  right: -6px;
  color: var(--line-strong);
  opacity: 0;
  transition: opacity .35s ease, color .35s ease;
}
.tl-node.is-active .tl-arrow { opacity: 1; color: var(--accent); }
.timeline-hint {
  font-size: .82rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.timeline-hint svg { width: 16px; height: 16px; }

/* ============================================================
   #haftalar — week theme cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.theme-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
  min-width: 0;
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -30px rgba(13,148,136,.6);
  border-color: rgba(13,148,136,.4);
}
.theme-card .badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Nunito Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--accent-deep);
  background: var(--surface-2);
  padding: 5px 11px;
  border-radius: 999px;
}
.theme-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(13,148,136,.16), rgba(245,158,11,.16));
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.theme-icon svg { width: 26px; height: 26px; }
.theme-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.theme-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 14px; }
.theme-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.theme-card ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  font-size: .88rem;
  color: var(--ink);
}
.theme-card ul li svg { width: 16px; height: 16px; margin-top: 4px; color: var(--accent); }

/* ============================================================
   #gun — sample day flow
   ============================================================ */
.day-flow {
  display: grid;
  gap: 0;
  margin-top: 10px;
}
.day-row {
  display: grid;
  grid-template-columns: 96px 26px 1fr;
  gap: 0 18px;
  align-items: start;
}
.day-time {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--accent-deep);
  font-size: 1.02rem;
  padding-top: 2px;
  text-align: right;
}
.day-marker { position: relative; display: flex; justify-content: center; }
.day-marker::before {
  content: "";
  position: absolute;
  top: 6px; bottom: -26px;
  width: 2px;
  background: var(--line-strong);
}
.day-row:last-child .day-marker::before { display: none; }
.day-marker i {
  position: relative;
  z-index: 1;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  margin-top: 6px;
}
.day-row.is-break .day-marker i { border-color: var(--accent-2); background: var(--accent-2); }
.day-body {
  padding-bottom: 30px;
}
.day-body h4 { font-size: 1.1rem; margin-bottom: 4px; }
.day-body p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.day-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ============================================================
   #katilim — who for / prereqs
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.who-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.who-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  min-width: 0;
}
.who-list li .ic {
  grid-row: span 2;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent-deep);
  display: grid; place-items: center;
}
.who-list li .ic svg { width: 22px; height: 22px; }
.who-list li h4 { font-size: 1.04rem; margin: 0 0 2px; }
.who-list li p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.prereq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
}
.prereq h3 { font-size: 1.3rem; margin-bottom: 16px; }
.prereq .lvl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.prereq .lvl:last-of-type { border-bottom: 0; }
.prereq .lvl b {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.02rem;
}
.prereq .lvl span { font-size: .92rem; color: var(--ink-soft); }
.prereq .lvl span strong { color: var(--ink); display: block; font-size: 1rem; }

/* stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 8px;
}
.stat {
  text-align: center;
  padding: 22px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
}
.band .stat { background: rgba(255,255,255,.06); }
.stat .num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-variant-numeric: tabular-nums;
  color: var(--accent-2);
  line-height: 1;
}
.stat .lbl { font-size: .86rem; color: rgba(255,255,255,.82); margin-top: 8px; }

/* ============================================================
   #fiyat — pricing
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.5vw, 26px);
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  min-width: 0;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -32px rgba(13,148,136,.55); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 28px 50px -34px rgba(13,148,136,.6);
}
.price-card.featured::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-2);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .pk {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  color: var(--accent-deep);
}
.price-card h3 { font-size: 1.42rem; margin: 6px 0 4px; }
.price-card .price {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 2.3rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.1;
  margin: 10px 0 2px;
}
.price-card .price small {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.price-card .term { font-size: .84rem; color: var(--ink-soft); margin-bottom: 16px; }
.price-card .feat {
  list-style: none;
  margin: 0 0 8px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-card .feat li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .9rem;
}
.price-card .feat li svg { width: 16px; height: 16px; margin-top: 4px; flex: none; }
.price-card .feat li.no { color: var(--ink-soft); }
.price-card .feat li.yes svg { color: var(--accent); }
.price-card .feat li.no svg { color: var(--line-strong); }
.price-card .btn { margin-top: 20px; justify-content: center; width: 100%; }
.price-note {
  margin-top: 22px;
  font-size: .85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 28px);
  min-width: 0;
}
.testi .quote-mark { color: var(--accent-2); font-family: 'Fraunces', serif; font-size: 2.6rem; line-height: .6; }
.testi p { font-size: .98rem; color: var(--ink); margin: 10px 0 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  flex: none;
}
.testi .who b { font-size: .96rem; display: block; }
.testi .who span { font-size: .82rem; color: var(--ink-soft); }
.testi .crit { font-size: .82rem; color: var(--ink-soft); font-style: italic; margin-top: 10px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 26px);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  width: 22px; height: 22px;
  color: var(--accent-deep);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
  font-size: .96rem;
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   Contact (index block + page)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 44px);
}
/* single column: channels grid on top, CTA banner full-width below (was an imbalanced 2-col with a centered, floating CTA card).
   Uses its own class so the global contacts-grid-v2 !important rule (cards grid) doesn't force this 2-panel layout into columns. */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 44px); align-items: start; }
.form-card.cta-banner { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 760px) {
  .form-card.cta-banner { flex-direction: row; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 56px); }
  .form-card.cta-banner .cta-text { flex: 1; max-width: 64ch; }
  .form-card.cta-banner .hero-cta { flex: none; margin: 0; }
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}
.channel {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  min-width: 0;
}
.channel:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -26px rgba(13,148,136,.5); border-color: rgba(13,148,136,.35); }
.channel .ci {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.channel .ci svg { width: 22px; height: 22px; }
.channel b { display: block; font-family: 'Nunito Sans', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.channel .val { font-weight: 700; color: var(--ink); word-break: break-word; }
.channel small { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }

/* form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3.4vw, 38px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label, .field > span {
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}
.field.kvkk a { text-decoration: underline; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
@media (min-width: 560px) { .form-card .btn { width: auto; } }

/* hours table */
.hours {
  list-style: none;
  margin: 0; padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li.today { background: var(--surface-2); font-weight: 700; }
.hours li .d { color: var(--ink); }
.hours li .h { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours li.today .h { color: var(--accent-deep); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  padding: clamp(48px, 6vw, 80px) 0 28px;
  font-size: .92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand small { color: var(--accent-2); }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 38ch; }
.footer-col h4 { color: #fff; font-family: 'Nunito Sans', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: rgba(255,255,255,.74); }
.footer-col a:hover { color: var(--accent-2); }
.footer-col .line { color: rgba(255,255,255,.74); display: block; margin-bottom: 6px; word-break: break-word; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .reg { font-variant-numeric: tabular-nums; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 50px -20px rgba(11,56,47,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { width: 100%; justify-content: center; padding: 11px 14px; font-size: .9rem; min-height: 44px; }
.cookie-actions .full { grid-column: 1 / -1; }
/* "Reddet" must read as an equal, clear choice — not a faded afterthought.
   Reject = confident outlined button (same size/contrast as the filled Accept);
   only the tertiary "Ayarlar" recedes. Equal prominence = KVKK/GDPR-friendly. */
.cookie-actions .btn-ghost { background: var(--surface); border: 1.6px solid var(--ink); color: var(--ink); font-weight: 800; }
.cookie-actions .btn-ghost:hover, .cookie-actions .btn-ghost:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions .full { background: transparent; border: 1.5px solid var(--line-strong); color: var(--ink-soft); font-weight: 700; }
.cookie-actions .full:hover, .cookie-actions .full:focus-visible { background: var(--surface-2); border-color: var(--accent); color: var(--ink); }

/* ============================================================
   Generic page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(40px, 6vw, 76px) 0 clamp(20px, 3vw, 32px);
  background:
    radial-gradient(90% 80% at 90% -20%, rgba(245,158,11,.14), transparent 55%),
    radial-gradient(80% 70% at 0% 120%, rgba(13,148,136,.12), transparent 55%);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 56ch; }
.breadcrumb { font-size: .84rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--accent-deep); }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 2em 0 .6em; }
.prose h3 { font-size: 1.22rem; margin: 1.6em 0 .4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { text-decoration: underline; }
.prose .updated { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.5em; }

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 28px);
  min-width: 0;
}
.member .pf {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.member h3 { font-size: 1.2rem; margin-bottom: 2px; }
.member .role { color: var(--accent-deep); font-weight: 700; font-size: .88rem; margin-bottom: 10px; }
.member p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* process steps */
.steps { display: grid; gap: 16px; counter-reset: step; max-width: 880px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  min-width: 0;
}
.step .sn {
  counter-increment: step;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  display: grid; place-items: center;
}
.step .sn::before { content: counter(step); }
.step h4 { font-size: 1.1rem; margin-bottom: 4px; }
.step h4 .when { font-family: 'Nunito Sans', sans-serif; font-size: .76rem; font-weight: 700; color: var(--accent-2-deep); margin-left: 8px; text-transform: uppercase; letter-spacing: .06em; }
.step p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* tables */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th, .table-scroll td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.table-scroll th { background: var(--surface-2); font-weight: 700; font-family: 'Nunito Sans', sans-serif; }
.table-scroll td { color: var(--ink-soft); }
.table-scroll .tnum { font-variant-numeric: tabular-nums; }

/* notes block */
.notes { display: grid; gap: 14px; }
.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-2);
  border-radius: 12px;
  padding: 16px 18px;
}
.note time { font-variant-numeric: tabular-nums; font-size: .8rem; font-weight: 800; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .06em; }
.note h4 { font-size: 1.02rem; margin: 4px 0 4px; }
.note p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* big quote / manifesto */
.manifesto {
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}
.manifesto blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.18;
  color: #fff;
  margin: 0;
  max-width: 100%;
}
.manifesto cite { display: block; margin-top: 22px; font-style: normal; font-family: 'Nunito Sans', sans-serif; font-size: .92rem; color: var(--accent-2); }

/* ============================================================
   Reveal
   ============================================================ */
/* Reveal is wrapped in :where() so its zero-specificity rules never beat an
   element's own :hover transform. Without this, `.reveal.is-in { transform:none }`
   (same specificity, later in the sheet) silently cancelled every card hover lift
   — e.g. .theme-card:hover translateY(-6px) read back as transform:none. */
:where(.reveal) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
:where(.reveal.is-in) { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* utility */
.center { text-align: center; }
.mt-l { margin-top: clamp(30px, 4vw, 50px); }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
}
.pill svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .day-row { grid-template-columns: 66px 22px 1fr; gap: 0 12px; }
  .day-time { font-size: .9rem; }
  .theme-icon { width: 46px; height: 46px; }
  .who-list li { grid-template-columns: 40px 1fr; }
  .cookie-actions { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 380px) {
  .week-chip { min-width: 112px; }
  .timeline { grid-auto-columns: minmax(168px, 1fr); }
}

/* ============================================================
   Reduced-motion: keep states, drop the movement
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover, .nav-cta:hover, .nav-toggle:hover,
  .theme-card:hover, .price-card:hover, .channel:hover,
  .btn:focus-visible, .nav-cta:focus-visible { transform: none !important; }
  .hero-media .loop-orb, .hero-media .live-dot { animation: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

