:root {
  --cream: #FFFFFF;
  --cream-2: #f5eefb;
  --ink: #102447;
  --ink-60: rgba(16,36,71,0.6);
  --ink-30: rgba(16,36,71,0.3);
  --ink-12: rgba(16,36,71,0.12);
  --rose: #F575D4;
  --rose-l: #f78de0;
  --rose-pale: #fde8f9;
  --greige: #8fa0c0;
  --greige-d: #5a6e8a;
  --ivory: #FFFFFF;
  --rule: 1px solid var(--ink-12);
  --ff-serif: 'Cormorant Garamond', serif;
  --ff-sans: 'Jost', sans-serif;
  /* Soft shadows */
  --shadow-sm: 0 2px 8px rgba(16,36,71,0.06);
  --shadow-md: 0 8px 24px rgba(16,36,71,0.08);
  --shadow-lg: 0 16px 48px rgba(16,36,71,0.12);
  --shadow-rose: 0 8px 24px rgba(245,117,212,0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
}


/* ─── MARQUEE + PILL NAV ────────────────── */

/* marquee band */
.nav-marquee {
  position: fixed; top: 0; left: 0; right: 0; z-index: 501;
  height: 34px; overflow: hidden;
  background: #121E30;
  border-bottom: 1px solid rgba(245,117,212,.2);
  transition: height .45s cubic-bezier(.16,1,.3,1), opacity .35s;
}
.nav-marquee.hidden { height: 0; opacity: 0; pointer-events: none; }

.marquee-track {
  display: flex; white-space: nowrap;
  animation: mq 22s linear infinite;
  height: 34px; align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.mq-item {
  font-size: 9px; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 0 2.2rem;
  display: inline-flex; align-items: center; gap: 1.8rem;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.mq-item:hover { color: rgba(255,255,255,.8); }
.mq-item.active { color: #F575D4 !important; }
.mq-item::after {
  content: '';
  display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: rgba(245,117,212,.5);
}
.mq-item.active::after { background: #F575D4; }

/* main pill nav */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 500;
  padding: .85rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,.0);
  transition: top .45s cubic-bezier(.16,1,.3,1),
              padding .4s cubic-bezier(.16,1,.3,1),
              background .4s, box-shadow .4s;
  overflow: visible;
}
nav.scrolled {
  top: 0;
  padding: .65rem 3rem;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 28px rgba(16,36,71,.07);
}

/* logo / name area — reserve for logo */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  max-width: 500px; /* Masaüstü için maksimum genişlik */
  height: auto; /* Yüksekliği orantılı ayarla */
  transition: max-width .4s;
}
nav.scrolled .nav-logo {
  max-width: 300px; /* Kaydırıldığında biraz daha küçült */
}

/* pill container */
.nav-pill {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(16,36,71,.1);
  border-radius: 100px;
  display: flex; align-items: center;
  padding: 4px; gap: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(16,36,71,.07);
  transition: background .3s, box-shadow .3s;
  position: relative;
  overflow: visible;
}
nav.scrolled .nav-pill {
  background: rgba(245,238,251,.9);
  box-shadow: 0 2px 12px rgba(16,36,71,.08);
}

.nav-pill a {
  font-size: 9px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(16,36,71,.55); text-decoration: none;
  padding: 8px 18px; border-radius: 100px;
  transition: background .25s, color .25s;
  white-space: nowrap; position: relative;
}
.nav-pill a:hover { color: var(--ink); background: rgba(255,255,255,.8); }
.nav-pill a.active {
  background: var(--rose); color: #fff;
  box-shadow: 0 1px 8px rgba(245,117,212,.35);
}

/* micro-preview dropdown */
.nav-pill li { list-style: none; position: relative; }

/* hover bridge — li ile dropdown arasındaki boşluğu kapatır */
.nav-pill li::after {
  content: '';
  position: fixed;
  left: 0; right: 0;
  height: 20px;
  pointer-events: none;
  z-index: 9;
}
.nav-pill li:hover::after { pointer-events: auto; }

.nav-pill li:hover .nav-preview,
.nav-pill li:focus-within .nav-preview,
.nav-preview:hover { opacity: 1; transform: translateY(0); pointer-events: auto; }

.nav-pill li:hover .nav-preview.mega,
.nav-pill li:focus-within .nav-preview.mega,
.nav-preview.mega:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-preview {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%; transform: translate(-50%, 6px);
  width: 220px;
  background: #fff;
  border: 1px solid rgba(16,36,71,.08);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 12px 40px rgba(16,36,71,.12);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .3s cubic-bezier(.16,1,.3,1);
  z-index: 10;
}
.nav-preview::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: #fff;
  border-left: 1px solid rgba(16,36,71,.08);
  border-top: 1px solid rgba(16,36,71,.08);
  transform: translateX(-50%) rotate(45deg);
}

/* services mega dropdown — wider */
/* services mega dropdown — 2 col */
.nav-preview.mega {
  width: 520px;
  position: absolute;
  left: 0;
  transform: translateY(6px);
  right: auto;
  top: calc(100% + 8px);
  padding: 1.6rem 1.8rem;
  border-radius: 16px;
  z-index: 20;
  overflow: hidden;
}
@media (max-width: 640px) {
  .nav-preview.mega {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
  }
}
.nav-pill li:hover .nav-preview.mega,
.nav-preview.mega:hover {
  opacity: 1;
transform: translateY(0);
  pointer-events: auto;
}
.nav-preview.mega::before { left: 40px; right: auto; }

.mega-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(16,36,71,.06);
}
.mega-header-label {
  font-size: 9px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose);
}
.mega-header-link {
  font-size: 9px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(16,36,71,.4); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.mega-header-link:hover { color: var(--rose); }
.mega-header-link svg { stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
/* Desktop: mega menu base */
.mega-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: .9rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
}
.mega-item:hover { background: rgba(245,117,212,.06); }
.mega-item:hover .mega-item-num { color: var(--rose); }
.mega-item:hover .mega-item-name { color: var(--rose); }
.mega-item-num {
  font-size: 9px; font-weight: 300;
  color: rgba(245,117,212,.5);
  letter-spacing: .08em;
  transition: color .2s;
}
.mega-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-weight: 400;
  color: var(--ink); line-height: 1.2;
  transition: color .2s;
  word-wrap: break-word;
}
.mega-item-desc {
  font-size: 10px; font-weight: 300;
  color: rgba(16,36,71,.45); line-height: 1.5;
}

.np-label {
  font-size: 8px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .6rem;
}
.np-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400;
  color: var(--ink); margin-bottom: .4rem; line-height: 1.2;
}
.np-desc {
  font-size: 11px; font-weight: 300;
  color: var(--ink-60); line-height: 1.6;
}
.np-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose); margin-top: .8rem;
  text-decoration: none;
}
.np-arrow svg { stroke: var(--rose); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.np-arrow:hover svg { transform: translateX(3px); }

/* CTA button */
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 9px !important; font-weight: 500 !important;
  letter-spacing: .18em !important; text-transform: uppercase;
  color: #fff !important; background: var(--rose) !important;
  border: none !important; padding: 11px 22px !important;
  border-radius: 100px !important; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245,117,212,.35);
  transition: transform .2s, box-shadow .2s, background .2s !important;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(245,117,212,.5) !important;
  background: #BD3086 !important;
}
.nav-cta svg { width: 12px; height: 12px; fill: #fff; flex-shrink: 0; }

/* lang buttons — minimal, inside nav */
.nav-lang {
  display: flex; gap: 2px; flex-shrink: 0;
}
.nav-lang .lbtn {
  font-size: 9px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(16,36,71,.4);
  background: none; border: 1px solid transparent;
  padding: 5px 9px; cursor: none; border-radius: 100px;
  transition: all .2s;
}
.nav-lang .lbtn.on { border-color: var(--rose); color: var(--rose); }
.nav-lang .lbtn:hover:not(.on) { color: var(--ink); }

.nav-burger { display: none; background: none; border: none; cursor: none; padding: 4px; flex-direction: column; gap: 5px; }
.nav-burger span { width: 20px; height: 1px; background: var(--ink); display: block; transition: all .3s; }

/* hero margin adjustment */
.hero { margin-top: calc(34px + 62px) !important; height: calc(100vh - 96px) !important; }



/* ─── WA FAB — tooth shape ──────────────── */
.wa-fab-wrap {
  position: fixed; bottom: 2.2rem; right: 2.2rem; z-index: 400;
  display: flex; align-items: flex-end; gap: 12px;
}
.wa-bubble {
  background: #fff;
  border: 1px solid rgba(16,36,71,.1);
  border-radius: 14px 14px 2px 14px;
  padding: 12px 16px;
  max-width: 230px;
  box-shadow: 0 8px 28px rgba(16,36,71,.12);
  position: relative;
  transform-origin: bottom right;
  transition: opacity .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1);
}
.wa-bubble.hidden {
  opacity: 0; transform: scale(.85) translateY(8px);
  pointer-events: none;
}
.wa-bubble-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 300;
  line-height: 1.6; color: var(--ink);
}
.wa-bubble-text strong {
  display: block; font-weight: 500;
  font-size: 11px; color: #25D366;
  letter-spacing: .06em; margin-bottom: 4px;
}
.wa-bubble-close {
  position: absolute; top: 8px; right: 10px;
  width: 16px; height: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-30); padding: 0; line-height: 1;
  font-size: 14px;
  transition: color .2s;
  display: flex; align-items: center; justify-content: center;
}
.wa-bubble-close:hover { color: var(--ink); }
.wa-fab {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.wa-fab > svg { width: 28px; height: 28px; fill: #fff; display: block; }

/* ─── RADIAL INFO ──────────────────────── */
.radial-hint { font-size: 10px; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: rgba(16,36,71,.28); transition: opacity .3s; }

/* ─── CURSOR enhanced ───────────────────── */
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--rose); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, border-radius .25s;
  mix-blend-mode: multiply;
}
.cursor-outline {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid var(--ink-30); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.16,1,.3,1), height .4s cubic-bezier(.16,1,.3,1), border-color .3s, border-radius .3s;
}
.cursor-dot.grow { width: 12px; height: 12px; }
.cursor-outline.grow { width: 52px; height: 52px; border-color: var(--rose); }
/* on links — fill cursor */
.cursor-dot.link { width: 40px; height: 40px; background: var(--rose); opacity: .15; border-radius: 50%; }
.cursor-outline.link { width: 0; height: 0; opacity: 0; }

/* ─── CONTACT layout improved ───────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 0; }
.cd-item {
  padding: 1.8rem 0;
  border-bottom: var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.cd-item:first-child { border-top: var(--rule); }
.cd-label {
  font-size: 9px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--rose);
}
.cd-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; color: var(--ink); line-height: 1.4;
}
.cd-wa {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  margin-top: 1.4rem;
  border: 1px solid var(--ink-30);
  padding: 12px 24px;
  align-self: flex-start;
  transition: background .25s, color .25s, border-color .25s;
}
.cd-wa:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ─── STAT BAR enhanced ─────────────────── */
.stat-bar { border-top: var(--rule); border-bottom: var(--rule); background: var(--cream-2); padding: 0 5rem; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 3rem 1rem;
  text-align: center;
  border-right: var(--rule);
  position: relative;
  overflow: hidden;
  transition: background .3s;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.stat-item:first-child { border-left: var(--rule); }
.stat-item:hover { background: rgba(245,117,212,.04); }
.stat-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.stat-item.in::after { transform: scaleX(1); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,4vw,3.6rem); font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: .5rem; display: block; }
.stat-num em { font-style: normal; color: var(--rose); }
.stat-label { font-size: 10px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-60); }

/* ─── HERO inter-section rhythm ─────────── */
.section { padding: 9rem 5rem; border-top: var(--rule); }
.section-alt { background: var(--cream-2); }


/* ─── HERO SLIDER ───────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 110px;
  height: calc(100vh - 110px);
}

.slide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0; pointer-events: none;
  transition: opacity .6s;
  overflow: hidden; /* ::after pseudo-elementinin taşmasını engelle */
}
.slide.active { opacity: 1; pointer-events: all; }

/* per-slide bg */
.slide-bg {
  position: absolute; inset: 0;
  transition: transform 1.1s cubic-bezier(.76,0,.24,1);
  transform-origin: left center;
}
.slide.exit .slide-bg { transform: scaleX(0); }
.s1 .slide-bg { background: var(--cream); }
.s2 .slide-bg { background: #fdf2fd; }
.s3 .slide-bg { background: #fbe8f8; }

/* subtle grid overlay */
.slide::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--ink-12) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-12) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .4;
}

.slide-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 4vw 0 5vw;
}

/* eyebrow */
.s-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2.5rem;
  transform: translateY(24px); opacity: 0;
  transition: transform .8s cubic-bezier(.16,1,.3,1) .1s, opacity .6s .1s;
}
.s-label::before {
  content: ''; display: block;
  width: 0; height: 1px; background: var(--rose);
  transition: width .8s cubic-bezier(.16,1,.3,1) .3s;
}
.slide.active .s-label { transform: translateY(0); opacity: 1; }
.slide.active .s-label::before { width: 36px; }
.slide.exit .s-label { transform: translateY(-16px); opacity: 0; transition-delay: 0s; }
.slide.exit .s-label::before { width: 0; transition-delay: 0s; }

/* heading */
.s-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 2.2rem;
  overflow: hidden;
}
.s-line { display: block; overflow: hidden; }
.s-line-in {
  display: block;
  transform: translateY(105%); opacity: 0;
  transition: transform .95s cubic-bezier(.16,1,.3,1), opacity .4s;
}
.s-line-in.l1 { transition-delay: .22s; }
.s-line-in.l2 { transition-delay: .34s; }
.s-line-in.l3 { transition-delay: .46s; }
.slide.active .s-line-in { transform: translateY(0); opacity: 1; }
.slide.exit .s-line-in { transform: translateY(-105%); opacity: 0; transition-delay: 0s !important; }

.s-heading em {
  font-style: italic; font-weight: 300;
  color: var(--rose);
}

/* body */
.s-body {
  font-size: 13.5px; font-weight: 300;
  line-height: 1.85; color: var(--ink-60);
  max-width: 340px;
  margin-bottom: 2.8rem;
  transform: translateY(16px); opacity: 0;
  transition: transform .7s cubic-bezier(.16,1,.3,1) .5s, opacity .6s .5s;
}
.slide.active .s-body { transform: translateY(0); opacity: 1; }
.slide.exit .s-body { opacity: 0; transition-delay: 0s; }

/* cta */
.s-cta {
  display: flex; align-items: center; gap: 1.8rem;
  transform: translateY(16px); opacity: 0;
  transition: transform .7s cubic-bezier(.16,1,.3,1) .62s, opacity .6s .62s;
}
.slide.active .s-cta { transform: translateY(0); opacity: 1; }
.slide.exit .s-cta { opacity: 0; transition-delay: 0s; }

.btn-book {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff;
  background: var(--rose);
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid var(--rose);
  transition: background .3s, color .3s;
  position: relative; overflow: hidden;
}
.btn-book::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.76,0,.24,1);
}
.btn-book:hover::after { transform: translateX(0); }
.btn-book span { position: relative; z-index: 1; }
.btn-book svg { position: relative; z-index: 1; flex-shrink: 0; }

.btn-more {
  font-size: 10px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-60); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.btn-more:hover { color: var(--rose); }
.btn-more svg { transition: transform .25s; }
.btn-more:hover svg { transform: translateX(4px); }

/* counter */
.s-counter {
  position: absolute; bottom: 2.5rem; left: 5vw; z-index: 10;
  display: flex; align-items: center; gap: 1.2rem;
  transform: translateY(12px); opacity: 0;
  transition: transform .6s .7s, opacity .6s .7s;
}
.slide.active .s-counter { transform: translateY(0); opacity: 1; }
.slide.exit .s-counter { opacity: 0; transition-delay: 0s; }
.cnt-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: .1em; color: var(--ink-60);
}
.cnt-bar {
  width: 80px; height: 1px;
  background: var(--ink-12); position: relative; overflow: hidden;
}
.cnt-prog {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--rose);
  transition: width 1s cubic-bezier(.76,0,.24,1);
}

/* 3D canvas side */
.slide-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.slide-right canvas {
  width: 100% !important; height: 100% !important; display: block;
}
.canvas-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; z-index: 5;
  transition: opacity .6s, visibility .6s;
}
.canvas-loader.gone { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--ink-12);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}

/* ─── SERVICES GRID (NEW) ───────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.srv-card {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .3s, box-shadow .3s;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.srv-card-icon {
  width: 44px; height: 44px;
  color: var(--rose);
  margin-bottom: .5rem;
}
.srv-card-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; }
.srv-card:hover .srv-card-icon { color: var(--rose-l); }
.srv-card-name { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 500; line-height: 1.3; }
.srv-card-desc { font-size: .85rem; line-height: 1.7; color: var(--ink-60); }
.srv-card-cta {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 100px;
  text-align: center;
  align-self: flex-start;
  transition: background .25s, color .25s;
}
.srv-card:hover .srv-card-cta { background: var(--rose); color: #fff; }

/* ─── SERVICES ──────────────────────────── */
.srv-arrow {
  position: absolute; bottom: 2rem; right: 2rem;
  width: 32px; height: 32px;
  border: 1px solid var(--ink-12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(4px);
  transition: opacity .2s, transform .2s, background .2s;
}
.srv-card:hover .srv-arrow { opacity: 1; transform: translateY(0); }
.srv-card:hover .srv-arrow { background: var(--rose); border-color: var(--rose); }
.srv-card:hover .srv-arrow svg { stroke: #fff; }
.srv-arrow svg { stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─── ABOUT ─────────────────────────────── */
.about-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.about-top, .about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}
.about-img-wrap { position: relative; }
.about-img-tag {
  position: absolute; bottom: -1.5rem; right: -2rem;
  background: var(--ink); color: var(--cream);
  padding: 1.5rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; line-height: 1.4;
}
.about-bio { padding-top: 2rem; }
.about-body {
  font-size: 14.5px; font-weight: 300;
  line-height: 1.9; color: var(--ink-60);
  margin-bottom: 2rem;
}

/* ─── CV GRID ────────────────────────────── */
/* ─── CV TIMELINE ───────────────────────── */
.cv-timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 2rem;
}
.cv-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--rose) 0%, rgba(245,117,212,.1) 100%);
}
.cv-timeline::after {
  content: '';
  position: absolute;
  left: -4px; top: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(245,117,212,.15);
}
.cv-entry {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 1.4rem;
  padding: 1.4rem 0;
  position: relative;
  transition: background .2s;
}
.cv-entry + .cv-entry { border-top: var(--rule); }
.cv-entry::before {
  content: '';
  position: absolute;
  left: -2rem; margin-left: -5px;
  top: 1.75rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid rgba(245,117,212,.3);
  transition: background .3s, border-color .3s, transform .3s;
  z-index: 1;
}
.cv-entry:hover::before {
  background: var(--rose);
  border-color: var(--rose);
  transform: scale(1.25);
}
.cv-entry-year {
  font-size: 10px; font-weight: 300;
  letter-spacing: .06em;
  color: var(--rose);
  padding-top: 3px;
  line-height: 1.4;
  white-space: nowrap;
}
.cv-entry-body { display: flex; flex-direction: column; gap: 5px; }
.cv-entry-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: .75rem;
}
.cv-entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400;
  color: var(--ink); line-height: 1.2;
  transition: color .2s;
}
.cv-entry:hover .cv-entry-title { color: var(--rose); }
.cv-badge {
  font-size: 8px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 1px;
  white-space: nowrap; flex-shrink: 0; margin-top: 1px;
}
.cv-badge.edu { background: rgba(245,117,212,.1); color: var(--rose); border: 1px solid rgba(245,117,212,.2); }
.cv-badge.exp { background: rgba(16,36,71,.06); color: var(--ink-60); border: 1px solid rgba(16,36,71,.12); }
.cv-badge.mem { background: rgba(200,194,186,.18); color: var(--greige-d); border: 1px solid rgba(200,194,186,.35); }
.cv-entry-sub {
  font-size: 12px; font-weight: 300;
  color: var(--ink-60); letter-spacing: .02em; line-height: 1.5;
}


/* ─── CONTACT ───────────────────────────── */
.form-field { margin-bottom: 1.6rem; }
.form-label-text { display: block; font-size: 9px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 10px; }
.form-control { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--ink-30); padding: 10px 0; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; color: var(--ink); outline: none; transition: border-color .2s; border-radius: 0; }
select.form-control { height: 42px; padding: 10px 0; }
.form-control:focus { border-bottom-color: var(--rose); background: rgba(245,117,212,0.04); }
.form-control::placeholder { color: var(--ink-30); }
textarea.form-control { resize: none; height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-btn { width: 100%; background: var(--rose); color: #fff; border: none; padding: 16px; font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; cursor: none; transition: background .3s; margin-top: .5rem; }
.form-btn:hover { background: #BD3086; }

/* ─── FOOTER ────────────────────────────── */
footer {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -140px; left: 50%;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(245,117,212,.05);
  transform: translateX(-50%);
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(245,117,212,.07);
  pointer-events: none;
}

/* Statement */
.foot-statement {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 7rem 5rem 5.5rem;
  text-align: center;
  position: relative; z-index: 1;
}
.foot-eyebrow {
  font-size: 9px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose);
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
  margin-bottom: 2.2rem;
}
.foot-eyebrow::before,
.foot-eyebrow::after {
  content: '';
  width: 44px; height: 1px;
  background: rgba(245,117,212,.35);
  display: block;
}
.foot-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}
.foot-display em { font-style: italic; color: var(--rose); }
.foot-sub {
  font-size: 10.5px; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 3.2rem;
}
.foot-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.foot-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff;
  background: var(--rose);
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid var(--rose);
  transition: background .3s, color .3s;
  position: relative; overflow: hidden;
}
.foot-cta-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--cream);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.76,0,.24,1);
}
.foot-cta-btn:hover::after { transform: translateX(0); }
.foot-cta-btn:hover { color: var(--ink); }
.foot-cta-btn svg { fill: currentColor; width: 13px; height: 13px; flex-shrink: 0; position: relative; z-index: 1; }
.foot-cta-btn span { position: relative; z-index: 1; }

/* Info grid */
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.3fr 1.2fr 1.2fr;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
.foot-cell {
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.foot-cell:first-child { padding-left: 5rem; }
.foot-cell:last-child { padding-right: 5rem; border-right: none; }
.foot-cell-label {
  font-size: 8px; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 8px;
}
.foot-cell-label::before {
  content: '';
  width: 14px; height: 1px;
  background: rgba(245,117,212,.45);
  display: block; flex-shrink: 0;
}
.foot-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--cream);
  margin-bottom: .5rem; line-height: 1.2;
}
.foot-brand-role {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
  line-height: 1.75;
}
.foot-nav-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.foot-logo {
  max-width: 120px;
  width: auto;
  margin-bottom: .5rem;
  opacity: .9;
}
.foot-nav-list a {
  font-size: 11.5px; font-weight: 300;
  color: rgba(255,255,255,.4);
  text-decoration: none; letter-spacing: .03em;
  transition: color .2s, padding-left .2s;
  display: block;
}
.foot-nav-list a:hover { color: var(--cream); padding-left: 6px; }
.foot-contact-row {
  display: flex; align-items: flex-start; gap: .85rem;
  margin-bottom: 1.1rem;
}
.foot-contact-row svg {
  width: 12px; height: 12px;
  stroke: var(--rose); fill: none; flex-shrink: 0;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 3px;
}
.foot-contact-row span,
.foot-contact-row a {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.65; letter-spacing: .02em;
  text-decoration: none; transition: color .2s;
}
.foot-contact-row a:hover { color: var(--rose-pale); }

/* Social */
.foot-social { display: flex; gap: .7rem; margin-top: 2rem; }
.foot-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.foot-social a:hover { border-color: var(--rose); color: var(--rose-pale); background: rgba(245,117,212,.1); }
.foot-social svg { width: 13px; height: 13px; fill: currentColor; }

/* Bottom bar */
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 5rem;
  position: relative; z-index: 1;
  gap: 1rem; flex-wrap: wrap;
}
.foot-copy-small {
  font-size: 9.5px; font-weight: 300;
  letter-spacing: .07em;
  color: rgba(255,255,255,.22);
}
.foot-powered {
  font-size: 9.5px; font-weight: 300;
  letter-spacing: .07em;
  color: rgba(255,255,255,.22);
}
.foot-powered a { color: #FF6B35; text-decoration: none; font-weight: 500; transition: opacity .2s; }
.foot-powered a:hover { opacity: .75; }
.foot-links { display: flex; gap: 1.8rem; }
.foot-links a {
  font-size: 9px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
  text-decoration: none; transition: color .2s;
}
.foot-links a:hover { color: var(--rose-pale); }


/* ─── SHARED SUBPAGE COMPONENTS ─────────── */

/* PAGE HERO */
.page-hero {
  padding: clamp(8rem,16vw,13rem) 6vw clamp(4rem,7vw,6rem);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.ph-bg-word {
  position: absolute;
  right: -1vw; bottom: -.3em;
  font: 300 clamp(7rem,18vw,16rem)/1 var(--ff-serif);
  color: rgba(255,255,255,.032);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.ph-eyebrow {
  font: 300 .68rem/1 var(--ff-sans);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .75rem;
}
.ph-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rose); display: block; }
.ph-num {
  font: 300 .7rem/1 var(--ff-sans);
  letter-spacing: .18em; color: rgba(255,255,255,.25);
  margin-bottom: .6rem;
}
.ph-title {
  font: 300 clamp(3rem,7vw,5.5rem)/1.02 var(--ff-serif);
  color: var(--cream); margin-bottom: 1.6rem;
}
.ph-title em { font-style: italic; color: var(--rose-l); }
.ph-sub {
  font: 300 1rem/1.8 var(--ff-sans);
  color: rgba(255,255,255,.5); max-width: 52ch;
}
.ph-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font: 300 .7rem/1 var(--ff-sans); letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 2.5rem;
}
.ph-breadcrumb a { color: inherit; text-decoration: none; transition: color .2s; }
.ph-breadcrumb a:hover { color: var(--rose); }
.ph-breadcrumb span { opacity: .4; }

/* SERVICE OVERVIEW */
.svc-overview {
  padding: 6rem 6vw;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 8vw; align-items: center;
}
.ov-label {
  font: 300 .68rem/1 var(--ff-sans); letter-spacing: .22em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .75rem;
}
.ov-label::before { content: ''; width: 24px; height: 1px; background: var(--rose); display: block; }
.ov-title {
  font: 300 clamp(2rem,4vw,3rem)/1.1 var(--ff-serif); color: var(--ink);
  margin-bottom: 1.5rem;
}
.ov-title em { font-style: italic; color: var(--rose); }
.ov-body {
  font: 300 1rem/1.85 var(--ff-sans); color: var(--greige-d);
}
.ov-body p + p { margin-top: 1.2rem; }
.ov-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: 4px;
}
.ov-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.ov-image:hover img {
  transform: scale(1.05);
}
.ov-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(16,36,71,.25));
  pointer-events: none;
}
.ov-image::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(245,117,212,.3);
  border-radius: 4px;
  transform: translate(12px, 12px);
  z-index: -1;
  transition: transform .4s;
}
.ov-image:hover::before {
  transform: translate(6px, 6px);
}

/* BENEFITS */
.svc-benefits {
  padding: 6rem 6vw;
  background: var(--cream-2);
  border-top: 1px solid var(--ink-12);
}
.ben-header { margin-bottom: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.ben-eyebrow {
  font: 300 .68rem/1 var(--ff-sans); letter-spacing: .22em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.ben-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rose); display: block; }
.ben-title {
  font: 300 clamp(2rem,3.5vw,2.8rem)/1.1 var(--ff-serif); color: var(--ink);
}
.ben-title em { font-style: italic; color: var(--rose); }
.ben-desc {
  font: 300 .95rem/1.7 var(--ff-sans); color: var(--greige-d);
}
.ben-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.ben-card {
  background: #fff; padding: 2.4rem 2rem;
  border: 1px solid rgba(200,194,186,.2);
  display: flex; flex-direction: column; gap: 1rem;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.ben-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(16,36,71,.12);
  border-color: rgba(245,117,212,.3);
}
.ben-card-icon {
  width: 48px; height: 48px; color: var(--rose); margin-bottom: .2rem;
  transition: transform .3s;
}
.ben-card:hover .ben-card-icon {
  transform: scale(1.15);
}
.ben-card-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ben-card-name {
  font: 400 1.12rem/1.25 var(--ff-serif); color: var(--ink);
}
.ben-card-desc {
  font: 300 .875rem/1.65 var(--ff-sans); color: var(--greige-d);
}

/* PROCESS */
.svc-process {
  background: var(--ink);
  padding: 6rem 6vw;
  position: relative; overflow: hidden;
}
.svc-process::before {
  content: '';
  position: absolute; top: -30%; right: -8%;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.proc-header { margin-bottom: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.proc-eyebrow {
  font: 300 .68rem/1 var(--ff-sans); letter-spacing: .22em;
  text-transform: uppercase; color: var(--rose-l); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.proc-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rose-l); display: block; }
.proc-title {
  font: 300 clamp(2rem,3.5vw,2.8rem)/1.1 var(--ff-serif); color: var(--cream);
}
.proc-title em { font-style: italic; color: var(--rose-l); }
.proc-subtitle {
  font: 300 .95rem/1.75 var(--ff-sans); color: rgba(255,255,255,.45);
}
.proc-steps {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid rgba(245,117,212,.2); padding-left: 3rem; margin-left: 1rem;
}
.proc-step {
  position: relative; padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: grid; grid-template-columns: 60px 1fr; gap: 2rem; align-items: start;
}
.proc-step:last-child { border-bottom: none; }
.proc-step::before {
  content: '';
  position: absolute; left: -3rem; top: 2.4rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rose); transform: translateX(-5px);
  box-shadow: 0 0 0 4px rgba(245,117,212,.15);
}
.proc-step-num {
  font: 300 2.2rem/1 var(--ff-serif); color: rgba(255,255,255,.12);
  padding-top: .2rem;
}
.proc-step-name {
  font: 400 1.1rem/1.25 var(--ff-serif); color: var(--cream); margin-bottom: .5rem;
}
.proc-step-desc {
  font: 300 .875rem/1.65 var(--ff-sans); color: rgba(255,255,255,.45);
}

/* FAQ */
.svc-faq {
  background: var(--cream); padding: 6rem 6vw;
}
.faq-header { margin-bottom: 3.5rem; }
.faq-eyebrow {
  font: 300 .68rem/1 var(--ff-sans); letter-spacing: .22em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.faq-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rose); display: block; }
.faq-title {
  font: 300 clamp(2rem,3.5vw,2.8rem)/1.1 var(--ff-serif); color: var(--ink);
}
.faq-title em { font-style: italic; color: var(--rose); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--ink-12);
  padding: 2rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-12); }
.faq-q {
  font: 400 1.15rem/1.3 var(--ff-serif); color: var(--ink);
  margin-bottom: .9rem;
}
.faq-a {
  font: 300 .9rem/1.75 var(--ff-sans); color: var(--greige-d);
}

/* OTHER SERVICES */
.other-svc {
  background: var(--cream-2); padding: 5rem 6vw;
  border-top: 1px solid var(--ink-12);
}
.other-eyebrow {
  font: 300 .68rem/1 var(--ff-sans); letter-spacing: .22em;
  text-transform: uppercase; color: var(--rose); margin-bottom: .8rem;
  display: flex; align-items: center; gap: .75rem;
}
.other-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rose); display: block; }
.other-title {
  font: 300 clamp(1.6rem,3vw,2.4rem)/1.1 var(--ff-serif); color: var(--ink);
  margin-bottom: 2.5rem;
}
.other-title em { font-style: italic; }
.other-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.other-card {
  background: #fff; border: 1px solid rgba(200,194,186,.25);
  padding: 1.8rem 1.75rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .6rem;
  transition: box-shadow .3s, transform .3s;
}
.other-card:hover { box-shadow: 0 10px 36px rgba(16,36,71,.09); transform: translateY(-3px); }
.other-card-num { font: 300 .72rem/1 var(--ff-sans); letter-spacing: .12em; color: var(--rose); }
.other-card-name { font: 400 1.1rem/1.3 var(--ff-serif); color: var(--ink); }
.other-card-desc { font: 300 .8rem/1.55 var(--ff-sans); color: var(--greige-d); }
.other-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font: 400 .68rem/1 var(--ff-sans); letter-spacing: .12em;
  text-transform: uppercase; color: var(--rose); margin-top: auto; padding-top: 1rem;
}
.other-card-link svg { transition: transform .25s; }
.other-card:hover .other-card-link svg { transform: translateX(4px); }

/* PAGE CTA */
.page-cta {
  background: var(--rose);
  padding: 6rem 6vw;
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute; top: -40%; right: 8%;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1); pointer-events: none;
}
.pcta-watermark {
  position: absolute; right: -1%; top: 50%; transform: translateY(-50%);
  font: 300 italic clamp(4rem,12vw,10rem)/1 var(--ff-serif);
  color: rgba(255,255,255,.07); pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: -.02em;
}
.pcta-eyebrow {
  font: 300 .68rem/1 var(--ff-sans); letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.pcta-eyebrow::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.4); display: block; }
.pcta-title {
  font: 300 clamp(1.8rem,3.5vw,3rem)/1.08 var(--ff-serif); color: #fff;
}
.pcta-title em { font-style: italic; color: rgba(255,255,255,.7); }
.pcta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; position: relative; z-index: 2; }
.pcta-btn {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #fff; color: var(--rose);
  font: 500 .78rem/1 var(--ff-sans); letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; padding: 1.2rem 2.4rem;
  transition: background .3s, color .3s;
}
.pcta-btn:hover { background: var(--ink); color: #fff; }
.pcta-btn svg { width: 14px; height: 14px; fill: currentColor; }
.pcta-ghost {
  font: 400 .72rem/1 var(--ff-sans); letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.6); text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.pcta-ghost:hover { color: #fff; }
.pcta-ghost svg { stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.pcta-ghost:hover svg { transform: translateX(3px); }

/* MINI FOOTER */
.mini-footer {
  background: var(--ink); padding: 2.5rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mf-brand {
  font: 400 1rem/1 var(--ff-serif); color: var(--cream);
}
.mf-sub {
  font: 300 .72rem/1 var(--ff-sans); letter-spacing: .1em;
  color: rgba(255,255,255,.3); margin-top: .3rem;
}
.mf-links { display: flex; gap: 2rem; }
.mf-links a {
  font: 300 .72rem/1 var(--ff-sans); letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s;
}
.mf-links a:hover { color: var(--rose-l); }

/* ─── BLOG SPECIFIC ─────────────── */
.blog-page { background: var(--cream); }

.article-entry {
  padding: 2rem 0;
  border-bottom: 1px solid var(--ink-12);
  transition: background .2s;
  transition: background .2s, margin .2s, padding .2s;
}
@media (min-width: 961px) {
  .article-entry:hover {
    background: rgba(16,36,71,0.02);
    margin: 0 -1rem;
    padding: 2rem 1rem;
    border-radius: 4px;
  }
}
.article-category {
  font: 400 .55rem/1 var(--ff-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.article-title-list {
  font: 500 1.15rem/1.4 var(--ff-serif);
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.article-title-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.article-title-list a:hover { color: var(--rose); }
.article-abstract {
  font: 300 .85rem/1.7 var(--ff-sans);
  color: var(--ink-60);
  margin-bottom: 0.8rem;
  max-width: 70ch;
}
.article-meta {
  font: 300 .65rem/1 var(--ff-sans);
  color: var(--greige);
  display: flex;
  gap: 1.5rem;
}

/* ─── RESPONSIVE ADDITIONS ───────────── */
@media (max-width: 900px) {
  .svc-overview { grid-template-columns: 1fr; gap: 3rem; }
  .ov-image { aspect-ratio: 3/2; }
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-header { grid-template-columns: 1fr; gap: 2rem; }
  .proc-steps { padding-left: 2rem; }
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .page-cta { grid-template-columns: 1fr; gap: 2.5rem; }
  .pcta-actions { align-items: flex-start; }
}
@media (max-width: 600px) {
  .ben-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .mini-footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(.94);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal-delay-4 { transition-delay: .44s; }
.reveal-delay-5 { transition-delay: .56s; }
.reveal-delay-6 { transition-delay: .68s; }

/* ─── LANG VISIBILITY ───────────────────── */
[data-en] { display: none; }
body.lang-en [data-tr] { display: none; }
body.lang-en [data-en] { display: block; }
body.lang-en span[data-en],
body.lang-en a[data-en],
body.lang-en li[data-en] { display: inline; }

/* ─── TOOTH IMAGE ───────────────────────── */
.tooth-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.tooth-img {
  width: 72%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(0) rotate(0deg) scale(1);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1), opacity .8s;
  filter: drop-shadow(0 40px 60px rgba(16,36,71,.18));
  will-change: transform;
  user-select: none;
}
#toothImg2 { width: 42%; max-width: 260px; }

/* s1 mobile variant — hidden on desktop, shown on mobile */
.s1-mob-img { display: none; }
.s1-mob-img .tooth-img { width: 55%; max-width: 280px; }

/* ─── DOCTOR PORTRAIT — slide 1 ─────────── */
.dr-banner-wrap {
  position: absolute; inset: 0; overflow: hidden;
}
.dr-banner-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 22%);
  pointer-events: none; z-index: 1;
}
.dr-banner {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  opacity: 0; transform: scale(1.04);
  transition: opacity .9s cubic-bezier(.16,1,.3,1) .1s, transform 1.4s cubic-bezier(.16,1,.3,1) .1s;
  will-change: transform;
  user-select: none; pointer-events: none;
}
.slide.active .dr-banner { opacity: 1; transform: scale(1); }
.slide.exit .dr-banner { opacity: 0; transform: scale(.98); transition-delay: 0s; }

/* entry animation — slides in from below */
.slide:not(.active) .tooth-img {
  opacity: 0;
  transform: translateY(50px) scale(.9);
}
.slide.active .tooth-img {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .15s;
}
.slide.exit .tooth-img {
  opacity: 0;
  transform: translateY(-40px) scale(.92);
  transition-delay: 0s;
}


/* ─── RADIAL SERVICES ───────────────────── */

/* ─── PROCESS ───────────────────────────── */
.process-section {
  padding: 9rem 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px dashed rgba(245,117,212,.12);
  pointer-events: none;
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.process-header .sec-label { color: var(--rose-l); }
.process-header .sec-label::before { background: var(--rose-l); }
.process-header .sec-title { color: var(--ivory); }
.process-header .sec-desc { color: rgba(255,255,255,.5); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}
/* horizontal connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%;
  width: 75%; height: 1px;
  background: rgba(255,255,255,.08);
  z-index: 0;
}
.process-step {
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255,255,255,.06);
}
.process-step:last-child { border-right: none; }
.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(245,117,212,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: background .3s, border-color .3s;
  overflow: hidden;
}
.step-circle img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: none;
  opacity: .9;
  transition: opacity .3s, filter .3s, transform .4s cubic-bezier(.16,1,.3,1);
}
.process-step:hover .step-circle {
  background: var(--rose);
  border-color: var(--rose);
}
.process-step:hover .step-circle img {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.12);
}
.process-step:last-child .step-connector { display: none; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--ivory);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.step-desc {
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
}

/* ─── CLOSING CTA ───────────────────────── */
.closing-cta {
  background: linear-gradient(135deg, #BD3086 0%, #F575D4 100%);
  padding: 8rem 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: 5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.closing-cta::after {
  content: '';
  position: absolute;
  bottom: -60%; right: 20%;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.08);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-eyebrow {
  font-size: 9px; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 12px;
}
.cta-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: rgba(255,255,255,.5);
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  max-width: 560px;
}
.cta-title em { font-style: italic; color: rgba(255,255,255,.7); }
.cta-actions {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 1rem; align-items: flex-end;
}
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose);
  background: #fff;
  text-decoration: none;
  padding: 16px 32px;
  white-space: nowrap;
  border: 1px solid #fff;
  transition: background .3s, color .3s;
}
.btn-cta-primary:hover { background: #BD3086; color: #fff; border-color: #BD3086; }
.btn-cta-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.btn-cta-ghost:hover { color: #fff; }
.btn-cta-ghost svg { transition: transform .2s; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.btn-cta-ghost:hover svg { transform: translateX(4px); }



@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}


.radial-wrap{display:flex;flex-direction:row;align-items:center;gap:4rem;justify-content:flex-start}
.radial-stage{position:relative;width:500px;height:500px;flex-shrink:0;max-width:min(92vw,500px);max-height:min(92vw,500px)}
.radial-ring{position:absolute;border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none}
.radial-ring.r1{width:100%;height:100%;border:1px solid rgba(16,36,71,.07)}
.radial-ring.r2{width:68%;height:68%;border:1px dashed rgba(245,117,212,.14);animation:rspin 32s linear infinite}
.radial-ring.r3{width:36%;height:36%;border:1px solid rgba(16,36,71,.06)}
@keyframes rspin{to{transform:translate(-50%,-50%) rotate(360deg)}}
.radial-center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:148px;height:148px;border-radius:50%;background:var(--rose);display:flex;align-items:center;justify-content:center;z-index:10;cursor:grab;box-shadow:0 8px 36px rgba(245,117,212,.3);transition:background .4s,box-shadow .3s}
.radial-center:active{cursor:grabbing}
.radial-center.lit{background:var(--rose-l);box-shadow:0 14px 48px rgba(245,117,212,.45)}
.radial-center-pulse{position:absolute;inset:-6px;border-radius:50%;border:1px solid rgba(255,255,255,.0);transition:border-color .4s,inset .4s;pointer-events:none}
.radial-center.lit .radial-center-pulse{border-color:rgba(255,255,255,.4);inset:-12px}
.radial-center-img{width:76px;height:76px;object-fit:contain;pointer-events:none;filter:drop-shadow(0 2px 8px rgba(0,0,0,.35));will-change:transform}
.radial-node{position:absolute;display:flex;flex-direction:column;align-items:center;text-align:center;cursor:none;z-index:5;transform:translate(-50%,-50%);-webkit-tap-highlight-color:transparent}
.radial-dot{width:8px;height:8px;border-radius:50%;background:rgba(16,36,71,.15);border:1px solid rgba(16,36,71,.2);margin-bottom:8px;transition:background .3s,border-color .3s,transform .4s cubic-bezier(.16,1,.3,1)}
.radial-nname{font-family:'Cormorant Garamond',serif;font-size:.9rem;font-weight:400;color:rgba(16,36,71,.45);line-height:1.2;max-width:85px;transition:color .3s,transform .35s cubic-bezier(.16,1,.3,1)}
.radial-conn{position:absolute;top:50%;left:50%;height:1px;background:rgba(245,117,212,.0);transform-origin:left center;z-index:1;pointer-events:none;transition:background .4s}
.radial-node.on .radial-dot{background:#F575D4;border-color:#F575D4;transform:scale(1.7)}
.radial-node.on .radial-nname{color:#121E30;transform:scale(1.06)}
.radial-conn.on{background:rgba(245,117,212,.25)}
.radial-info-wrap{flex:1;min-width:0;display:flex;flex-direction:column;gap:1.2rem}
.radial-info{text-align:left;padding:0}
.radial-info-num{font-family:'Cormorant Garamond',serif;font-size:.85rem;font-weight:300;color:var(--rose);letter-spacing:.14em;margin-bottom:6px;opacity:0;transform:translateY(5px);transition:opacity .35s,transform .35s}
.radial-info-name{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:400;color:var(--ink);margin-bottom:10px;opacity:0;transform:translateY(6px);transition:opacity .35s .05s,transform .35s .05s}
.radial-info-desc{font-family:'Jost',sans-serif;font-size:14px;font-weight:300;color:var(--ink-60);line-height:1.85;opacity:0;transform:translateY(6px);transition:opacity .35s .1s,transform .35s .1s}
.radial-info-num.show,.radial-info-name.show,.radial-info-desc.show{opacity:1;transform:translateY(0)}
.radial-timeline{display:flex;align-items:flex-start;margin:1.4rem 0 1.6rem;opacity:0;transform:translateY(6px);transition:opacity .35s .08s,transform .35s .08s}
.radial-timeline.show{opacity:1;transform:translateY(0)}
.radial-tl-step{display:flex;flex-direction:column;align-items:center;gap:7px;flex-shrink:0}
.radial-tl-dot{width:8px;height:8px;border-radius:50%;background:var(--rose-pale);border:1.5px solid var(--rose);flex-shrink:0}
.radial-tl-label{font-family:'Jost',sans-serif;font-size:9px;font-weight:400;letter-spacing:.05em;color:var(--ink-60);text-align:center;max-width:66px;line-height:1.35}
.radial-tl-conn{flex:1;height:1px;background:rgba(245,117,212,.22);margin-top:3.5px;min-width:10px}
.radial-cta{display:inline-flex;align-items:center;gap:7px;margin-top:1.6rem;font-family:'Jost',sans-serif;font-size:9.5px;font-weight:400;letter-spacing:.2em;text-transform:uppercase;color:var(--rose);text-decoration:none;border-bottom:1px solid rgba(245,117,212,.35);padding-bottom:3px;opacity:0;transform:translateY(6px);transition:opacity .35s .15s,transform .35s .15s,color .2s,border-color .2s}
.radial-cta.show{opacity:1;transform:translateY(0)}
.radial-cta:hover{color:var(--rose-l);border-color:var(--rose-l)}
.radial-cta svg{transition:transform .2s}
.radial-cta:hover svg{transform:translateX(3px)}
.radial-hint{font-size:9px;font-weight:300;letter-spacing:.2em;text-transform:uppercase;color:rgba(16,36,71,.28);transition:opacity .3s}

/* ─── TESTIMONIALS ──────────────────────── */

/* ─── FOOTER SOCIAL ─────────────────────── */
.foot-social {
  display: flex; gap: 1rem; align-items: center;
}
.foot-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--greige);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.foot-social a:hover {
  border-color: var(--rose);
  color: var(--rose-pale);
  background: rgba(245,117,212,.1);
}
.foot-social svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── MOBILE BOTTOM NAV ─────────────────── */
.mob-nav {
  display: none;
  position: fixed;
  top: auto !important;
  bottom: 0; left: 0; right: 0; z-index: 502;
  background: #FFFFFF;
  border-top: 1px solid rgba(16,36,71,.1);
  box-shadow: 0 -2px 16px rgba(16,36,71,.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  /* iOS transform hack — fixed pozisyonun body overflow'dan etkilenmemesi için */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mob-nav-inner {
  display: flex;
  height: 62px;
}
.mob-nav-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: var(--ink-30);
  transition: color .2s;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.mob-nav-item.active { color: var(--rose); }
.mob-nav-item svg {
  width: 21px; height: 21px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.mob-nav-item.mob-wa svg { fill: #25D366; stroke: none; }
.mob-nav-item.mob-wa { color: #25D366; }
.mob-nav-label {
  font-family: 'Jost', sans-serif;
  font-size: 8.5px; font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  line-height: 1;
}

/* ── Mob WA bubble ── */
.mob-wa-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 200px;
  background: #fff;
  border: 1px solid rgba(16,36,71,.1);
  border-radius: 12px 12px 2px 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(16,36,71,.13);
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1);
  z-index: 600;
}
.mob-wa-bubble.hidden {
  opacity: 0;
  transform: translateY(6px);
}
.mob-wa-bubble strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  color: #25D366;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.mob-wa-bubble p {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.mob-wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 16px;
  width: 10px; height: 10px;
  background: #fff;
  border-right: 1px solid rgba(16,36,71,.1);
  border-bottom: 1px solid rgba(16,36,71,.1);
  transform: rotate(45deg);
}

/* ─── TRUST / MEMBERSHIPS ───────────────── */
.trust-section {
  background: var(--cream-2);
  padding: 5rem 3rem;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.trust-inner { max-width: 1100px; margin: 0 auto; }
.trust-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.trust-grid a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── FOOTER MOBILE ─────────────────────── */
@media (max-width: 960px) {
  .foot-statement { padding: 4.5rem 1.5rem 4rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-cell { padding: 2.5rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .foot-cell:first-child { grid-column: 1 / -1; padding-left: 1.5rem; }
  .foot-cell:last-child { padding-right: 1.5rem; border-bottom: none; }
  .foot-bottom { flex-direction: column; gap: .8rem; text-align: center; padding: 1.4rem 1.5rem; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-cell:first-child { grid-column: auto; }
}
.trust-card {
  background: var(--cream);
  border: var(--rule);
  border-radius: 2px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .25s, box-shadow .25s;
}
.trust-card:hover {
  border-color: var(--rose-pale);
  box-shadow: 0 6px 24px rgba(245,117,212,.08);
}
.trust-card-icon {
  width: 32px; height: 32px;
  color: var(--rose);
  margin-bottom: .4rem;
  flex-shrink: 0;
}
.trust-card-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.trust-card-org {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.trust-card-role {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px; font-weight: 300;
  color: var(--ink-60);
  line-height: 1.55;
}
.trust-card-year {
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose);
  margin-top: .6rem;
}
.trust-card-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* ─── FORM SELECT ───────────────────────── */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F575D4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--rose); }

/* ═══════════════════════════════════════════
   ESTETIK YÜKSELTİM — Berk Zeyrek / 2026-04
   ═══════════════════════════════════════════ */

/* ─── 1. GRAIN TEXTURE ───────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ─── 2. PAGE CURTAIN ────────────────────── */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream);
  transform-origin: top;
  transition: transform .95s cubic-bezier(.76, 0, .24, 1);
  pointer-events: none;
}
.page-curtain.gone {
  transform: scaleY(0);
}

/* ─── 3. DR. BANNER AMBIENT GLOW ─────────── */
.dr-banner-wrap::before {
  content: '';
  position: absolute;
  bottom: -8%;
  right: 5%;
  width: 75%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(245,117,212,.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(55px);
}

/* ─── 4. CLOSING CTA WATERMARK ───────────── */
.cta-watermark {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -.02em;
  z-index: 1;
}

/* ─── 5. PROCESS CONNECTOR ANIMATION ─────── */
.step-connector {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.16,1,.3,1) .4s;
}
.process-step.in .step-connector {
  transform: scaleX(1);
}

/* ─── 6. ABOUT IMAGE ELEVATION ───────────── */
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%);
  max-height: 560px;
  border-radius: 2px 2px 44px 2px;
  box-shadow: 0 40px 80px rgba(245,117,212,.14), 0 16px 40px rgba(16,36,71,.09);
}

@media (max-width: 960px) {
  body { cursor: auto; padding-bottom: 62px; }
  .cursor-dot, .cursor-outline { display: none; }
  .nav-marquee { display: none !important; }
  nav { position: sticky; top: 0 !important; padding: 1rem 1.5rem !important; background: rgba(255,255,255,.97) !important; backdrop-filter: blur(16px) !important; box-shadow: 0 2px 16px rgba(16,36,71,.07) !important; justify-content: center; }
  .nav-pill { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-burger { display: none !important; }
  .nav-sub { display: none !important; }
  .nav-lang { display: none !important; }
  .nav-logo { max-width: 100px !important; } /* Mobil için daha küçük bir maksimum genişlik */
  /* Mega menu responsive */
  .nav-preview.mega { width: calc(100% - 2rem); left: 1rem; right: 1rem; max-width: 320px; }
  .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  .mega-item { padding: .7rem .8rem; }
  .mega-item-name { font-size: .85rem; }
  .mega-item-desc { font-size: 9px; }
  .mob-nav { display: block; width: 100%; }
  .wa-fab-wrap { display: none !important; }

  /* ── Hero ── */  
  .hero { margin-top: 0 !important; height: calc(100vh - 58px) !important; }
  .slide { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .slide-right { height: 52vw; min-height: 240px; order: -1; }
  .slide-left { padding: 2rem 1.5rem; order: 1; }
  .tooth-img { filter: none; }
  .dr-banner-wrap { display: block; height: 100%; width: 100%; }
  .dr-banner { object-position: center 45%; }
  .s1-mob-img { display: none; }
  .dr-banner-wrap::after { background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%), linear-gradient(to right, var(--cream) 0%, transparent 40%); }

  .dr-a, .dr-b { display: none; }
  #stage0 .dr-a, #stage0 .dr-b { display: none; }
  .section { padding: 5rem 1.5rem; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .radial-wrap { flex-direction: column; align-items: center; gap: 2rem; }
  .radial-info-wrap { align-items: center; width: 100%; }
  .radial-info { text-align: center; }
  .radial-hint { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .srv-card { border: none !important; border-top: var(--rule) !important; padding: 2rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-tag { display: none; }
  .stat-bar { padding: 0 1.5rem; grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(3) { border-left: var(--rule); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: var(--rule); }
  .process-section { padding: 5rem 1.5rem; }
  .process-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-steps::before { display: none; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 2rem 0; }
  .process-step:last-child { border-bottom: none; }
  .closing-cta { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 1.5rem; }
  .cta-actions { align-items: flex-start; }
  .cta-title { font-size: clamp(1.8rem,8vw,2.6rem); }
  .form-row-2 { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem 2.5rem; }
  .foot-tagline { max-width: 100%; }
  .foot-bottom { flex-direction: column; gap: .8rem; padding: 1.4rem 1.5rem; text-align: center; }
  .foot-nav-list { flex-direction: row; flex-wrap: wrap; gap: .6rem 1.4rem; }
  .step-connector { display: none; }
  .process-steps { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.12); margin-left: .25rem; }
  .process-step { padding: 2rem 0 2rem 1.25rem; position: relative; }
  .process-step::before { content: ''; position: absolute; left: -1.45rem; top: 2.25rem; width: 9px; height: 9px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(245,117,212,.15); }
  .trust-grid { grid-template-columns: 1fr; }
}
