/* ==========================================================================
   Ertige Dijital — kurumsal tema
   Koyu lacivert zemin, pirinc vurgu, serif basliklar.
   ========================================================================== */

:root {
  --bg: #0c131f;
  --bg-alt: #101a29;
  --bg-deep: #070b13;
  --panel: #131e2f;
  --panel-2: #172336;
  --line: #22314a;
  --line-soft: #1a2639;

  --ink: #e8edf5;
  --ink-dim: #a9b6c9;
  --ink-mute: #7d8ca3;

  --brass: #c9a45c;
  --brass-dim: #a8873f;
  --brass-soft: rgba(201, 164, 92, 0.12);
  --brass-glow: rgba(201, 164, 92, 0.28);

  --ok: #4ba585;
  --warn: #c9a45c;
  --bad: #c0645f;

  --serif: Georgia, "Times New Roman", "Nimbus Roman", serif;
  --sans: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;

  --shell: 1180px;
  --radius: 3px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.24;
  margin: 0 0 14px;
  color: #fff;
  text-wrap: balance;
}

h1 { font-size: 2.9rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.26rem; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 16px; color: var(--ink-dim); }
a { color: var(--brass); text-decoration: none; }
a:hover { color: var(--brass-dim); text-decoration: underline; }
strong { color: #fff; font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
}

.icon { flex: none; vertical-align: middle; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.lead { font-size: 1.08rem; color: var(--ink-dim); }
.muted { color: var(--ink-mute); font-size: 0.9rem; }
.center { text-align: center; }

/* ---------- Ust bilgi / gezinti ---------- */

.masthead {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 60;
}

.masthead-top {
  border-bottom: 1px solid var(--line-soft);
  background: #0a101a;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.masthead-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.masthead-contact { display: flex; gap: 20px; }
.masthead-contact a,
.masthead-contact span { color: var(--ink-mute); }
.masthead-contact a:hover { color: var(--brass); text-decoration: none; }

.masthead-main {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.24; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-text small {
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-primary a {
  color: var(--ink-dim);
  font-size: 0.93rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-primary a:hover { color: #fff; text-decoration: none; }
.nav-primary a.is-active { color: #fff; border-bottom-color: var(--brass); }

.nav-account { display: flex; gap: 10px; flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-mobile { display: none; }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--sans);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-solid { background: var(--brass); color: #16202f; border-color: var(--brass); }
.btn-solid:hover { background: var(--brass-dim); border-color: var(--brass-dim); color: #16202f; }

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

.btn-line { background: transparent; color: var(--brass); border-color: var(--brass); }
.btn-line:hover { background: var(--brass-soft); color: var(--brass); }

.btn-wide { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- Bolum duzeni ---------- */

.section { padding: 76px 0; }
.section-tight { padding: 52px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-bottom: 0; }

.rule-top { border-top: 1px solid var(--line); padding-top: 34px; }

/* ---------- Giris bolumu ---------- */

.hero {
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(201, 164, 92, 0.05), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}
.hero h1 { font-size: 4.2rem; line-height: 1.04; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero .lead { font-size: 1.16rem; margin-bottom: 30px; max-width: 34em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-facts {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 28px 30px;
}
.hero-facts h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.fact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-row span { color: var(--ink-dim); font-size: 0.92rem; }
.fact-row strong { font-family: var(--serif); font-size: 1.5rem; color: #fff; }

/* ---------- Guven seridi ---------- */

.strip {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-alt);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  padding: 26px 26px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.strip-item:last-child { border-right: 0; }
.strip-item .icon { color: var(--brass); margin-top: 3px; }
.strip-item h4 { margin: 0 0 3px; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; }
.strip-item p { margin: 0; font-size: 0.86rem; color: var(--ink-mute); line-height: 1.5; }

/* ---------- Izgaralar ve paneller ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 30px 28px;
}
.panel-plain { border: 1px solid var(--line); padding: 26px 28px; }

.feature .icon { color: var(--brass); margin-bottom: 16px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature p { margin: 0; font-size: 0.94rem; }

/* ---------- Adimlar ---------- */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step-no {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--brass);
  line-height: 1;
  border-right: 1px solid var(--line);
  padding-right: 22px;
  text-align: right;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; }

/* ---------- Plan kartlari ---------- */

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.plan {
  padding: 36px 30px 32px;
  border-right: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan:last-child { border-right: 0; }
.plan.is-featured { background: var(--panel-2); position: relative; }
.plan.is-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--brass);
}
.plan-flag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
  font-weight: 600;
}
.plan-name { font-family: var(--serif); font-size: 1.6rem; color: #fff; margin-bottom: 4px; }
.plan-blurb { font-size: 0.9rem; color: var(--ink-mute); margin-bottom: 22px; min-height: 42px; }

.plan-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price small { font-family: var(--sans); font-size: 0.92rem; color: var(--ink-mute); font-weight: 400; }
.plan-year { font-size: 0.88rem; color: var(--ink-mute); margin-bottom: 22px; }

.plan-quota {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 0;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.plan-quota div { text-align: center; flex: 1; }
.plan-quota strong { display: block; font-family: var(--serif); font-size: 1.45rem; color: #fff; }
.plan-quota span { font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.05em; }

.plan-list { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--ink-dim);
}
.plan-list li .icon { color: var(--ok); margin-top: 3px; }
.plan-list li.is-off { color: var(--ink-mute); }
.plan-list li.is-off .icon { color: var(--line); }

/* ---------- Karsilastirma tablosu ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 620px;
}
table.data th, table.data td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
table.data thead th {
  background: var(--panel-2);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td.num { font-family: var(--serif); font-size: 1.05rem; color: #fff; }

/* ---------- Sorular ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--brass);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { color: var(--brass); }
.faq .answer { padding: 0 40px 24px 0; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Sayfa basligi bandi ---------- */

.page-head {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-alt);
  padding: 58px 0 52px;
}
.page-head h1 { margin-bottom: 14px; }
.page-head p { max-width: 62ch; margin-bottom: 0; font-size: 1.05rem; }

.crumbs { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 18px; }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--brass); text-decoration: none; }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Cagri bandi ---------- */

.callout {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 44px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.callout h2 { margin-bottom: 8px; }
.callout p { margin: 0; max-width: 56ch; }
.callout-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Formlar ---------- */

.form-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 38px 40px;
}
.form-card h2 { margin-bottom: 6px; }
.form-card > p { margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 7px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0d1624;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.97rem;
  font-family: var(--sans);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.field small { display: block; margin-top: 6px; color: var(--ink-mute); font-size: 0.83rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.notice {
  border-left: 3px solid var(--line-soft);
  background: var(--panel-2);
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 0.93rem;
  color: var(--ink-dim);
}
.notice-ok { border-left-color: var(--ok); }
.notice-warn { border-left-color: var(--warn); }
.notice-bad { border-left-color: var(--bad); }

.wizard-bar {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.wizard-bar span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 7px 12px;
}
.wizard-bar .is-on {
  color: #fff;
  border-color: var(--brass);
  background: var(--brass-soft);
}
.wizard-bar .is-done {
  color: var(--ok);
  border-color: rgba(75, 165, 133, 0.45);
}

.pay-box {
  border: 1px solid var(--line);
  background: #0d1624;
  padding: 4px 18px;
  margin: 18px 0 22px;
}
.pay-box-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.pay-box-row:last-child { border-bottom: 0; }
.pay-box-row strong { color: #fff; font-weight: 650; }
.pay-box-total strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--brass);
  font-weight: 600;
}
.pay-steps {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--ink-dim);
  font-size: 0.93rem;
}
.pay-steps li { margin-bottom: 8px; }

.copy-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}
.iban-text {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.copy-btn {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--brass);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 9px;
  cursor: pointer;
  font-family: var(--sans);
}
.copy-btn:hover { border-color: var(--brass); }
.copy-btn.is-copied { color: var(--ok); border-color: var(--ok); }

.form-foot {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
  color: var(--ink-mute);
}

.auth-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0 80px;
}
.auth-aside h3 { font-size: 1.3rem; }
.auth-aside ul { list-style: none; padding: 0; margin: 22px 0 0; }
.auth-aside li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
  color: var(--ink-dim);
}
.auth-aside li .icon { color: var(--brass); margin-top: 3px; }

/* ---------- Musteri paneli ---------- */

.dash { padding: 48px 0 76px; }
.dash-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 26px; align-items: start; }

.kv { display: grid; grid-template-columns: 190px 1fr; gap: 0; }
.kv dt {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-mute);
  font-size: 0.87rem;
}
.kv dd {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.kv dt:last-of-type, .kv dd:last-of-type { border-bottom: 0; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
}
.tag-ok { border-color: var(--ok); color: var(--ok); }
.tag-warn { border-color: var(--warn); color: var(--warn); }
.tag-bad { border-color: var(--bad); color: var(--bad); }

.key-box {
  font-family: "Consolas", "Courier New", monospace;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  background: #0d1624;
  border: 1px dashed var(--line);
  padding: 13px 16px;
  color: var(--brass);
  word-break: break-all;
}

/* ---------- Alt bilgi ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: #0a101a;
  padding: 56px 0 26px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 38px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand strong { font-family: var(--serif); font-size: 1.18rem; }
.footer-brand p { color: var(--ink-mute); font-size: 0.89rem; margin: 0; max-width: 40ch; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.footer-col a,
.footer-col span {
  display: block;
  color: var(--ink-dim);
  padding: 5px 0;
  font-size: 0.9rem;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-quiet { color: var(--ink-mute) !important; font-size: 0.82rem !important; }

.footer-base {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--ink-mute);
  font-size: 0.82rem;
}

/* ---------- Ekran goruntusu cercevesi ---------- */

.shot {
  border: 1px solid var(--line);
  background: var(--bg-deep);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .58), 0 0 0 1px rgba(201, 164, 92, .08);
}
.shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #0a101a;
  border-bottom: 1px solid var(--line-soft);
}
.shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  flex: none;
}
.shot-bar i:first-child { background: #4a5a74; }
.shot-bar span {
  margin-left: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.shot img,
.shot video {
  display: block;
  width: 100%;
  height: auto;
}
.shot-caption {
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.84rem;
  color: var(--ink-mute);
  background: #0a101a;
}
.shot-video { box-shadow: 0 28px 80px rgba(0, 0, 0, .62), 0 0 0 1px rgba(201, 164, 92, .12); }
.shot-video video { background: #000; }

/* ---------- Vitrin bolumu ---------- */

.section-showcase {
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.showcase-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--line-soft);
}
.showcase-row:last-child { border-bottom: 0; }
.showcase-row.is-flipped .showcase-text { order: 2; }
.showcase-row.is-flipped .shot { order: 1; }
.showcase-text h3 { font-size: 1.62rem; margin-bottom: 12px; }
.showcase-text p { margin-bottom: 14px; }
.showcase-text ul { list-style: none; padding: 0; margin: 0; }
.showcase-text li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 0.94rem;
  color: var(--ink-dim);
}
.showcase-text li .icon { color: var(--brass); margin-top: 3px; }

/* ---------- Onemli bilgi vurgusu ---------- */

.highlight {
  border-left: 4px solid var(--brass);
  background: linear-gradient(90deg, var(--brass-soft), transparent 72%);
  padding: 20px 24px;
  margin: 26px 0;
}
.highlight:first-child { margin-top: 0; }
.highlight:last-child { margin-bottom: 0; }
.highlight h4 {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.highlight p { margin: 0; color: var(--ink); }
.highlight p + p { margin-top: 10px; }

.audience {
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  background: var(--bg-deep);
}
.audience-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.audience-inner > span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  flex: none;
}
.audience-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.audience-inner li {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink-dim);
  font-size: 0.88rem;
  padding: 6px 12px;
}
.plan-save { color: var(--brass); }

.sector-grid { margin-top: 8px; }
.sector-grid h3 { margin-bottom: 8px; }
.vignette h3 { margin-bottom: 10px; }

.chooser {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 32px 34px;
}
.chooser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 22px 0 18px;
}
.chooser fieldset {
  margin: 0;
  border: 1px solid var(--line-soft);
  padding: 16px 18px;
}
.chooser legend {
  padding: 0 8px;
  color: var(--brass);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chooser label {
  display: block;
  margin: 8px 0 0;
  color: var(--ink-dim);
  cursor: pointer;
}
.chooser-result {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 600;
}
.plan.is-suggested {
  border-color: var(--brass);
  box-shadow: inset 0 0 70px rgba(201, 164, 92, .09);
}

.wa-sticky { display: none; }

/* ---------- Dolu pirinc sayi seridi ---------- */

.stat-band {
  background: var(--brass);
  color: #16202f;
  padding: 34px 0;
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-band-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  color: #16202f;
  margin-bottom: 6px;
}
.stat-band-item span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 32, 47, .78);
  font-weight: 600;
}

/* ---------- Buyutulmus rakamlar ---------- */

.fact-row strong { font-size: 1.85rem; }
.plan-price { font-size: 3.2rem; }
.plan-quota strong { font-size: 1.85rem; }
.plan.is-featured::before { height: 4px; }
.plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brass);
  color: #16202f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.plan.is-featured { box-shadow: inset 0 0 70px rgba(201, 164, 92, .07); }
.plan.is-featured .plan-price { color: var(--brass); }
.plan.is-featured .plan-name { font-size: 1.78rem; }

/* ---------- Kart hareketi ve belirme ---------- */

.panel, .plan, .shot { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.panel:hover, .plan:hover { transform: translateY(-3px); border-color: var(--brass-glow); }

.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .panel:hover, .plan:hover, .shot-tilt, .shot-tilt:hover { transform: none; }
}

/* ---------- Duyarli yerlesim ---------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 3rem; }
  .showcase-row { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .showcase-row.is-flipped .showcase-text,
  .showcase-row.is-flipped .shot { order: 0; }
  .shot-tilt { transform: none; }
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: 0; }
  .strip-item:nth-child(1), .strip-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .plan { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan:last-child { border-bottom: 0; }
  .auth-layout, .dash-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .chooser-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .shell { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .hero { padding: 54px 0 48px; }
  .hero h1 { font-size: 2.35rem; }
  .section { padding: 54px 0; }
  .stat-band-item strong { font-size: 2.1rem; }
  .plan-price { font-size: 2.6rem; }
  .highlight { padding: 16px 18px; }

  .nav-primary, .nav-account { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .masthead-main { gap: 16px; }
  .masthead-contact { display: none; }

  body.menu-open .nav-mobile {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }
  .nav-mobile a {
    padding: 13px 20px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-dim);
    font-size: 0.96rem;
  }
  .nav-mobile a:hover { color: #fff; text-decoration: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .strip-item:last-child { border-bottom: 0; }

  .step { grid-template-columns: 52px 1fr; gap: 18px; }
  .step-no { font-size: 1.6rem; padding-right: 14px; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .kv { grid-template-columns: 1fr; }
  .kv dt { border-bottom: 0; padding-bottom: 0; }

  .form-card, .panel { padding: 26px 22px; }
  .callout { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-base { flex-direction: column; gap: 8px; }

  body { padding-bottom: 72px; }
  .wa-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    background: var(--brass);
    color: #16202f;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 18px;
    border: 1px solid var(--brass);
  }
  .wa-sticky:hover { background: var(--brass-dim); color: #16202f; text-decoration: none; }
}
