/* Tuber Transpose — transpose.tuberajans.com
 *
 * Marka değerleri ana sitenin style.css dosyasından alındı:
 *   marka kırmızısı #ff0e2a, hover #e80000
 *   .site-btn      → hap buton, 15px/600, padding 10px 33px
 *   .section-title → 30×3px kırmızı çizgi, başlık 700 / -1px
 * Bu dosya bağımsızdır: ana sitenin 5000 satırlık CSS'ini taşımaz.
 */

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

:root {
  --brand: #ff0e2a;
  --brand-hover: #e80000;
  --ink: #16161a;
  --ink-soft: #4a4a55;
  --muted: #82828f;
  --line: #e8e8ee;
  --bg: #fff;
  --bg-alt: #f7f7fa;
  --dark: #0d0d10;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16, 16, 24, .04), 0 8px 24px rgba(16, 16, 24, .05);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 780px; }
.wrap--form { max-width: 460px; }

/* ------------------------------------------------------------------ üst bar */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.top__in {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}

.top__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  letter-spacing: -.02em;
}

.top__brand img { width: 30px; height: 30px; border-radius: 8px; }

.top__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.top__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.top__nav a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .top__nav a.hide-sm { display: none; }
  .top__in { height: 60px; gap: 12px; }
}

/* ------------------------------------------------------------------ butonlar */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 50px;
  padding: 12px 30px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .16s, color .16s, border-color .16s, transform .16s;
}

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-hover); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); border: 1px solid #d6d6df; }
.btn--ghost:hover { border-color: var(--ink); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f2f2f6; }

.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* -------------------------------------------------------------------- hero */

.hero { padding: 84px 0 72px; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff1f3;
  color: #c00b1f;
  border-radius: 50px;
  padding: 6px 15px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .01em;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.hero h1 {
  font-size: clamp(32px, 5.4vw, 54px);
  letter-spacing: -.035em;
  margin-bottom: 20px;
}

.hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero__note { margin-top: 18px; font-size: 13.5px; color: var(--muted); }

/* --------------------------------------------------------------- bölüm başlığı */

.sec { padding: 72px 0; }
.sec--alt { background: var(--bg-alt); }

.sec__head { margin-bottom: 40px; }
.sec__head--center { text-align: center; }

.sec__head h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 12px; }

.sec__head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0;
}

.sec__head--center p { margin: 0 auto; }

/* Ana sitedeki .section-title:before ile aynı ölçü */
.rule {
  width: 30px;
  height: 3px;
  background: var(--brand);
  margin-top: 18px;
}

.sec__head--center .rule { margin-left: auto; margin-right: auto; }

/* ----------------------------------------------------------------- kartlar */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.card--pad { padding: 30px 32px; }
.card--shadow { box-shadow: var(--shadow); border-color: transparent; }

.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.8px; line-height: 1.65; color: var(--ink-soft); }

.card__ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff1f3;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card__ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------------------------------------------------------- fiyatlar */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.plan--hero {
  border-color: var(--brand);
  box-shadow: 0 10px 34px rgba(255, 14, 42, .12);
}

.plan__tag {
  align-self: flex-start;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.plan h3 { font-size: 19px; margin-bottom: 6px; }

.plan__price {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 10px 0 2px;
}

.plan__price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.plan__sub { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }

.plan p { font-size: 14.8px; margin: 0 0 20px; }

.plan .btn { margin-top: auto; }

/* ------------------------------------------------------------------ metin */

.prose h2 { font-size: 21px; margin: 0 0 14px; }
.prose h3 { font-size: 16px; margin: 22px 0 8px; }
.prose p, .prose li { font-size: 15.2px; line-height: 1.75; }
.prose p { margin: 0 0 13px; }
.prose ul, .prose ol { margin: 0 0 15px; padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose code {
  background: #f2f2f6; border: 1px solid var(--line); border-radius: 5px;
  padding: 1px 6px; font-size: 13px;
  font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
}

.updated { font-size: 13px; color: var(--muted); text-align: center; margin: 0 0 30px; }

.note {
  border-left: 3px solid var(--brand);
  background: #fff5f6;
  border-radius: 0 10px 10px 0;
  padding: 15px 18px;
  margin: 0 0 16px;
}

.note p { margin: 0; font-size: 14.5px; }

/* ------------------------------------------------------------------ tablo */

.tablewrap { overflow-x: auto; margin: 0 0 16px; -webkit-overflow-scrolling: touch; }

table.tt { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }

table.tt th, table.tt td {
  text-align: left; padding: 11px 14px;
  border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.6;
}

table.tt th { font-weight: 700; color: var(--ink); background: #fafafc; white-space: nowrap; }
table.tt tr:last-child td { border-bottom: 0; }

kbd {
  display: inline-block; min-width: 20px; text-align: center;
  background: #fff; border: 1px solid #d6d6df; border-bottom-width: 2px;
  border-radius: 5px; padding: 1px 6px; font-size: 12px; font-weight: 650;
  font-family: inherit; color: var(--ink); margin: 0 1px;
}

/* -------------------------------------------------------------------- SSS */

.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  width: 100%; text-align: left; border: 0; background: transparent;
  font: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink);
  padding: 19px 44px 19px 0; cursor: pointer; position: relative; line-height: 1.5;
}

.faq__q::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s;
}

.faq__item.is-open .faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { display: none; padding: 0 0 20px; }
.faq__item.is-open .faq__a { display: block; }
.faq__a p { margin: 0 0 10px; font-size: 14.8px; line-height: 1.72; }
.faq__a p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ formlar */

.field { display: block; margin-bottom: 16px; }

.field > span {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ink); margin-bottom: 7px;
}

.field__top { display: flex !important; align-items: baseline; justify-content: space-between; gap: 12px; }

.field__link { font-size: 12.5px; font-weight: 500; color: var(--brand); text-decoration: none; }
.field__link:hover { text-decoration: underline; }

.field input {
  width: 100%; border: 1px solid #d6d6df; border-radius: 10px;
  background: #fff; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .14s, box-shadow .14s;
}

.field input:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 14, 42, .12);
}

.field small { display: block; margin-top: 6px; font-size: 12.5px; color: var(--muted); }

.pw { position: relative; display: block; }
.pw input { padding-right: 46px; }

.pw__eye {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 0; background: transparent; border-radius: 9px; cursor: pointer;
  color: #a0a0ac; transition: color .14s;
}

.pw__eye:hover { color: var(--ink); }
.pw__eye svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.pw__eye .e-off { opacity: 0; }
.pw__eye.is-off .e-off { opacity: 1; }
.pw__eye.is-off .e-on { opacity: .45; }

.check {
  display: flex; align-items: flex-start; gap: 11px;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  margin: 4px 0 16px; cursor: pointer; transition: border-color .14s, background .14s;
}

.check:hover { border-color: #cdcdd8; }
.check:has(input:checked) { border-color: var(--brand); background: #fff7f8; }
.check input { flex: none; width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--brand); cursor: pointer; }
.check b { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.check small { display: block; margin-top: 3px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }

.tabs {
  display: flex; gap: 5px; background: #f2f2f6;
  border-radius: 11px; padding: 4px; margin-bottom: 24px;
}

.tab {
  flex: 1; border: 0; background: transparent; border-radius: 8px;
  padding: 10px; font: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: background .14s, color .14s;
}

.tab.is-on { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .08); }

/* ---------------------------------------------------------------- bildirim */

.alert { border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; border: 1px solid; }
.alert p { margin: 0 0 6px; font-size: 14.5px; line-height: 1.6; }
.alert p:last-child { margin-bottom: 0; }
.alert--bad  { background: #fff2f3; border-color: #f3c4c9; color: #8c1220; }
.alert--good { background: #f0faf3; border-color: #bfe4cb; color: #14663a; }

/* ------------------------------------------------------------ hesap ekranı */

.status { display: flex; flex-wrap: wrap; gap: 14px 34px; }
.status__k { display: block; font-size: 12px; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.status__v { font-size: 16px; font-weight: 650; color: var(--ink); }

.badge { display: inline-block; border-radius: 50px; padding: 3px 12px; font-size: 12.5px; font-weight: 700; }
.badge--ok   { background: #e6f6ec; color: #14663a; }
.badge--warn { background: #fff3e3; color: #8a5200; }
.badge--bad  { background: #fdecee; color: #8c1220; }

.code {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--dark); border-radius: 14px; padding: 24px 18px; margin: 6px 0 16px;
}

.code__val {
  font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
  font-size: clamp(26px, 7vw, 38px); font-weight: 700; letter-spacing: .18em;
  color: #fff; user-select: all;
}

.code__copy {
  border: 1px solid rgba(255, 255, 255, .28); background: transparent; color: #fff;
  border-radius: 9px; padding: 8px 14px; font: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; flex: none;
}

.code__copy:hover { background: rgba(255, 255, 255, .12); }

.devices { list-style: none; margin: 0; padding: 0; }
.devices li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.devices li:last-child { border-bottom: 0; }
.devices small { color: var(--muted); font-size: 12.5px; white-space: nowrap; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.actions--center { justify-content: center; }

/* ------------------------------------------------------------------ footer */

.foot { background: var(--dark); color: rgba(255, 255, 255, .55); padding: 44px 0 30px; margin-top: 80px; }

.foot__in { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }

.foot__brand { display: flex; align-items: center; gap: 10px; font-weight: 650; color: #fff; font-size: 15px; text-decoration: none; }
.foot__brand img { width: 26px; height: 26px; border-radius: 7px; }

.foot__links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; }
.foot__links a { color: rgba(255, 255, 255, .58); text-decoration: none; transition: color .15s; }
.foot__links a:hover { color: #fff; }

.foot__legal {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px; line-height: 1.8; color: rgba(255, 255, 255, .4);
}

.foot__legal a { color: rgba(255, 255, 255, .55); text-decoration: none; }
.foot__legal a:hover { color: #fff; }

@media (max-width: 720px) {
  .hero { padding: 56px 0 48px; }
  .sec { padding: 52px 0; }
  .card--pad { padding: 24px 22px; }
  .foot__links { margin-left: 0; }
  .actions .btn { flex: 1 1 100%; }
}
