/* ============================================
   E-İmza Teslimat — Tema: Yeşil-Teal Modern
   ============================================ */

:root {
  --teal-900: #064e47;
  --teal-700: #0b7a6e;
  --teal-600: #0e9384;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;
  --teal-50:  #f0fdfa;

  --green-500: #22c55e;

  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f6fbfa;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(6, 78, 71, .25);
  --shadow-lg: 0 24px 60px -20px rgba(6, 78, 71, .35);
  --container: 1160px;
  --grad: linear-gradient(120deg, var(--teal-600), var(--teal-400));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.container--narrow { max-width: 820px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(14,147,132,.7); }
.btn--primary:hover { box-shadow: 0 12px 26px -8px rgba(14,147,132,.85); transform: translateY(-1px); }

.btn--ghost { background: var(--teal-50); color: var(--teal-700); }
.btn--ghost:hover { background: var(--teal-100); }

.btn--outline { background: transparent; color: var(--teal-700); border: 2px solid var(--teal-500); }
.btn--outline:hover { background: var(--teal-500); color: #fff; }

.btn--light { background: #fff; color: var(--teal-700); }
.btn--light:hover { transform: translateY(-1px); }

.btn--outline-light { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn--outline-light:hover { background: #fff; color: var(--teal-700); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--teal-900);
  color: #d6f5ef;
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar__contact { display: flex; align-items: center; gap: 18px; }
.topbar__link { opacity: .92; transition: opacity .2s; white-space: nowrap; }
.topbar__link:hover { opacity: 1; color: #fff; }
.topbar__link--city {
  opacity: 1;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.14);
  padding: 3px 12px;
  border-radius: 999px;
}
.topbar__link--city:hover { background: rgba(255,255,255,.26); }
@media (max-width: 640px) {
  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; gap: 16px; }
  /* Mobilde telefon numarası şeritte yer kaplamasın — alttaki yüzen "Ara" butonu zaten var */
  .topbar__contact .topbar__link--tel { display: none; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.header.is-scrolled { box-shadow: 0 6px 24px -16px rgba(6,78,71,.5); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo__img { width: 42px; height: 42px; border-radius: 11px; box-shadow: var(--shadow); }
.logo__text strong { color: var(--teal-600); font-weight: 800; }
.logo--light, .logo--light .logo__text strong { color: #fff; }
.logo--light .logo__text strong { color: var(--teal-400); }

.nav { display: flex; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { background: var(--teal-50); color: var(--teal-700); }

.header__actions { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .header__actions { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 22px 20px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform .35s ease;
    box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 12px 14px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(45,212,191,.28), transparent 60%),
    radial-gradient(700px 500px at -5% 20%, rgba(14,147,132,.18), transparent 55%),
    var(--bg-alt);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 70px 22px 80px;
}
.badge {
  display: inline-block;
  background: var(--teal-100);
  color: var(--teal-700);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__text { font-size: 1.08rem; color: var(--ink-2); max-width: 560px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 1.7rem; font-weight: 800; color: var(--teal-700); line-height: 1; }
.hero__stats span { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* Hero kart / mini form */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.quote-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.quote-card > p { color: var(--muted); margin-bottom: 18px; font-size: 14.5px; }
.mini-form { display: flex; flex-direction: column; gap: 12px; }
.mini-form input, .mini-form select,
.contact__form input, .contact__form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.mini-form input:focus, .mini-form select:focus,
.contact__form input:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}
.mini-form__note { color: var(--muted); font-size: 12px; text-align: center; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 22px 60px; }
}

/* ---------- Trust ---------- */
.trust { margin-top: -34px; position: relative; z-index: 2; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.trust__item { display: flex; gap: 13px; align-items: flex-start; }
.trust__ico { font-size: 26px; line-height: 1; }
.trust__item strong { display: block; font-size: 15.5px; }
.trust__item p { font-size: 13px; color: var(--muted); }
@media (max-width: 820px) { .trust__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.section__sub { color: var(--ink-2); margin-top: 12px; font-size: 1.05rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card__ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 26px;
  border-radius: 14px;
  background: var(--teal-50);
  margin-bottom: 16px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ---------- E-İmza Nedir ---------- */
.eimza__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eimza__text > p { color: var(--ink-2); margin: 16px 0 26px; }
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature { display: flex; gap: 15px; align-items: flex-start; }
.feature__ico {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature strong { display: block; }
.feature p { color: var(--muted); font-size: 14px; }

.visual-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.visual-card__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 14px; color: var(--muted); }
.tag { font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.tag--ok { background: #dcfce7; color: #15803d; }
.visual-card__doc { background: var(--bg-alt); border-radius: 12px; padding: 22px; position: relative; }
.doc-line { height: 11px; border-radius: 6px; background: #e2eceb; margin-bottom: 11px; }
.doc-line.short { width: 60%; }
.doc-sign {
  margin-top: 20px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
}
.visual-card__foot { margin-top: 16px; font-size: 13px; color: var(--muted); text-align: center; }
@media (max-width: 880px) { .eimza__inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Kullanım alanları ---------- */
.usage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.usage-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: .2s;
  position: relative;
}
.usage-grid li::before { content: "✓ "; color: var(--teal-500); font-weight: 800; }
.usage-grid li:hover { border-color: var(--teal-400); background: var(--teal-50); transform: translateY(-2px); }
@media (max-width: 820px) { .usage-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step__no {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Docs ---------- */
.docs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.docs__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.docs__col h3 { font-size: 1.15rem; margin-bottom: 16px; }
.docs__col ul { display: flex; flex-direction: column; gap: 10px; }
.docs__col li { padding-left: 26px; position: relative; color: var(--ink-2); }
.docs__col li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: #fff; background: var(--teal-500);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; display: grid; place-items: center; margin-top: 4px;
}
@media (max-width: 700px) { .docs { grid-template-columns: 1fr; } }

/* ---------- Başvuru Formu ---------- */
.apply-form {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 760px;
  margin-inline: auto;
}
.apply-form__head {
  background: var(--grad);
  color: #fff;
  padding: 26px 30px;
  text-align: center;
}
.apply-form__head h3 { font-size: 1.4rem; font-weight: 800; }
.apply-form__head p { color: #e6fffb; font-size: 14.5px; margin-top: 4px; }
.apply-form__body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 14px; }
.apply-form__body input,
.apply-form__body select,
.apply-form__body textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.apply-form__body input:focus,
.apply-form__body select:focus,
.apply-form__body textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}
@media (max-width: 560px) { .apply-form__body { padding: 22px 20px 24px; } }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--teal-300, var(--teal-400)); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--teal-600);
  transition: transform .25s;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 22px 20px; color: var(--ink-2); }

/* ---------- CTA Band ---------- */
.cta-band { background: var(--teal-900); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 80% 120%, rgba(45,212,191,.35), transparent 60%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 22px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; }
.cta-band p { color: #b6e6df; margin-top: 6px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 14px; }
.contact__item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color .2s, transform .2s;
}
a.contact__item:hover { border-color: var(--teal-400); transform: translateX(3px); }
.contact__ico {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 22px;
  border-radius: 12px;
  background: var(--teal-50);
}
.contact__item strong { display: block; font-size: 14px; }
.contact__item span { color: var(--muted); font-size: 15px; }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__form h3 { font-size: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.map {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 360px;
}
.map iframe { width: 100%; height: 100%; display: block; filter: saturate(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--teal-900); color: #cfeae5; padding-top: 56px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand p { margin-top: 14px; font-size: 14px; color: #9fd3cb; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; color: #b6ddd6; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  font-size: 13.5px;
  color: #8fc7bf;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Floaters ---------- */
.floaters {
  position: fixed;
  right: 18px; bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.floater {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 25px -6px rgba(0,0,0,.35);
  transition: transform .2s;
}
.floater:hover { transform: scale(1.08); }
.floater--wa { background: #25d366; }
.floater--tel { background: var(--teal-600); }
.floater--wa { animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.3);
  max-width: 90vw;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------- Çerez Banner'ı ---------- */
.cookie {
  position: fixed;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 150;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin-inline: auto;
  transform: translateY(160%);
  transition: transform .4s cubic-bezier(.2,.9,.3,1.1);
}
.cookie.is-visible { transform: translateY(0); }
.cookie__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  flex-wrap: wrap;
}
.cookie__text { font-size: 14px; color: var(--ink-2); flex: 1 1 320px; }
.cookie__text a { color: var(--teal-700); font-weight: 700; text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex: none; }
@media (max-width: 560px) {
  .cookie__inner { padding: 16px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
}

/* ---------- Legal sayfa ---------- */
.legal { padding: 56px 0 80px; }
.legal__title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin: 10px 0 6px; }
.legal__updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; font-weight: 800; margin: 32px 0 10px; color: var(--teal-700); }
.legal p { color: var(--ink-2); margin-bottom: 14px; }
.legal a { color: var(--teal-700); font-weight: 600; text-decoration: underline; }
.legal__list { margin: 0 0 14px; padding-left: 4px; display: flex; flex-direction: column; gap: 9px; }
.legal__list li { padding-left: 26px; position: relative; color: var(--ink-2); }
.legal__list li::before {
  content: "✓"; position: absolute; left: 0; top: 3px;
  color: #fff; background: var(--teal-500);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; display: grid; place-items: center;
}

/* ---------- Reveal animasyon ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .floater--wa { animation: none; }
}
