/* Şamil Veri Merkezi v10 — Tahoe glass · varied sections */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--nx-font-body);
  background: var(--nx-bg);
  color: var(--nx-ink-muted);
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

body.is-loading > :not(#nx-loader) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.is-ready > :not(#nx-loader) {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s var(--nx-ease-out);
}

/* ─── Loader ─── */
.nx-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  margin: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, var(--nx-burgundy-bloom-soft) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, var(--nx-burgundy-bloom) 0%, transparent 50%),
    var(--nx-bg);
}

.nx-loader.is-hidden,
#nx-loader.is-hidden {
  display: none !important;
}

.nx-loader__card {
  width: min(18rem, 88vw);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.nx-loader__logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--nx-ink-head);
  margin-bottom: 1.25rem;
}

.nx-loader__logo span { color: var(--nx-burgundy); }

.nx-loader__track {
  height: 3px;
  border-radius: var(--nx-radius-pill);
  background: rgba(107, 29, 58, 0.08);
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.nx-loader__fill {
  display: block;
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nx-burgundy), var(--nx-burgundy-light));
  animation: nx-loader-slide 1.1s ease-in-out infinite;
}

@keyframes nx-loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.nx-loader__hint {
  font-size: 0.75rem;
  color: var(--nx-ink-subtle);
  letter-spacing: 0.02em;
}

:focus-visible { outline: 2px solid var(--nx-burgundy-light); outline-offset: 3px; }

a { color: inherit; text-decoration: none; }

/* ─── Atmosphere ─── */
.nx-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, var(--nx-burgundy-bloom-soft) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, var(--nx-burgundy-bloom) 0%, transparent 50%);
}

/* ─── Universal glass (Tahoe — obvious frost) ─── */
.nx-glass {
  background: var(--nx-glass-strong);
  backdrop-filter: blur(var(--nx-glass-blur)) saturate(var(--nx-glass-saturate));
  -webkit-backdrop-filter: blur(var(--nx-glass-blur)) saturate(var(--nx-glass-saturate));
  border-radius: var(--nx-radius-xl);
  box-shadow: var(--nx-shadow-glass);
  border: 1.5px solid var(--nx-glass-border);
  position: relative;
}

.nx-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    var(--nx-glass-highlight) 0%,
    var(--nx-glass-inner) 12%,
    transparent 40%
  );
  pointer-events: none;
  opacity: 0.85;
}

.nx-glass--tint {
  background: var(--nx-glass-tint);
  border-color: rgba(255, 255, 255, 0.78);
}

.nx-glass--tint-strong {
  background: var(--nx-glass-tint-strong);
  border-color: var(--nx-burgundy-border);
  box-shadow: var(--nx-shadow-glass-elevated);
}

/* ─── Typography ─── */
.nx-text-head {
  color: var(--nx-ink-head);
  font-weight: 700;
  letter-spacing: var(--nx-tracking-tight);
}

.nx-text-gradient {
  background: linear-gradient(135deg, var(--nx-ink-head) 0%, var(--nx-burgundy-mid) 55%, var(--nx-ink-head) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nx-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nx-burgundy);
  padding: 0.3rem 0.7rem;
  border-radius: var(--nx-radius-pill);
  background: var(--nx-burgundy-dim);
  border: 1px solid var(--nx-burgundy-border);
  margin-bottom: 1rem;
}

/* ─── Header ─── */
.nx-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.25rem;
  pointer-events: none;
}

.nx-header__inner {
  pointer-events: auto;
  max-width: 900px;
  margin: 0 auto;
  padding: 0.45rem 0.45rem 0.45rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: var(--nx-radius-pill);
  background: var(--nx-glass-heavy);
}

.nx-logo {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--nx-ink-head);
  flex-shrink: 0;
}

.nx-logo span { color: var(--nx-burgundy); }

.nx-header__nav {
  display: flex;
  gap: 1.1rem;
  margin: 0 auto;
}

.nx-header__nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--nx-ink-muted);
  transition: color 0.15s;
}

.nx-header__nav a:hover { color: var(--nx-burgundy); }

.nx-header__cta { padding: 0.45rem 0.95rem; font-size: 0.8rem; }

.nx-header__menu {
  display: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: var(--nx-glass);
  border-radius: 50%;
  border: 1.5px solid var(--nx-glass-border);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nx-header__menu span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--nx-ink-head);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nx-header__menu[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nx-header__menu[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nx-mobile-nav {
  pointer-events: auto;
  max-width: 900px;
  margin: 0.5rem auto 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-radius: var(--nx-radius-xl);
}

.nx-mobile-nav[hidden] { display: none; }

.nx-mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nx-ink-head);
  border-bottom: 1px solid rgba(107,29,58,0.06);
}

.nx-mobile-nav a:last-of-type { border-bottom: none; }

.nx-mobile-nav .nx-btn {
  margin-top: 0.75rem;
  width: 100%;
  min-height: 48px;
}

/* ─── Buttons ─── */
.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--nx-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--nx-ease-out), box-shadow 0.2s;
}

.nx-btn--primary {
  background: linear-gradient(135deg, var(--nx-burgundy) 0%, var(--nx-burgundy-mid) 100%);
  color: #fff;
  box-shadow: var(--nx-shadow-cta);
}

.nx-btn--primary:hover { transform: translateY(-2px); }

.nx-btn--shimmer {
  position: relative;
  overflow: hidden;
}

.nx-btn--shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: nx-shimmer 4s ease-in-out infinite;
}

@keyframes nx-shimmer {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

.nx-btn--ghost {
  background: var(--nx-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: var(--nx-ink-head);
  border: 1.5px solid var(--nx-glass-border);
  box-shadow: var(--nx-shadow-glass);
}

.nx-btn--ghost:hover {
  border-color: var(--nx-burgundy-border);
  color: var(--nx-burgundy);
}

/* ─── Hero ─── */
@keyframes nx-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.nx-fade {
  animation: nx-fade-up 0.7s var(--nx-ease-out) backwards;
  animation-delay: calc(var(--d, 0) * 0.1s + 0.05s);
}

body.is-loading .nx-fade {
  animation: none;
  opacity: 0;
}

body.is-ready .nx-fade {
  animation: nx-fade-up 0.7s var(--nx-ease-out) backwards;
  animation-delay: calc(var(--d, 0) * 0.1s + 0.15s);
}

.nx-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nx-nav-height) + 2rem) 0 2.5rem;
  overflow: hidden;
}

.nx-hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nx-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nx-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.nx-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(242, 240, 244, 0.97) 0%,
    rgba(242, 240, 244, 0.88) 38%,
    rgba(242, 240, 244, 0.2) 55%,
    transparent 65%
  );
}

.nx-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--nx-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--nx-burgundy);
  margin-bottom: 1.1rem;
  padding: 0.3rem 0.75rem 0.3rem 0.45rem;
  border-radius: var(--nx-radius-pill);
  background: var(--nx-glass);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1.5px solid var(--nx-glass-border);
  box-shadow: var(--nx-shadow-glass);
}

.nx-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nx-burgundy);
}

.nx-hero__title {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--nx-tracking-tight);
  margin-bottom: 1.1rem;
  max-width: 32rem;
}

.nx-hero__title em {
  font-family: var(--nx-font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--nx-burgundy) 0%, var(--nx-burgundy-light) 60%, var(--nx-burgundy-rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nx-hero__lead {
  font-size: 1.05rem;
  color: var(--nx-ink-muted);
  max-width: 30rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.nx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.nx-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  max-width: 34rem;
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.nx-stat {
  text-align: center;
  padding: 0.65rem 0.4rem;
  border-radius: var(--nx-radius-lg);
  background: var(--nx-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--nx-glass-border);
}

.nx-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nx-burgundy);
  letter-spacing: -0.02em;
}

.nx-stat span {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--nx-ink-subtle);
}

.nx-hero__trust {
  font-size: 0.8rem;
  color: var(--nx-ink-subtle);
  max-width: 34rem;
}

.nx-hero__trust strong {
  font-weight: 600;
  color: var(--nx-ink-muted);
  margin-right: 0.5rem;
}

/* ─── Trust bar (status + marquee unified) ─── */
.nx-trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -0.5rem;
  padding-bottom: 2rem;
}

.nx-trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0.5rem 0.5rem 1.15rem;
  border-radius: var(--nx-radius-pill);
  overflow: hidden;
}

.nx-trust-bar__status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--nx-ink-muted);
  white-space: nowrap;
  padding-right: 0.25rem;
}

.nx-trust-bar__status strong { color: var(--nx-ink-head); font-weight: 600; }

.nx-trust-bar__divider {
  width: 1px;
  height: 1.25rem;
  background: var(--nx-glass-edge);
  flex-shrink: 0;
  margin: 0 0.85rem;
}

.nx-status__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d9e6a;
  box-shadow: 0 0 0 0 rgba(61, 158, 106, 0.45);
  animation: nx-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes nx-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 158, 106, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(61, 158, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 158, 106, 0); }
}

.nx-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.nx-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: nx-marquee 32s linear infinite;
  padding: 0.15rem 0;
}

.nx-marquee__track span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nx-ink-faint);
  white-space: nowrap;
}

.nx-marquee__track span::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--nx-burgundy-soft);
}

@keyframes nx-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Mobile sticky bar ─── */
.nx-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  border-radius: var(--nx-radius-xl) var(--nx-radius-xl) 0 0;
  border-bottom: none;
}

.nx-mobile-bar .nx-btn {
  width: 100%;
  min-height: 48px;
}

/* ─── Main layout & section rhythm ─── */
main { position: relative; z-index: 1; }

.nx-wrap {
  max-width: var(--nx-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nx-section {
  padding: 5rem 0;
  position: relative;
}

.nx-section--bloom {
  background: linear-gradient(180deg, var(--nx-bg-bloom) 0%, var(--nx-bg) 100%);
}

.nx-section--bloom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, var(--nx-burgundy-bloom-soft) 0%, transparent 60%);
  pointer-events: none;
}

.nx-section--inset {
  padding: 4rem 0;
}

.nx-section--inset .nx-wrap {
  background: var(--nx-bg-soft);
  border-radius: var(--nx-radius-2xl);
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(107, 29, 58, 0.06);
}

.nx-section--fullbleed {
  padding-bottom: 3rem;
}

.nx-section--compact {
  padding: 2.5rem 0;
}

.nx-section__title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 0.65rem;
}

.nx-section__lead {
  font-size: 1.02rem;
  color: var(--nx-ink-muted);
  max-width: 40rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.nx-section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.nx-section-header--compact {
  margin-bottom: 1.5rem;
}

.nx-section-header--compact .nx-section__title {
  margin-bottom: 0;
}

.nx-section-num {
  font-family: var(--nx-font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--nx-burgundy-soft);
  opacity: 0.5;
  font-style: italic;
}

/* ─── Kolokasyon — asymmetric split ─── */
.nx-kolokasyon {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.nx-kolokasyon__title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.nx-kolokasyon__lead {
  font-size: 1.02rem;
  color: var(--nx-ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.nx-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.nx-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--nx-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--nx-ink-muted);
}

.nx-feature-chip__icon {
  font-size: 0.9rem;
  opacity: 0.85;
}

.nx-kolokasyon__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  position: relative;
}

.nx-kolokasyon__metrics::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--nx-burgundy-bloom) 0%, transparent 70%);
  top: -40px;
  right: -30px;
  pointer-events: none;
  z-index: -1;
}

.nx-metric {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nx-metric--lg {
  grid-column: span 2;
  padding: 1.5rem 1.5rem;
}

.nx-metric__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nx-burgundy);
  letter-spacing: -0.02em;
}

.nx-metric--lg .nx-metric__num {
  font-size: 2rem;
}

.nx-metric__label {
  font-size: 0.8rem;
  color: var(--nx-ink-muted);
}

/* ─── Bento services ─── */
.nx-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 0.85rem;
}

.nx-bento__card {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.nx-bento__card:hover {
  box-shadow: var(--nx-shadow-glass-hover);
  transform: translateY(-2px);
}

.nx-bento__card--wide {
  grid-column: span 2;
}

.nx-bento__card--tall {
  grid-row: span 2;
}

.nx-bento__num {
  font-family: var(--nx-font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--nx-burgundy-soft);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nx-bento__card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--nx-ink-head);
  margin-bottom: 0.4rem;
}

.nx-bento__card p {
  font-size: 0.86rem;
  color: var(--nx-ink-muted);
  line-height: 1.6;
}

/* ─── Cities / locations ─── */
.nx-cities {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 1.5rem;
  max-width: var(--nx-max-width);
  margin-left: auto;
  margin-right: auto;
}

.nx-city {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
  overflow: hidden;
}

.nx-city--ank {
  grid-template-columns: 1fr auto;
}

.nx-city__label {
  font-family: var(--nx-font-serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--nx-burgundy);
  opacity: 0.12;
  letter-spacing: -0.04em;
  user-select: none;
}

.nx-city__label--right {
  text-align: right;
}

.nx-city h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nx-ink-head);
  margin-bottom: 0.3rem;
}

.nx-city__addr {
  font-size: 0.82rem;
  color: var(--nx-burgundy-light);
  margin-bottom: 0.85rem;
}

.nx-city__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.nx-city__stats span {
  font-size: 0.82rem;
  color: var(--nx-ink-muted);
}

.nx-city__stats strong {
  color: var(--nx-burgundy);
  font-weight: 700;
}

.nx-city__list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--nx-ink-muted);
}

.nx-city__list li {
  padding: 0.3rem 0;
  padding-left: 0.85rem;
  border-left: 2px solid var(--nx-burgundy-border);
  margin-bottom: 0.25rem;
}

.nx-city__map {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, var(--nx-burgundy-dim) 0%, transparent 70%);
  border: 1.5px dashed var(--nx-burgundy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nx-city__pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--nx-burgundy);
  box-shadow: 0 0 0 4px var(--nx-burgundy-dim);
}

/* ─── Timeline — horizontal steps ─── */
.nx-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  position: relative;
  padding-top: 1.5rem;
}

.nx-timeline__line {
  position: absolute;
  top: 2.6rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nx-burgundy-border) 10%, var(--nx-burgundy-border) 90%, transparent);
  z-index: 0;
}

.nx-timeline__step {
  padding: 1.35rem 1.25rem;
  position: relative;
  z-index: 1;
}

.nx-timeline__num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--nx-burgundy), var(--nx-burgundy-mid));
  border-radius: 50%;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 0 3px var(--nx-bg-soft), var(--nx-shadow-glass);
}

.nx-timeline__step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nx-ink-head);
  margin-bottom: 0.35rem;
}

.nx-timeline__step p {
  font-size: 0.82rem;
  color: var(--nx-ink-muted);
  line-height: 1.55;
}

/* ─── Compare / Why ─── */
.nx-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.nx-compare__col {
  padding: 2rem;
}

.nx-compare__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--nx-burgundy);
  margin-bottom: 0.75rem;
}

.nx-compare__tag--muted {
  color: var(--nx-ink-subtle);
}

.nx-compare__col h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.nx-compare__list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--nx-ink-muted);
}

.nx-compare__list li {
  padding: 0.55rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--nx-burgundy-border);
  margin-bottom: 0.3rem;
}

/* ─── Spec pills ─── */
.nx-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nx-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--nx-radius-pill);
  font-size: 0.84rem;
  color: var(--nx-ink-muted);
  white-space: nowrap;
}

.nx-pill strong {
  color: var(--nx-ink-head);
  font-weight: 600;
}

/* ─── Founder ─── */
.nx-founder {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: start;
}

.nx-founder__name {
  font-family: var(--nx-font-serif);
  font-size: 2.5rem;
  color: var(--nx-burgundy);
  margin-bottom: 0.75rem;
}

.nx-founder__bio {
  font-size: 0.95rem;
  color: var(--nx-ink-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.nx-founder__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.nx-founder__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--nx-radius-pill);
  background: var(--nx-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--nx-glass-border);
  color: var(--nx-burgundy);
}

.nx-founder__pull {
  padding: 1.75rem;
  margin: 0;
  align-self: center;
}

.nx-founder__pull p {
  font-family: var(--nx-font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--nx-ink-head);
  line-height: 1.5;
}

.nx-founder__avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nx-font-serif);
  font-size: 2rem;
  color: var(--nx-burgundy);
  font-weight: 400;
  align-self: center;
}

/* ─── Quote ─── */
.nx-quote {
  padding: 2rem 2.25rem;
  border-left: 3px solid var(--nx-burgundy-light);
}

.nx-quote > p {
  font-family: var(--nx-font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--nx-ink-head);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.nx-quote footer {
  font-size: 0.85rem;
  color: var(--nx-ink-muted);
}

.nx-quote footer strong { color: var(--nx-ink-head); }

/* ─── Pricing ─── */
.nx-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  align-items: end;
}

.nx-price {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.nx-price:hover {
  transform: translateY(-3px);
  box-shadow: var(--nx-shadow-glass-hover);
}

.nx-price--featured {
  transform: translateY(-12px) scale(1.02);
  padding: 2.25rem 1.75rem 2rem;
  z-index: 2;
}

.nx-price--featured:hover {
  transform: translateY(-14px) scale(1.02);
}

.nx-price__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--nx-burgundy), var(--nx-burgundy-mid));
  padding: 0.3rem 0.85rem;
  border-radius: var(--nx-radius-pill);
  white-space: nowrap;
}

.nx-price h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--nx-ink-head);
  margin-bottom: 0.5rem;
}

.nx-price__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--nx-burgundy);
  margin-bottom: 0.65rem;
}

.nx-price__amount small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--nx-ink-muted);
}

.nx-price p {
  font-size: 0.85rem;
  color: var(--nx-ink-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.nx-price .nx-btn { width: 100%; }

/* ─── FAQ ─── */
.nx-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-radius: var(--nx-radius-xl);
  overflow: hidden;
}

.nx-faq__item {
  overflow: hidden;
  border-radius: var(--nx-radius-lg) !important;
}

.nx-faq__q {
  width: 100%;
  padding: 1.15rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nx-ink-head);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nx-faq__q::after {
  content: '+';
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nx-burgundy-dim);
  color: var(--nx-burgundy);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.2s;
}

.nx-faq__item.is-open .nx-faq__q::after {
  content: '−';
  background: var(--nx-burgundy);
  color: #fff;
}

.nx-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--nx-ease-out);
}

.nx-faq__item.is-open .nx-faq__a { max-height: 14rem; }

.nx-faq__a p {
  padding: 0 1.5rem 1.15rem;
  font-size: 0.9rem;
  color: var(--nx-ink-muted);
  line-height: 1.65;
}

/* ─── CTA ─── */
.nx-cta {
  text-align: center;
  padding: 2.75rem 2rem;
}

.nx-cta h2 {
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.nx-cta p {
  color: var(--nx-ink-muted);
  margin-bottom: 1.35rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ─── */
.nx-footer {
  position: relative;
  z-index: 1;
  max-width: var(--nx-max-width);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

.nx-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--nx-ink-subtle);
}

.nx-footer__nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.nx-footer__nav a:hover { color: var(--nx-burgundy); }

.nx-footer__copy { width: 100%; font-size: 0.78rem; }

/* ─── Reveal ─── */
.nx-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--nx-ease-out), transform 0.6s var(--nx-ease-out);
}

.nx-reveal.is-visible { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nx-header__nav,
  .nx-header__cta--desk { display: none; }

  .nx-header__menu { display: flex; }

  .nx-header__inner {
    max-width: none;
    margin: 0 0.5rem;
  }

  .nx-header {
    padding: 0 0.75rem;
    top: max(0.75rem, env(safe-area-inset-top, 0px));
  }

  .nx-hero {
    display: block;
    min-height: auto;
    padding: 0;
    padding-top: calc(var(--nx-nav-height) + 1.5rem + env(safe-area-inset-top, 0px));
    overflow: visible;
  }

  .nx-hero__visual {
    position: relative;
    padding: 0 1.15rem;
    margin: 0 0 0.25rem;
  }

  .nx-hero__picture {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    max-height: none;
    border-radius: var(--nx-radius-2xl);
    overflow: hidden;
    background: var(--nx-bg-soft);
    box-shadow:
      0 1px 0 var(--nx-glass-highlight) inset,
      0 0 0 1px var(--nx-glass-edge),
      0 12px 40px rgba(107, 29, 58, 0.08);
  }

  .nx-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    border-radius: inherit;
  }

  .nx-hero__shade {
    display: none;
  }

  .nx-hero__content {
    margin-top: 0;
    padding: 1.15rem 1.25rem 1.5rem;
    position: relative;
    z-index: 2;
    background: transparent;
  }

  .nx-hero__title {
    font-size: clamp(1.7rem, 6.8vw, 2.1rem);
    line-height: 1.12;
    max-width: none;
    margin-bottom: 0.85rem;
  }

  .nx-hero__title em {
    display: block;
    margin-top: 0.15rem;
  }

  .nx-hero__lead {
    font-size: 0.88rem;
    line-height: 1.62;
    max-width: none;
    margin-bottom: 1.1rem;
  }

  .nx-hero__actions {
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
  }

  .nx-hero__actions .nx-btn {
    width: 100%;
    min-height: 48px;
  }

  .nx-hero__stats {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .nx-stat {
    padding: 0.5rem 0.2rem;
    border-radius: var(--nx-radius-lg);
  }

  .nx-stat strong { font-size: 1rem; }

  .nx-stat span {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .nx-hero__trust {
    display: none;
  }

  .nx-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .nx-live-strip,
  .nx-trust-bar {
    margin-top: 0;
    padding-bottom: 1.5rem;
  }

  .nx-trust-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--nx-radius-xl);
  }

  .nx-trust-bar__divider { display: none; }

  .nx-trust-bar__status {
    justify-content: center;
    font-size: 0.72rem;
    padding-right: 0;
  }

  .nx-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .nx-wrap { padding: 0 1rem; }

  .nx-section { padding: 3rem 0; }

  .nx-section--compact { padding: 2rem 0; }

  .nx-kolokasyon,
  .nx-compare,
  .nx-founder,
  .nx-pricing { grid-template-columns: 1fr; }

  .nx-kolokasyon__metrics { grid-template-columns: 1fr 1fr; }

  .nx-metric--lg { grid-column: span 2; }

  .nx-feature-row {
    flex-direction: column;
    align-items: stretch;
  }

  .nx-feature-chip { justify-content: flex-start; }

  .nx-bento { grid-template-columns: 1fr; }

  .nx-bento__card--wide,
  .nx-bento__card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .nx-cities { padding: 0 1rem; }

  .nx-city,
  .nx-city--ank { grid-template-columns: 1fr; }

  .nx-city__label,
  .nx-city__label--right {
    font-size: 2.5rem;
    opacity: 0.07;
  }

  .nx-city__map { display: none; }

  .nx-timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 0.65rem;
  }

  .nx-timeline__line { display: none; }

  .nx-timeline__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    align-items: start;
    text-align: left;
    padding: 1.1rem 1.25rem;
  }

  .nx-timeline__num { margin-bottom: 0; }

  .nx-section-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .nx-section-num { font-size: 2.5rem; }

  .nx-price--featured {
    transform: none;
    order: -1;
  }

  .nx-pricing { gap: 0.65rem; }

  .nx-price { padding: 1.35rem; }

  .nx-founder__pull { order: 2; }

  .nx-founder__avatar { justify-self: start; }

  .nx-founder {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nx-pill { white-space: normal; }

  .nx-pills { gap: 0.45rem; }

  .nx-faq__q {
    padding: 1rem 1.15rem;
    font-size: 0.9rem;
    min-height: 48px;
  }

  .nx-faq__a p { padding: 0 1.15rem 1rem; }

  .nx-cta { padding: 2rem 1.25rem; }

  .nx-cta .nx-btn {
    width: 100%;
    min-height: 48px;
  }

  .nx-footer { padding: 0 1rem 6rem; }

  .nx-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nx-footer__nav {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .nx-mobile-bar {
    display: block;
    border-top: 1px solid var(--nx-glass-border);
    box-shadow: 0 -8px 32px rgba(107, 29, 58, 0.06);
  }

  .nx-mobile-bar .nx-btn {
    font-size: 0.88rem;
    box-shadow: var(--nx-shadow-cta);
  }

  .nx-header__inner {
    padding: 0.4rem 0.4rem 0.4rem 1rem;
  }

  .nx-logo { font-size: 0.82rem; }
}

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

  .nx-kolokasyon__metrics { grid-template-columns: 1fr; }

  .nx-metric--lg { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nx-fade, .nx-reveal { animation: none; transition: none; opacity: 1; transform: none; }
  .nx-price--featured { transform: none; }
  .nx-marquee__track, .nx-status__pulse, .nx-btn--shimmer::after, .nx-loader__fill { animation: none; }
  #nx-loader { display: none !important; }
}
