/* Medisera Health — klinik creative token & bileşenler */
:root {
  --primary: #0e5fcb;
  --primary-pressed: #0a4a9f;
  --primary-surface: #e8f0fc;
  --primary-border: #b9d2f5;
  --accent: #0b7e7b;
  --accent-surface: #e2f4f3;
  --bg: #f3f6fb;
  --surface: #ffffff;
  --ink: #0f1d2b;
  --muted: #4a5c6e;
  --tertiary: #6c7c8c;
  --line: #dce3ec;
  --success: #136e45;
  --success-surface: #e4f3eb;
  --danger: #a81e15;
  --call: #0a121c;
  --radius-card: 18px;
  --radius-control: 14px;
  --shadow-card: 0 2px 10px rgba(11, 31, 53, 0.05);
  --shadow-elevated: 0 6px 18px rgba(11, 31, 53, 0.1);
  --max: 1160px;
  --font: "Spline Sans", ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.glow-bg {
  position: relative;
  overflow: hidden;
}
.glow-bg::before,
.glow-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--primary-surface);
  pointer-events: none;
  z-index: 0;
}
.glow-bg::before {
  width: 320px;
  height: 320px;
  top: -130px;
  right: -110px;
  opacity: 0.7;
}
.glow-bg::after {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: -90px;
  opacity: 0.45;
}
.glow-bg > * {
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-control);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 120ms ease, background 120ms ease;
}
.btn-primary:hover {
  background: var(--primary-pressed);
}
.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  border: 1.5px solid var(--primary);
  transition: transform 120ms ease, background 120ms ease;
}
.btn-secondary:hover {
  background: var(--primary-surface);
}
.btn-secondary:active {
  transform: scale(0.97);
}

.pill-success {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--success-surface);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
}

.surface-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.prose-clinical {
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.prose-clinical p + p {
  margin-top: 1rem;
}

.phone-frame {
  position: relative;
  margin: 0 auto;
  width: min(100%, 320px);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #1a2433, #0b1522);
  box-shadow: var(--shadow-elevated);
}
.phone-frame img {
  display: block;
  width: 100%;
  border-radius: 28px;
  background: #fff;
}

/* ProductFlowSlider — gerçek ürün turu */
.pfs {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  outline: none;
}
.pfs__layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pfs__layout {
    grid-template-columns: 280px 1fr;
    min-height: 640px;
  }
}
.pfs__rail {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: linear-gradient(180deg, #f7faff, #eef4fc);
  border-right: 1px solid var(--line);
  overflow: auto;
}
@media (min-width: 900px) {
  .pfs__rail {
    display: flex;
  }
}
.pfs__step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 150ms ease, border-color 150ms ease;
}
.pfs__step:hover {
  background: rgba(255, 255, 255, 0.8);
}
.pfs__step.is-active {
  background: #fff;
  border-color: var(--primary-border);
  box-shadow: var(--shadow-card);
}
.pfs__step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  min-width: 1.6rem;
  padding-top: 0.15rem;
}
.pfs__step-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.pfs__step-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.35;
}
.pfs__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(14, 95, 203, 0.12), transparent),
    linear-gradient(180deg, #e8f0fc 0%, #f3f6fb 55%, #fff 100%);
}
.pfs__progress {
  height: 3px;
  background: rgba(14, 95, 203, 0.15);
  width: 100%;
}
.pfs__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--primary);
}
.pfs__stage-inner {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0.5rem 0.5rem;
}
@media (min-width: 640px) {
  .pfs__stage-inner {
    padding: 1.5rem 1rem 0.75rem;
    gap: 0.75rem;
  }
}
.pfs__phone {
  display: flex;
  justify-content: center;
}
.pfs__frame {
  width: min(100%, 280px);
}
@media (min-width: 640px) {
  .pfs__frame {
    width: min(100%, 320px);
  }
}
.pfs__frame img {
  transition: opacity 220ms ease, transform 280ms ease;
}
.pfs__img--in {
  animation: pfsIn 280ms ease;
}
@keyframes pfsIn {
  from {
    opacity: 0.35;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pfs__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  justify-self: center;
}
.pfs__arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pfs__caption {
  padding: 0.75rem 1.15rem 1.25rem;
}
@media (min-width: 640px) {
  .pfs__caption {
    padding: 0.5rem 1.75rem 1.5rem;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .pfs__labels {
    justify-content: center;
  }
  .pfs__cta {
    margin-left: auto;
    margin-right: auto;
  }
}
.pfs__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.pfs__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .pfs__title {
    font-size: 1.65rem;
  }
}
.pfs__body {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.pfs__body p + p {
  margin-top: 0.65rem;
}
.pfs__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1rem;
}
.pfs__labels span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-surface);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}
.pfs__cta {
  display: inline-flex;
}
.pfs__thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.85rem 1rem 0.5rem;
  border-top: 1px solid var(--line);
  background: #fafcfe;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pfs__thumb {
  position: relative;
  flex: 0 0 auto;
  width: 72px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  padding: 0;
  background: #fff;
  scroll-snap-align: start;
  cursor: pointer;
}
.pfs__thumb.is-active {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(14, 95, 203, 0.2);
}
.pfs__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.pfs__thumb span {
  position: absolute;
  left: 4px;
  bottom: 4px;
  background: rgba(15, 29, 43, 0.75);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}
.pfs__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1rem 1rem;
  background: #fafcfe;
}
.pfs__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.pfs__dot.is-active {
  width: 26px;
  background: var(--primary);
}
@media (prefers-reduced-motion: reduce) {
  .pfs__img--in {
    animation: none;
  }
}

/* legacy empty mount */
.flow-slider:empty {
  min-height: 420px;
  display: grid;
  place-items: center;
}
.flow-slider:empty::before {
  content: "Ürün turu yükleniyor…";
  color: var(--muted);
  font-weight: 600;
}

/* Screen galleries */
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .screen-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}
@media (min-width: 1100px) {
  .screen-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.screen-gallery__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.screen-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}
.screen-gallery__item img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  display: block;
  background: var(--bg);
}
.screen-gallery__item figcaption {
  padding: 0.65rem 0.75rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.screen-gallery__item figcaption span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .flow-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.flow-strip figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.flow-strip img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: top;
}
.flow-strip figcaption {
  padding: 0.5rem 0.6rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 56px;
}
.site-logo {
  flex-shrink: 0;
  max-width: min(52vw, 160px);
}
.site-logo img {
  height: 26px;
  width: auto;
  max-width: 100%;
  display: block;
}
@media (min-width: 480px) {
  .site-logo img {
    height: 30px;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
}
.header-cta:hover {
  background: var(--primary-pressed);
}
@media (min-width: 1024px) {
  .header-cta {
    min-height: 44px;
    padding: 0 1.1rem;
    font-size: 0.875rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-group {
  position: relative;
}
.nav-group > button {
  min-height: 44px;
  padding: 0.4rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-group > button:hover,
.nav-group:focus-within > button {
  color: var(--primary);
  background: var(--primary-surface);
}
.nav-panel {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-elevated);
  z-index: 60;
}
.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
  display: grid;
}
.nav-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--ink);
}
.nav-panel a:hover,
.nav-panel a[aria-current="page"] {
  background: var(--primary-surface);
  color: var(--primary);
}

/* Hamburger */
.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.nav-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle.is-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

body.nav-open {
  overflow: hidden;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 29, 43, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .nav-backdrop {
    display: none !important;
  }
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(100vw, 400px);
  height: 100dvh;
  max-height: 100vh;
  background: #fff;
  box-shadow: -8px 0 32px rgba(11, 31, 53, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .nav-drawer {
    display: none !important;
  }
}

.nav-drawer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  padding-top: max(1rem, env(safe-area-inset-top));
  flex-shrink: 0;
}
.nav-drawer__brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.nav-drawer__firm {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
  font-weight: 500;
}
.nav-drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  flex-shrink: 0;
  cursor: pointer;
}
.nav-drawer__scroll {
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-drawer__primary {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.75rem 0.35rem;
  gap: 0.15rem;
}
.nav-drawer__link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid transparent;
}
.nav-drawer__link:hover {
  background: var(--bg);
}
.nav-drawer__link[aria-current="page"] {
  background: var(--primary-surface);
  color: var(--primary);
  border-left-color: var(--primary);
}
.nav-drawer__link--accent {
  background: var(--primary);
  color: #fff !important;
  justify-content: center;
  margin: 0.35rem 0;
  border-left-color: transparent;
  font-weight: 700;
}
.nav-drawer__link--accent:hover,
.nav-drawer__link--accent[aria-current="page"] {
  background: var(--primary-pressed);
  color: #fff !important;
  border-left-color: transparent;
}
.nav-drawer__more {
  padding: 0 0.75rem 0.75rem;
  border-top: 1px solid var(--line);
  margin-top: 0.35rem;
}
.nav-drawer__more-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tertiary);
  padding: 0.75rem 0.5rem 0.25rem;
}
.nav-drawer__details {
  border-bottom: 1px solid var(--line);
}
.nav-drawer__details:last-child {
  border-bottom: 0;
}
.nav-drawer__details summary {
  list-style: none;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
}
.nav-drawer__details summary::-webkit-details-marker {
  display: none;
}
.nav-drawer__details summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.nav-drawer__details[open] summary::after {
  content: "−";
}
.nav-drawer__sub {
  display: grid;
  gap: 0.05rem;
  padding: 0 0.15rem 0.65rem;
}
.nav-drawer__sub a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}
.nav-drawer__sub a:hover,
.nav-drawer__sub a[aria-current="page"] {
  background: var(--primary-surface);
  color: var(--primary);
  font-weight: 600;
}
.nav-drawer__foot {
  padding: 0.75rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  flex-shrink: 0;
}

/* Mobile layout polish */
@media (max-width: 1023px) {
  .page-hero {
    padding: 1.5rem 0 1.25rem;
  }
  .prose-clinical {
    font-size: 1rem;
    line-height: 1.65;
  }
  .phone-frame {
    width: min(100%, 240px);
    border-radius: 28px;
    padding: 8px;
  }
  .phone-frame img {
    border-radius: 22px;
  }
  .site-footer {
    margin-top: 2.5rem;
  }
  .site-footer > div:first-child {
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
  }
}

[data-download-buttons] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
@media (max-width: 420px) {
  [data-download-buttons] {
    flex-direction: column;
    width: 100%;
  }
  [data-download-buttons] > a {
    width: 100%;
    justify-content: center;
  }
}

.btn-primary,
.btn-secondary {
  max-width: 100%;
}

.glow-bg::before {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
}
.glow-bg::after {
  width: min(220px, 55vw);
  height: min(220px, 55vw);
}

.site-footer {
  background: #0b1522;
  color: #c9d4e0;
  margin-top: 4rem;
}
.site-footer a {
  color: #e8f0fc;
}
.site-footer a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .nav-drawer,
  .nav-backdrop,
  .nav-toggle__bars span {
    transition: none;
  }
}

.meta-stack dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tertiary);
}
.meta-stack dd {
  margin: 0.25rem 0 1rem;
  color: var(--ink);
  font-weight: 500;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(58% 60% at 10% 0%, rgba(14, 95, 203, 0.1), transparent 60%),
    radial-gradient(50% 55% at 98% 6%, rgba(11, 126, 123, 0.1), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}
@media (min-width: 1024px) {
  .page-hero {
    padding: 3.5rem 0 2.5rem;
  }
}

.toc-rail {
  display: none;
}
@media (min-width: 1280px) {
  .toc-rail {
    display: block;
    position: sticky;
    top: 6rem;
  }
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-surface);
  color: var(--primary);
  font-weight: 700;
}
.text-tertiary {
  color: var(--tertiary);
}

/* =====================================================================
   ANASAYFA — modern / creative yeniden tasarım
   ===================================================================== */

/* Ortak bölüm başlığı */
.sec-head {
  max-width: 660px;
  margin-bottom: 2.25rem;
}
.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.sec-title {
  font-size: clamp(1.6rem, 3.6vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--ink);
}
.sec-desc {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ---- HERO ---- */
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(58% 55% at 12% 0%, rgba(14, 95, 203, 0.12), transparent 62%),
    radial-gradient(50% 50% at 96% 8%, rgba(11, 126, 123, 0.12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  right: -160px;
  top: -180px;
  border-radius: 46% 54% 60% 40% / 48% 42% 58% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(14, 95, 203, 0.18), rgba(11, 126, 123, 0.1) 60%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.75rem 0 2.5rem;
}
@media (min-width: 960px) {
  .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 4.25rem 0 4.75rem;
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}
.chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 3px var(--success-surface);
}
.home-hero__title {
  font-size: clamp(2.1rem, 6vw, 3.55rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 1.1rem;
}
.home-hero__title .grad {
  background: linear-gradient(115deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero__lead {
  font-size: 1.08rem;
  line-height: 1.66;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.home-hero__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.trust-row span::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

/* Hero sahne — telefon + yüzen kartlar */
.home-hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.home-hero__stage .phone-frame {
  position: relative;
  z-index: 2;
  width: min(74%, 290px);
}
.home-hero__ring {
  position: absolute;
  z-index: 0;
  width: min(360px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(14, 95, 203, 0.16), rgba(11, 126, 123, 0.16), rgba(14, 95, 203, 0.16));
  filter: blur(6px);
}
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  max-width: 210px;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-elevated);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card__ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.float-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.25;
}
.float-card small {
  font-size: 0.72rem;
  color: var(--muted);
}
.float-card--tl {
  top: 4%;
  left: -3%;
}
.float-card--br {
  bottom: 6%;
  right: -3%;
  animation-delay: 1.4s;
}
@media (max-width: 400px) {
  .float-card {
    max-width: 170px;
    transform: scale(0.9);
  }
  .float-card--tl { left: -6%; }
  .float-card--br { right: -6%; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
}

/* ---- BENTO ---- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 680px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
  }
}
.bento__card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.bento__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.55rem;
}
.bento__title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}
.bento__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 30ch;
}
.bento__link {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.bento__card:hover .bento__link {
  gap: 0.55rem;
}
.bento__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-surface);
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.bento__ic svg {
  width: 22px;
  height: 22px;
}
/* Öne çıkan büyük kart */
.bento__card--feature {
  background:
    radial-gradient(70% 80% at 100% 100%, rgba(14, 95, 203, 0.1), transparent 60%),
    linear-gradient(160deg, #0e5fcb 0%, #0a4a9f 55%, #0b7e7b 130%);
  color: #fff;
  border-color: transparent;
}
@media (min-width: 1000px) {
  .bento__card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.bento__card--feature .bento__eyebrow {
  color: #bfe0ff;
}
.bento__card--feature .bento__title {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  max-width: 15ch;
}
.bento__card--feature .bento__text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 38ch;
  font-size: 0.98rem;
}
.bento__card--feature .bento__link {
  color: #fff;
}
.bento__chain {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.bento__chain span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.bento__shot {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 168px;
  border-radius: 20px 20px 0 0;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-bottom: 0;
  box-shadow: -10px 12px 30px rgba(10, 18, 28, 0.28);
  transform: rotate(4deg);
  display: none;
}
@media (min-width: 560px) {
  .bento__shot { display: block; }
}
@media (min-width: 1000px) {
  .bento__shot {
    width: 210px;
    right: 8px;
    bottom: -30px;
  }
}
.bento__card--tint {
  background: linear-gradient(165deg, #f7faff, #eef4fc);
}

/* ---- ADIMLAR ---- */
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.step__n {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 1rem;
}
.step h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- EKRAN MARQUEE ---- */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__track a {
  flex: 0 0 auto;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.marquee__track a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.marquee__track img {
  display: block;
  height: 300px;
  width: auto;
  background: var(--bg);
}
@media (min-width: 768px) {
  .marquee__track img { height: 360px; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

/* ---- ROL KARTLARI ---- */
.role-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.role-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.role-card__banner {
  position: relative;
  height: 168px;
  overflow: hidden;
}
.role-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.role-card__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 29, 43, 0.55));
}
.role-card__tag {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  bottom: 0.9rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.role-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.role-card__shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.role-card__shots img {
  border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 9 / 15;
  object-fit: cover;
  object-position: top;
}

/* ---- CTA BAND ---- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 3.25rem 1.5rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(120deg, #0e5fcb 0%, #0a4a9f 52%, #0b7e7b 120%);
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}
.cta-band a.underline {
  color: #fff;
}

/* Bölüm arka planı — hafif ton */
.section-tint {
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
}

/* =====================================================================
   MENÜ — modern mega-menü + düz linkler
   ===================================================================== */
.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  text-decoration: none;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-surface);
}

/* Mega panel */
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: min(820px, 94vw);
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-elevated);
  z-index: 60;
  grid-template-columns: 1fr 230px;
  gap: 1.25rem;
}
.nav-group:hover .nav-mega,
.nav-group:focus-within .nav-mega {
  display: grid;
}
.nav-mega__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 0.75rem;
}
.nav-mega__h {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--tertiary);
  padding: 0.35rem 0.5rem;
  margin-top: 0.25rem;
}
.nav-mega__item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem;
  border-radius: 11px;
  transition: background 140ms ease;
}
.nav-mega__item:hover {
  background: var(--primary-surface);
}
.nav-mega__item[aria-current="page"] {
  background: var(--primary-surface);
}
.nav-mega__ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--primary-surface);
  color: var(--primary);
  flex-shrink: 0;
  transition: background 140ms ease, color 140ms ease;
}
.nav-mega__ic svg {
  width: 18px;
  height: 18px;
}
.nav-mega__item:hover .nav-mega__ic {
  background: var(--primary);
  color: #fff;
}
.nav-mega__item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.nav-mega__item small {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}
.nav-mega__promo {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: center;
  padding: 1.2rem;
  border-radius: 16px;
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(155deg, #0e5fcb, #0a4a9f 60%, #0b7e7b);
  color: #fff;
}
.nav-mega__promo-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfe0ff;
}
.nav-mega__promo strong {
  font-size: 1.05rem;
  line-height: 1.25;
}
.nav-mega__promo span.sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}
.nav-mega__promo-cta {
  margin-top: 0.5rem;
  align-self: flex-start;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
}
@media (max-width: 1180px) {
  .nav-mega {
    width: min(680px, 94vw);
    grid-template-columns: 1fr;
  }
  .nav-mega__promo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav-mega__promo-cta {
    margin-top: 0;
  }
}

/* Kompakt gradient indirme bandı (global) */
.cta-band--row {
  text-align: left;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band--row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.cta-band--row h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin-bottom: 0.35rem;
}
.cta-band--row p {
  margin: 0;
  max-width: 42rem;
}

/* =====================================================================
   MENÜ v2 — tam kapsamlı Özellikler mega + üst seviye linkler
   ===================================================================== */
.nav-link--has-mega {
  gap: 0.3rem;
}
.nav-caret {
  font-size: 0.65rem;
  opacity: 0.65;
}
.nav-group--mega {
  position: relative;
}

/* Geniş mega — promo yok, 4 sütun tam liste */
.nav-mega--wide {
  width: min(940px, 96vw);
  grid-template-columns: 1fr;
  padding: 1.25rem;
}
.nav-mega__cols--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.5rem;
}
.nav-mega__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-mega__list a {
  display: block;
  padding: 0.42rem 0.55rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}
.nav-mega__list a:hover,
.nav-mega__list a[aria-current="page"] {
  background: var(--primary-surface);
  color: var(--primary);
}

/* Header Giriş linki (yalnız masaüstü) */
.header-login {
  display: none;
  align-items: center;
  min-height: 40px;
  padding: 0 0.7rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.header-login:hover,
.header-login[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-surface);
}
@media (min-width: 1024px) {
  .header-login {
    display: inline-flex;
  }
}

@media (max-width: 1180px) {
  .nav-mega--wide {
    width: min(680px, 96vw);
  }
  .nav-mega__cols--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1rem;
  }
}

/* Feature sayfası bölüm başlıkları — tutarlı, modern + gradient aksan çubuğu */
.feat-h2 {
  position: relative;
  padding-left: 0.95rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.feat-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

/* =====================================================================
   İÇ SAYFA HERO'LARI — ana sayfa tasarım dili (ring + gradient + float)
   ===================================================================== */
.feature-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(58% 55% at 12% 0%, rgba(14, 95, 203, 0.12), transparent 62%),
    radial-gradient(50% 50% at 96% 8%, rgba(11, 126, 123, 0.12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}
.feature-hero::before {
  content: "";
  position: absolute;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  right: -150px;
  top: -170px;
  border-radius: 46% 54% 60% 40% / 48% 42% 58% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(14, 95, 203, 0.18), rgba(11, 126, 123, 0.1) 60%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.feature-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 2.5rem;
}
@media (min-width: 960px) {
  .feature-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 3.75rem 0 4rem;
  }
}
.feature-hero__title {
  font-size: clamp(1.95rem, 4.8vw, 2.95rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 1.05rem;
}
.feature-hero__title .grad {
  background: linear-gradient(115deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-hero__lead {
  max-width: 34rem;
  margin-bottom: 1.4rem;
}
.feature-hero__lead p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}
.feature-hero__lead p + p {
  margin-top: 0.7rem;
}
.feature-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.feature-hero__center {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}
@media (min-width: 960px) {
  .feature-hero__center {
    padding: 4.25rem 0;
  }
}
.feature-hero__center .feature-hero__lead {
  margin-left: auto;
  margin-right: auto;
}
.feature-hero__center .feature-hero__cta,
.feature-hero__center .trust-row {
  justify-content: center;
}
.feature-hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}
.feature-hero__stage .phone-frame {
  position: relative;
  z-index: 2;
  width: min(74%, 282px);
}
.feature-hero__emblem {
  position: relative;
  z-index: 2;
  width: min(58%, 220px);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(14, 95, 203, 0.25));
}

/* Bölüm kartlarına ana sayfa dokunuşu */
.meta-stack .surface-card {
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.meta-stack .surface-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

/* deep-copy bölümünü yumuşak tint panele al */
section[data-deep-copy] {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(14, 95, 203, 0.05), transparent 70%);
}
section[data-deep-copy] .prose-clinical {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
