/* =====================================================
   SAFA DİŞ — Design System
   ===================================================== */
:root {
  --navy-950: #070d1a;
  --navy-900: #0b1628;
  --navy-800: #101f38;
  --navy-700: #182a48;
  --navy-600: #24395c;
  --mint-500: #3cc4b4;
  --mint-400: #5ee0cf;
  --mint-300: #8ff0e2;
  --mint-glow: rgba(60, 196, 180, .35);
  --white: #ffffff;
  --ink: #0b1628;
  --ink-soft: #4a5872;
  --surface: #f4f8fb;
  --surface-2: #e8f0f5;
  --line: rgba(11, 22, 40, .08);
  --line-dark: rgba(255,255,255,.08);
  --wa: #25d366;

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --container: 1240px;
  --nav-h: 90px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 em, h1 em { font-style: normal; color: var(--mint-500); }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mint-500);
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--mint-500); border-radius: 2px; }
.section__head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head h2 { margin: 14px 0 14px; }
.section__head p { color: var(--ink-soft); font-size: 1.05rem; }
.section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--mint-500); color: var(--navy-900); box-shadow: 0 10px 30px -10px var(--mint-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px var(--mint-glow); background: var(--mint-400); }
.btn--outline { border: 1.5px solid rgba(255,255,255,.25); color: var(--white); backdrop-filter: blur(6px); }
.btn--outline:hover { border-color: var(--mint-400); color: var(--mint-300); transform: translateY(-2px); }
.section--light .btn--outline, .team .btn--outline { border-color: var(--line); color: var(--ink); }
.btn--ghost { color: var(--white); padding: 10px 14px; }
.btn--ghost:hover { color: var(--mint-300); }
.btn--light { background: var(--white); color: var(--navy-900); }
.btn--light:hover { transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000; background: var(--navy-950);
  display: grid; place-items: center; place-content: center; gap: 28px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__logo { display: flex; align-items: center; gap: 14px; color: var(--mint-500); font-family: var(--font-head); font-weight: 800; letter-spacing: .2em; font-size: 1.1rem; }
.preloader__logo svg { animation: pulse 1.4s ease-in-out infinite; }
.preloader__bar { width: 180px; height: 3px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--mint-500), var(--mint-300)); animation: load 1.2s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .8 } 50% { transform: scale(1.12); opacity: 1 } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, height .4s;
}
/* Scroll'da yalnızca zemin ve bulanıklık gelir; yükseklik sabit kalır.
   Eskiden 66px'e iniyordu ama büyük logoda sıkışıyor ve zıplıyordu.
   Küçülme istenirse :root'a --nav-h-scrolled: 80px; eklemek yeterli. */
.nav.is-scrolled { background: rgba(11, 22, 40, .78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line-dark); height: var(--nav-h-scrolled, var(--nav-h)); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.nav__logo-mark { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--mint-500), #1f8f84); display: grid; place-items: center; color: var(--navy-900); box-shadow: 0 8px 20px -8px var(--mint-glow); }
.nav__logo-text { font-family: var(--font-head); font-weight: 800; letter-spacing: .08em; font-size: 1.15rem; }
.nav__logo-text em { font-style: normal; color: var(--mint-500); margin-left: 4px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: rgba(255,255,255,.78); font-weight: 500; font-size: .93rem; position: relative; padding: 4px 0; transition: color .3s; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--mint-500); transition: width .35s var(--ease); border-radius: 2px; }
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta-mobile { display: none; }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 12px; }
.nav__burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px; overflow: hidden; color: var(--white);
  background: radial-gradient(1200px 600px at 80% 20%, rgba(60,196,180,.12), transparent 60%), var(--navy-900);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.hero__glow--1 { width: 520px; height: 520px; background: rgba(60,196,180,.18); top: -120px; right: -80px; }
.hero__glow--2 { width: 420px; height: 420px; background: rgba(90,120,255,.12); bottom: -160px; left: -120px; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); font-size: .85rem; font-weight: 500; backdrop-filter: blur(8px); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-400); box-shadow: 0 0 0 0 var(--mint-glow); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 var(--mint-glow) } 70% { box-shadow: 0 0 0 10px transparent } 100% { box-shadow: 0 0 0 0 transparent } }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 800; margin: 26px 0 22px; letter-spacing: -.035em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); }
.hero__desc { max-width: 560px; font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(255,255,255,.72); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 44px; }
.hero__stats { display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--mint-400); letter-spacing: -.02em; }
.stat span { font-size: .85rem; color: rgba(255,255,255,.6); }
.hero__visual { position: relative; min-height: 420px; }
.hero__card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 16px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); color: var(--white); min-width: 200px;
}
.hero__card svg { color: var(--mint-400); flex: none; }
.hero__card strong { display: block; font-size: .95rem; }
.hero__card span { font-size: .78rem; color: rgba(255,255,255,.6); }
.hero__stars { color: #ffc65c; letter-spacing: 1px; font-size: .9rem; }
.hero__card--1 { top: 8%; left: 0; }
.hero__card--2 { top: 42%; right: 0; }
.hero__card--3 { bottom: 6%; left: 12%; }
.float { animation: float 6s ease-in-out infinite; }
.float--delay { animation-delay: -2s; }
.float--delay2 { animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.25); border-radius: 14px; z-index: 2; }
.hero__scroll span { position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--mint-400); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1 } 80% { transform: translateY(16px); opacity: 0 } 100% { opacity: 0 } }

/* ---------- Marquee ---------- */
.marquee { background: var(--mint-500); color: var(--navy-900); overflow: hidden; padding: 14px 0; font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; position: relative; z-index: 3; }
.marquee__track { display: flex; gap: 32px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track i { font-style: normal; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: var(--surface); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 30px 26px;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  transform-style: preserve-3d; will-change: transform;
}
.svc::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(60,196,180,.14), transparent 45%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.svc:hover { box-shadow: 0 30px 60px -30px rgba(11,22,40,.35); border-color: rgba(60,196,180,.4); }
.svc:hover::before { opacity: 1; }
.svc__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(60,196,180,.15), rgba(60,196,180,.05)); color: var(--mint-500); border: 1px solid rgba(60,196,180,.25); transition: transform .4s var(--ease), background .3s, color .3s; }
.svc:hover .svc__icon { background: var(--mint-500); color: var(--navy-900); transform: translateZ(30px) rotate(-6deg); }
.svc h3 { font-size: 1.15rem; }
.svc p { color: var(--ink-soft); font-size: .93rem; flex: 1; }
.svc__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--mint-500); }
.svc__link svg { transition: transform .3s var(--ease); }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- Implant 3D ---------- */
.implant { position: relative; background: var(--navy-950); color: var(--white); }
.implant__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; z-index: 0; }
.implant__canvas { width: 100%; height: 100%; }
.implant__vignette { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 42%, rgba(7,13,26,.8) 60%, rgba(7,13,26,.95) 100%), radial-gradient(ellipse at 30% 50%, transparent 40%, rgba(7,13,26,.7) 100%); }
.implant__progress { position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: rgba(255,255,255,.08); z-index: 2; }
.implant__progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--mint-500), var(--mint-300)); box-shadow: 0 0 12px var(--mint-glow); }
.implant__label { position: absolute; left: clamp(20px, 5vw, 80px); bottom: clamp(28px, 6vh, 70px); z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.implant__label strong { font-family: var(--font-head); font-size: clamp(1rem, 1.5vw, 1.3rem); color: rgba(255,255,255,.85); }
.implant__steps { position: relative; z-index: 1; margin-top: -100svh; pointer-events: none; }
.implant__steps .container { display: flex; flex-direction: column; align-items: flex-end; }
.implant__intro, .step { width: min(100%, 460px); pointer-events: auto; }
.implant__intro { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.implant__intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.step {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 40px 0;
}
.step > * { opacity: .28; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.step.is-active > * { opacity: 1; transform: none; }
.step__num { font-family: var(--font-head); font-size: 3.4rem; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--mint-500); }
.step h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.step p { color: rgba(255,255,255,.72); }
.step ul { display: grid; gap: 8px; }
.step li { padding-left: 24px; position: relative; font-size: .95rem; color: rgba(255,255,255,.85); }
.step li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; background: var(--mint-500); box-shadow: 0 0 0 4px rgba(60,196,180,.18); }
.step .btn { align-self: flex-start; margin-top: 10px; }

/* ---------- Why ---------- */
.why { background: var(--white); }
.why__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.why__text h2 { margin: 14px 0 18px; }
.why__text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; }
.why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why__card { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform .4s var(--ease), background .3s, color .3s; }
.why__card svg { color: var(--mint-500); margin-bottom: 16px; transition: color .3s; }
.why__card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why__card p { font-size: .9rem; color: var(--ink-soft); transition: color .3s; }
.why__card:hover { transform: translateY(-6px); background: var(--navy-900); color: #fff; }
.why__card:hover p { color: rgba(255,255,255,.7); }
.why__card:hover svg { color: var(--mint-400); }
.why__card:nth-child(2) { transform: translateY(24px); }
.why__card:nth-child(2):hover { transform: translateY(18px); }
.why__card:nth-child(4) { transform: translateY(24px); }
.why__card:nth-child(4):hover { transform: translateY(18px); }

/* ---------- Team ---------- */
.team { background: var(--surface); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.doc { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.doc:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(11,22,40,.35); }
.doc__photo { position: relative; aspect-ratio: 4/3.4; background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); overflow: hidden; }
.doc__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(60,196,180,.35); }
.doc__placeholder::after { content: 'Fotoğraf alanı'; position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.doc__tag { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 999px; background: var(--mint-500); color: var(--navy-900); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.doc__info { padding: 22px 24px 26px; }
.doc__info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.doc__info > span { display: block; font-size: .82rem; color: var(--mint-500); font-weight: 600; margin-bottom: 10px; }
.doc__info p { font-size: .92rem; color: var(--ink-soft); }
.doc--join { background: var(--navy-900); color: #fff; display: flex; align-items: center; }
.doc--join p { color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.contact__info h2 { margin: 14px 0 28px; }
.contact__list { display: grid; gap: 18px; margin-bottom: 28px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__list svg { color: var(--mint-500); flex: none; margin-top: 3px; }
.contact__list strong { display: block; font-family: var(--font-head); font-size: .95rem; margin-bottom: 2px; }
.contact__list span { color: var(--ink-soft); font-size: .93rem; }
.contact__list a:hover { color: var(--mint-500); }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/8; background: var(--surface-2); }
.contact__map iframe { width: 100%; height: 100%; border: 0; }
.contact__form { padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); background: var(--navy-900); color: #fff; box-shadow: 0 40px 80px -40px rgba(11,22,40,.6); position: sticky; top: 90px; }
.contact__form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact__form > p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.field input, .field select, .field textarea {
  font: inherit; color: #fff; padding: 13px 16px; border-radius: var(--radius-sm); background: rgba(255,255,255,.06); border: 1px solid var(--line-dark);
  transition: border-color .3s, background .3s; width: 100%;
}
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint-500); background: rgba(60,196,180,.06); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 20px; cursor: pointer; }
.check input { accent-color: var(--mint-500); margin-top: 3px; }
.form__ok { display: none; margin-top: 16px; padding: 14px; border-radius: var(--radius-sm); background: rgba(60,196,180,.15); color: var(--mint-300); font-size: .9rem; text-align: center; }
.form__ok.is-visible { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--mint-500), #1f8f84); color: var(--navy-900); padding: clamp(50px, 6vw, 80px) 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { max-width: 620px; }
.cta-band h2 em { color: var(--white); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer__brand p { margin: 18px 0; font-size: .92rem; max-width: 320px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line-dark); color: rgba(255,255,255,.8); background: rgba(255,255,255,.03); transition: background .3s var(--ease), color .3s, border-color .3s, transform .3s var(--ease); }
.footer__social a:hover { background: var(--mint-500); border-color: var(--mint-500); color: var(--navy-900); transform: translateY(-3px); }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; font-size: .9rem; }
.footer ul a { transition: color .3s; }
.footer ul a:hover { color: var(--mint-400); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer__bottom a { color: var(--mint-400); }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.fab a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 30px -8px rgba(0,0,0,.5); transition: transform .3s var(--ease); }
.fab a:hover { transform: scale(1.08); }
.fab__wa { background: var(--wa); position: relative; }
.fab__wa::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ripple 2s infinite; }
@keyframes ripple { to { transform: scale(1.6); opacity: 0; } }
.fab__call { background: var(--mint-500); color: var(--navy-900) !important; }

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--mint-400); pointer-events: none; z-index: 999; mix-blend-mode: difference; transform: translate(-50%, -50%); transition: width .3s, height .3s, opacity .3s; opacity: 0; }
.cursor.is-hover { width: 44px; height: 44px; }
@media (hover: hover) and (pointer: fine) { body.has-cursor .cursor { opacity: 1; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 380px);
    flex-direction: column; align-items: flex-start; gap: 6px; padding: 100px 32px 40px;
    background: var(--navy-950); transform: translateX(105%); transition: transform .5s var(--ease); z-index: 99;
    box-shadow: -30px 0 80px rgba(0,0,0,.5);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1.25rem; font-family: var(--font-head); padding: 10px 0; width: 100%; color: #fff; }
  .nav__cta-mobile { display: inline-flex; margin-top: 20px; font-size: 1rem !important; font-family: var(--font-body) !important; justify-content: center; }
  .nav__phone span, .nav__cta { display: none; }
  .nav__burger { display: flex; position: relative; z-index: 100; }
  .nav__actions { gap: 4px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 0; height: 200px; margin-top: 10px; }
  .hero__card { position: absolute; min-width: 0; }
  .hero__card--1 { top: 0; left: 0; }
  .hero__card--2 { top: 20px; right: 0; left: auto; }
  .hero__card--3 { bottom: 0; left: 30%; }
  .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .contact__form { position: static; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .implant__steps .container { align-items: stretch; }
  .implant__intro, .step { width: 100%; }
  .implant__label { display: none; }
  .implant__vignette { background: linear-gradient(180deg, rgba(7,13,26,.15) 0%, transparent 25%, transparent 45%, rgba(7,13,26,.9) 68%); }
  .step { justify-content: flex-end; padding-bottom: 70px; }
  .implant__intro { justify-content: flex-end; padding-bottom: 60px; }
}
@media (max-width: 640px) {
  :root { --nav-h: 66px; }
  .container { width: min(100% - 32px, var(--container)); }
  .services__grid, .team__grid, .why__cards { grid-template-columns: 1fr; }
  .why__card:nth-child(2), .why__card:nth-child(4) { transform: none; }
  .hero { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 60px; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { height: 170px; }
  .hero__card { padding: 10px 12px; gap: 8px; border-radius: 12px; }
  .hero__card strong { font-size: .8rem; }
  .hero__card span { font-size: .68rem; }
  .hero__card--3 { left: 8%; }
  .hero__scroll { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .cta-band__actions, .cta-band__actions .btn { width: 100%; }
  .step__num { font-size: 2.6rem; }
  .fab { right: 14px; bottom: 14px; }
  .fab a { width: 50px; height: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
}

/* =====================================================
   MULTI-PAGE ADDITIONS
   ===================================================== */
/* ---------- Buttons ---------- */
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* ---------- Nav dropdown ---------- */
.nav__dd { position: relative; display: flex; align-items: center; }
.nav__dd-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav__dd-chev { transition: transform .3s var(--ease); }
.nav__dd-btn { display: none; }
.nav__dd-menu {
  position: absolute; top: calc(100% + 14px); left: -16px; min-width: 280px; padding: 10px;
  background: rgba(11,22,40,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark); border-radius: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__dd-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__dd:hover .nav__dd-menu, .nav__dd:focus-within .nav__dd-menu, .nav__dd.is-open .nav__dd-menu { opacity: 1; visibility: visible; transform: none; }
.nav__dd:hover .nav__dd-chev, .nav__dd.is-open .nav__dd-chev { transform: rotate(180deg); }
.nav__dd-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: .9rem; color: rgba(255,255,255,.85); transition: background .2s, color .2s; }
.nav__dd-menu li a::after { display: none; }
.nav__dd-menu li a svg { color: var(--mint-400); flex: none; }
.nav__dd-menu li a:hover { background: rgba(60,196,180,.12); color: #fff; }
.nav__dd-all a { margin-top: 4px; border-top: 1px solid var(--line-dark); border-radius: 0 0 10px 10px !important; color: var(--mint-400) !important; font-weight: 600; }
@media (max-width: 960px) {
  .nav__dd { flex-wrap: wrap; width: 100%; }
  .nav__dd-toggle { flex: 1; }
  .nav__dd-chev { display: none; }
  .nav__dd-btn { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; border-radius: 10px; transition: transform .3s var(--ease); }
  .nav__dd.is-open .nav__dd-btn { transform: rotate(180deg); }
  .nav__dd-menu { position: static; width: 100%; min-width: 0; padding: 0 0 0 12px; background: none; border: 0; box-shadow: none; backdrop-filter: none; transform: none; opacity: 1; visibility: visible; display: none; }
  .nav__dd.is-open .nav__dd-menu { display: grid; }
  .nav__dd-menu li a { font-size: 1rem !important; font-family: var(--font-body) !important; padding: 8px 10px !important; }
  .nav__links { overflow-y: auto; }
}

/* ---------- Page hero ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; padding: calc(var(--nav-h) + clamp(50px, 8vw, 90px)) 0 clamp(50px, 7vw, 80px); background: radial-gradient(900px 400px at 85% 0%, rgba(60,196,180,.16), transparent 60%), var(--navy-900); }
.page-hero__glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(60,196,180,.14); filter: blur(100px); top: -200px; right: -100px; pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; margin: 14px 0 16px; max-width: 800px; }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.3vw, 1.1rem); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.crumbs li + li::before { content: '/'; margin-right: 6px; opacity: .4; }
.crumbs a:hover { color: var(--mint-400); }
.crumbs [aria-current] { color: rgba(255,255,255,.85); }

/* ---------- Prose ---------- */
/* Editörden gelen her içerik buradan geçer: blog yazıları, sayfalar,
   bölge sayfaları. Editörün araç çubuğundaki tüm öğeler karşılanmalı. */
.prose { color: var(--ink-soft); font-size: 1.02rem; display: grid; gap: 16px; }
.prose p { line-height: 1.75; }
.prose--narrow { max-width: 760px; }
.prose > :first-child { margin-top: 0; }

.prose h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--ink); margin-top: 12px; letter-spacing: -.02em; }
.prose h3 { font-family: var(--font-head); font-size: 1.12rem; color: var(--ink); margin-top: 8px; }
.prose h4 { font-family: var(--font-head); font-size: 1rem; color: var(--ink); margin-top: 6px; }

.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--ink-soft); }
.prose a { color: #12897c; text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.prose a:hover { color: var(--mint-500); }

.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 8px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { line-height: 1.7; }
.prose li::marker { color: var(--mint-500); }
.prose ol li::marker { color: var(--ink-soft); font-weight: 600; }
.prose li > ul, .prose li > ol { margin-top: 8px; }

.prose blockquote { margin: 0; padding: 16px 20px; border-left: 3px solid var(--mint-500); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.prose blockquote p { margin: 0; }
.prose blockquote p + p { margin-top: 10px; }

.prose hr { border: 0; border-top: 1px solid var(--line); margin: 6px 0; }

.prose figure { margin: 0; display: grid; gap: 8px; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius-sm); display: block; }
.prose figcaption { font-size: .86rem; color: var(--ink-soft); opacity: .8; }

.prose table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.prose thead th { background: var(--surface); color: var(--ink); font-weight: 600; text-align: left; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 13px; vertical-align: top; line-height: 1.6; }
.prose tbody tr:nth-child(even) td { background: rgba(244, 248, 251, .55); }

/* Uzun tablolar dar ekranda taşmasın */
@media (max-width: 640px) {
  .prose table { display: block; overflow-x: auto; white-space: nowrap; }
  .prose th, .prose td { white-space: normal; min-width: 150px; }
  .prose ul, .prose ol { padding-left: 18px; }
}

/* ---------- Service detail ---------- */
.svc-detail { background: var(--white); }
.svc-detail__grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(36px, 5vw, 70px); align-items: start; }
.svc-detail__main h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 44px 0 18px; }
.svc-detail__icon { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(60,196,180,.18), rgba(60,196,180,.05)); border: 1px solid rgba(60,196,180,.3); color: var(--mint-500); margin-bottom: 24px; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefits li { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--surface); font-size: .93rem; font-weight: 500; }
.benefits svg { color: var(--mint-500); flex: none; margin-top: 1px; }
.process { display: grid; gap: 0; counter-reset: p; }
.process li { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process li:last-child { border-bottom: 0; }
.process li > span { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--mint-500); line-height: 1; flex: none; width: 52px; }
.process strong { display: block; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 4px; }
.process p { color: var(--ink-soft); font-size: .93rem; }
.faqs { display: grid; gap: 10px; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; color: var(--mint-500); transition: transform .3s var(--ease); }
.faq[open] summary svg { transform: rotate(180deg); }
.faq p { padding: 0 20px 20px; color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }
.svc-detail__side { display: grid; gap: 18px; position: sticky; top: 90px; }
.side-card { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.side-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.side-card > p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 18px; }
.side-card .btn + .btn { margin-top: 10px; }
.side-card--dark { background: var(--navy-900); color: #fff; border-color: transparent; box-shadow: 0 30px 60px -30px rgba(11,22,40,.6); }
.side-card--dark > p { color: rgba(255,255,255,.65); }
.side-card--dark .btn--outline { color: #fff; border-color: rgba(255,255,255,.25); }
.side-list { display: grid; gap: 2px; }
.side-list a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; font-size: .9rem; font-weight: 500; transition: background .2s, color .2s; }
.side-list a svg { color: var(--mint-500); flex: none; }
.side-list a:hover, .side-list a.is-active { background: #fff; color: var(--mint-500); box-shadow: 0 1px 0 var(--line); }
.quick { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; font-size: .9rem; }
.quick dt { color: var(--ink-soft); }
.quick dd { font-weight: 600; }
.side-card--info { background: #fff; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about__media { position: relative; }
.about__img { aspect-ratio: 4/4.6; border-radius: 28px; background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); position: relative; overflow: hidden; }
.about__badge { position: absolute; right: -18px; bottom: 36px; background: var(--mint-500); color: var(--navy-900); border-radius: 18px; padding: 18px 22px; display: flex; align-items: center; gap: 10px; box-shadow: 0 20px 40px -16px var(--mint-glow); }
.about__badge strong { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about__badge span { font-size: .8rem; font-weight: 600; line-height: 1.2; }
.about__text h2 { margin: 14px 0 20px; }
.about__stats { margin-top: 30px; }
.about__stats .stat strong { color: var(--mint-500); }
.about__stats .stat span { color: var(--ink-soft); }
.why__cards--4 { grid-template-columns: repeat(4, 1fr); }
.why__cards--4 .why__card:nth-child(2), .why__cards--4 .why__card:nth-child(4) { transform: none; }
.why__cards--4 .why__card:hover { transform: translateY(-6px); }
.tech { background: var(--navy-900); color: #fff; }
.tech .section__head h2 { color: #fff; }
.tech__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tech__card { padding: 28px 24px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); transition: border-color .3s, transform .4s var(--ease); }
.tech__card:hover { border-color: rgba(60,196,180,.4); transform: translateY(-6px); }
.tech__card span { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--mint-500); display: block; margin-bottom: 14px; }
.tech__card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.tech__card p { font-size: .9rem; color: rgba(255,255,255,.65); }

/* ---------- Blog ---------- */
.blog-teaser { background: var(--white); }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { display: flex; flex-direction: column; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(11,22,40,.35); }
.post__img { aspect-ratio: 16/9; background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); position: relative; }
.post__img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(300px 150px at 80% 100%, rgba(60,196,180,.25), transparent 70%); }
.post__cat { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 12px; border-radius: 999px; background: var(--mint-500); color: var(--navy-900); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__body time { font-size: .78rem; color: var(--ink-soft); font-weight: 500; }
.post__body h3 { font-size: 1.1rem; }
.post__body p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.post__hero { aspect-ratio: 16/8; border-radius: var(--radius); background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); position: relative; overflow: hidden; margin-bottom: 20px; }
.post__meta { font-size: .85rem; color: var(--ink-soft); margin-bottom: 24px; }
.blog-teaser .section__head { margin-bottom: clamp(30px, 4vw, 50px); }

/* ---------- Contact page extras ---------- */
.contact .contact__info > .contact__list { margin-top: 0; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.footer__contact svg { color: var(--mint-400); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--mint-400); }
.check a { color: var(--mint-300); text-decoration: underline; }

/* ---------- Responsive additions ---------- */
@media (max-width: 1100px) {
  .tech__grid, .why__cards--4 { grid-template-columns: 1fr 1fr; }
  .svc-detail__grid { grid-template-columns: 1fr 320px; }
}
@media (max-width: 960px) {
  .svc-detail__grid, .about__grid { grid-template-columns: 1fr; }
  .svc-detail__side { position: static; }
  .posts { grid-template-columns: 1fr 1fr; }
  .about__badge { right: 10px; }
  .section__head--row .btn { align-self: flex-start; }
}
@media (max-width: 640px) {
  .posts, .tech__grid, .why__cards--4, .benefits { grid-template-columns: 1fr; }
  .about__img { aspect-ratio: 4/3.2; }
  .process li > span { width: 40px; font-size: 1.3rem; }
  .side-card { padding: 22px; }
}

/* ---------- Service gallery carousel ---------- */
.gal { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; background: var(--navy-900); box-shadow: 0 30px 60px -30px rgba(11,22,40,.5); }
.gal__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.gal__track::-webkit-scrollbar { display: none; }
.gal__slide { flex: 0 0 100%; scroll-snap-align: start; position: relative; aspect-ratio: 16/9; }
.gal__slide img { width: 100%; height: 100%; object-fit: cover; }
.gal__ph { width: 100%; height: 100%; display: grid; place-items: center; place-content: center; gap: 12px; color: rgba(60,196,180,.45); background: radial-gradient(500px 260px at 70% 30%, rgba(60,196,180,.18), transparent 70%), linear-gradient(160deg, var(--navy-800), var(--navy-950)); }
.gal__ph span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.gal__slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 24px 18px; color: #fff; font-size: .9rem; font-weight: 500; background: linear-gradient(180deg, transparent, rgba(7,13,26,.85)); }
.gal__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(11,22,40,.6); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); transition: background .3s, color .3s, opacity .3s; z-index: 2; }
.gal__btn:hover { background: var(--mint-500); color: var(--navy-900); }
.gal__btn--prev { left: 14px; } .gal__btn--next { right: 14px; }
.gal__dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.gal__dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.4); transition: width .3s var(--ease), background .3s; }
.gal__dot.is-active { width: 24px; background: var(--mint-400); }
.gal__count { position: absolute; top: 14px; right: 14px; z-index: 2; padding: 5px 10px; border-radius: 999px; background: rgba(11,22,40,.6); color: #fff; font-size: .75rem; font-weight: 600; backdrop-filter: blur(8px); }
@media (max-width: 640px) { .gal__btn { width: 38px; height: 38px; } .gal__btn--prev { left: 8px; } .gal__btn--next { right: 8px; } .gal__slide figcaption { font-size: .8rem; padding: 30px 14px 30px; } }

/* ---------- Implant hotspots & info card ---------- */
.implant__hs { position: absolute; left: 0; top: 0; z-index: 3; width: 30px; height: 30px; margin: -15px 0 0 -15px; border-radius: 50%; background: var(--mint-500); color: var(--navy-900); font-family: var(--font-head); font-weight: 800; font-size: .8rem; display: grid; place-items: center; box-shadow: 0 0 0 4px rgba(60,196,180,.25), 0 8px 20px -6px rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease), background .2s; will-change: transform; }
.implant__hs::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--mint-400); animation: ripple 2.2s infinite; }
.implant__hs.is-on { opacity: 1; pointer-events: auto; }
.implant__hs:hover, .implant__hs.is-active { background: #fff; }
.implant__info { position: absolute; z-index: 4; left: clamp(20px, 5vw, 80px); top: 50%; transform: translateY(-50%) translateX(-16px); width: min(340px, calc(100% - 40px)); padding: 22px 24px; border-radius: 18px; background: rgba(11,22,40,.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(60,196,180,.3); color: #fff; box-shadow: 0 30px 60px -20px rgba(0,0,0,.7); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s; }
.implant__info.is-open { opacity: 1; visibility: visible; transform: translateY(-50%); }
.implant__info span { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--mint-500); color: var(--navy-900); font-family: var(--font-head); font-weight: 800; font-size: .78rem; margin-bottom: 10px; }
.implant__info h4 { font-size: 1.05rem; margin-bottom: 6px; }
.implant__info p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.implant__info button { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; color: rgba(255,255,255,.6); font-size: 1.2rem; display: grid; place-items: center; }
.implant__info button:hover { background: rgba(255,255,255,.1); color: #fff; }
.implant__hint { position: absolute; z-index: 3; right: clamp(20px, 5vw, 80px); top: 24px; padding: 8px 14px; border-radius: 999px; background: rgba(11,22,40,.6); border: 1px solid var(--line-dark); color: rgba(255,255,255,.8); font-size: .8rem; backdrop-filter: blur(8px); opacity: 0; transition: opacity .4s; pointer-events: none; }
.implant__hint.is-on { opacity: 1; }
@media (max-width: 960px) {
  .implant__info { left: 16px; right: 16px; width: auto; top: auto; bottom: 16px; transform: translateY(16px); }
  .implant__info.is-open { transform: none; }
  .implant__hint { top: 14px; right: 14px; font-size: .72rem; }
  .implant__hs { width: 26px; height: 26px; margin: -13px 0 0 -13px; font-size: .72rem; }
}

/* ---------- Light page sections ---------- */
.blog-list { background: var(--surface); }
.section--light { background: var(--white); }
.blog-list .post__body h3 { font-size: 1.2rem; }

/* =====================================================
   PANEL SÜRÜMÜ — yeni bileşenler
   ===================================================== */
/* Logo yüksekliği panelden geliyor (satır içi style). Genişlik oranı korunur. */
.nav__logo-img { height: 46px; width: auto; max-width: 210px; object-fit: contain; }
/* Koyu zemin için ayrı logo yüklenmediyse tek renkli logoyu beyaza çevirir.
   brightness(0) tüm renkleri siyaha indirir, invert(1) beyaza çevirir. */
.nav__logo-img--whiten { filter: brightness(0) invert(1); }
.footer .nav__logo-img { max-width: 190px; }
@media (max-width: 700px) {
  .nav__logo-img { max-height: 40px; max-width: 150px; }
}

/* Bal küpü (bot tuzağı) — ekranda ve okuyucuda görünmez */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Bölge rozetleri (anasayfa) */
.regions { background: var(--navy-900); color: #fff; }
.regions .section__head h2 { color: #fff; }
.regions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region { display: flex; align-items: center; gap: 10px; padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); transition: background .3s, border-color .3s, transform .35s var(--ease); }
.region svg { color: var(--mint-400); flex: none; }
.region strong { font-family: var(--font-head); font-size: .98rem; flex: 1; }
.region span { font-size: .78rem; color: rgba(255,255,255,.5); }
.region:hover { background: rgba(60,196,180,.12); border-color: rgba(60,196,180,.4); transform: translateY(-3px); }

/* Bölge listesi kartları */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.loc-card { display: flex; flex-direction: column; gap: 10px; padding: 26px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(11,22,40,.3); border-color: rgba(60,196,180,.4); }
.loc-card__top { display: flex; align-items: center; gap: 10px; }
.loc-card__top svg { color: var(--mint-500); flex: none; }
.loc-card__top h2 { font-size: 1.15rem; flex: 1; }
.loc-card__dist { font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(60,196,180,.14); color: #17796e; }
.loc-card p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.loc-card small { font-size: .8rem; color: var(--ink-soft); opacity: .75; }

/* Etiket bağlantıları (iç link ağı) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .87rem; font-weight: 500; color: var(--ink); transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease); }
.chip svg { color: var(--mint-500); }
.chip:hover { background: var(--mint-500); border-color: var(--mint-500); color: var(--navy-900); transform: translateY(-2px); }
.chip:hover svg { color: var(--navy-900); }

/* İki sütunlu varyantlar */
.services__grid--2 { grid-template-columns: 1fr 1fr; }
.posts--2 { grid-template-columns: 1fr 1fr; }

/* Sayfalama */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.pager a { min-width: 44px; height: 44px; padding: 0 12px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); background: var(--white); font-weight: 600; font-size: .92rem; transition: background .25s, color .25s, border-color .25s; }
.pager a:hover { border-color: var(--mint-500); color: var(--mint-500); }
.pager a.is-active { background: var(--mint-500); border-color: var(--mint-500); color: var(--navy-900); }

/* Arama */
.search-box { display: flex; gap: 10px; max-width: 620px; }
.search-box input { flex: 1; font: inherit; padding: 15px 20px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.search-box input:focus { outline: none; border-color: var(--mint-500); box-shadow: 0 0 0 4px rgba(60,196,180,.15); }
.search-results { display: grid; gap: 10px; }
.search-results a { display: block; padding: 18px 22px; border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--line); transition: border-color .25s, transform .25s var(--ease); }
.search-results a:hover { border-color: var(--mint-500); transform: translateX(4px); }
.search-results strong { display: block; font-family: var(--font-head); margin-bottom: 4px; }
.search-results span { font-size: .9rem; color: var(--ink-soft); }
.empty { color: var(--ink-soft); padding: 40px 0; text-align: center; }

/* Mesafe listesi (iletişim) */

/* Blog yazısı alt CTA */
.post__cta { margin-top: 36px; padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.post__cta p { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.post__hero img { width: 100%; height: 100%; object-fit: cover; }
.doc__photo img { width: 100%; height: 100%; object-fit: cover; }
.post__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }

/* Bildirim kutuları */
.flash-wrap { position: fixed; top: 90px; right: 20px; z-index: 200; display: grid; gap: 10px; max-width: min(90vw, 380px); }
.flash { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 14px; font-size: .92rem; color: #fff; box-shadow: 0 20px 40px -18px rgba(0,0,0,.5); animation: flashIn .4s var(--ease); }
.flash--success { background: #17796e; }
.flash--error { background: #b3383c; }
.flash button { margin-left: auto; color: rgba(255,255,255,.7); font-size: 1.2rem; line-height: 1; }
.flash button:hover { color: #fff; }
@keyframes flashIn { from { opacity: 0; transform: translateX(30px); } }

@media (max-width: 1100px) {
  .regions__grid { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .services__grid--2, .posts--2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .regions__grid { grid-template-columns: 1fr 1fr; }
  .loc-grid, .services__grid--2, .posts--2 { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; }
  .search-box input, .search-box .btn { width: 100%; }
  .flash-wrap { top: auto; bottom: 90px; left: 14px; right: 14px; max-width: none; }
  .post__cta { flex-direction: column; align-items: flex-start; }
}
.form__ok.is-ok { background: rgba(60,196,180,.15); color: var(--mint-300); }
.form__ok.is-err { background: rgba(211,80,85,.18); color: #ffb3b6; display: block; }

/* ---------- Form: e-posta alanı etiketi ve reCAPTCHA ---------- */
.field label .opt { font-weight: 500; text-transform: none; letter-spacing: 0; opacity: .6; }
.g-recaptcha { margin: 0 0 18px; min-height: 78px; }
/* reCAPTCHA iframe'i sabit 304px genişlikte gelir — dar ekranda taşmasın */
@media (max-width: 380px) {
  .g-recaptcha { transform: scale(.86); transform-origin: 0 0; min-height: 68px; }
}

/* ---------- Telif ve Kaynaklar (KVKK sayfası sonu, sabit blok) ---------- */
.credits { margin-top: 54px; }
.credits .container { max-width: 760px; }
.credits__box { padding: 24px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.credits__title { font-size: 1.05rem; margin-bottom: 10px; }
.credits__intro { font-size: .91rem; color: var(--ink-soft); margin-bottom: 14px; }
.credits__intro a { color: var(--mint-600, #12897c); text-decoration: underline; text-underline-offset: 2px; }
.credits__list { display: grid; gap: 10px; }
.credits__list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; font-size: .9rem; padding: 10px 14px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); }
.credits__list a { font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.credits__list a:hover { color: var(--mint-600, #12897c); }
.credits__by { color: var(--ink-soft); }
.credits__use { flex-basis: 100%; font-size: .81rem; color: var(--ink-soft); opacity: .8; }
@media (max-width: 560px) { .credits__box { padding: 20px 18px; } }
