/* ==================================================================
   Teşvik Robotu — Tasarım Sistemi
   Nuras Danışmanlık iştiraki
   ================================================================== */

/* ---------------- Tokens ---------------- */
:root {
  /* Renk — Teşvik Robotu logosundan türetilmiştir
     lacivert (gövde) · turkuaz (yükseliş oku) · camgöbeği (robot gözleri) */
  --ink:        #0A1A33;   /* en koyu lacivert zemin */
  --ink-2:      #112645;
  --ink-3:      #1B3157;   /* logo laciverti */
  --navy:       #14294B;

  --paper:      #FFFFFF;
  --bg:         #F5F8FA;
  --bg-2:       #EAF0F4;
  --line:       #DDE6EC;
  --line-strong:#C2D0DA;

  --text:       #0E2038;
  --text-2:     #42566E;
  --text-3:     #76899E;
  --on-dark:    #EBF2F7;
  --on-dark-2:  #9FB4C9;

  --brand:      #17A794;   /* logo turkuazı — birincil vurgu */
  --brand-2:    #2ECBB2;   /* açık turkuaz, gradyan üstü */
  --brand-3:    #0C7D6E;   /* koyu turkuaz, açık zeminde metin */
  --brand-soft: #E1F7F2;
  --brand-ink:  #04241F;   /* turkuaz üzerindeki metin */

  --accent:     #1E7FA0;   /* camgöbeği-mavi, ikincil vurgu */
  --accent-2:   #5FDEE8;   /* robot gözü camgöbeği */
  --accent-soft:#E2F4F9;

  --blue:       #2A5CAD;
  --blue-soft:  #E9EFFA;
  --red:        #C93F38;
  --red-soft:   #FCEBEA;

  /* Ölçek */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sp: 8px;
  --wrap: 1200px;
  --wrap-narrow: 860px;

  --shadow-sm: 0 1px 2px rgba(14, 22, 38, .06), 0 1px 3px rgba(14, 22, 38, .04);
  --shadow:    0 4px 16px rgba(14, 22, 38, .07), 0 1px 3px rgba(14, 22, 38, .05);
  --shadow-lg: 0 24px 60px -18px rgba(10, 26, 51, .28), 0 8px 24px -12px rgba(10, 26, 51, .16);
  --shadow-brand: 0 12px 32px -10px rgba(23, 167, 148, .45);

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01' 1, 'cv11' 1;
}

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

::selection { background: var(--brand-2); color: var(--brand-ink); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------- Tipografi ---------------- */
h1, h2, h3, h4 {
  margin: 0 0 .4em;
  line-height: 1.14;
  letter-spacing: -.025em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.42rem); letter-spacing: -.018em; }
h4 { font-size: 1.02rem; letter-spacing: -.01em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--text-2);
  line-height: 1.62;
  max-width: 62ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
}

/* ---------------- Layout ---------------- */
.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 44px, var(--wrap-narrow)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section-head { max-width: 66ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header.on-dark {
  background: rgba(10, 26, 51, .72);
  color: var(--on-dark);
}
.site-header.on-dark.scrolled { border-bottom-color: rgba(255,255,255,.1); }

.nav {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--ink-3), var(--ink));
  display: grid; place-items: center;
  box-shadow: 0 4px 14px -4px rgba(10,26,51,.5);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 20%, rgba(46,203,178,.5), transparent 70%);
}
.brand-mark svg { width: 21px; height: 21px; position: relative; z-index: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-weight: 800; font-size: 1.06rem; letter-spacing: -.03em; }
.brand-sub {
  font-size: .645rem; font-weight: 700; letter-spacing: .085em;
  text-transform: uppercase; color: var(--text-3);
}
.on-dark .brand-sub { color: var(--on-dark-2); }

.nav-links { display: flex; align-items: center; gap: 4px; }
/* :not(.btn) — düğmeler kendi renk ve arka planlarını korur */
.nav-links a:not(.btn) {
  padding: 8px 13px; border-radius: 9px;
  font-size: .93rem; font-weight: 600; color: var(--text-2);
  transition: background .18s, color .18s;
}
.nav-links a:not(.btn):hover { background: var(--bg-2); color: var(--text); }
.nav-links a:not(.btn).active { color: var(--text); background: var(--bg-2); }
.on-dark .nav-links a:not(.btn) { color: var(--on-dark-2); }
.on-dark .nav-links a:not(.btn):hover,
.on-dark .nav-links a:not(.btn).active { background: rgba(255,255,255,.1); color: #fff; }
.nav-links .btn { margin-left: 8px; }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  background: none; border: 1px solid var(--line-strong);
  border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.on-dark .nav-toggle { border-color: rgba(255,255,255,.22); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 12px 14px; color: var(--text-2); }
  .nav-links .btn { justify-content: center; margin: 10px 0 0; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px;
  font-weight: 700; font-size: .95rem; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .22s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: var(--brand-ink); box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(23,167,148,.6); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { background: var(--paper); border-color: var(--text-3); }

/* Koyu zeminli bölümlerde ghost düğmeler açık renge döner */
.on-dark .btn-ghost, .hero .btn-ghost, .band .btn-ghost,
.contact-cta .btn-ghost, .page-hero .btn-ghost,
.result-hero .btn-ghost, .modal-head .btn-ghost {
  border-color: rgba(255,255,255,.26); color: var(--on-dark);
}
.on-dark .btn-ghost:hover, .hero .btn-ghost:hover, .band .btn-ghost:hover,
.contact-cta .btn-ghost:hover, .page-hero .btn-ghost:hover,
.result-hero .btn-ghost:hover, .modal-head .btn-ghost:hover {
  background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.45); color: #fff;
}

.btn-sm { padding: 9px 15px; font-size: .87rem; border-radius: 10px; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .42; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-dark);
  padding: clamp(72px, 10vw, 132px) 0 clamp(80px, 9vw, 120px);
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: -30% -10% auto -10%; height: 130%;
  background:
    radial-gradient(46% 40% at 16% 10%, rgba(23,167,148,.26), transparent 62%),
    radial-gradient(40% 44% at 84% 4%, rgba(30,127,160,.28), transparent 64%),
    radial-gradient(38% 38% at 64% 94%, rgba(95,222,232,.13), transparent 66%);
  filter: blur(10px); z-index: -2;
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 62% at 50% 34%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 62% at 50% 34%, #000 30%, transparent 100%);
}

.hero-inner { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
@media (max-width: 1040px) { .hero-inner { grid-template-columns: 1fr; gap: 44px; } }

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--accent-2), var(--brand-2) 45%, var(--brand));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: var(--on-dark-2); font-size: clamp(1.06rem, 1.5vw, 1.24rem); max-width: 56ch; }

.badge-parent {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 8px; border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .83rem; font-weight: 600; color: var(--on-dark);
  margin-bottom: 26px; backdrop-filter: blur(8px);
}
.badge-parent b { font-weight: 800; color: #fff; }
.badge-parent .dot {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  display: grid; place-items: center; color: var(--brand-ink);
  font-size: .62rem; font-weight: 900; letter-spacing: -.02em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-meta div { min-width: 96px; }
.hero-meta strong {
  display: block; font-size: 1.72rem; font-weight: 800;
  letter-spacing: -.03em; color: #fff; line-height: 1.1;
}
.hero-meta span { font-size: .8rem; color: var(--on-dark-2); font-weight: 600; }

/* Hero kart görseli */
.hero-card {
  background: linear-gradient(165deg, rgba(255,255,255,.11), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  padding: 26px; backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-card-top span { font-size: .78rem; font-weight: 700; color: var(--on-dark-2); letter-spacing: .06em; text-transform: uppercase; }
.pill-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 700; color: var(--accent-2);
}
.pill-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(46,203,178,.2); animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(46,203,178,0); } }

.hc-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.1);
}
.hc-row:last-of-type { border-bottom: 0; }
.hc-row span { font-size: .88rem; color: var(--on-dark-2); font-weight: 600; }
.hc-row b { font-size: .95rem; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.hc-row b.up { color: var(--accent-2); }

.hc-total {
  margin-top: 18px; padding: 18px 20px; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(46,203,178,.20), rgba(23,167,148,.07));
  border: 1px solid rgba(46,203,178,.32);
}
.hc-total span { display: block; font-size: .78rem; font-weight: 700; color: var(--brand-2); letter-spacing: .05em; text-transform: uppercase; }
.hc-total b { display: block; font-size: 1.75rem; font-weight: 800; letter-spacing: -.035em; color: #fff; margin-top: 3px; }

/* ---------------- Kartlar ---------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.card.hoverable:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: .96rem; margin: 0; }

.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--brand-soft); color: var(--brand-3);
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.accent { background: var(--accent-soft); color: var(--accent); }
.card-icon.blue { background: var(--blue-soft); color: var(--blue); }

.card-num {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  color: var(--text-3); letter-spacing: .1em; margin-bottom: 12px;
}

/* ---------------- Bölge şeridi ---------------- */
.region-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 900px) { .region-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .region-strip { grid-template-columns: repeat(2, 1fr); } }

.region {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 16px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.region:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.region::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent-2));
  opacity: var(--i, .2);
}
.region b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; }
.region span { font-size: .76rem; color: var(--text-3); font-weight: 600; display: block; margin-top: 2px; }
.region em {
  display: block; margin-top: 10px; font-style: normal;
  font-size: .8rem; font-weight: 700; color: var(--brand-3);
}

/* ---------------- Şerit / CTA ---------------- */
.band {
  background: var(--ink); color: var(--on-dark);
  border-radius: var(--r-xl); padding: clamp(38px, 5vw, 62px);
  position: relative; overflow: hidden;
}
.band::before {
  content: ''; position: absolute; inset: auto -10% -60% auto; width: 60%; height: 160%;
  background: radial-gradient(circle at 60% 40%, rgba(23,167,148,.36), transparent 62%);
}
.band > * { position: relative; }
.band h2 { color: #fff; }
.band p { color: var(--on-dark-2); }

/* ---------------- Adım listesi ---------------- */
.steps { counter-reset: s; display: grid; gap: 2px; }
.step-row {
  display: grid; grid-template-columns: 62px 1fr; gap: 22px;
  padding: 26px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-row .n {
  counter-increment: s;
  font-family: var(--mono); font-size: .82rem; font-weight: 700;
  color: var(--brand-3); padding-top: 4px;
}
.step-row .n::before { content: '0' counter(s); }
.step-row h4 { margin-bottom: 5px; }
.step-row p { color: var(--text-2); font-size: .95rem; }
@media (max-width: 560px) { .step-row { grid-template-columns: 1fr; gap: 6px; } }

/* ---------------- SSS ---------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0;
  font-weight: 700; font-size: 1.04rem; letter-spacing: -.015em;
  position: relative; transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-3); }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details > div { padding: 0 8% 24px 0; color: var(--text-2); font-size: .97rem; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--ink); color: var(--on-dark-2);
  padding: 72px 0 0; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 52px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h5 {
  margin: 0 0 16px; font-size: .74rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { font-size: .93rem; transition: color .18s; }
.site-footer a:hover { color: var(--brand-2); }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: var(--on-dark-2); }
.footer-about p { font-size: .93rem; max-width: 40ch; margin-top: 18px; }

.footer-parent {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  padding: 9px 15px; border-radius: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: .84rem; color: var(--on-dark);
  transition: background .2s, border-color .2s;
}
.footer-parent b { color: #fff; font-weight: 800; }
a.footer-parent:hover {
  background: rgba(46,203,178,.16); border-color: rgba(46,203,178,.4); color: #fff;
}
.footer-parent svg { opacity: .6; }
a.badge-parent { transition: background .2s, border-color .2s; }
a.badge-parent:hover { background: rgba(46,203,178,.16); border-color: rgba(46,203,178,.42); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0 34px;
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center; justify-content: space-between;
  font-size: .84rem;
}

/* İstenen küçük çekince metni */
.disclaimer-fine {
  font-size: .715rem;
  line-height: 1.6;
  color: #6E7B94;
  padding: 0 0 30px;
  max-width: 92ch;
}
.disclaimer-fine strong { color: #94A3B8; font-weight: 700; }

/* ---------------- Robot: kabuk ---------------- */
.robot-shell { padding: 44px 0 90px; min-height: 70vh; }

.robot-head { text-align: center; max-width: 62ch; margin: 0 auto 40px; }
.robot-head h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }

/* Stepper */
.stepper {
  display: flex; align-items: center; gap: 0;
  max-width: 720px; margin: 0 auto 40px;
}
.stepper .sp { flex: 1; display: flex; align-items: center; }
.stepper .sp:last-child { flex: none; }
.sp-dot {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); border: 2px solid var(--line-strong);
  font-weight: 800; font-size: .88rem; color: var(--text-3);
  transition: all .3s var(--ease); position: relative;
}
.sp-line { flex: 1; height: 2px; background: var(--line-strong); margin: 0 6px; border-radius: 2px; transition: background .35s; }
.sp.done .sp-dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.sp.done .sp-line { background: var(--brand); }
.sp.active .sp-dot {
  background: var(--ink); border-color: var(--ink); color: #fff;
  box-shadow: 0 0 0 5px rgba(10,26,51,.09);
}
.sp-label {
  position: absolute; top: 46px; left: 50%; transform: translateX(-50%);
  font-size: .74rem; font-weight: 700; color: var(--text-3); white-space: nowrap;
}
.sp.active .sp-label, .sp.done .sp-label { color: var(--text); }
@media (max-width: 700px) { .sp-label { display: none; } .stepper { margin-bottom: 26px; } }

/* Panel */
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(24px, 3.4vw, 44px);
  box-shadow: var(--shadow);
  max-width: 900px; margin: 0 auto;
}
.panel-step { display: none; animation: fadeUp .42s var(--ease); }
.panel-step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.panel-title { margin-bottom: 4px; }
.panel-desc { color: var(--text-2); font-size: .96rem; margin-bottom: 30px; }

/* Form */
.field { margin-bottom: 20px; }
.field label, .field > .lbl {
  display: block; font-size: .875rem; font-weight: 700;
  margin-bottom: 7px; letter-spacing: -.005em;
}
.field .hint { font-size: .8rem; color: var(--text-3); margin-top: 6px; line-height: 1.5; }

.input, select.input, textarea.input {
  width: 100%; padding: 13px 15px;
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); font-size: .96rem; font-weight: 600;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}
.input:hover { border-color: var(--line-strong); }
.input:focus {
  outline: none; background: var(--paper);
  border-color: var(--ink); box-shadow: 0 0 0 4px rgba(10,26,51,.07);
}
.input::placeholder { color: var(--text-3); font-weight: 500; }
.input:disabled { opacity: .55; cursor: not-allowed; }
textarea.input { min-height: 108px; resize: vertical; line-height: 1.6; }

select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A87A0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
  padding-right: 40px; cursor: pointer;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.input-money { position: relative; }
.input-money .suffix {
  position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
  font-size: .85rem; font-weight: 700; color: var(--text-3); pointer-events: none;
}
.input-money .input { padding-right: 44px; }

/* Seçenek kutuları */
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 620px) { .opt-grid { grid-template-columns: 1fr; } }

.opt {
  position: relative; display: flex; align-items: flex-start; gap: 11px;
  padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: var(--bg);
  cursor: pointer; transition: all .18s;
  font-size: .9rem; font-weight: 600; line-height: 1.45;
}
.opt:hover { border-color: var(--line-strong); background: var(--paper); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .box {
  width: 19px; height: 19px; flex: none; margin-top: 1px;
  border: 1.5px solid var(--line-strong); border-radius: 5px;
  background: var(--paper); display: grid; place-items: center;
  transition: all .18s;
}
.opt .box svg { width: 12px; height: 12px; opacity: 0; color: #fff; transition: opacity .15s; }
.opt input:checked ~ .box { background: var(--ink); border-color: var(--ink); }
.opt input:checked ~ .box svg { opacity: 1; }
.opt:has(input:checked) { border-color: var(--ink); background: var(--paper); box-shadow: 0 0 0 3px rgba(10,26,51,.06); }
.opt input:focus-visible ~ .box { outline: 2px solid var(--blue); outline-offset: 2px; }
.opt small { display: block; font-weight: 500; color: var(--text-3); font-size: .78rem; margin-top: 2px; }

.opt.radio .box { border-radius: 50%; }
.opt.radio input:checked ~ .box { background: var(--ink); }
.opt.radio .box::after {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; opacity: 0; transition: opacity .15s;
}
.opt.radio input:checked ~ .box::after { opacity: 1; }
.opt.radio .box svg { display: none; }

/* Panel navigasyon */
.panel-nav {
  display: flex; gap: 12px; justify-content: space-between;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.panel-nav .spacer { flex: 1; }

.form-error {
  background: var(--red-soft); border: 1px solid #F3C7C4;
  color: #9B2C25; padding: 12px 15px; border-radius: var(--r-sm);
  font-size: .89rem; font-weight: 600; margin-bottom: 18px;
}

/* ---------------- Sonuç ---------------- */
.result { max-width: 1060px; margin: 0 auto; animation: fadeUp .5s var(--ease); }

.result-hero {
  background: var(--ink); color: var(--on-dark);
  border-radius: var(--r-xl); padding: clamp(28px, 4vw, 46px);
  position: relative; overflow: hidden; margin-bottom: 26px;
}
.result-hero::before {
  content: ''; position: absolute; inset: -40% -20% auto auto; width: 70%; height: 190%;
  background: radial-gradient(circle at 70% 40%, rgba(23,167,148,.34), transparent 60%);
}
.result-hero > * { position: relative; }

.rh-top { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.rh-sys {
  display: inline-flex; flex-direction: column; gap: 3px;
}
.rh-sys .up {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-2);
}
.rh-sys .name { font-size: clamp(1.3rem, 2.6vw, 1.95rem); font-weight: 800; letter-spacing: -.03em; color: #fff; }

.rh-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  font-size: .79rem; font-weight: 700; color: var(--on-dark);
}
.chip.brand { background: rgba(46,203,178,.18); border-color: rgba(46,203,178,.42); color: var(--brand-2); }
.chip.accent { background: rgba(95,222,232,.16); border-color: rgba(95,222,232,.34); color: var(--accent-2); }

.rh-total {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: end;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 620px) { .rh-total { grid-template-columns: 1fr; gap: 16px; } }
.rh-total .amount {
  font-size: clamp(2.1rem, 6vw, 3.3rem); font-weight: 800;
  letter-spacing: -.045em; color: #fff; line-height: 1;
}
.rh-total .amount-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand-2); margin-bottom: 8px;
}
.rh-total .note { font-size: .86rem; color: var(--on-dark-2); max-width: 46ch; }

.rh-reason {
  margin-top: 22px; padding: 16px 18px; border-radius: var(--r);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-size: .89rem; line-height: 1.62; color: var(--on-dark);
}
.rh-reason b { color: #fff; }

/* Destek kartları */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 26px; }
@media (max-width: 760px) { .support-grid { grid-template-columns: 1fr; } }

.support {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 24px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
}
.support:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.support.off { opacity: .62; background: var(--bg); }

.support-top { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 12px; }
.support-ico {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  background: var(--brand-soft); color: var(--brand-3);
  display: grid; place-items: center;
}
.support.off .support-ico { background: var(--bg-2); color: var(--text-3); }
.support-ico svg { width: 20px; height: 20px; }
.support-top h4 { margin: 0; line-height: 1.3; }
.support-top .madde {
  font-family: var(--mono); font-size: .68rem; color: var(--text-3);
  font-weight: 600; letter-spacing: .04em;
}
.support-val {
  font-size: 1.42rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--text); margin-bottom: 6px;
}
.support.off .support-val { color: var(--text-3); font-size: 1rem; }
.support-sum { font-size: .89rem; color: var(--text-2); font-weight: 600; margin-bottom: 12px; }
.support-detail {
  font-size: .84rem; color: var(--text-2); line-height: 1.62;
  border-top: 1px dashed var(--line); padding-top: 12px; margin-top: auto;
}

/* Uyarılar */
.notice {
  display: flex; gap: 14px; padding: 17px 19px;
  border-radius: var(--r); margin-bottom: 12px;
  border: 1px solid; font-size: .9rem; line-height: 1.6;
}
.notice .ico { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.notice h5 { margin: 0 0 4px; font-size: .93rem; font-weight: 800; }
.notice.engel      { background: var(--red-soft);  border-color: #F0C7C4; color: #8C2822; }
.notice.bilgi      { background: var(--blue-soft); border-color: #C7D8F2; color: #1D4489; }
.notice.yukumluluk { background: #FDF4E4; border-color: #F0DCBA; color: #8A5A10; }
.notice.firsat     { background: var(--brand-soft); border-color: #BCE9E0; color: var(--brand-3); }

/* Not listesi */
.notes {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 26px; margin-bottom: 26px;
}
.notes h4 { margin-bottom: 12px; font-size: .95rem; }
.notes ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.notes li { font-size: .85rem; color: var(--text-2); line-height: 1.6; }

/* Özet tablo */
.summary-table { width: 100%; border-collapse: collapse; font-size: .89rem; }
.summary-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.summary-table td:first-child { color: var(--text-2); font-weight: 600; }
.summary-table td:last-child { text-align: right; font-weight: 700; }
.summary-table tr:last-child td { border-bottom: 0; }

/* Alternatifler */
.alt-list { display: grid; gap: 10px; }
.alt-item {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--paper); font-size: .9rem;
}
.alt-item b { font-weight: 800; }
.alt-item .yko {
  margin-left: auto; padding: 4px 11px; border-radius: 999px;
  background: var(--bg-2); font-weight: 800; font-size: .82rem;
}

/* ---------------- İletişim CTA (sonuçta gömülü) ---------------- */
.contact-cta {
  background: linear-gradient(145deg, var(--ink), var(--navy));
  color: var(--on-dark); border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px); position: relative; overflow: hidden;
  margin-top: 26px;
}
.contact-cta::before {
  content: ''; position: absolute; inset: auto auto -50% -10%; width: 55%; height: 170%;
  background: radial-gradient(circle at 40% 50%, rgba(30,127,160,.36), transparent 62%);
}
.contact-cta > * { position: relative; }
.contact-cta h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.contact-cta p { color: var(--on-dark-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------------- Modal ---------------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7, 18, 36, .64);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 22px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  overflow-y: auto;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--paper); border-radius: var(--r-xl);
  width: min(100%, 580px); box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.97); transition: transform .38s var(--ease);
  overflow: hidden; margin: auto;
}
.modal-backdrop.open .modal { transform: none; }

.modal-head {
  background: var(--ink); color: #fff; padding: 28px 30px;
  position: relative; overflow: hidden;
}
.modal-head::before {
  content: ''; position: absolute; inset: -60% -20% auto auto; width: 70%; height: 200%;
  background: radial-gradient(circle at 60% 45%, rgba(23,167,148,.38), transparent 62%);
}
.modal-head > * { position: relative; }
.modal-head h3 { color: #fff; margin-bottom: 6px; font-size: 1.32rem; }
.modal-head p { color: var(--on-dark-2); font-size: .91rem; margin: 0; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.12); border: 0; color: #fff;
  cursor: pointer; display: grid; place-items: center;
  transition: background .18s;
}
.modal-close:hover { background: rgba(255,255,255,.24); }
.modal-body { padding: 26px 30px 30px; }

.channel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
@media (max-width: 480px) { .channel-row { grid-template-columns: 1fr; } }
.channel {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: var(--bg);
  transition: all .18s;
}
.channel:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-2px); }
.channel svg { width: 19px; height: 19px; color: var(--brand-3); flex: none; }
.channel > span { display: block; min-width: 0; }
.channel > span > span {
  display: block; font-size: .7rem; color: var(--text-3);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.channel b {
  display: block; font-size: .88rem; font-weight: 700; letter-spacing: -.01em;
  text-transform: none; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.divider-or {
  display: flex; align-items: center; gap: 14px;
  margin: 4px 0 20px; color: var(--text-3);
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.divider-or::before, .divider-or::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.form-success {
  text-align: center; padding: 26px 10px;
}
.form-success .tick {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--brand-soft); color: var(--brand-3);
  display: grid; place-items: center;
}
.form-success .tick svg { width: 28px; height: 28px; }

.consent {
  font-size: .78rem; color: var(--text-3); line-height: 1.6; margin-top: 14px;
}

/* ---------------- İç sayfa başlığı ---------------- */
.page-hero {
  background: var(--ink); color: var(--on-dark);
  padding: clamp(58px, 7vw, 92px) 0 clamp(52px, 6vw, 78px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: -50% -10% auto -10%; height: 200%;
  background: radial-gradient(40% 40% at 20% 25%, rgba(23,167,148,.28), transparent 62%),
              radial-gradient(38% 38% at 80% 15%, rgba(30,127,160,.30), transparent 64%);
}
.page-hero > * { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: var(--on-dark-2); }

/* ---------------- Ana şirket (Nuras) kartı ---------------- */
.parent-card {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  margin-top: 30px; padding: 24px 26px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
@media (max-width: 620px) { .parent-card { grid-template-columns: 1fr; gap: 16px; } }

/* Nuras kelime markası — resmî logo dosyanızı assets/img/logo-nuras.svg olarak
   ekleyip bu bloğu <img src="assets/img/logo-nuras.svg" alt="Nuras"> ile değiştirin. */
.parent-mark {
  flex: none; padding: 20px 26px; border-radius: var(--r);
  background: var(--bg-2); border: 1px solid var(--line);
  color: #111418; text-align: center;
  font-size: 1.85rem; font-weight: 800; letter-spacing: -.055em; line-height: 1;
}
.parent-mark span {
  display: block; margin-top: 6px;
  font-size: .56rem; font-weight: 600; letter-spacing: .02em;
  color: #5A6270; text-transform: none;
}

/* ---------------- Mevzuat listesi ---------------- */
.law-list { display: grid; gap: 14px; }
.law {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 26px;
  display: grid; grid-template-columns: 128px 1fr; gap: 22px;
}
@media (max-width: 640px) { .law { grid-template-columns: 1fr; gap: 8px; } }
.law .tag {
  font-family: var(--mono); font-size: .76rem; font-weight: 700;
  color: var(--brand-3); letter-spacing: .04em; padding-top: 4px;
}
.law h4 { margin-bottom: 6px; }
.law p { font-size: .93rem; color: var(--text-2); }
.law ul { margin: 10px 0 0; padding-left: 18px; display: grid; gap: 6px; }
.law li { font-size: .9rem; color: var(--text-2); }

/* Tablo */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 560px; }
table.data th, table.data td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.data th {
  background: var(--bg-2); font-weight: 800; font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-2);
}
table.data tr:last-child td { border-bottom: 0; }
table.data td b { font-weight: 800; }

/* ---------------- Yardımcılar ---------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.muted { color: var(--text-3); }
.hidden { display: none !important; }
.bg-paper { background: var(--paper); }
/* Giriş animasyonu yalnızca JS çalışıyorsa gizlemeyle başlar;
   aksi hâlde içerik doğrudan görünür kalır. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .05s !important; }
}

/* Yazdırma */
@media print {
  .site-header, .site-footer, .panel-nav, .contact-cta, .modal-backdrop, .stepper, .no-print { display: none !important; }
  body { background: #fff; }
  .result-hero { background: #fff !important; color: #000 !important; border: 2px solid #000; }
  .result-hero .name, .rh-total .amount { color: #000 !important; }
  .support { break-inside: avoid; border: 1px solid #999; }
}
