@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-var-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg-0: #04101f;
  --bg-1: #061426;
  --bg-2: #08263b;
  --surface: rgba(7, 25, 44, .70);
  --surface-2: rgba(255, 255, 255, .045);
  --surface-3: rgba(255, 255, 255, .070);
  --line: rgba(202, 229, 241, .16);
  --line-2: rgba(202, 229, 241, .10);
  --text: #f6f9fc;
  --muted: rgba(246, 249, 252, .72);
  --muted-2: rgba(246, 249, 252, .55);
  --cyan: #26d8c7;
  --cyan-2: #00c4b4;
  --cyan-3: #11a897;
  --blue: #35a5c6;
  --navy-text: #061426;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1240px;
  --wide: 1480px;
  --font: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html { background: var(--bg-0); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 72% 4%, rgba(0, 196, 180, .18), transparent 28%),
    radial-gradient(circle at 15% 86%, rgba(53, 165, 198, .12), transparent 34%),
    linear-gradient(135deg, #04101f 0%, #061426 42%, #061a2c 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
  opacity: .23;
}

@media (max-width: 768px) {
  body::before { position: absolute; }
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container-wide {
  width: min(var(--wide), calc(100% - 72px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 16, 31, .74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(202, 229, 241, .10);
}

.nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-svg {
  width: clamp(164px, 13vw, 214px);
  height: auto;
  background: transparent;
  border: 0;
  opacity: .92;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.18));
  display: block;
}

.menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  font-weight: 720;
}

.menu a { transition: color .18s ease; }
.menu a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--navy-text);
  background: linear-gradient(135deg, #39ead8, #16cbbb 68%, #0fb2a4);
  box-shadow: 0 18px 42px rgba(0, 196, 180, .24), inset 0 1px 0 rgba(255,255,255,.35);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(0, 196, 180, .30), inset 0 1px 0 rgba(255,255,255,.42);
}

.btn-secondary {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.035);
  border-color: rgba(220, 238, 248, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(220, 238, 248, .33);
}

.btn-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}

.hero { padding: 78px 0 88px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(214, 236, 246, .22);
  background: rgba(255, 255, 255, .055);
  color: rgba(255,255,255,.93);
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 15px;
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  margin-bottom: 34px;
}

.headline {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 5.5vw, 86px);
  line-height: 1.04;
  letter-spacing: -.022em;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0,0,0,.18);
}

.lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.22vw, 21px);
  line-height: 1.68;
  font-weight: 430;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.hero .btn {
  min-height: 62px;
  padding: 0 28px;
  font-size: 16px;
}

.note {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255,255,255,.65);
  font-size: 15.5px;
  line-height: 1.55;
}

[id] { scroll-margin-top: 104px; }

.dashboard {
  position: relative;
  width: 100%;
  min-height: 640px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(10,32,54,.74), rgba(4,18,33,.58)),
    radial-gradient(circle at 80% 0%, rgba(38,216,199,.10), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  padding: 36px 36px 32px;
  backdrop-filter: blur(18px);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 16%, rgba(38,216,199,.13), transparent 27%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.032), transparent);
  pointer-events: none;
}

.process-header {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.process-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-kicker::before,
.process-kicker::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  flex-shrink: 0;
}

.process-kicker::before {
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.process-kicker::after {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.process-title {
  color: #fff;
  font-size: 22px;
  font-weight: 820;
  letter-spacing: -.018em;
  margin: 0;
  line-height: 1.3;
}

.process-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(38,216,199,.7) 0%,
    rgba(38,216,199,.3) 60%,
    rgba(38,216,199,.08) 100%);
  border-radius: 2px;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(202,229,241,.08);
  position: relative;
}

.process-step:last-child { border-bottom: 0; padding-bottom: 0; }
.process-step:first-child { padding-top: 0; }

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 30% 28%, rgba(38,216,199,.22), rgba(4,18,33,.9));
  border: 1.5px solid rgba(38,216,199,.45);
  box-shadow: 0 0 22px rgba(38,216,199,.12), inset 0 1px 0 rgba(255,255,255,.08);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 820;
}

.step-num svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  stroke-width: 2;
  fill: none;
}

.process-step.done .step-num {
  background: linear-gradient(135deg, rgba(38,216,199,.28), rgba(38,216,199,.10));
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(38,216,199,.22), inset 0 1px 0 rgba(255,255,255,.12);
}

.step-body { padding-top: 10px; }

.step-label {
  color: rgba(255,255,255,.95);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -.01em;
  margin: 0 0 5px;
}

.step-desc {
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  background: rgba(38,216,199,.10);
  border: 1px solid rgba(38,216,199,.22);
  color: rgba(38,216,199,.9);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.process-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(202,229,241,.09);
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

.process-foot svg { flex-shrink: 0; opacity: .55; }

.section {
  padding: 94px 0;
  position: relative;
}

.section.compact { padding: 72px 0; }

.section-soft {
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(202, 229, 241, .07);
  border-bottom: 1px solid rgba(202, 229, 241, .07);
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 14px;
}

.kicker::before,
.kicker::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  flex-shrink: 0;
}

.kicker::before {
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.kicker::after {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.015em;
  font-weight: 900;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.032));
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.05);
  padding: 28px;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 82% 0%, rgba(38,216,199,.10), transparent 34%);
  pointer-events: none;
}

.card > * { position: relative; z-index: 1; }

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #dffffb;
  background: rgba(38,216,199,.10);
  border: 1px solid rgba(38,216,199,.18);
  margin-bottom: 20px;
  font-weight: 900;
}

.card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 21px;
  letter-spacing: -.01em;
  line-height: 1.24;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}

.card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14.5px;
}

.card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0;
  top: .62em;
  box-shadow: 0 0 14px rgba(38,216,199,.38);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.process-list { display: grid; gap: 16px; }

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.060), rgba(255,255,255,.030));
  border: 1px solid var(--line);
}

.process-no {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #35e4d1, #10bfb0);
  color: #061426;
  font-weight: 900;
}

.process-item h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 19px;
  letter-spacing: -.01em;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.fit-box {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fit-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(202, 229, 241, .10);
}

.fit-item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 16px;
}

.fit-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.form-panel {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.070), rgba(255,255,255,.030));
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(0,0,0,.17);
  padding: 36px;
  overflow: hidden;
  position: relative;
}

.contact-panel::before,
.form-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 84% 0%, rgba(38,216,199,.12), transparent 36%);
  pointer-events: none;
}

.contact-panel > *,
.form-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 16px 0 0;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.method {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(202, 229, 241, .10);
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(38,216,199,.10);
  color: var(--cyan);
}

.method strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}

.method span {
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field.full { grid-column: 1 / -1; }

label {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 780;
  margin: 0 0 7px;
}

input, select, textarea {
  width: 100%;
  color: #fff;
  font: inherit;
  border: 1px solid rgba(202, 229, 241, .14);
  background: rgba(4, 16, 31, .62);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,.36); }
textarea { min-height: 112px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: rgba(38, 216, 199, .55);
  box-shadow: 0 0 0 3px rgba(38, 216, 199, .14);
}

.form-panel .btn {
  margin-top: 16px;
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 12.5px;
  line-height: 1.55;
}

.kvkk-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(202,229,241,.13);
  border-radius: 12px;
}
.kvkk-row input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  margin-top: 2px; accent-color: #26d8c7;
  cursor: pointer;
}
.kvkk-row label {
  font-size: 13px;
  color: rgba(246,249,252,.68);
  line-height: 1.6;
  cursor: pointer;
}
.kvkk-row label a { color: #26d8c7; text-decoration: underline; text-underline-offset: 2px; }
.kvkk-row label a:hover { color: #5ee8d8; }

.kvkk-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(4,16,31,.85); backdrop-filter: blur(6px);
  z-index: 9999; align-items: center; justify-content: center; padding: 24px;
}
.kvkk-overlay.open { display: flex; }
.kvkk-modal {
  background: #0b1e30; border: 1px solid rgba(202,229,241,.18);
  border-radius: 20px; max-width: 660px; width: 100%;
  max-height: 80vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.kvkk-modal-head {
  padding: 24px 28px 20px; border-bottom: 1px solid rgba(202,229,241,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.kvkk-modal-head h2 { margin: 0; font-size: 17px; font-weight: 700; color: #fff; }
.kvkk-modal-x {
  background: rgba(255,255,255,.08); border: none; color: rgba(246,249,252,.7);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
.kvkk-modal-x:hover { background: rgba(255,255,255,.15); }
.kvkk-modal-body {
  overflow-y: auto; padding: 24px 28px;
  font-size: 13.5px; color: rgba(246,249,252,.72); line-height: 1.75;
}
.kvkk-modal-body h3 { color: #fff; font-size: 14px; font-weight: 700; margin: 22px 0 8px; }
.kvkk-modal-body h3:first-child { margin-top: 0; }
.kvkk-modal-body p { margin: 0 0 10px; }
.kvkk-modal-body ul { margin: 0 0 10px; padding-left: 20px; }
.kvkk-modal-body ul li { margin-bottom: 4px; }
.kvkk-modal-foot {
  padding: 18px 28px; border-top: 1px solid rgba(202,229,241,.1);
  display: flex; gap: 10px; justify-content: flex-end;
}
.kvkk-btn-close {
  background: rgba(255,255,255,.08); border: 1px solid rgba(202,229,241,.15);
  color: rgba(246,249,252,.8); padding: 10px 20px; border-radius: 10px;
  cursor: pointer; font-size: 14px; font-weight: 600; transition: background .2s;
}
.kvkk-btn-close:hover { background: rgba(255,255,255,.14); }
.kvkk-btn-accept {
  background: linear-gradient(135deg,#26d8c7,#35a5c6); border: none;
  color: #04101f; padding: 10px 22px; border-radius: 10px;
  cursor: pointer; font-size: 14px; font-weight: 700; transition: opacity .2s;
}
.kvkk-btn-accept:hover { opacity: .88; }

.faq {
  display: grid;
  gap: 13px;
  max-width: 920px;
  margin: 0 auto;
}

details {
  border-radius: 20px;
  background: rgba(255,255,255,.050);
  border: 1px solid var(--line);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: #fff;
  font-weight: 840;
  font-size: 16px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

footer {
  padding: 44px 0;
  border-top: 1px solid rgba(202, 229, 241, .10);
  background: rgba(0,0,0,.12);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  margin-top: 10px;
  max-width: 540px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(202,229,241,.12);
  color: rgba(246,249,252,.65);
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}

.footer-social:hover {
  background: rgba(38,216,199,.15);
  border-color: rgba(38,216,199,.35);
  color: #26d8c7;
}

.footer-social svg { display: block; }

.footer-wa-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s, visibility .3s, background .2s, border-color .2s;
}

.footer-wa-btn.wa-footer-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.35);
  color: #25d366;
}

.footer-wa-btn.wa-footer-visible:hover {
  background: rgba(37,211,102,.28);
  border-color: rgba(37,211,102,.55);
  color: #25d366;
}

.stat-card { text-align: center; padding: 36px 28px; }
.stat-num {
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #26d8c7, #35a5c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card h3 { margin-bottom: 10px; font-size: 17px; }
.stat-card p { font-size: 14.5px; line-height: 1.6; color: rgba(246,249,252,.65); margin: 0; }
.stat-source {
  text-align: center;
  margin-top: 36px;
  color: rgba(246,249,252,.38);
  font-size: 12.5px;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s, opacity .3s, visibility .3s;
}

.wa-float.wa-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  color: #fff;
}

.wa-float svg { flex-shrink: 0; }

@media (max-width: 1180px) {
  .container-wide { width: min(100% - 44px, var(--wide)); }
  .hero-grid, .split, .contact-wrap { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .dashboard { min-height: auto; }
  .headline { max-width: 980px; }
  .lead { max-width: 900px; }
  .menu { gap: 16px; }
}

@media (max-width: 920px) {
  .nav { grid-template-columns: 1fr auto; }
  .menu { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fit-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container, .container-wide { width: min(100% - 28px, var(--max)); }
  .site-header { position: static; }
  .nav { min-height: 74px; gap: 16px; }
  .logo-svg { width: 172px; }
  .nav .btn { font-size: 13px; padding: 0 14px; min-height: 42px; }
  .hero { padding: 44px 0 62px; }
  .pill { font-size: 13px; padding: 9px 13px; margin-bottom: 26px; }
  .headline { font-size: clamp(40px, 13vw, 58px); letter-spacing: -.018em; }
  .lead { font-size: 16.5px; margin-top: 23px; }
  .actions { gap: 13px; margin-top: 30px; }
  .hero .btn, .btn { width: 100%; min-height: 56px; padding: 0 18px; }
  .note { font-size: 14.5px; }
  .dashboard { border-radius: 24px; padding: 24px 20px; }
  .process-steps::before { left: 19px; }
  .process-step { grid-template-columns: 40px 1fr; gap: 14px; padding: 16px 0; }
  .step-num { width: 40px; height: 40px; }
  .step-num svg { width: 17px; height: 17px; }
  .section { padding: 66px 0; }
  .section.compact { padding: 54px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card, .fit-box, .contact-panel, .form-panel { padding: 24px; border-radius: 24px; }
  .process-item { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; }
}

@media (max-width: 480px) {
  .wa-float { padding: 14px; bottom: 20px; right: 20px; }
  .wa-float .wa-label { display: none; }
}

/* ── CSP uyumlu: inline-style yerine CSS sınıfları ──────────────────────── */
.svg-sprite { display: none; }

.hp-trap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.fs-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(38,216,199,.15);
  border: 1px solid rgba(38,216,199,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

#form-success h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 22px;
}

#form-success p {
  color: rgba(246,249,252,.72);
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

#form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,80,80,.10);
  border: 1px solid rgba(255,80,80,.22);
  color: #ff8080;
  font-size: 15px;
}

#form-error a {
  color: #ff8080;
  text-decoration: underline;
}

.form-error-contact { margin-left: 4px; }

footer .logo-svg {
  width: clamp(140px, 11vw, 184px);
  opacity: .78;
}

.kvkk-modal-body a { color: var(--cyan); }

/* ── Klavye odak stilleri (:focus-visible) ───────────────────────────────── */
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.menu a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 4px;
  color: #fff;
}

.footer-social:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  background: rgba(38,216,199,.15);
  border-color: rgba(38,216,199,.35);
  color: var(--cyan);
}

.method:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 18px;
}

/* ── Hizmet seçimi — checkbox grubu ─────────────────────────────────────── */
.service-field {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.service-field > legend {
  display: block;
  width: 100%;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 780;
  margin: 0 0 7px;
  padding: 0;
  font-family: var(--font);
}

.service-help {
  margin: 0 0 10px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.4;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(202, 229, 241, .14);
  background: rgba(4, 16, 31, .62);
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  transition: border-color .18s ease, background .18s ease, opacity .18s ease, color .18s ease;
  user-select: none;
}

.service-option:hover {
  border-color: rgba(38,216,199,.35);
  background: rgba(38,216,199,.06);
  color: #fff;
}

.service-option:has(input:checked) {
  border-color: rgba(38,216,199,.55);
  background: rgba(38,216,199,.10);
  color: #fff;
}

.service-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  accent-color: var(--cyan);
  cursor: pointer;
}

.service-option input[type="checkbox"]:focus {
  border-color: transparent;
  box-shadow: none;
}

.service-option input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.service-option-disabled {
  opacity: .38;
  cursor: not-allowed;
  pointer-events: none;
}

/* Görsel pasiflik: input gerçek anlamda disabled değil, tıklanabilir */
.service-option-soft-disabled {
  opacity: .50;
}

.service-option-soft-disabled:hover {
  opacity: .75;
}

@media (max-width: 480px) {
  .service-options { grid-template-columns: 1fr; }
}
