/* =========================================================
   Akor Atölyesi — Gitar Okulu
   Palette: bg #FFFFFF / surface #F2F4F1 / ink #16241B
   accent #1F6B3B / accent-2 #E59A2B
   Heading: Sora 700 · Body: Work Sans 400
   ========================================================= */

:root {
  interpolate-size: allow-keywords;

  --bg: #ffffff;
  --surface: #f2f4f1;
  --surface-2: #e8ece6;
  --ink: #16241b;
  --ink-soft: #45564b;
  --ink-faint: #6b7a70;
  --accent: #1f6b3b;
  --accent-deep: #16502c;
  --accent-2: #e59a2b;
  --accent-2-deep: #c47e16;
  --line: rgba(22, 36, 27, 0.12);
  --line-strong: rgba(22, 36, 27, 0.22);

  --header-h: 76px;
  --maxw: 1180px;
  --pad: clamp(18px, 4vw, 56px);
  --radius: 14px;

  --font-head: "Sora", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
}

* { 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 {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent-2); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent-2);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Fret / string divider ---------- */
.fret-rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 22px,
    transparent 22px 30px
  );
  position: relative;
}
.string-deco {
  display: grid;
  gap: 7px;
  padding: 18px 0;
}
.string-deco span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  display: block;
}
.string-deco span:nth-child(1) { opacity: 0.4; }
.string-deco span:nth-child(2) { opacity: 0.6; }
.string-deco span:nth-child(3) { opacity: 0.85; }

/* =========================================================
   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(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: height 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.site-header.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.28);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .mark {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--accent-2);
}
.brand .mark svg { width: 20px; height: 20px; }
.brand b { color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color 200ms ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent-2);
  transition: width 220ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff !important;
  padding: 9px 17px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent-deep);
  color: #fff !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 10px -4px rgba(22,36,27,0.35);
  cursor: pointer;
  padding: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.nav-toggle:hover { border-color: var(--accent); box-shadow: 0 4px 14px -5px rgba(31,107,59,0.45); }
.site-header.scrolled .nav-toggle { background: #fff; }
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  /* decorative bars must not intercept hit-testing — keep the <button> itself
     the element returned by elementFromPoint / the actual click target */
  pointer-events: none;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--ink);
  color: #eef2ec;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 18px) 28px 32px;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: #eef2ec;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 200ms ease, padding-left 220ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-2); padding-left: 6px; }
.drawer .drawer-cta {
  margin-top: 22px;
  border: 0;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px;
  font-size: 1rem;
}
.drawer .drawer-cta:hover { background: var(--accent-2); color: var(--ink); padding-left: 14px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: rgba(238,242,236,0.6);
  line-height: 1.7;
}
.drawer-meta a { font-size: 0.85rem; font-weight: 400; border: 0; padding: 0; display: inline; color: var(--accent-2); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(31,107,59,0.9);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 240ms 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(--ink);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--accent-2);
  color: var(--ink);
}
.btn-amber:hover, .btn-amber:focus-visible {
  background: var(--accent-2-deep);
  color: var(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   MAIN / SECTIONS
   ========================================================= */
main { padding-top: var(--header-h); }

section { position: relative; }
/* anchor offset so fixed header never covers a jumped-to section */
section[id], [id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(30px, 5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 12px; }

.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink); color: #e7ece7; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink .eyebrow { color: var(--accent-2); }

/* =========================================================
   HERO — split asymmetric
   ========================================================= */
.hero {
  padding: clamp(34px, 6vw, 68px) 0 clamp(48px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(229,154,43,0.16), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 520px; }
.hero-copy h1 { margin-top: 18px; }
.hero-copy h1 .grad {
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  margin: 18px 0 28px;
  max-width: 460px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0; margin: 0;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-strip svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 16px; }

.hero-stats {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  line-height: 1;
}
.hero-stats .stat .num small { color: var(--accent-2); font-size: 0.7em; }
.hero-stats .stat .lbl { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; display: block; }

/* =========================================================
   PLANNER CARD (theme signature)
   ========================================================= */
.planner {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 80px -50px rgba(22,36,27,0.5);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.planner-head {
  background: var(--ink);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.planner-head .ph-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.planner-head .ph-title small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}
.planner-head .ph-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(229,154,43,0.18);
  color: var(--accent-2);
}

.planner-panels {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .planner-panels { grid-template-columns: 1fr 0.92fr; }
}

.planner-controls {
  padding: 22px 24px;
  display: grid;
  gap: 20px;
}
.ctrl-group .ctrl-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.ctrl-group .ctrl-label .step-badge {
  width: 22px; height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 160ms ease;
}
.chip:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-1px); }
.chip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.chip.amber[aria-pressed="true"] {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--ink);
}

/* range / days */
.days-row { display: flex; align-items: center; gap: 14px; }
.days-row input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
  height: 4px;
}
.days-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  min-width: 56px;
  text-align: right;
  color: var(--accent);
}

/* summary panel */
.planner-summary {
  background: var(--surface);
  padding: 22px 24px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.summary-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.snum {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.snum .v {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1;
}
.snum .k {
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.snum.flash { animation: numFlash 520ms cubic-bezier(.2,.7,.2,1); }
@keyframes numFlash {
  0% { transform: translateY(6px); opacity: 0.2; }
  60% { transform: translateY(-2px); }
  100% { transform: none; opacity: 1; }
}

/* weekly schedule mini calendar */
.week-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.week-cal .day {
  text-align: center;
  border-radius: 8px;
  padding: 8px 2px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-faint);
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}
.week-cal .day.on {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.week-cal .day .dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin: 5px auto 0;
  opacity: 0;
}
.week-cal .day.on .dot { opacity: 1; background: var(--accent-2); }

/* progress bar */
.progress-wrap .pw-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 7px;
  font-weight: 600;
}
.progress-wrap .pw-label .tabular { color: var(--accent); }
.progress-track {
  height: 9px;
  border-radius: 999px;
  background: var(--surface-2);
  overflow: hidden;
}
.progress-track .fill {
  height: 100%;
  width: 30%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 600ms cubic-bezier(.2,.7,.2,1);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 14px;
}
.plan-price .pp-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}
.plan-price .pp-val small { font-size: 0.62em; color: var(--ink-faint); font-weight: 400; }
.plan-price .pp-note { font-size: 0.72rem; color: var(--ink-faint); }

.planner-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}
.planner-foot .pf-summary {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.planner-foot .pf-summary b { color: var(--ink); }

/* =========================================================
   HOW IT WORKS — 3 inputs (timeline-ish)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 26px);
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -34px rgba(31,107,59,0.55);
  border-color: var(--accent);
}
.step-card .s-no {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 600;
}
.step-card .s-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--surface);
  display: grid;
  place-items: center;
  margin: 12px 0 16px;
  color: var(--accent);
}
.step-card .s-icon svg { width: 26px; height: 26px; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* =========================================================
   STYLES (akustik / elektro / klasik)
   ========================================================= */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.style-card {
  border-radius: 16px;
  padding: 28px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease;
}
.style-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,107,59,0.1), transparent 70%);
}
.style-card.amber::after { background: radial-gradient(circle, rgba(229,154,43,0.16), transparent 70%); }
.style-card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -40px rgba(22,36,27,0.6); }
.style-card .sc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.style-card .sc-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent-2);
  display: grid; place-items: center;
}
.style-card.amber .sc-icon { color: var(--accent-2); }
.style-card .sc-icon svg { width: 24px; height: 24px; }
.style-card h3 { margin: 0; }
.style-card p { color: var(--ink-soft); font-size: 0.95rem; }
.style-card ul {
  list-style: none;
  padding: 0; margin: 14px 0 0;
  display: grid; gap: 8px;
}
.style-card ul li {
  display: flex;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.style-card ul li svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 16px; margin-top: 3px; }
.style-card .sc-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   INSTRUCTOR (editorial split)
   ========================================================= */
.instructor {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}
.instructor-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}
.instructor-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.instructor-media:hover img { transform: scale(1.04); }
.instructor-media .im-tag {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(22,36,27,0.85);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  backdrop-filter: blur(4px);
}
.instructor-media .im-tag b { color: var(--accent-2); }
.instructor-body .quote {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 6px 0 18px;
}
.instructor-body .quote span { color: var(--accent); }
.instructor-body p { color: var(--ink-soft); }
.cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.cred-row .cred {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.cred-row .cred svg { width: 15px; height: 15px; color: var(--accent); }

/* =========================================================
   PRICING
   ========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -40px rgba(22,36,27,0.55); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 30px 60px -40px rgba(31,107,59,0.6);
}
.price-card .pc-pop {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-2);
  color: var(--ink);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.price-card h3 { margin-bottom: 4px; }
.price-card .pc-sub { color: var(--ink-faint); font-size: 0.88rem; margin-bottom: 16px; }
.price-card .pc-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price-card .pc-price small { font-size: 0.4em; color: var(--ink-faint); font-weight: 400; }
.price-card .pc-list {
  list-style: none;
  padding: 0; margin: 18px 0;
  display: grid; gap: 9px;
}
.price-card .pc-list li {
  display: flex;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.price-card .pc-list li svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; }
.price-card .pc-list li.yes svg { color: var(--accent); }
.price-card .pc-list li.no { color: var(--ink-faint); }
.price-card .pc-list li.no svg { color: var(--ink-faint); }
.price-card .pc-deliver {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin: 0 0 18px;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: 9px;
}
.price-card .btn { margin-top: auto; width: 100%; }
.price-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* =========================================================
   FORM / SIGN-UP (plan output)
   ========================================================= */
.signup-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.signup-aside .mini-plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}
.mini-plan .mp-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.mini-plan .mp-row:last-child { border-bottom: 0; }
.mini-plan .mp-row .k { color: var(--ink-faint); }
.mini-plan .mp-row .v { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 30px 70px -54px rgba(22,36,27,0.5);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  border-bottom-color: var(--accent);
  background: #fff;
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.field.kvkk a { color: var(--accent); text-decoration: underline; }
.field 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);
}
.form-card .btn { margin-top: 18px; }
@media (max-width: 600px) {
  .form-card .btn { width: 100%; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.page-hero {
  padding: clamp(40px, 6vw, 76px) 0 clamp(30px, 4vw, 48px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero .ph-inner { max-width: 720px; }
.page-hero h1 { margin: 16px 0 12px; }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; }
.crumbs { font-size: 0.82rem; color: var(--ink-faint); }
.crumbs a:hover { color: var(--accent); }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px;
  background: var(--bg);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px -34px rgba(22,36,27,0.5);
  border-color: var(--accent);
}
.channel-card .cc-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 14px;
}
.channel-card:hover .cc-ico { background: var(--accent); color: #fff; }
.channel-card .cc-ico { transition: background 240ms ease, color 240ms ease; }
.channel-card .cc-ico svg { width: 24px; height: 24px; }
.channel-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.channel-card .cc-val {
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-card a.cc-val:hover { color: var(--accent); }
.channel-card .cc-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hours-grid .day-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  background: var(--bg);
  font-variant-numeric: tabular-nums;
}
.hours-grid .day-card.today {
  border-color: var(--accent);
  background: var(--surface);
}
.hours-grid .day-card .d { font-weight: 600; font-size: 0.9rem; }
.hours-grid .day-card .h { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }
.hours-grid .day-card.today .d::after {
  content: "Bugün";
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--accent);
  margin-left: 7px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 24px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  position: relative;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item summary .ic::before,
.faq-item summary .ic::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .ic::before { top: 10px; left: 2px; width: 18px; height: 2px; }
.faq-item summary .ic::after { left: 10px; top: 2px; width: 2px; height: 18px; transition: transform 360ms cubic-bezier(.4,0,.2,1); }
.faq-item[open] summary .ic::after { transform: rotate(90deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 24px);
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* =========================================================
   TESTIMONIALS (editorial grid)
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testi {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.testi .stars { color: var(--accent-2); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi p { color: var(--ink); font-size: 0.96rem; }
.testi .by {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
.testi .by b { display: block; color: var(--ink); }
.testi .by span { color: var(--ink-faint); }

/* =========================================================
   NOTES / activity
   ========================================================= */
.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.note-item .date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  white-space: nowrap;
}
.note-item .txt { color: var(--ink-soft); font-size: 0.95rem; }
.note-item .txt b { color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: #c9d2cc;
  padding: clamp(48px, 7vw, 76px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand b { color: var(--accent-2); }
.footer-brand p { font-size: 0.9rem; color: #9fb0a5; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a {
  font-size: 0.9rem;
  color: #c9d2cc;
  transition: color 200ms ease, padding-left 200ms ease;
}
.footer-col a:hover { color: var(--accent-2); padding-left: 4px; }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: #c9d2cc;
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-col address a:hover { color: var(--accent-2); }
.footer-bottom {
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #8a9b90;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-bottom .legal-links a:hover { color: var(--accent-2); }
.footer-bottom .vkn { font-variant-numeric: tabular-nums; }

/* =========================================================
   LEGAL / DOC PAGES (prose)
   ========================================================= */
.doc { padding: clamp(40px, 6vw, 72px) 0; }
.doc-wrap { max-width: 760px; }
.doc-wrap h2 { margin-top: 38px; }
.doc-wrap h3 { margin-top: 26px; }
.doc-wrap p, .doc-wrap li {
  color: var(--ink-soft);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.doc-wrap p { margin-bottom: 1.15em; }
.doc-wrap ul { padding-left: 20px; }
.doc-wrap li { margin-bottom: 0.5em; }
.doc-wrap a { color: var(--accent); text-decoration: underline; overflow-wrap: anywhere; }
.doc-wrap .updated { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 8px; }

/* =========================================================
   CTA BLOCK (replaces on-page forms)
   ========================================================= */
.cta-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 30px 70px -54px rgba(22,36,27,0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-card .cta-ico {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--surface);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.cta-card .cta-ico svg { width: 26px; height: 26px; }
.cta-card h3 { margin-bottom: 8px; }
.cta-card > p { color: var(--ink-soft); font-size: 0.98rem; }
.cta-card .cta-points {
  list-style: none;
  padding: 0; margin: 6px 0 22px;
  display: grid; gap: 9px;
  width: 100%;
}
.cta-card .cta-points li {
  display: flex;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.cta-card .cta-points li svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; color: var(--accent); }
@media (max-width: 600px) {
  .cta-card .btn { width: 100%; }
}

/* optional-field hint */
.field label .opt { font-weight: 400; color: var(--ink-faint); font-size: 0.92em; }

/* =========================================================
   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: 6px;
}
.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 {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.table-scroll th { background: var(--surface); font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.table-scroll td { color: var(--ink-soft); }

/* =========================================================
   THANK YOU / 404
   ========================================================= */
.center-screen {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px var(--pad);
}
.center-screen .cs-inner { max-width: 540px; }
.center-screen .big-mark {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--accent);
}
.center-screen .big-mark svg { width: 38px; height: 38px; }
.center-screen h1 { margin-bottom: 12px; }
.center-screen p { color: var(--ink-soft); margin-bottom: 26px; }
.center-screen .err-code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: #e7ece7;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.86rem; color: #b7c2bb; margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 200ms ease, color 200ms ease, transform 160ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-2); color: var(--ink); transform: translateY(-1px); }
/* Reddet (reject) carries equal visual weight to Kabul et — KVKK/GDPR best practice */
.cookie-actions [data-consent="reject"] { background: #eef2ec; color: var(--ink); border-color: #eef2ec; }
.cookie-actions [data-consent="reject"]:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { flex: 0 0 auto; background: transparent; color: #b7c2bb; border-color: rgba(255,255,255,0.28); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions [data-consent="settings"]:hover { background: rgba(255,255,255,0.08); color: #fff; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  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; }
}

/* string strum ambient on hero mark */
@keyframes strumGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,154,43,0); }
  50% { box-shadow: 0 0 0 6px rgba(229,154,43,0.12); }
}
.brand .mark { animation: strumGlow 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .brand .mark { animation: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .instructor { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .planner-summary { border-left: 0; border-top: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .step-card, .style-card, .price-card, .channel-card { padding: 22px 20px; }
  .step-card .s-icon { width: 44px; height: 44px; }
}
@media (max-width: 360px) {
  .week-cal { gap: 3px; }
  .week-cal .day { font-size: 0.62rem; }
}

.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;
}
