/* ============================================================
   PTOfis — tanıtım sitesi
   Palet: halter plakalarının uluslararası renk kodu
   25kg kırmızı · 20kg mavi · 15kg sarı · 10kg yeşil
   ============================================================ */

:root {
  /* Renk */
  --ink:        #14171C;
  --ink-2:      #2A2F38;
  --ink-soft:   #5A626F;
  --ink-faint:  #8C939E;
  --porcelain:  #E7E9EC;
  --porcelain-2:#DDE0E5;
  --card:       #FFFFFF;
  --line:       #C9CDD4;
  --line-soft:  #DFE2E7;

  --plate-red:    #D6303A;
  --plate-red-d:  #B3242D;
  --plate-blue:   #1B54C4;
  --plate-yellow: #F2B705;
  --plate-green:  #1F8A4C;

  /* Tipografi */
  --display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --body:    "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;

  /* Ölçü */
  --wrap: 1200px;
  --gutter-w: 132px;
  --pad: clamp(20px, 5vw, 48px);
  --sec-y: clamp(72px, 9vw, 132px);
  --r: 4px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.05; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

.mono { font-family: var(--mono); font-weight: 500; letter-spacing: .06em; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Odak: her yerde görünür ── */
:focus-visible {
  outline: 2.5px solid var(--plate-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; top: -60px; left: var(--pad); z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  font-family: var(--mono); font-size: 13px; transition: top .2s;
}
.skip:focus { top: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--porcelain) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-head.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--porcelain) 96%, transparent);
}
.head-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}

/* Logo: halter. İç plaka çifti 25kg kırmızısında — sayfanın tüm paleti
   halter plakalarının renk kodundan türediği için marka da oraya bağlanıyor.
   Satır içi SVG ve currentColor kullanılıyor: header'da koyu, footer'da beyaz
   görünmesi gerek; harici dosya olsaydı üstteki CSS rengi değiştiremezdi. */
.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  height: 20px; width: auto; flex-shrink: 0;
  color: var(--ink); fill: currentColor;
}
.logo-mark .lm-plate { fill: var(--plate-red); }
.logo-word {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  font-stretch: 112%; letter-spacing: -.015em;
}
.logo-word em { font-style: normal; font-weight: 500; }

.head-nav { display: flex; gap: 26px; margin-inline-start: auto; }
.head-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; position: relative; transition: color .18s;
}
.head-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--plate-red); transition: width .22s;
}
.head-nav a:hover { color: var(--ink); }
.head-nav a:hover::after { width: 100%; }

.head-actions { display: flex; align-items: center; gap: 14px; }
/* Yasal sayfalarda menü yok, aksiyonlar sağa yaslanır. Sınıf olarak duruyor
   çünkü sayfalar sıkı CSP altında — style="" özniteliği engellenirdi. */
.head-actions.is-end { margin-inline-start: auto; }

.lang { display: inline-flex; align-items: center; gap: 8px; }
.lang-btn {
  background: none; border: 0; cursor: pointer; padding: 4px 2px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  color: var(--ink-faint); transition: color .18s;
}
.lang-btn[aria-pressed="true"] { color: var(--ink); }
.lang-btn:hover { color: var(--ink); }
.lang-sep { width: 1px; height: 13px; background: var(--line); }

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 26px; border: 1.5px solid transparent;
  border-radius: var(--r); cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 15.5px;
  font-stretch: 105%; letter-spacing: .005em; white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-full { width: 100%; }

.btn-red { background: var(--plate-red); color: #fff; border-color: var(--plate-red); }
.btn-red:hover { background: var(--plate-red-d); border-color: var(--plate-red-d); }

.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: var(--plate-red); border-color: var(--plate-red); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ── Mobil menü ── */
.burger {
  display: none; width: 40px; height: 40px; border: 1.5px solid var(--line);
  border-radius: var(--r); background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 17px; height: 2px; background: var(--ink); transition: transform .22s, opacity .22s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 12px var(--pad) 22px;
  display: flex; flex-direction: column;
}
/* [hidden] varsayilan kurali sinif ozgullugune yeniliyor — acikca ez. */
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  font-family: var(--display); font-weight: 600; font-size: 17px;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .mobile-cta { color: var(--plate-red); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 104px); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(36px, 5vw, 64px); align-items: center;
}

.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--plate-red);
}

.hero-title {
  font-size: clamp(44px, 7.2vw, 88px);
  font-weight: 800; font-stretch: 118%;
  letter-spacing: -.035em; line-height: .95;
}
.hero-title .hl {
  color: var(--plate-red);
  position: relative; white-space: nowrap;
}
.hero-sub {
  margin-top: 26px; max-width: 46ch;
  font-size: clamp(16px, 1.35vw, 18.5px); color: var(--ink-soft); line-height: 1.62;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note {
  margin-top: 22px; max-width: 44ch;
  font-size: 14px; color: var(--ink-faint); line-height: 1.55;
}

/* ── SIGNATURE: haftalık planlayıcı ── */
.hero-panel { position: relative; }
.planner {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--r);
  box-shadow: 10px 10px 0 var(--porcelain-2);
  padding: 20px;
}
.planner-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.trainer { display: flex; align-items: center; gap: 11px; min-width: 0; }
.avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--plate-blue); color: #fff;
  font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
.trainer-meta { display: flex; flex-direction: column; min-width: 0; }
.trainer-meta strong {
  font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -.01em;
}
.trainer-meta em {
  font-style: normal; font-size: 12.5px; color: var(--ink-faint);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.week-tag {
  font-size: 10.5px; color: var(--ink-faint); flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px;
}

.planner-grid {
  display: grid;
  grid-template-columns: 46px repeat(7, minmax(0, 1fr));
  gap: 4px; margin: 16px 0;
}
.pg-corner { }
.pg-day {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  color: var(--ink-faint); text-align: center; padding-bottom: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.pg-time {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  color: var(--ink-faint); display: flex; align-items: center;
}
.slot {
  border: 1.5px solid var(--line-soft); border-radius: 3px;
  background: transparent; height: clamp(24px, 3.6vw, 40px);
  cursor: default; padding: 0; position: relative;
  transition: background .16s, border-color .16s, transform .16s;
}
.slot.is-free {
  cursor: pointer;
  border-color: color-mix(in srgb, var(--plate-green) 42%, transparent);
  background: color-mix(in srgb, var(--plate-green) 9%, transparent);
}
.slot.is-free:hover {
  border-color: var(--plate-green);
  background: color-mix(in srgb, var(--plate-green) 20%, transparent);
  transform: translateY(-2px);
}
.slot.is-taken {
  background: repeating-linear-gradient(
    -45deg, var(--porcelain-2) 0 3px, transparent 3px 6px
  );
  border-color: var(--line-soft);
}
.slot.is-off { border-style: dashed; border-color: var(--line-soft); opacity: .5; }
.slot.is-picked {
  background: var(--plate-green); border-color: var(--plate-green);
  transform: translateY(-2px);
}
.slot.is-picked::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 9px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.planner-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.planner-status { font-size: 12px; color: var(--ink-soft); }
.planner-status.is-done { color: var(--plate-green); font-weight: 600; }
.legend { display: flex; gap: 14px; font-size: 10.5px; color: var(--ink-faint); }
.legend span { display: inline-flex; align-items: center; gap: 5px; }
.dot { width: 9px; height: 9px; border-radius: 2px; display: block; }
.dot-free  { background: color-mix(in srgb, var(--plate-green) 26%, transparent); border: 1.5px solid var(--plate-green); }
.dot-taken { background: var(--porcelain-2); border: 1.5px solid var(--line); }

/* ============================================================
   BÖLÜM ÇATISI — solda mono etiketli cetvel
   ============================================================ */
.sec { padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.sec-grid { display: grid; grid-template-columns: var(--gutter-w) minmax(0, 1fr); gap: 0 32px; }
.gutter {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  color: var(--ink-faint); text-transform: uppercase;
  padding-top: 8px; position: relative;
}
.gutter::before {
  content: ""; position: absolute; left: 0; top: -8px; width: 34px; height: 3px;
  background: var(--ink);
}
.sec-body { min-width: 0; }
.sec-title {
  font-size: clamp(30px, 4vw, 50px); font-weight: 800; font-stretch: 112%;
  letter-spacing: -.03em; max-width: 20ch;
}
.sec-lead {
  margin-top: 18px; max-width: 58ch; font-size: 17.5px;
  color: var(--ink-soft); line-height: 1.6;
}

.sec-tint { border-top: 0; }
.tint-blue   { background: linear-gradient(180deg, color-mix(in srgb, var(--plate-blue) 6%, var(--porcelain)), var(--porcelain)); }
.tint-yellow { background: linear-gradient(180deg, color-mix(in srgb, var(--plate-yellow) 10%, var(--porcelain)), var(--porcelain)); }
.tint-plain  { background: var(--porcelain-2); }

.tint-blue   .gutter::before { background: var(--plate-blue); }
.tint-yellow .gutter::before { background: var(--plate-yellow); }

/* ── Adımlar (gerçek bir sıra) ── */
.steps {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 28px 26px 4px 0; border-inline-end: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-inline-end: 0; }
.step:not(:first-child) { padding-inline-start: 26px; }
.step::before {
  content: ""; position: absolute; inset-inline-start: 0; top: -1px;
  width: 46px; height: 3px; background: var(--plate-red);
}
.step:not(:first-child)::before { inset-inline-start: 26px; }
.step-no {
  font-size: 12px; font-weight: 700; color: var(--plate-red);
  letter-spacing: .1em; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 21px; font-stretch: 108%; letter-spacing: -.02em; }
.step p { margin-top: 10px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.58; }

/* ── Özellik kartları ── */
.cards {
  margin-top: 42px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.card { background: var(--card); padding: 28px 26px 30px; }
.card h3 {
  font-size: 18.5px; font-stretch: 106%; letter-spacing: -.018em;
  padding-inline-start: 14px; position: relative;
}
.card h3::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 4px; bottom: 4px;
  width: 3px; background: var(--ink-faint);
}
.tint-blue   .card h3::before { background: var(--plate-blue); }
.tint-yellow .card h3::before { background: var(--plate-yellow); }
.card p {
  margin-top: 12px; padding-inline-start: 14px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.58;
}

/* ── Vaat şeridi ── */
.strip { background: var(--ink); color: #fff; padding-block: clamp(40px, 5vw, 62px); }
.strip-inner {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}
.strip-item { display: flex; gap: 16px; align-items: flex-start; }
.strip-k {
  font-size: 12px; font-weight: 700; color: var(--plate-yellow);
  padding-top: 4px; flex-shrink: 0;
}
.strip-item p {
  font-family: var(--display); font-weight: 500; font-stretch: 104%;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.35;
  letter-spacing: -.012em; color: #E9EBEE;
}

/* ── Planlar ── */
.plans {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.plan {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 28px 26px 30px;
  display: flex; flex-direction: column;
}
.plan-lead {
  border-color: var(--ink); box-shadow: 8px 8px 0 var(--porcelain-2);
}
.plan-tag { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; color: var(--ink-faint); }
.plan h3 {
  margin-top: 12px; font-size: 24px; font-stretch: 110%; letter-spacing: -.022em;
}
.plan-price { margin-top: 14px; display: flex; align-items: baseline; gap: 7px; }

/* Fiyat rakamı yerine geçen not (lansmana kadar) */
.plan-note {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  color: var(--ink-faint); line-height: 1.4;
  border-block-end: 2px solid var(--line); padding-block-end: 8px;
}
.plan-lead .plan-note { color: var(--plate-red); border-block-end-color: var(--plate-red); }

/* Fiyatlar geri geldiğinde kullanılacak — README'ye bak */
.plan-num {
  font-family: var(--display); font-weight: 800; font-stretch: 116%;
  font-size: 40px; letter-spacing: -.04em; line-height: 1;
}
.plan-lead .plan-num { color: var(--plate-red); }
.plan-per { font-size: 12.5px; color: var(--ink-faint); }
.plan ul { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan li {
  position: relative; padding-inline-start: 22px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.5;
}
.plan li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 7px;
  width: 8px; height: 4.5px;
  border-left: 2px solid var(--plate-green); border-bottom: 2px solid var(--plate-green);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: 26px; }
.plan-foot {
  margin-top: 22px; font-size: 13.5px; color: var(--ink-faint); max-width: 62ch; line-height: 1.55;
}

/* ── SSS ── */
.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0;
  position: relative; font-family: var(--display); font-weight: 600;
  font-size: clamp(16.5px, 1.7vw, 19.5px); font-stretch: 106%;
  letter-spacing: -.018em; transition: color .18s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--plate-red); }
.qa summary i {
  position: absolute; inset-inline-end: 6px; top: 50%; width: 13px; height: 13px;
  transform: translateY(-50%);
}
.qa summary i::before, .qa summary i::after {
  content: ""; position: absolute; background: var(--ink); inset: 0; margin: auto;
  transition: transform .22s, opacity .22s;
}
.qa summary i::before { width: 13px; height: 2px; }
.qa summary i::after  { width: 2px; height: 13px; }
.qa[open] summary i::after { transform: rotate(90deg); opacity: 0; }
.qa[open] summary { color: var(--plate-red); }
.qa[open] summary i::before { background: var(--plate-red); }
.qa > p {
  padding: 0 8% 26px 0; max-width: 70ch;
  font-size: 16px; color: var(--ink-soft); line-height: 1.62;
}

/* ============================================================
   KAYIT
   ============================================================ */
.signup { background: var(--ink); color: #fff; padding-block: clamp(64px, 8vw, 108px); }
.signup-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.eyebrow-light { color: #9AA2AE; }
.eyebrow-light::before { background: var(--plate-yellow); }
.signup-title {
  font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; font-stretch: 114%;
  letter-spacing: -.032em;
}
.signup-sub { margin-top: 18px; max-width: 42ch; color: #AFB6C0; font-size: 16.5px; line-height: 1.6; }

.role-pick { border: 0; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.role { position: relative; }
.role input {
  position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.role span {
  display: block; padding: 10px 18px; border: 1.5px solid #3A414D;
  border-radius: 100px; font-size: 14.5px; color: #AFB6C0;
  transition: border-color .18s, color .18s, background .18s;
}
.role input:checked + span { border-color: var(--plate-yellow); color: var(--ink); background: var(--plate-yellow); font-weight: 600; }
.role input:focus-visible + span { outline: 2.5px solid #fff; outline-offset: 3px; }

.field { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.field input[type="email"] {
  flex: 1 1 220px; min-width: 0;
  background: #1D222A; border: 1.5px solid #3A414D; border-radius: var(--r);
  padding: 15px 18px; color: #fff; font-size: 16px;
  transition: border-color .18s;
}
.field input[type="email"]::placeholder { color: #6B7280; }
.field input[type="email"]:focus { border-color: var(--plate-yellow); outline: none; }
.field input[type="email"]:focus-visible { outline: 2.5px solid var(--plate-yellow); outline-offset: 2px; }

.form-msg { margin-top: 14px; font-size: 14.5px; min-height: 1.4em; }
.form-msg.ok  { color: var(--plate-yellow); font-weight: 600; }
.form-msg.err { color: #FF8A80; }
.form-kvkk { margin-top: 10px; font-size: 12.5px; color: #767E8A; line-height: 1.5; max-width: 46ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: #0E1116; color: #9AA2AE; padding-top: clamp(48px, 6vw, 76px); }
.foot-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px; padding-bottom: 44px;
}
.logo-light .logo-word { color: #fff; }
.logo-light .logo-mark { color: #fff; }
.foot-brand p { margin-top: 16px; font-size: 15px; max-width: 28ch; }

.foot-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.foot-nav > div { display: flex; flex-direction: column; gap: 11px; }
.foot-nav h4 {
  font-size: 11px; font-family: var(--mono); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #5F6773; margin-bottom: 3px;
}
.foot-nav a { font-size: 15px; transition: color .18s; width: fit-content; }
.foot-nav a:hover { color: #fff; }

.foot-bottom {
  border-top: 1px solid #1D222A; padding-block: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.foot-bottom p { font-size: 11px; color: #5F6773; letter-spacing: .12em; }

/* ============================================================
   HAREKET — scroll ile ortaya çıkış
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.3,1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   YASAL SAYFALAR (gizlilik / kvkk / kosullar)
   ============================================================ */
.legal { padding-block: clamp(48px, 6vw, 88px) clamp(64px, 8vw, 104px); }
.legal-inner { max-width: 760px; }
.legal-back {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
}
.legal-back:hover { color: var(--plate-red); }
.legal h1 {
  font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; font-stretch: 112%;
  letter-spacing: -.03em;
}
.legal-date { margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); letter-spacing: .08em; }
.legal-draft {
  margin-top: 26px; padding: 16px 18px;
  border: 1.5px solid var(--plate-yellow);
  background: color-mix(in srgb, var(--plate-yellow) 14%, transparent);
  border-radius: var(--r); font-size: 14.5px; line-height: 1.55;
}
.legal h2 {
  margin-top: 42px; font-size: 20px; font-stretch: 106%; letter-spacing: -.02em;
  padding-inline-start: 14px; position: relative;
}
.legal h2::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 3px; bottom: 3px;
  width: 3px; background: var(--plate-blue);
}
.legal p, .legal li { font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
.legal p { margin-top: 14px; }
.legal ul { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.legal li { position: relative; padding-inline-start: 20px; }
.legal li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--line);
}
.legal a:not(.legal-back) { color: var(--plate-blue); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   DUYARLI
   ============================================================ */
/* Masaustunde mobil menu hicbir kosulda gorunmez
   (mobilde acikken pencere buyutulurse acik kalmasin). */
@media (min-width: 901px) {
  .mobile-nav { display: none; }
}

@media (max-width: 1080px) {
  :root { --gutter-w: 104px; }
  .head-nav { gap: 20px; }
  .head-nav a { font-size: 14px; }
}

@media (max-width: 900px) {
  .head-nav { display: none; }
  .burger { display: flex; }
  .head-actions { margin-inline-start: auto; }
  .head-actions .btn-sm { display: none; }
  .head-actions .btn-keep { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: clamp(40px, 11vw, 62px); }
  .hero-sub, .hero-note { max-width: 54ch; }

  .sec-grid { grid-template-columns: 1fr; gap: 0; }
  .gutter { margin-bottom: 20px; padding-top: 12px; }
  .sec-title { max-width: 24ch; }

  .steps { grid-template-columns: 1fr; }
  .step { border-inline-end: 0; border-bottom: 1px solid var(--line); padding: 26px 0 24px; }
  .step:not(:first-child) { padding-inline-start: 0; }
  .step:not(:first-child)::before { inset-inline-start: 0; }
  .step:last-child { border-bottom: 0; }

  .strip-inner { grid-template-columns: 1fr; gap: 22px; }
  .signup-inner { grid-template-columns: 1fr; gap: 34px; }
  .foot-inner { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .planner { padding: 15px; box-shadow: 6px 6px 0 var(--porcelain-2); }
  .planner-grid { grid-template-columns: 38px repeat(7, minmax(0, 1fr)); gap: 3px; }
  .pg-day, .pg-time { font-size: 9px; }
  .slot { height: 24px; }
  .planner-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .cards { grid-template-columns: 1fr; }
  .foot-nav { grid-template-columns: 1fr; }
}
