/* ============================================================
   Soluk — Nefesli Çalgılar Okulu
   Palette: bg #F4F9FC · surface #E3F0F8 · ink #15293A
            accent #2E86C8 · accent-2 #F2B33D
   Heading Outfit 700 · Body Karla 400
   ============================================================ */

:root {
  --bg: #F4F9FC;
  --surface: #E3F0F8;
  --surface-2: #EDF5FB;
  --surface-3: #D6E8F4;
  --ink: #15293A;
  --ink-soft: #41576A;
  --ink-faint: #6E8295;
  --accent: #2E86C8;
  --accent-deep: #1F6AA6;
  --accent-2: #F2B33D;
  --accent-2-deep: #D9991F;
  --line: rgba(21, 41, 58, 0.12);
  --line-strong: rgba(21, 41, 58, 0.22);
  --white: #FFFFFF;
  --header-h: 76px;
  --maxw: 1180px;
  --pad: clamp(18px, 4vw, 56px);
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 4px 14px -10px rgba(21, 41, 58, 0.4);
  --shadow: 0 18px 48px -28px rgba(21, 41, 58, 0.45);
  --shadow-accent: 0 22px 50px -26px rgba(46, 134, 200, 0.5);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -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: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1em; }
a { color: var(--accent-deep); text-decoration: none; transition: color .2s var(--ease-2); }
img { max-width: 100%; height: auto; display: block; }

.word-break { word-break: break-word; overflow-wrap: anywhere; }

::selection { background: var(--accent-2); color: var(--ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}

.h-display { font-size: clamp(2.2rem, 5.6vw, 4rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 56ch; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 2000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease-2), color .22s var(--ease-2),
              transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease-2);
  text-align: center;
  line-height: 1.1;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-primary .arrow { transition: transform .25s var(--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);
  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: var(--ink);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* alias: .btn--primary behaves like .btn-primary */
.btn--primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.cta-band .btn--primary { background: #fff; color: var(--ink); }
.cta-band .btn--primary:hover, .cta-band .btn--primary:focus-visible { background: var(--accent-2); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(244, 249, 252, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease-2), box-shadow .24s var(--ease-2),
              height .24s var(--ease-2), border-color .24s var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(244, 249, 252, 0.98);
  box-shadow: 0 8px 24px -16px rgba(21, 41, 58, 0.28);
  height: 64px;
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 11px;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand small {
  display: block;
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a:not(.nav-cta) {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink-soft);
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: right .26s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: .94rem;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background .22s var(--ease-2), color .22s var(--ease-2), transform .22s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease-2);
}
.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(11, 23, 33, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease-2), visibility .24s;
  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(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 14px) 28px 32px;
  box-shadow: -24px 0 60px -30px rgba(21, 41, 58, 0.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease-2), padding-left .2s var(--ease-2);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-deep); padding-left: 6px; }
.drawer a.is-active { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 22px;
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(28px, 6vw, 64px));
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__decor svg { position: absolute; }
.air-curve {
  fill: none;
  stroke-linecap: round;
  opacity: .5;
  transform-box: view-box;
  transform-origin: center;
  animation: air-flow 12s var(--ease-2) infinite;
}
.air-curve:nth-child(2) { animation-duration: 14s; animation-delay: -3.5s; }
.air-curve:nth-child(3) { animation-duration: 16s; animation-delay: -7s; }
@keyframes air-flow {
  0%, 100% { transform: translateX(0); opacity: .42; }
  50%      { transform: translateX(16px); opacity: .62; }
}
@media (prefers-reduced-motion: reduce) {
  .air-curve { animation: none; }
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero__intro .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.85rem);
  margin-bottom: 18px;
}
.hero h1 .hl {
  color: var(--accent-deep);
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--accent-2);
  opacity: .42;
  z-index: -1;
  border-radius: 6px;
}
.hero__sub { font-size: clamp(1.06rem, 1.7vw, 1.24rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 26px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-strip svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ---------- Quiz card ---------- */
.quiz-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
}
.quiz-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.quiz-step {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.quiz-progress {
  flex: 1;
  height: 7px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 130%);
  border-radius: 999px;
  transition: width .5s var(--ease);
}

.quiz-viewport { position: relative; }
.quiz-slide {
  transition: transform .42s var(--ease), opacity .32s var(--ease-2);
}
.quiz-slide.is-out-left { transform: translateX(-26px); opacity: 0; }
.quiz-slide.is-out-right { transform: translateX(26px); opacity: 0; }
.quiz-slide.is-in { transform: translateX(0); opacity: 1; }

.quiz-q {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.18;
  margin-bottom: 6px;
}
.quiz-hint { font-size: .9rem; color: var(--ink-faint); margin-bottom: 18px; }

.quiz-options { display: grid; gap: 10px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease-2), background .2s var(--ease-2), transform .18s var(--ease);
}
.quiz-option:hover {
  border-color: var(--accent);
  background: var(--white);
  transform: translateY(-2px);
}
.quiz-option__icon {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--accent-deep);
}
.quiz-option__icon svg { width: 22px; height: 22px; }
.quiz-option strong { font-family: "Outfit", sans-serif; font-weight: 600; display: block; font-size: 1.02rem; }
.quiz-option small { color: var(--ink-faint); font-size: .82rem; }

.quiz-back {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--ink-faint);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.quiz-back:hover { color: var(--accent-deep); }
.quiz-back[hidden] { display: none; }

/* ---------- Live result preview (right) ---------- */
.result-preview {
  position: relative;
  background: linear-gradient(165deg, var(--ink) 0%, #0E2030 100%);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  color: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.result-preview::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(46,134,200,.4), transparent 70%);
  pointer-events: none;
}
.result-preview .eyebrow { color: var(--accent-2); margin-bottom: 14px; }
.result-preview h3 { color: #fff; font-size: 1.2rem; }

.ring-wrap {
  position: relative;
  width: clamp(150px, 40vw, 180px);
  aspect-ratio: 1;
  margin: 18px auto 14px;
}
.ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 9; }
.ring-bar {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset .7s var(--ease);
}
.ring-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}
.ring-pct {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.ring-pct small { font-size: 1.1rem; opacity: .7; }
.ring-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 4px;
}

.silhouette {
  position: relative;
  margin: 6px auto 14px;
  width: 100%;
  max-width: 230px;
  height: 76px;
}
.silhouette svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  color: var(--accent-2);
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.silhouette svg.is-shown { opacity: .9; transform: translateY(0) scale(1); }

.result-name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
  color: #fff;
  margin: 0 0 4px;
}
.result-tag { text-align: center; color: var(--accent-2); font-weight: 600; font-size: .9rem; margin-bottom: 14px; }
.result-desc { text-align: center; color: rgba(227,240,248,.82); font-size: .96rem; margin-bottom: 18px; }
.result-cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: auto; }
.result-empty { text-align: center; color: rgba(227,240,248,.7); font-size: .95rem; }
.result-empty .ring-pct small { font-size: 1rem; }

/* ---------- Result section (full card) ---------- */
.result-section { background: var(--surface); }
.result-full {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow);
}
.result-full__visual {
  background: linear-gradient(165deg, var(--ink) 0%, #0E2030 100%);
  border-radius: var(--r);
  padding: 30px 24px;
  color: #fff;
  text-align: center;
}
.result-full__visual .ring-wrap { margin-top: 6px; }
.result-full h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.result-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .85rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: var(--ink-soft);
}
.pill svg { width: 15px; height: 15px; color: var(--accent); }
.result-note { font-size: .88rem; color: var(--ink-faint); margin-top: 12px; }

/* ---------- Instruments ---------- */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  margin-top: 40px;
}
.inst-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease-2);
  min-width: 0;
}
.inst-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .26s var(--ease-2);
}
.inst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
  border-color: transparent;
}
.inst-card:hover::after { opacity: 1; }
.inst-card__silh {
  width: 100%;
  height: 60px;
  margin-bottom: 18px;
  color: var(--accent);
  display: flex;
  align-items: center;
}
.inst-card__silh svg { height: 100%; width: auto; }
.inst-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.inst-card .inst-sub { font-size: .82rem; color: var(--accent-deep); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.inst-card p { font-size: .96rem; color: var(--ink-soft); margin-bottom: 14px; }
.inst-meta { display: flex; flex-direction: column; gap: 7px; }
.inst-meta div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  font-size: .88rem;
  color: var(--ink-soft);
}
.inst-meta svg { width: 17px; height: 17px; color: var(--accent-2-deep); margin-top: 2px; flex: none; }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 60ch; margin-bottom: 8px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: var(--surface); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}
.stat__num {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num .suffix { color: var(--accent-2); }
.stat__label { font-size: .92rem; color: rgba(227,240,248,.74); margin-top: 8px; }

/* ---------- Eğitmen ---------- */
.teacher-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.teacher-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.teacher-card__head { display: flex; align-items: center; gap: 16px; }
.teacher-photo {
  width: 70px; height: 70px;
  border-radius: 18px;
  object-fit: cover;
  flex: none;
  border: 2px solid var(--surface-3);
}
.teacher-card h3 { font-size: 1.22rem; margin: 0; }
.teacher-card .role { color: var(--accent-deep); font-weight: 600; font-size: .9rem; }
.teacher-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.teacher-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.teacher-tags span {
  font-size: .78rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 2.6vw, 26px);
  margin-top: 40px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
  min-width: 0;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.is-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}
.price-card.is-featured::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -13px; left: 26px;
  background: var(--accent-2);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: 5px 13px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-card .price-for { font-size: .88rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-amount {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.price-amount .cur { font-size: 1.1rem; color: var(--ink-soft); }
.price-amount .per { font-size: .9rem; font-weight: 500; color: var(--ink-faint); font-family: "Karla", sans-serif; }
.price-list { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 10px; }
.price-list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: .92rem; color: var(--ink-soft); }
.price-list svg { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.price-list .yes svg { color: var(--accent); }
.price-list .no { color: var(--ink-faint); }
.price-list .no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; }
.price-disclaimer { text-align: center; color: var(--ink-faint); font-size: .85rem; margin-top: 22px; }

/* ---------- Process timeline ---------- */
.timeline { margin-top: 44px; display: grid; gap: 0; position: relative; }
.timeline__line {
  position: absolute;
  left: 23px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
  opacity: .35;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 14px 0 26px;
}
.tl-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--white);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--accent-deep);
  z-index: 1;
  flex: none;
}
.tl-body h4 { font-size: 1.16rem; margin-bottom: 4px; }
.tl-body .tl-when { font-size: .8rem; color: var(--accent-deep); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; }
.tl-body p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(18px, 3vw, 26px);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 22px; height: 22px;
  flex: none;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s var(--ease-2), background .2s var(--ease-2), box-shadow .2s var(--ease-2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,134,200,.14);
}
.field .req { color: var(--accent-deep); }

.kvkk {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: .92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.field input[type="checkbox"],
.kvkk input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
  background: none;
  box-shadow: none;
}
.kvkk a { text-decoration: underline; }
.form-submit-row { grid-column: 1 / -1; display: flex; justify-content: flex-start; margin-top: 4px; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact page ---------- */
.contact-hero {
  padding-top: calc(var(--header-h) + clamp(36px, 6vw, 70px));
  padding-bottom: clamp(30px, 4vw, 50px);
  min-height: 240px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease-2);
  min-width: 0;
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  transition: background .24s var(--ease-2), color .24s var(--ease-2);
}
.channel-card:hover .channel-icon { background: var(--accent); color: #fff; }
.channel-icon svg { width: 23px; height: 23px; }
.channel-card h3 { font-size: 1.06rem; margin: 0; }
.channel-card a, .channel-card .val { font-weight: 600; color: var(--ink); word-break: break-word; }
.channel-card a:hover { color: var(--accent-deep); }
.channel-card small { color: var(--ink-faint); font-size: .84rem; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.hours-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-variant-numeric: tabular-nums;
}
.hours-cell.is-today { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(46,134,200,.12); }
.hours-cell .day { font-family: "Outfit", sans-serif; font-weight: 600; font-size: .9rem; color: var(--ink); }
.hours-cell .time { color: var(--ink-soft); font-size: .9rem; }
.hours-cell.is-today .day::after { content: " · bugün"; color: var(--accent-deep); font-size: .75rem; }

/* ---------- 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: 12px;
}
.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 th, table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table th { font-family: "Outfit", sans-serif; font-weight: 600; background: var(--surface-2); color: var(--ink); }
table tr:last-child td { border-bottom: none; }

/* ---------- Notes block ---------- */
.notes-list { display: grid; gap: 14px; margin-top: 30px; max-width: 760px; }
.note-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
}
.note-date {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--accent-deep);
  white-space: nowrap;
}
.note-row p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.note-row strong { color: var(--ink); display: block; font-family: "Outfit", sans-serif; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-card:nth-child(2) { transform: translateY(14px); }
.testi-quote-mark { color: var(--accent-2); font-family: "Outfit", sans-serif; font-size: 2.6rem; line-height: .6; height: 22px; }
.testi-card p { font-size: .98rem; color: var(--ink-soft); margin: 0; }
.testi-author { display: flex; flex-direction: column; margin-top: auto; }
.testi-author strong { font-family: "Outfit", sans-serif; font-size: .98rem; }
.testi-author span { font-size: .82rem; color: var(--ink-faint); }
.testi-stars { color: var(--accent-2); letter-spacing: 2px; font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 50ch; margin-inline: auto; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent-2); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(227,240,248,.78);
  padding-block: clamp(48px, 6vw, 72px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 44px);
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(227,240,248,.6); }
.footer-about { font-size: .94rem; margin: 16px 0; max-width: 34ch; color: rgba(227,240,248,.66); }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(227,240,248,.74); font-size: .94rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-contact div { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: .92rem; margin-bottom: 12px; align-items: start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); margin-top: 2px; flex: none; }
.footer-contact a { color: rgba(227,240,248,.82); word-break: break-word; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  color: rgba(227,240,248,.82);
  transition: background .2s var(--ease-2), color .2s var(--ease-2), border-color .2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: rgba(227,240,248,.56);
}
.footer-bottom .legal { color: rgba(227,240,248,.45); font-size: .8rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px -20px rgba(21,41,58,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.cookie-banner h3 svg { width: 20px; height: 20px; color: var(--accent); }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 11px;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  padding: 0 16px;
  transition: background .2s var(--ease-2), color .2s var(--ease-2), border-color .2s;
}
.cookie-actions [data-consent="accept"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
/* Reject carries equal visual weight to accept — no dark pattern */
.cookie-actions [data-consent="reject"] { background: var(--white); color: var(--ink); border-color: var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Decorative breath float ---------- */
@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); opacity: .5; }
  50% { transform: translateY(-12px) scale(1.03); opacity: .75; }
}
@keyframes drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(28px); }
}
.float-note {
  position: absolute;
  color: var(--accent);
  opacity: .25;
  animation: breathe 9s var(--ease-2) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .float-note { animation: none; }
}

/* ---------- Generic prose for legal pages ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 40px; }
.prose h3 { font-size: 1.2rem; margin-top: 26px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; }
.page-hero {
  padding-top: calc(var(--header-h) + clamp(36px, 6vw, 64px));
  padding-bottom: clamp(20px, 3vw, 36px);
}
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.page-hero p { color: var(--ink-soft); max-width: 60ch; }
.updated { font-size: .85rem; color: var(--ink-faint); }

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.notfound .big {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 11rem);
  color: var(--accent);
  line-height: .9;
  letter-spacing: -0.04em;
}

/* ---------- Thank you ---------- */
.thanks {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.thanks__icon {
  width: 86px; height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.thanks__icon svg { width: 44px; height: 44px; }

main { padding-top: var(--header-h); }
main.no-pad { padding-top: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .result-full { grid-template-columns: 1fr; }
  .teacher-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: flex-start; }
  .testi-card:nth-child(2) { transform: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .inst-card, .price-card, .form-wrap, .channel-card { padding: 18px; }
  .inst-card__silh { height: 50px; }
  .quiz-option__icon { width: 36px; height: 36px; }
  .channel-icon { width: 42px; height: 42px; }
  .hero h1 .hl { white-space: normal; }
  .result-cta-row .btn, .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .brand { font-size: 1.05rem; }
  .brand__mark { width: 34px; height: 34px; }
}

.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;
}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
