/* ============================================================
   İMZA PATENT — Site CSS (el yazımı, framework yok)  ·  v2 minimal
   "Light gallery, sade": sıcak krem zemin, derin lacivert metin,
   ölçülü altın aksan. Plus Jakarta Sans (tek aile).
   Marka rengi (logodan): #024264
   ============================================================ */

:root {
  /* Renk paleti — LIGHT */
  --paper:     #FCFBF8;   /* ana zemin (sıcak kâğıt) */
  --surface:   #FFFFFF;   /* kart / yükseltilmiş yüzey */
  --cream:     #F5F2EB;   /* alternatif bölüm zemini */
  --sand:      #EEE9DE;   /* placeholder/görsel arkası */
  --ink:       #0E2233;   /* birincil metin (derin lacivert) */
  --ink-soft:  #51606B;   /* ikincil metin */
  --muted:     #939893;   /* soluk metin */
  --line:      rgba(14,34,51,.10);
  --line-soft: rgba(14,34,51,.05);

  --navy:      #024264;   /* ANA MARKA RENGİ */
  --navy-700:  #033a57;
  --navy-600:  #045182;
  --navy-tint: #EDF2F5;
  --gold:      #BD9740;
  --gold-soft: #F4ECD8;
  --gold-deep: #9F7E2C;

  /* Tipografi */
  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;

  /* spacing grid */
  --s1: 4px;  --s2: 8px;  --s3: 14px; --s4: 20px;
  --s5: 26px; --s6: 38px; --s7: 52px; --s8: 72px; --s9: 100px;

  --radius:      10px;
  --radius-lg:   18px;
  --radius-pill: 100px;
  --container:   1140px;
  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow:    0 30px 70px -46px rgba(14,34,51,.4);
  --shadow-sm: 0 16px 40px -32px rgba(14,34,51,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }
::selection { background: var(--navy); color: #fff; }

/* ---------- Yardımcı ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s4); }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep);
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

.section { padding-block: var(--s9); position: relative; }
.section--tight { padding-block: var(--s8); }
.section--cream { background: var(--cream); }
.section > .container { position: relative; z-index: 1; }

/* ---------- Ambient ışık topları (scroll ile süzülen, düşük opaklık) ---------- */
.ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ambient .orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  will-change: transform; animation: orb-breathe 12s var(--ease) infinite;
}
.orb--navy { background: var(--navy); --o: .06; opacity: var(--o); }
.orb--gold { background: var(--gold); --o: .08; opacity: var(--o); }
.orb--sky  { background: #6BA8C9; --o: .05; opacity: var(--o); }
.section--cream .orb--navy { --o: .05; }
.section--cream .orb--gold { --o: .06; }
.section__head { max-width: 600px; margin-bottom: var(--s7); }
.section__head.center { margin-inline: auto; }
.section__title { font-size: clamp(26px, 3vw, 38px); margin-top: var(--s3); font-weight: 600; }
.section__sub { margin-top: var(--s4); font-size: 16px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Butonlar ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; letter-spacing: .01em;
  padding: 12px 24px; border: 1px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .35s var(--ease-out), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease-out);
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease-out); pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(.98); }

.btn--solid { background: var(--navy); color: #fff; }
.btn--solid:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--gold { background: var(--gold); color: #1c1405; }
.btn--gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(189,151,64,.6); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 14px 28px; font-size: 14px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ---------- Üst bilgi şeridi ---------- */
.topbar { background: var(--ink); color: rgba(243,241,236,.72); font-size: 12px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); height: 38px; }
.topbar__left { display: flex; gap: var(--s5); }
.topbar__item { display: inline-flex; align-items: center; gap: var(--s2); transition: color .25s; }
.topbar a.topbar__item:hover { color: var(--gold); }
.topbar svg { opacity: .8; }
.topbar__item--muted { color: rgba(243,241,236,.55); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
  animation: header-drop .8s var(--ease-out) both;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -26px rgba(14,34,51,.4); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); height: 74px; transition: height .3s var(--ease); }
.is-scrolled .site-header__bar { height: 64px; }
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; transition: opacity .25s, height .3s var(--ease); }
.is-scrolled .brand img { height: 38px; }
.brand:hover img { opacity: .75; }

.nav { display: flex; align-items: center; gap: var(--s6); }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .25s; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -7px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease-out);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a.is-active::after, .nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: var(--s3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: var(--s2); cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO (sade, kompakt) ---------- */
.hero { position: relative; overflow: hidden; padding-block: var(--s8) var(--s7); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.hero__glow--1 { width: 460px; height: 460px; background: var(--navy-tint); top: -180px; right: -140px; opacity: .8; }
.hero__glow--2 { width: 320px; height: 320px; background: var(--gold-soft); bottom: -160px; left: -100px; opacity: .55; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: var(--s8); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--surface); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
  letter-spacing: .03em; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(189,151,64,.6); animation: pulse 2.6s infinite; }
.hero__title { font-size: clamp(30px, 3.6vw, 46px); margin: var(--s4) 0 var(--s4); font-weight: 600; letter-spacing: -.03em; line-height: 1.1; }
.hero__title em { font-style: normal; color: var(--gold-deep); }
.hero__desc { font-size: 16px; color: var(--ink-soft); max-width: 460px; line-height: 1.7; }
.hero__desc strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin: var(--s6) 0 var(--s6); }
.hero__trust { display: flex; gap: var(--s7); flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: var(--s5); }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 27px; font-weight: 700; letter-spacing: -.03em; color: var(--navy); }
.hero__stat span { font-size: 12.5px; color: var(--muted); letter-spacing: .01em; }

/* Hero kart — sade */
.hero__panel { position: relative; }
.panel { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s6); box-shadow: var(--shadow); }
.panel__head { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s5); }
.panel__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: #fff; }
.panel__head h3 { font-size: 16px; font-weight: 600; }
.panel__head p { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.gauge { height: 7px; background: var(--sand); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: var(--s5); }
.gauge__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); border-radius: var(--radius-pill); transition: width 1.6s var(--ease-out); }
.gauge__bar.is-fill { width: var(--val); }
.panel__list li { display: flex; align-items: center; gap: var(--s3); padding: 10px 0; font-size: 14px; color: var(--ink-soft); border-top: 1px solid var(--line-soft); }
.panel__list li:first-child { border-top: 0; }
.check { display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); font-size: 11px; font-weight: 700; flex-shrink: 0; }
.panel__float { position: absolute; right: -16px; bottom: -20px; background: var(--ink); color: #fff; padding: var(--s3) var(--s4); border-radius: 12px; box-shadow: var(--shadow); animation: floaty 6s var(--ease-out) infinite; }
.panel__float strong { display: block; font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.panel__float span { font-size: 11.5px; color: rgba(243,241,236,.7); }

/* ---------- Kayan marka şeridi ---------- */
.marquee { border-block: 1px solid var(--line-soft); background: var(--surface); padding-block: var(--s4); overflow: hidden; }
.marquee__track { display: flex; gap: var(--s7); width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: var(--s3); font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: .02em; white-space: nowrap; }
.marquee__item svg { color: var(--gold); opacity: .8; }

/* ---------- Hizmetler ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
.scard {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s6); display: flex; gap: var(--s5);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.scard::before { content: ''; position: absolute; inset: auto 0 0 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.scard:hover::before { transform: scaleX(1); }
.scard__icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-tint); color: var(--navy); transition: background .45s var(--ease), color .45s var(--ease), transform .5s var(--ease-out); }
.scard:hover .scard__icon { background: var(--navy); color: #fff; transform: rotate(-6deg) scale(1.05); }
.scard__body { display: flex; flex-direction: column; }
.scard__num { font-size: 11.5px; font-weight: 700; color: var(--gold-deep); letter-spacing: .12em; margin-bottom: var(--s2); }
.scard__body h3 { font-size: 19px; font-weight: 600; margin-bottom: var(--s2); }
.scard__body p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin-bottom: var(--s4); flex-grow: 1; }
.scard__link { display: inline-flex; align-items: center; gap: var(--s2); font-weight: 600; font-size: 13.5px; color: var(--navy); align-self: flex-start; }
.scard__link svg { transition: transform .3s var(--ease-out); }
.scard:hover .scard__link { color: var(--gold-deep); }
.scard:hover .scard__link svg { transform: translateX(5px); }

/* ---------- Süreç ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); counter-reset: step; }
.step { position: relative; padding-top: var(--s6); }
.step::before { content: ''; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--line); }
.step__dot { position: absolute; top: 3px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--paper); }
.step__num { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; color: var(--gold-deep); }
.step h3 { font-size: 17px; font-weight: 600; margin: var(--s2) 0 var(--s2); }
.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* ---------- Neden Biz ---------- */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s8); align-items: center; }
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.why__stats > div { background: var(--surface); padding: var(--s6); transition: background .35s var(--ease); }
.why__stats > div:hover { background: var(--cream); }
.why__stats strong { display: block; font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -.03em; color: var(--navy); }
.why__stats span { color: var(--muted); font-size: 13px; }
.why__list { margin: var(--s5) 0 var(--s6); }
.why__list li { display: flex; align-items: flex-start; gap: var(--s3); padding: var(--s3) 0; border-top: 1px solid var(--line-soft); color: var(--ink); font-size: 14.5px; }
.why__list li:first-child { border-top: 0; }

/* ---------- SSS (akordeon, native <details>) ---------- */
.faq { display: grid; gap: var(--s2); max-width: 820px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq details[open] { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--s4); padding: var(--s5); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .35s var(--ease-out); }
.faq summary .icon::before, .faq summary .icon::after { content: ''; position: absolute; inset: 0; margin: auto; background: var(--gold-deep); border-radius: 2px; }
.faq summary .icon::before { width: 14px; height: 2px; }
.faq summary .icon::after { width: 2px; height: 14px; transition: transform .35s var(--ease-out); }
.faq details[open] summary .icon::after { transform: rotate(90deg); opacity: 0; }
.faq__body { padding: 0 var(--s5) var(--s5); color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }

/* ---------- CTA bandı ---------- */
.cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; border-radius: var(--radius-lg); }
.cta__glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: rgba(189,151,64,.2); filter: blur(100px); top: -200px; right: -120px; }
.cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--s6); padding: var(--s8); flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.cta p { color: rgba(243,241,236,.78); margin-top: var(--s3); max-width: 460px; font-size: 15px; }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s6); }
.contact__info { display: grid; gap: var(--s3); align-content: start; }
.info-card { display: flex; gap: var(--s4); padding: var(--s5); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--navy-tint); color: var(--navy); }
.info-card h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 14px; }
.info-card a:hover { color: var(--navy); }
.contact__map { overflow: hidden; height: 190px; border-radius: var(--radius); border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.02); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s7); box-shadow: var(--shadow-sm); }
.field { margin-bottom: var(--s4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: var(--s2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--ink); background: var(--paper);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); background: var(--surface); box-shadow: 0 0 0 4px rgba(2,66,100,.09); }
.field textarea { resize: vertical; }
.form-note { text-align: center; margin-top: var(--s3); font-size: 13px; font-weight: 600; min-height: 18px; }
.form-note.ok { color: #1c7a4d; }
.form-note.err { color: #c0392b; }

/* ---------- Footer (rafine) ---------- */
.footer { background: var(--ink); color: rgba(243,241,236,.66); }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: var(--s5); padding-block: var(--s7); border-bottom: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.footer__top h3 { color: #fff; font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; }
.footer__top p { color: rgba(243,241,236,.6); margin-top: var(--s2); font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: var(--s6); padding-block: var(--s7); }
.footer__logo { height: 46px; margin-bottom: var(--s4); border-radius: 6px; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer__social { display: flex; gap: var(--s2); margin-top: var(--s4); }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); color: rgba(243,241,236,.7); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease-out); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #1c1405; transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 13.5px; letter-spacing: .04em; margin-bottom: var(--s4); }
.footer__col a, .footer__col p { display: block; color: rgba(243,241,236,.58); font-size: 14px; margin-bottom: var(--s3); transition: color .25s, transform .25s var(--ease-out); }
.footer__col a:hover { color: var(--gold); transform: translateX(3px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: var(--s4); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: var(--s3); flex-wrap: wrap; font-size: 12.5px; color: rgba(243,241,236,.45); }

/* ---------- Yüzen butonlar (WhatsApp + yukarı çık) ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 14px 34px -12px rgba(37,211,102,.6);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 40px -12px rgba(37,211,102,.7); }
.wa-float svg { position: relative; z-index: 1; }

.to-top {
  position: fixed; right: 25px; bottom: 88px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: #fff; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .4s var(--ease-out);
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-deep); transform: translateY(-3px); }

@keyframes wa-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); }
}

/* ============================================================
   ALT SAYFALAR (pages/*.html)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding-block: var(--s7) var(--s6); background: var(--cream); border-bottom: 1px solid var(--line-soft); }
.page-hero__glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--gold-soft); filter: blur(100px); top: -180px; right: -90px; opacity: .7; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: var(--s4); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--gold-deep); }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; }
.page-hero p { color: var(--ink-soft); font-size: 16px; max-width: 560px; margin-top: var(--s3); }

.page-body { display: grid; grid-template-columns: 1.7fr .9fr; gap: var(--s8); align-items: start; }
.page-content h2 { font-size: 23px; font-weight: 600; margin: var(--s6) 0 var(--s3); }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--ink-soft); margin-bottom: var(--s4); line-height: 1.75; }
.ticks { margin: var(--s2) 0 var(--s5); }
.ticks li { display: flex; gap: var(--s3); padding: var(--s2) 0; color: var(--ink); }

.page-aside { position: sticky; top: 100px; display: grid; gap: var(--s4); }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s6); }
.aside-card--navy { background: var(--navy); color: #fff; }
.aside-card h3 { font-size: 19px; font-weight: 600; margin-bottom: var(--s2); }
.aside-card--navy h3 { color: #fff; }
.aside-card p { color: var(--ink-soft); font-size: 14px; margin-bottom: var(--s4); }
.aside-card--navy p { color: rgba(243,241,236,.78); }
.aside-links a { display: flex; align-items: center; justify-content: space-between; padding: var(--s3) 0; border-top: 1px solid var(--line-soft); font-weight: 500; font-size: 14px; transition: color .25s, padding .25s var(--ease-out); }
.aside-links a:first-of-type { border-top: 0; }
.aside-links a:hover { color: var(--gold-deep); padding-left: var(--s2); }

/* ============================================================
   REVEAL & ANİMASYONLAR
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(22px); filter: blur(6px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out);
  will-change: opacity, transform, filter;
}
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

@keyframes header-drop { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: none; } }
@keyframes orb-breathe { 0%,100% { opacity: var(--o,.07); } 50% { opacity: calc(var(--o,.07) * 1.5); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(189,151,64,.5); }
  70% { box-shadow: 0 0 0 8px rgba(189,151,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(189,151,64,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s7); }
  .hero__panel { max-width: 440px; }
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: var(--s6) var(--s4); }
  .why { grid-template-columns: 1fr; gap: var(--s7); }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .page-body { grid-template-columns: 1fr; }
  .page-aside { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 116px var(--s4) auto var(--s4); flex-direction: column; align-items: stretch; gap: var(--s1);
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: var(--s3); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all .35s var(--ease-out);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: var(--s3); border-radius: var(--radius); }
  .nav a:hover { background: var(--cream); }
  .nav a::after { display: none; }
  .site-header__actions .btn--solid { display: none; }
  .topbar__right { display: none; }
  .footer__top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding-block: var(--s8); }
  .steps, .field-row, .why__stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .scard { flex-direction: column; gap: var(--s4); }
  .hero__trust { gap: var(--s5); }
  .cta__inner { padding: var(--s6); }
  .topbar__left { gap: var(--s3); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .marquee__track { animation: none; }
}
