/* ============================================================
   REGUMIND — Kimyasal Mevzuat Danışmanlığı
   Tasarım sistemi: marka renkleri Regumind_Brand_Identity.pdf
   ============================================================ */

:root {
  --navy: #0D2B4D;
  --navy-2: #1E3C66;
  --blue: #385D8A;
  --teal: #2F8A8A;
  --teal-dark: #23706F;
  --gray: #6F747B;
  --light-blue: #E6F0FA;
  --light-blue-2: #C7D8EE;
  --light-teal: #DDEEEA;
  --sage: #B9CBAA;
  --bg: #F2F4F7;
  --white: #FFFFFF;
  --ink: #16273B;
  --border: #DDE4EC;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(13, 43, 77, .08);
  --shadow-lg: 0 14px 44px rgba(13, 43, 77, .14);
  --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Üst etiket (kicker) */
.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8em;
}
.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none !important;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--light-blue-2); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--light-blue); }
.btn-ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none !important; flex-shrink: 0; margin-right: 10px; }
.brand img { height: 42px; width: auto; }
.brand-name {
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  letter-spacing: -.02em; line-height: 1;
}
.brand-name.light { color: #fff; }
.brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.brand-row img { height: 40px; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .dropdown > button {
  font-family: var(--font);
  padding: 9px 13px; border-radius: 8px;
  color: var(--navy); font-weight: 500; font-size: .93rem;
  background: none; border: 0; cursor: pointer;
  text-decoration: none !important;
  display: flex; align-items: center; gap: 5px;
}
.main-nav > a:hover, .dropdown > button:hover { background: var(--light-blue); }
.main-nav > a.active { color: var(--teal-dark); font-weight: 600; }
.dropdown { position: relative; }
.dropdown .caret { transition: transform .18s; }
.dropdown.open .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 280px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 8px;
  display: none;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 12px; border-radius: 7px;
  color: var(--ink); font-size: .9rem; text-decoration: none !important;
}
.dropdown-menu a:hover { background: var(--light-blue); color: var(--navy); }
.nav-cta { white-space: nowrap; }
.lang-switch {
  display: flex; align-items: center; gap: 4px; font-size: .82rem; font-weight: 600;
  color: var(--gray); flex-shrink: 0;
}
.lang-switch a { color: var(--gray); text-decoration: none !important; padding: 4px 5px; border-radius: 5px; }
.lang-switch a:hover { background: var(--light-blue); color: var(--navy); }
.lang-switch a.active { color: var(--navy); cursor: default; }
.lang-switch a.active:hover { background: none; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--navy);
  margin: 5px 0; border-radius: 2px; transition: .2s;
}

/* ---------- Hero ---------- */
.hero {
  --hero-navy-800: #12355C;
  --hero-teal-lt: #3FA9A0;
  --hero-mono: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 0 0 6px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  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(ellipse 90% 70% at 30% 0%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 0%, #000 35%, transparent 78%);
}
.hero::after {
  content: ""; position: absolute; right: -14%; top: -32%; width: 62%; height: 130%;
  background: radial-gradient(circle at 50% 50%, rgba(47,138,138,.30), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hero .grid {
  display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr);
  gap: 56px; align-items: center; padding: 96px 0 96px;
}

.hero .eyebrow {
  font-family: var(--hero-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); display: flex; align-items: center; gap: 11px; margin-bottom: 22px;
}
.hero .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--sage); flex: none; }
.brand-lower { text-transform: lowercase; }

.hero h1 {
  color: #fff; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.04;
  letter-spacing: -.028em; margin-bottom: 22px;
}
.hero h1 .q { display: block; color: var(--sage); }
.hero .lede { font-size: 17px; line-height: 1.62; color: var(--light-blue-2); max-width: 480px; margin-bottom: 14px; }
.hero .lede b { color: #fff; }

.hero .facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 30px; }
.hero .fact {
  font-family: var(--hero-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--light-blue-2);
  border: 1px solid rgba(199,216,238,.28); border-radius: 2px; padding: 6px 10px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn {
  font-size: 15px; font-weight: 700; border-radius: 3px; padding: 16px 26px;
  text-decoration: none !important; transition: .16s;
}
.hero-actions .btn-main { background: var(--teal); color: #fff; border: none; }
.hero-actions .btn-main:hover { background: var(--hero-teal-lt); }
.hero-actions .btn-ghost { background: transparent; color: #fff; border: 1px solid var(--blue); }
.hero-actions .btn-ghost:hover { border-color: var(--light-blue-2); }
.hero-actions .btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

/* Envanter tarama paneli */
.hero .panel {
  background: rgba(4,20,38,.72); border: 1px solid rgba(56,93,138,.55);
  border-radius: 4px; backdrop-filter: blur(3px); overflow: hidden;
}
.hero .p-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid rgba(56,93,138,.45); }
.hero .p-head .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none;
  box-shadow: 0 0 0 0 rgba(47,138,138,.7); animation: heroDotPulse 2.4s infinite;
}
@keyframes heroDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(47,138,138,.55); }
  70% { box-shadow: 0 0 0 9px rgba(47,138,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,138,138,0); }
}
.hero .p-head .t { font-family: var(--hero-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--light-blue-2); }
.hero .p-head .n { margin-left: auto; font-family: var(--hero-mono); font-size: 11.5px; color: var(--blue); }

.hero table { width: 100%; border-collapse: collapse; font-family: var(--hero-mono); font-size: 12.5px; }
.hero thead th {
  text-align: left; padding: 10px 18px; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue); font-weight: normal; border-bottom: 1px solid rgba(56,93,138,.35);
}
.hero tbody tr {
  border-bottom: 1px solid rgba(56,93,138,.22); opacity: 0; transform: translateY(5px);
  animation: heroReveal .45s ease forwards;
}
.hero tbody tr:last-child { border-bottom: none; }
@keyframes heroReveal { to { opacity: 1; transform: none; } }
.hero tbody td { padding: 12px 18px; color: var(--light-blue-2); white-space: nowrap; }
.hero td.sub { color: #fff; }
.hero td.cas { color: var(--blue); }
.hero td.st { text-align: right; }
.hero .tag { display: inline-block; font-size: 10.5px; letter-spacing: .09em; padding: 3px 8px; border-radius: 2px; text-transform: uppercase; }
.hero .tag.reg { background: rgba(47,138,138,.2); color: var(--hero-teal-lt); border: 1px solid rgba(47,138,138,.5); }
.hero .tag.csr { background: rgba(240,201,135,.14); color: #F0C987; border: 1px solid rgba(240,201,135,.42); }
.hero .tag.exempt { background: rgba(185,203,170,.12); color: var(--sage); border: 1px solid rgba(185,203,170,.34); }

.hero .p-foot {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-top: 1px solid rgba(56,93,138,.45);
  background: rgba(47,138,138,.09); font-size: 13px; color: var(--light-blue-2);
}
.hero .p-foot b { color: #fff; }
.hero .p-foot .arrow { margin-left: auto; color: var(--hero-teal-lt); font-size: 12.5px; font-family: var(--hero-mono); letter-spacing: .08em; }

@media (prefers-reduced-motion: reduce) {
  .hero tbody tr { animation: none; opacity: 1; transform: none; }
  .hero .p-head .dot { animation: none; }
}

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.card { text-decoration: none !important; color: var(--ink); display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--light-teal); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--gray); font-size: .93rem; margin: 0; }
.card .more { display: inline-block; margin-top: 14px; font-weight: 600; font-size: .88rem; color: var(--teal-dark); }
.card.dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 0; color: #fff;
}
.card.dark h3 { color: #fff; }
.card.dark p { color: var(--light-blue-2); }

/* ---------- Sayfa hero (iç sayfalar) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 70%);
  color: #fff; padding: 58px 0 50px;
}
.page-hero.ph-tubes {
  background:
    linear-gradient(120deg, rgba(13,43,77,.94) 0%, rgba(30,60,102,.86) 100%),
    url("../assets/img/lab-tubes.webp") center/cover no-repeat;
}
.page-hero.ph-scientist {
  background:
    linear-gradient(120deg, rgba(13,43,77,.94) 0%, rgba(30,60,102,.85) 100%),
    url("../assets/img/lab-scientist.webp") center 30%/cover no-repeat;
}
.page-hero.ph-pipette {
  background:
    linear-gradient(120deg, rgba(13,43,77,.94) 0%, rgba(30,60,102,.86) 100%),
    url("../assets/img/lab-pipette.webp") center/cover no-repeat;
}
.photo-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); margin: 26px 0;
}
.photo-card img { display: block; width: 100%; }
.page-hero h1 { color: #fff; margin: 0 0 .3em; }
.page-hero .lead { color: var(--light-blue-2); max-width: 680px; font-size: 1.06rem; margin: 0; }
.breadcrumb { font-size: .84rem; color: var(--light-blue-2); margin-bottom: 18px; }
.breadcrumb a { color: #9fc3e8; }

/* ---------- İçerik düzenleri ---------- */
.split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.info-box {
  background: var(--light-blue); border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px; margin: 26px 0;
}
.info-box h4 { margin-bottom: .4em; }
.info-box p:last-child, .info-box ul:last-child { margin-bottom: 0; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.check-list li { padding: 7px 0 7px 32px; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--light-teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2323706F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center/12px no-repeat;
}
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding: 0 0 26px 58px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 19px; top: 44px; bottom: 4px;
  width: 2px; background: var(--light-blue-2);
}
.steps h4 { margin-bottom: .25em; }
.steps p { color: var(--gray); font-size: .93rem; margin: 0; }

/* Yan panel */
.side-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 26px; position: sticky; top: 100px;
}
.side-card h3 { font-size: 1.05rem; }
.side-card .btn { width: 100%; text-align: center; margin-top: 8px; }
.side-links { list-style: none; padding: 0; margin: 0 0 8px; }
.side-links li { border-bottom: 1px solid var(--border); }
.side-links a { display: block; padding: 10px 2px; color: var(--ink); font-size: .92rem; text-decoration: none !important; }
.side-links a:hover { color: var(--teal-dark); }
.side-links a.current { color: var(--teal-dark); font-weight: 600; }
.side-links svg { width: 14px; height: 14px; vertical-align: -1px; margin-right: 4px; color: var(--teal-dark); }

/* ---------- Accordion (SSS) ---------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--border); }
.acc-q {
  width: 100%; text-align: left; background: none; border: 0;
  font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--navy);
  padding: 18px 52px 18px 22px; cursor: pointer; position: relative;
}
.acc-q::after {
  content: "+"; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--teal);
  transition: transform .2s;
}
.acc-item.open .acc-q::after { content: "–"; }
.acc-a { display: none; padding: 0 22px 20px; color: var(--gray); }
.acc-item.open .acc-a { display: block; }

/* ---------- CTA şeridi ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff; border-radius: var(--radius); padding: 46px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 .2em; }
.cta-band p { margin: 0; color: #DDF3EF; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .87rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: .95rem;
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,138,138,.15);
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--gray); }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--teal); }
.form-note { font-size: .8rem; color: var(--gray); }
.form-status { padding: 12px 16px; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.ok { display: block; background: var(--light-teal); color: var(--teal-dark); }
.form-status.err { display: block; background: #FBE9E9; color: #A33; }

/* ---------- Araçlar: adımlı sihirbaz ---------- */
.wizard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 760px; margin: 0 auto; overflow: hidden;
}
.wizard-progress { display: flex; height: 6px; background: var(--light-blue); }
.wizard-progress i { background: var(--teal); transition: width .35s ease; }
.wizard-body { padding: 34px 36px 38px; }
.wizard-step { display: none; animation: stepIn .3s ease; }
.wizard-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.wizard-step .step-no { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--teal); text-transform: uppercase; }
.option-list { display: grid; gap: 12px; margin: 22px 0; }
.option-btn {
  text-align: left; font-family: var(--font); font-size: .97rem;
  border: 1.5px solid var(--border); background: #fff;
  padding: 15px 18px; border-radius: var(--radius-sm); cursor: pointer;
  transition: all .15s; color: var(--ink);
}
.option-btn:hover { border-color: var(--teal); background: var(--light-teal); }
.option-btn.selected { border-color: var(--teal); background: var(--light-teal); box-shadow: 0 0 0 2px rgba(47,138,138,.25); }
.option-btn small { display: block; color: var(--gray); margin-top: 2px; font-size: .84rem; }
.wizard-nav { display: flex; justify-content: space-between; margin-top: 26px; }
.result-panel { display: none; }
.result-panel.active { display: block; animation: stepIn .35s ease; }
.result-date {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 26px 30px; margin: 20px 0;
}
.result-date b { font-size: 1.9rem; display: block; }
.result-date span { color: var(--light-blue-2); font-size: .9rem; }

/* Madde sorgu sonucu */
.lookup-box { max-width: 640px; margin: 0 auto; }
.lookup-input { display: flex; gap: 12px; }
.lookup-input input {
  flex: 1; font-family: var(--font); font-size: 1.05rem;
  padding: 15px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
}
.lookup-input input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47,138,138,.15); }
.result-card { border-radius: var(--radius); padding: 26px 28px; margin-top: 24px; display: none; }
.result-card.warn { display: block; background: #FDF3E7; border: 1px solid #F0D9B8; }
.result-card.safe { display: block; background: var(--light-teal); border: 1px solid #BFE0DA; }
.result-card.err  { display: block; background: #FBE9E9; border: 1px solid #EFC9C9; }
.result-card h3 { margin-bottom: .4em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--light-blue-2); margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding: 60px 0 40px;
}
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1em; }
.site-footer a { color: var(--light-blue-2); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; font-size: .9rem; }
.footer-brand p { font-size: .88rem; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0; font-size: .82rem;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .legal a { margin-left: 18px; }

/* WhatsApp yüzen buton */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.22); transition: transform .15s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Çerez banner */
.cookie-banner {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 120;
  background: var(--navy); color: var(--light-blue-2);
  border-radius: var(--radius); padding: 20px 24px;
  display: none; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg); max-width: 860px; margin: 0 auto;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: .87rem; flex: 1; min-width: 240px; }
.cookie-banner a { color: #9fd6cf; }

/* Sözlük */
.glossary dt { font-weight: 700; color: var(--navy); margin-top: 20px; }
.glossary dd { margin: 4px 0 0; color: var(--gray); }
.az-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.az-nav a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px; font-size: .85rem; font-weight: 600;
  color: var(--navy); text-decoration: none !important;
}
.az-nav a:hover { background: var(--light-blue); }

/* SSS filtre/arama */
.faq-tools { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.faq-search {
  flex: 1; min-width: 220px; font-family: var(--font); font-size: .95rem;
  padding: 11px 16px; border: 1.5px solid var(--border); border-radius: 999px;
}
.faq-search:focus { outline: none; border-color: var(--teal); }
.chip {
  font-family: var(--font); font-size: .86rem; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--border); background: #fff; color: var(--navy);
}
.chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* İstatistik / değer önerisi */
.stat { text-align: center; }
.stat b {
  display: block; font-size: 3.5rem; line-height: 1.05; font-weight: 800;
  color: var(--teal-dark); font-variant-numeric: tabular-nums; margin-bottom: 6px;
}
.stat b .unit { font-size: .45em; font-weight: 600; margin-left: 2px; }
.stat b .pct { font-size: .88em; font-weight: 700; }
.stat > span { display: block; color: var(--gray); font-size: 1.2rem; line-height: 1.35; }

/* Tablo */
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%; border-collapse: collapse; font-size: .92rem;
  background: #fff; border-radius: var(--radius); overflow: hidden;
}
table.data th {
  background: var(--navy); color: #fff; text-align: left;
  padding: 13px 16px; font-weight: 600;
}
table.data td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
table.data tr:nth-child(even) td { background: var(--bg); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav-cta { display: none; }
}
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat b { font-size: 3rem; }
  .stat span { font-size: 1.1rem; }
}
@media (max-width: 960px) {
  .hero .grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 68px; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 12px 18px 20px;
    box-shadow: var(--shadow-lg); gap: 2px;
  }
  .main-nav.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: 0; padding-left: 14px; min-width: 0; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 28px; }
  .wizard-body { padding: 26px 22px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 52px 0; }
}
@media (max-width: 560px) {
  .hero td.cas, .hero th.cas { display: none; }
  .hero tbody td { padding: 11px 14px; }
  .hero thead th { padding: 9px 14px; }
}
