/* ==========================================================================
   Tera İade Başvuru — styles.css
   Mobile-first. Harici kütüphane yok. İçindekiler:
   1) Değişkenler & reset        7) SSS
   2) Yardımcı sınıflar          8) Form
   3) Butonlar                   9) Başarı ekranı
   4) Header                    10) Footer
   5) Hero & CTA bandı          11) Sabit mobil bar + WhatsApp FAB
   6) Bölümler & kartlar        12) Medya sorguları / erişilebilirlik
   ========================================================================== */

/* 1) Değişkenler & reset ------------------------------------------------- */
:root {
  --navy-950: #04121f;
  --navy-900: #071d33;
  --navy-800: #0b2947;
  --navy-700: #123a61;
  --navy-600: #1b4e7e;
  --brand-600: #1c7fb8;
  --brand-500: #2c95ce;
  --brand-400: #5fb4e0;
  --brand-200: #b9ddf2;
  --brand-050: #eaf5fc;
  --gold: #e3a73a;
  --red: #c8102e;
  --wa: #25d366;
  --ink: #0f1b2a;
  --muted: #5c6e84;
  --line: #dde6ef;
  --bg: #f4f7fb;
  --card: #fff;
  --ok: #158f61;
  --err: #c02626;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --sh-1: 0 1px 2px rgba(9, 30, 54, .05), 0 6px 18px rgba(9, 30, 54, .06);
  --sh-2: 0 12px 32px rgba(9, 30, 54, .12);
  --sh-3: 0 20px 54px rgba(4, 18, 31, .3);
  --header-h: 62px;
  --bar-h: 66px;
  --ff: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bar-h);
}

body.no-bar { padding-bottom: 0; }

img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.18; font-weight: 800; letter-spacing: -.015em; }
h1 { font-size: clamp(1.72rem, 7.2vw, 3.4rem); }
/* 2) Yardımcı sınıflar --------------------------------------------------- */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 18px; }
.section { padding: 44px 0; scroll-margin-top: calc(var(--header-h) + 8px); }
.section--tight { padding: 30px 0; }
.section--navy { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: #fff; }
.section--white { background: #fff; }
.section--soft { background: linear-gradient(180deg, #fff, var(--brand-050)); }
.center { text-align: center; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.eyebrow {
  display: inline-block; margin: 0 0 12px; padding: 6px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(44, 149, 206, .14); color: var(--brand-600);
}
.section--navy .eyebrow { background: rgba(124, 195, 232, .18); color: var(--brand-200); }
.section-title { margin-bottom: .45em; }
.section-lead { max-width: 640px; margin: 0 auto 26px; color: var(--muted); font-size: 1rem; }
.section--navy .section-lead { color: #c6d9e9; }
.hl { color: var(--brand-500); }
.hl-2 { color: var(--gold); }
.in { opacity: 1 !important; transform: none !important; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }

/* 3) Butonlar ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--brand-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 13px 22px; border: 0; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: 1rem; font-weight: 700; line-height: 1.2; text-align: center;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  box-shadow: var(--sh-1);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--primary { --btn-bg: linear-gradient(180deg, var(--brand-500), var(--brand-600)); box-shadow: 0 10px 26px rgba(28, 127, 184, .35); }
.btn--navy { --btn-bg: var(--navy-800); }
.btn--wa { --btn-bg: var(--wa); --btn-fg: #06301a; }
.btn--ghost {
  --btn-bg: rgba(255, 255, 255, .08); --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45); box-shadow: none;
}
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-800); border: 1.5px solid var(--line); box-shadow: none; }
.btn--lg { min-height: 58px; padding: 17px 30px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .72; pointer-events: none; }
.btn-row { display: flex; flex-direction: column; gap: 10px; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .45); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px;
  border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: .82rem; font-weight: 700;
}

/* 4) Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(9, 30, 54, .05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.logo-tera { color: var(--navy-900); font-weight: 800; font-size: .95rem; letter-spacing: -.03em; line-height: 1; }
.logo-tera b { color: var(--brand-600); font-weight: 800; }
.logo-tera small { display: block; margin-top: 3px; font-size: .4rem; font-weight: 700; letter-spacing: .1em; color: var(--navy-700); }
.brand-sep { width: 1px; height: 30px; background: var(--line); }
.logo-pusula { display: flex; align-items: center; gap: 6px; color: var(--navy-800); font-weight: 800; font-size: .88rem; letter-spacing: .02em; line-height: 1; }
.logo-pusula svg { width: 24px; height: 24px; }
.logo-pusula small { display: block; margin-top: 3px; font-size: .4rem; letter-spacing: .16em; color: var(--brand-600); }
.header-actions .btn { min-height: 42px; padding: 10px 15px; font-size: .88rem; }
.header-tel { display: none; }
@media (min-width: 480px) { .header-tel { display: inline-flex; } }

/* 5) Hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(125% 95% at 10% 0%, #15496f 0%, #0b2947 48%, #071d33 100%);
  padding: 26px 0 30px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(58% 46% at 100% 12%, rgba(200, 16, 46, .3), transparent 72%),
    radial-gradient(52% 42% at 88% 96%, rgba(44, 149, 206, .3), transparent 72%);
}
.hero::after {
  content: ""; position: absolute; left: -12%; right: -12%; top: -46%; height: 78%; z-index: 0;
  background: repeating-linear-gradient(114deg, rgba(255, 255, 255, .055) 0 2px, transparent 2px 20px);
  transform: rotate(-4deg);
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { margin-bottom: .4em; text-wrap: balance; }
.hero h1 .line { display: block; }
.hero-lead { max-width: 620px; color: #d3e3f0; font-size: 1rem; margin-bottom: 4px; }
.hero-features { margin: 18px 0 22px; }
.feature { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; }
.feature + .feature { border-top: 1px solid rgba(255, 255, 255, .13); }
.feature-icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(185, 221, 242, .5); background: rgba(255, 255, 255, .07);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--brand-200); fill: none; }
.feature strong { display: block; font-size: 1rem; }
.feature span { color: #c6d9e9; font-size: .92rem; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; }
.hero-note { margin: 14px 0 0; color: #a9c3d8; font-size: .82rem; }
.cta-band {
  display: flex; gap: 14px; align-items: center; margin-top: 20px;
  padding: 16px 18px; border-radius: var(--r);
  background: rgba(4, 18, 31, .55);
  border: 1px solid rgba(124, 195, 232, .35);
  color: #fff; text-decoration: none;
  box-shadow: var(--sh-3);
}
.cta-band:hover { text-decoration: none; border-color: var(--brand-400); }
.cta-band svg { width: 36px; height: 36px; flex: 0 0 auto; stroke: var(--brand-200); fill: none; }
.cta-band b { display: block; font-size: 1.02rem; letter-spacing: .01em; }
.cta-band small { color: var(--brand-200); font-size: .86rem; }
.cta-band::after {
  content: "→"; margin-left: auto; font-size: 1.3rem; color: var(--brand-200);
  transition: transform .2s ease;
}
.cta-band:hover::after { transform: translateX(4px); }

/* 6) Bölümler & kartlar -------------------------------------------------- */
.grid { display: grid; gap: 14px; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px; box-shadow: var(--sh-1);
}
.card h3 { margin-bottom: .35em; }
.card p { margin: 0; color: var(--muted); font-size: .93rem; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-050); margin-bottom: 12px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--brand-600); fill: none; }
.card--navy { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); box-shadow: none; color: #fff; }
.card--navy p { color: #c6d9e9; }
.card--navy .card-icon { background: rgba(255, 255, 255, .12); }
.card--navy .card-icon svg { stroke: var(--brand-200); }
.steps { display: grid; gap: 12px; }
.step {
  display: flex; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px; box-shadow: var(--sh-1);
}
.step-num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; display: grid;
  place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-600));
}
.step h3 { font-size: 1rem; margin-bottom: .2em; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }
.stat-strip { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.stat {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r); padding: 14px; text-align: center;
}
.stat b { display: block; font-size: 1.3rem; }
.stat span { color: #bcd2e4; font-size: .78rem; }
.quote {
  border-left: 4px solid var(--brand-500); background: #fff; border-radius: 0 var(--r) var(--r) 0;
  padding: 16px; box-shadow: var(--sh-1); border-top: 1px solid var(--line);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.quote p { font-size: .95rem; margin-bottom: 8px; }
.quote cite { font-size: .82rem; color: var(--muted); font-style: normal; font-weight: 700; }

/* 7) SSS ----------------------------------------------------------------- */
.faq { display: grid; gap: 10px; max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-1); overflow: hidden;
}
.faq summary {
  display: flex; align-items: center; gap: 12px; padding: 16px 46px 16px 16px;
  font-weight: 700; font-size: .98rem; cursor: pointer; position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 11px; height: 11px;
  margin-top: -7px; border-right: 2.5px solid var(--brand-600); border-bottom: 2.5px solid var(--brand-600);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details[open] summary { color: var(--brand-600); }
.faq .faq-body { padding: 0 16px 16px; color: var(--muted); font-size: .93rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* 8) Form ---------------------------------------------------------------- */
.form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); overflow: hidden; max-width: 780px; margin: 0 auto;
}
.form-head { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; padding: 20px 18px; }
.form-head h2 { margin-bottom: .25em; font-size: clamp(1.22rem, 4.8vw, 1.7rem); }
.form-head p { margin: 0; color: #c6d9e9; font-size: .92rem; }
.form-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.form-badges .pill { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); color: #eaf5fc; font-size: .74rem; }
.basvuru-form { padding: 18px; }
.basvuru-form fieldset { border: 0; margin: 0 0 20px; padding: 0; }
.basvuru-form legend {
  display: flex; align-items: center; gap: 9px; padding: 0 0 12px;
  font-weight: 800; font-size: 1rem; color: var(--navy-800);
}
.legend-num {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid;
  place-items: center; background: var(--brand-050); color: var(--brand-600);
  font-size: .82rem; font-weight: 800;
}
.grid-form { display: grid; gap: 14px; }
@media (min-width: 620px) {
  .grid-form--2 { grid-template-columns: 1fr 1fr; }
  .form-row--full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-weight: 700; font-size: .88rem; color: var(--navy-800); }
.req { color: var(--red); font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fbfcfe; font-size: 16px; line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(44, 149, 206, .16);
}
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6e84' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 18px 18px;
}
.field input::placeholder, .field textarea::placeholder { color: #9aabbd; }
.hint { font-size: .78rem; color: var(--muted); }
.field-error { display: none; font-size: .8rem; font-weight: 700; color: var(--err); }
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: var(--err); background: #fff7f7;
}
.field.invalid .field-error { display: block; }
.choice-group { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span {
  display: block; min-height: 48px; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 999px; background: #fbfcfe;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.choice input:checked + span {
  border-color: var(--brand-600); background: var(--brand-050);
  color: var(--brand-600); box-shadow: 0 0 0 3px rgba(44, 149, 206, .14);
}
.choice input:focus-visible + span { outline: 3px solid var(--brand-400); outline-offset: 2px; }
.check {
  display: flex; gap: 11px; align-items: flex-start; padding: 13px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fbfcfe; cursor: pointer;
}
.check + .check { margin-top: 10px; }
.check input {
  flex: 0 0 auto; width: 22px; height: 22px; margin: 1px 0 0;
  accent-color: var(--brand-600); cursor: pointer;
}
.check span { font-size: .87rem; color: #26333f; }
.check a { font-weight: 700; }
.check.invalid { border-color: var(--err); background: #fff7f7; }
.consent-list { margin-top: 4px; }
.form-actions { margin-top: 18px; }
.form-note { margin: 10px 0 0; font-size: .78rem; color: var(--muted); text-align: center; }
.form-status { display: none; margin-top: 12px; padding: 13px 15px; border-radius: var(--r-sm); font-size: .88rem; font-weight: 600; }
.form-status.error { display: block; background: #fff2f2; border: 1px solid #f0c6c6; color: var(--err); }
.form-status.info { display: block; background: var(--brand-050); border: 1px solid var(--brand-200); color: var(--navy-700); }
.form-status a { font-weight: 800; text-decoration: underline; }

/* 9) Başarı ekranı ------------------------------------------------------- */
.ok-panel { display: none; padding: 26px 18px 30px; text-align: center; }
.ok-panel.visible { display: block; }
.ok-icon {
  width: 76px; height: 76px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; background: #e6f7ef;
}
.ok-icon svg { width: 42px; height: 42px; stroke: var(--ok); fill: none; }
.ok-panel h3 { font-size: 1.3rem; }
.ok-panel > p { color: var(--muted); font-size: .94rem; }
.ref-box {
  display: inline-block; margin: 4px 0 16px; padding: 10px 18px;
  border-radius: var(--r-sm); background: var(--brand-050);
  border: 1px dashed var(--brand-400); color: var(--navy-800);
  font-weight: 800; letter-spacing: .06em;
}
.ok-steps { max-width: 440px; margin: 0 auto 18px; text-align: left; }
.ok-steps li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: .9rem; color: #26333f; }
.ok-steps li svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; stroke: var(--ok); fill: none; }

/* 10) Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950); color: #b9cbdc; font-size: .88rem;
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom));
}
.footer-grid { display: grid; gap: 22px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .7em; }
.site-footer ul li { padding: 4px 0; }
.site-footer a { color: #cfe3f2; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .logo-tera { color: #fff; font-size: 1.05rem; }
.footer-brand .logo-tera small { color: #9fc0da; }
.footer-brand .logo-pusula { color: #fff; }
.footer-brand .logo-pusula small { color: var(--brand-400); }
.footer-brand .brand-sep { background: rgba(255, 255, 255, .2); height: 34px; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { font-weight: 700; }
.disclaimer {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .76rem; line-height: 1.7; color: #8fa6ba;
}
.disclaimer strong { color: #cfe3f2; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 6px; margin-top: 16px;
  font-size: .78rem; color: #8fa6ba;
}
@media (min-width: 760px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* 11) Sabit mobil bar + WhatsApp FAB ------------------------------------ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(9, 30, 54, .12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .25s ease;
}
.sticky-bar.is-hidden { transform: translateY(120%); }
.sticky-bar .btn { min-height: 48px; padding: 12px 14px; font-size: .92rem; }
.sticky-bar .btn--wa { --btn-fg: #06301a; }
.wa-fab { display: none; }

/* 12) Büyük ekran, erişilebilirlik, çıktı ------------------------------ */
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 54px; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { min-width: 250px; }
  .hero-lead { font-size: 1.08rem; }
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row .btn { flex: 1 1 auto; }
  .form-wrap { max-width: 860px; }
  .basvuru-form { padding: 26px; }
  .form-head { padding: 28px 26px; }
  .sticky-bar { display: none; }
  .wa-fab {
    display: inline-flex; position: fixed; right: 22px; bottom: 22px; z-index: 70;
    width: 58px; height: 58px; border-radius: 50%; align-items: center;
    justify-content: center; background: var(--wa);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
    transition: transform .18s ease;
  }
  .wa-fab:hover { transform: scale(1.06); }
  .wa-fab svg { width: 30px; height: 30px; fill: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .sticky-bar, .wa-fab, .hero-actions, .form-actions, .cta-band { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  .section, .hero { padding: 12px 0; }
}

/* 13) Yasal metin sayfaları (kvkk.html / gizlilik.html) ------------------ */
.legal-head {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 34px 0 30px;
}
.legal-head h1 { font-size: clamp(1.45rem, 5.6vw, 2.2rem); margin-bottom: .3em; }
.legal-head p { margin: 0; color: #c6d9e9; font-size: .92rem; }
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 1.15rem; margin: 30px 0 .6em; color: var(--navy-800); }
.legal h3 { font-size: 1rem; margin: 20px 0 .5em; color: var(--navy-800); }
.legal p, .legal li { font-size: .94rem; color: #26333f; }
.legal ul { list-style: disc; padding-left: 20px; margin: 0 0 1rem; }
.legal ol { list-style: decimal; padding-left: 20px; margin: 0 0 1rem; }
.legal li { margin-bottom: 6px; }
.legal .back { margin-top: 28px; }
.legal-note {
  background: var(--brand-050); border: 1px solid var(--brand-200);
  border-radius: var(--r); padding: 14px 16px; font-size: .88rem; color: var(--navy-700);
}
.legal table { width: 100%; border-collapse: collapse; margin: 0 0 1rem; font-size: .9rem; }
.legal th, .legal td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.legal th { background: #f8fbfe; color: var(--navy-800); }
.legal-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* 14) Küçük yardımcılar -------------------------------------------------- */
.mt-sm { margin-top: 14px; }
.footer-brand p { margin: 0; font-size: .85rem; color: #9fc0da; }



h2 { font-size: clamp(1.4rem, 5.2vw, 2.3rem); }
h3 { font-size: 1.06rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 2px; border-radius: 6px; }
