@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   NACEON — Sports / Wellness SaaS Marketing Theme
   Signal green + charcoal · Inter · production CSS
   ========================================================================== */

:root {
  --nc-dark: #0B0C10;
  --nc-dark-2: #12141A;
  --nc-dark-3: #1A1D24;
  --nc-green: #4ADE80;
  --nc-green-btn: #22C55E;
  --nc-green-hover: #16A34A;
  --nc-green-soft: #DCFCE7;
  --nc-green-muted: rgba(74, 222, 128, 0.12);
  --nc-white: #FFFFFF;
  --nc-bg: #FAFBFD;
  --nc-ink: #111827;
  --nc-ink-soft: #6B7280;
  --nc-muted: #9CA3AF;
  --nc-border: #E5E7EB;
  --nc-card-border: #EEF0F3;
  --nc-input: #F3F4F6;
  --nc-radius: 12px;
  --nc-radius-sm: 8px;
  --nc-radius-pill: 9999px;
  --nc-wrap: var(--container-width, 100%);
  --nc-section-y: 96px;
  --nc-hero-band-y: 48px;
  --nc-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --nc-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --page-bg: var(--nc-bg);
  --heading: var(--nc-ink);
  --muted: var(--nc-ink-soft);
  --ink: var(--nc-ink);
  --ink-soft: var(--nc-ink-soft);
  --border: var(--nc-border);
  --surface: var(--nc-white);
  --bg: var(--nc-bg);
  /* Alias: violet-saas partials uyumu */
  --purple: var(--nc-green-btn);
  --purple-dark: var(--nc-green-hover);
  --purple-light: var(--nc-green-soft);
  --teal: var(--nc-green);
  --coral: var(--nc-green-btn);
  --coral-dark: var(--nc-green-hover);
  --border: var(--nc-border);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nc-ink);
  background: var(--nc-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

button {
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--nc-green-btn);
  color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--nc-green);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--nc-wrap);
  margin: 0 auto;
  padding: 0 48px;
}

.container {
  width: 100%;
  max-width: var(--nc-wrap);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--nc-section-y) 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head h2,
.section-head .h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--nc-ink);
  margin-top: 12px;
}

.section-head p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--nc-ink-soft);
  line-height: 1.65;
}

.eyebrow,
.nc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nc-green-btn);
  margin-bottom: 12px;
}

.lead {
  font-size: 16.5px;
  color: var(--nc-muted);
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: var(--nc-radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn i,
.btn svg {
  font-size: 14px;
  flex-shrink: 0;
}

.btn-green {
  background: var(--nc-green-btn);
  color: var(--nc-white);
  border-color: var(--nc-green-btn);
}

.btn-green:hover {
  background: var(--nc-green-hover);
  border-color: var(--nc-green-hover);
  color: var(--nc-white);
}

.btn-mint {
  background: #7CFFB2;
  color: #0B0C10;
  border-color: #7CFFB2;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(124, 255, 178, 0.22);
}

.btn-mint:hover {
  background: #63F5A3;
  border-color: #63F5A3;
  color: #0B0C10;
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--nc-white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--nc-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--nc-white);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--nc-white);
  border-color: var(--nc-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--nc-ink);
  border: 1.5px solid var(--nc-ink);
}

.btn-outline-dark:hover {
  background: var(--nc-ink);
  color: var(--nc-white);
}

.btn-dark {
  background: var(--nc-dark);
  color: var(--nc-white);
  border-color: var(--nc-dark);
}

.btn-dark:hover {
  background: #000;
  color: var(--nc-white);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in,
.reveal.visible,
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nc-dark);
  height: 84px;
  display: flex;
  align-items: center;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

/* Hero üstünde: şeffaf; kaydırınca koyu zemin */
.nc-body:has(.nc-hero) .nc-header,
.nc-home .nc-header {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nc-body:has(.nc-hero) .nc-header.is-scrolled,
.nc-home .nc-header.is-scrolled {
  background: rgba(11, 12, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

/* Fixed header — hero olmayan sayfalarda içerik kaymasın */
.nc-body:not(:has(.nc-hero)) {
  padding-top: 84px;
}

.nc-header .wrap,
.nc-header nav,
.nc-header .nc-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  height: 84px;
}

.nc-logo,
.nc-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nc-white);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-transform: uppercase;
}

.nc-logo img,
.nc-header .logo img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.nc-logo-mark {
  width: 28px;
  height: 28px;
  color: #7CFFB2;
  flex-shrink: 0;
}

.nc-mark,
.nc-logo .mark,
.nc-header .mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #7CFFB2;
  color: #0B0C10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.nc-logo-text {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--nc-white);
  font-size: 18px;
}

.nc-nav,
.nc-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 30px;
  flex: 1;
}

.nc-nav a,
.nc-header .nav-links a,
.nc-header .nav-item > a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
}

.nc-nav a:hover,
.nc-header .nav-links a:hover,
.nc-header .nav-item > a:hover,
.nc-nav a.active,
.nc-header .nav-links a.active,
.nc-header .nav-item > a.active {
  color: var(--nc-white);
}

.nc-header .nav-item {
  position: relative;
}

.nc-header .nav-item .chev {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}

.nc-header .nav-item:hover .chev {
  transform: rotate(225deg) translateY(-1px);
}

.nc-header .mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--nc-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow-lg);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 120;
}

.nc-header .nav-item:hover .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nc-header .mega a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--nc-radius-sm);
  color: rgba(255, 255, 255, 0.85);
}

.nc-header .mega a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--nc-white);
}

.nc-header .mega .t {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nc-white);
}

.nc-header .mega .d {
  font-size: 12px;
  color: var(--nc-muted);
}

.nc-nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nc-header-cta {
  padding: 11px 22px;
  font-size: 14px;
}

.nc-nav-cta .nc-login,
.nc-header .nc-login {
  color: var(--nc-white);
  font-size: 15px;
  font-weight: 500;
}

.nc-nav-cta .nc-login:hover {
  color: #7CFFB2;
}

.nc-header-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.nc-meta-sep {
  opacity: 0.45;
}

.nc-lang {
  color: var(--nc-muted);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nc-lang::before {
  content: '';
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.nc-lang strong,
.nc-lang span {
  color: var(--nc-white);
  font-weight: 600;
}

.nc-header-meta .nc-lang::before {
  display: none;
}

.nc-toggle,
.nc-header .nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nc-toggle span,
.nc-header .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nc-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.nc-hero {
  --nc-hero-bg: none;
  background-color: #07080c;
  background-image: var(--nc-hero-bg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  color: var(--nc-white);
  padding: 108px 0 36px;
  overflow: hidden;
  position: relative;
}

.nc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07080c 0%, rgba(7, 8, 12, 0.92) 38%, rgba(7, 8, 12, 0.55) 62%, rgba(7, 8, 12, 0.28) 100%);
  pointer-events: none;
}

.nc-hero.has-bg::before {
  background: linear-gradient(90deg, rgba(7, 8, 12, 0.94) 0%, rgba(7, 8, 12, 0.82) 36%, rgba(7, 8, 12, 0.45) 64%, rgba(7, 8, 12, 0.22) 100%);
}

.nc-hero .wrap {
  position: relative;
  z-index: 1;
}

.nc-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: center;
  min-height: 520px;
}

.nc-hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.72);
  margin-bottom: 22px;
}

.nc-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--nc-white);
  margin-bottom: 22px;
}

.nc-hero h1 .accent {
  color: #7CFFB2;
  font-weight: 800;
}

.nc-hero .lead {
  color: rgba(209, 213, 219, 0.86);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

.nc-hero .lead strong {
  color: var(--nc-white);
  font-weight: 700;
}

.nc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.nc-hero-ctas .btn {
  padding: 14px 26px;
  font-size: 15px;
}

.nc-hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 36px 8% 28px 4%;
}

.nc-hero-visual::before {
  display: none;
}

.nc-ipad {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 4 / 2.85;
  background: #111318;
  border-radius: 28px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.nc-ipad-screen {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
}

.nc-ipad-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.nc-iphone {
  position: absolute;
  right: 2%;
  bottom: -18px;
  width: 168px;
  aspect-ratio: 9 / 18.4;
  background: #0a0a0c;
  border-radius: 32px;
  padding: 8px;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 22px 40px rgba(0, 0, 0, 0.4);
}

.nc-iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 42%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111;
  z-index: 2;
}

.nc-iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.nc-iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.nc-toast {
  position: absolute;
  right: 10%;
  top: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  max-width: 280px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  color: var(--nc-ink);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.nc-toast-av,
.nc-toast-av-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nc-toast-av-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  font-size: 15px;
}

.nc-toast-body {
  min-width: 0;
}

.nc-toast-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.nc-toast-text {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.3;
  margin-top: 2px;
}

.nc-toast-time {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

.nc-hero-shot,
.nc-device-laptop,
.nc-device-phone,
.nc-hero-callout {
  display: none;
}

/* Device mockups — laptop (fallback if image missing) */
.nc-device-laptop {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--nc-white);
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  z-index: 1;
}

.nc-device-laptop .nc-lp-chrome {
  display: flex;
  gap: 6px;
  padding: 12px 14px 0;
  background: #F3F4F6;
}

.nc-device-laptop .nc-lp-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
}

.nc-device-laptop .nc-lp-chrome span:nth-child(1) { background: #F87171; }
.nc-device-laptop .nc-lp-chrome span:nth-child(2) { background: #FBBF24; }
.nc-device-laptop .nc-lp-chrome span:nth-child(3) { background: #34D399; }

.nc-device-laptop .nc-lp-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 260px;
  background: #F8FAFC;
}

.nc-device-laptop .nc-lp-side {
  background: var(--nc-dark);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.nc-device-laptop .nc-lp-side i,
.nc-device-laptop .nc-lp-side span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  background: transparent;
}

.nc-device-laptop .nc-lp-side .active,
.nc-device-laptop .nc-lp-side i.active,
.nc-device-laptop .nc-lp-side span.active {
  background: var(--nc-green-muted);
  color: var(--nc-green);
}

.nc-device-laptop .nc-lp-main {
  padding: 16px;
}

.nc-device-laptop .nc-lp-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.nc-device-laptop .nc-kpi {
  background: var(--nc-white);
  border: 1px solid var(--nc-card-border);
  border-radius: 10px;
  padding: 10px;
}

.nc-device-laptop .nc-kpi .lbl {
  font-size: 10px;
  color: var(--nc-muted);
  margin-bottom: 4px;
}

.nc-device-laptop .nc-kpi .val {
  font-size: 16px;
  font-weight: 800;
  color: var(--nc-ink);
  letter-spacing: -0.02em;
}

.nc-device-laptop .nc-lp-chart {
  background: var(--nc-white);
  border: 1px solid var(--nc-card-border);
  border-radius: 10px;
  padding: 12px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.nc-device-laptop .nc-lp-chart i,
.nc-device-laptop .nc-lp-chart .bar {
  display: block;
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--nc-green) 0%, #86EFAC 100%);
  min-height: 20%;
}

.nc-device-laptop .nc-lp-chart .bar:nth-child(1) { height: 42%; background: #93C5FD; }
.nc-device-laptop .nc-lp-chart .bar:nth-child(2) { height: 68%; }
.nc-device-laptop .nc-lp-chart .bar:nth-child(3) { height: 55%; background: #93C5FD; }
.nc-device-laptop .nc-lp-chart .bar:nth-child(4) { height: 88%; }
.nc-device-laptop .nc-lp-chart .bar:nth-child(5) { height: 62%; background: #93C5FD; }
.nc-device-laptop .nc-lp-chart .bar:nth-child(6) { height: 78%; }
.nc-device-laptop .nc-lp-chart .bar:nth-child(7) { height: 50%; background: #93C5FD; }

.nc-device-laptop img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.nc-device-phone {
  position: absolute;
  right: -8px;
  bottom: 24px;
  width: 148px;
  background: var(--nc-white);
  border-radius: 22px;
  padding: 10px 8px 12px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.45);
  z-index: 2;
  border: 3px solid #E5E7EB;
}

.nc-device-phone .nc-ph-notch {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #D1D5DB;
  margin: 0 auto 10px;
}

.nc-device-phone .nc-ph-head {
  font-size: 11px;
  font-weight: 700;
  color: var(--nc-ink);
  margin-bottom: 8px;
  padding: 0 4px;
}

.nc-device-phone .nc-ph-slot {
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--nc-ink);
}

.nc-device-phone .nc-ph-slot:nth-child(odd) { background: #FCE7F3; }
.nc-device-phone .nc-ph-slot:nth-child(even) { background: #FEF3C7; }
.nc-device-phone .nc-ph-slot.blue { background: #DBEAFE; }
.nc-device-phone .nc-ph-slot.green { background: var(--nc-green-soft); }
.nc-device-phone .nc-ph-slot.pink { background: #FCE7F3; }
.nc-device-phone .nc-ph-slot.yellow { background: #FEF3C7; }

.nc-device-phone img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.nc-hero-callout {
  position: absolute;
  left: -10px;
  top: 18px;
  z-index: 3;
  color: var(--nc-white);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  max-width: 140px;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.nc-hero-callout::after {
  content: '⤵';
  display: block;
  font-style: normal;
  font-size: 22px;
  margin-top: 4px;
  color: var(--nc-green);
  transform: rotate(-20deg);
}

.nc-hero-features {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px 36px;
  margin-top: 48px;
  padding: 8px 0 20px;
  max-width: 640px;
  border-top: none;
}

.nc-hero-features .item,
.nc-hero-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 72px;
  text-align: center;
}

.nc-hero-features .ico,
.nc-hero-feat .ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  color: #7CFFB2;
  border: 1.5px solid rgba(124, 255, 178, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.nc-hero-features .lbl,
.nc-hero-feat .lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.nc-about {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-about .wrap,
.nc-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr) minmax(230px, 0.86fr);
  gap: 48px 40px;
  align-items: center;
}

.nc-about-copy .eyebrow {
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600;
  color: #22C55E;
}

.nc-about-copy h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--nc-ink);
  margin: 0 0 16px;
}

.nc-about-lead {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 14px;
  max-width: 26ch;
}

.nc-about-body {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 46ch;
}

.nc-about-body strong {
  color: #111827;
  font-weight: 700;
}

.nc-about-copy .btn-mint {
  padding: 11px 20px;
}

.nc-about-media {
  position: relative;
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.nc-about-media > img,
.nc-about-media .nc-about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: #e8eef2;
}

.nc-about-img--placeholder {
  background:
    linear-gradient(180deg, rgba(16, 32, 24, 0.08) 0%, rgba(16, 32, 24, 0.28) 100%),
    #c5d4c8;
}

.nc-about-quote {
  position: absolute;
  top: 28px;
  right: -18px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 190px;
}

.nc-about-quote span {
  font-size: 12.5px;
  line-height: 1.45;
  color: #6b7280;
  font-weight: 500;
}

.nc-about-float,
.nc-member-card {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  padding: 10px 16px 12px 12px;
  min-width: 188px;
}

.nc-member-badge {
  font-size: 11px;
  font-weight: 700;
  color: #22C55E;
  margin: 0 0 8px 2px;
}

.nc-member-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nc-about-float .av,
.nc-member-card .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.nc-about-float .av img,
.nc-member-card .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-about-float .meta .k,
.nc-member-card .meta .k {
  font-size: 12.5px;
  color: #9ca3af;
  font-weight: 500;
}

.nc-about-float .meta .n,
.nc-member-card .meta .n {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.nc-about-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.nc-about-list .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.nc-about-list .ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e7f8ee;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nc-about-list h3,
.nc-about-list .t {
  font-size: 15.5px;
  font-weight: 700;
  color: #111827;
  margin: 2px 0 4px;
}

.nc-about-list p,
.nc-about-list .d {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   MANAGE
   ========================================================================== */
.nc-manage {
  padding: var(--nc-section-y) 0;
  background: #F2F5F4;
  overflow: hidden;
}

.nc-manage-inner,
.nc-manage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.92fr);
  gap: 28px 18px;
  align-items: center;
}

.nc-manage .section-head {
  max-width: 640px;
  margin: 0 0 28px;
  text-align: left;
}

.nc-manage .section-head .eyebrow {
  margin-bottom: 10px;
}

.nc-manage .section-head h2,
.nc-manage .section-head .h2 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.nc-manage .section-head p {
  margin-top: 12px;
  max-width: 54ch;
}

.nc-manage .section-head p strong {
  color: #111827;
  font-weight: 700;
}

.nc-manage-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.nc-manage-card {
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 22px 18px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.nc-manage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.nc-manage-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
  background: #e8f6ee;
  color: #22c55e;
}

.nc-manage-card .ico.c-blue { background: #DBEAFE; color: #2563EB; }
.nc-manage-card .ico.c-green { background: #e8f6ee; color: #22c55e; }
.nc-manage-card .ico.c-orange { background: #FFEDD5; color: #EA580C; }
.nc-manage-card .ico.c-rose { background: #FCE7F3; color: #DB2777; }
.nc-manage-card .ico.c-sky { background: #E0F2FE; color: #0284C7; }
.nc-manage-card .ico.c-amber { background: #FEF3C7; color: #D97706; }
.nc-manage-card .ico.c-teal { background: #CCFBF1; color: #0D9488; }
.nc-manage-card .ico.c-indigo { background: #E0E7FF; color: #4F46E5; }

.nc-manage-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.nc-manage-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.nc-manage-visual {
  position: relative;
  min-height: 460px;
  margin-right: -48px;
  overflow: visible;
}

.nc-manage-stage-bg {
  position: absolute;
  top: -48px;
  right: -18%;
  bottom: -64px;
  left: 12%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  pointer-events: none;
}

.nc-manage-devices {
  position: relative;
  z-index: 1;
  padding: 24px 48px 8px 0;
}

.nc-man-laptop {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10.4;
  background: linear-gradient(180deg, #eef0f3 0%, #d5d9de 100%);
  border-radius: 18px 18px 12px 12px;
  padding: 11px 11px 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 28px 60px rgba(15, 23, 42, 0.16);
}

.nc-man-laptop-screen {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
}

.nc-man-laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.nc-man-phone {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 148px;
  aspect-ratio: 9 / 18.4;
  background: #111318;
  border-radius: 28px;
  padding: 8px;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 22px 40px rgba(15, 23, 42, 0.28);
}

.nc-man-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 42%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0c;
  z-index: 2;
}

.nc-man-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.nc-man-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

/* ==========================================================================
   VERTICALS
   ========================================================================== */
.nc-verticals {
  position: relative;
  padding: var(--nc-section-y) 0;
  background-color: #0b0f12;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--nc-white);
  overflow: hidden;
}

.nc-verticals.has-bg {
  background-image: var(--nc-vert-bg);
}

.nc-verticals::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 10, 12, 0.58) 0%,
    rgba(7, 10, 12, 0.34) 46%,
    rgba(7, 10, 12, 0.22) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.nc-verticals .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: 48px 36px;
  align-items: center;
}

.nc-verticals-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.nc-verticals-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--nc-white);
}

.nc-verticals-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 42ch;
}

.nc-verticals-copy p strong {
  color: #fff;
  font-weight: 700;
}

.nc-verticals-copy .btn-mint {
  padding: 12px 22px;
}

.nc-verticals-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.nc-vert-card {
  background: rgba(8, 12, 14, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 18px;
  padding: 22px 10px 16px;
  text-align: center;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nc-vert-card:hover {
  border-color: rgba(124, 255, 178, 0.55);
  background: rgba(8, 12, 14, 0.12);
  transform: translateY(-2px);
}

.nc-vert-card .ico {
  width: auto;
  height: auto;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
}

.nc-vert-card .lbl {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.nc-vert-note {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

/* ==========================================================================
   PROCESS / NASIL ÇALIŞIR
   ========================================================================== */
.nc-process {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-process .wrap,
.nc-how {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.nc-how-copy h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #111827;
  line-height: 1.15;
  margin: 0;
}

.nc-how-kicker {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #111827;
  line-height: 1.15;
  margin: 0 0 16px;
}

.nc-how-lead {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 40px;
}

.nc-how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 36px;
  position: relative;
}

.nc-how-step {
  position: relative;
  z-index: 1;
}

.nc-how-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf8ef;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px #fff;
}

.nc-how-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111827;
  line-height: 1;
  margin-bottom: 10px;
}

.nc-how-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}

.nc-how-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
  max-width: 200px;
}

.nc-how-more.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.nc-how-card {
  background: #f4f5f7;
  border: 0;
  border-radius: 28px;
  padding: 18px 18px 16px;
  box-shadow: none;
}

.nc-how-rep {
  position: relative;
  margin-bottom: 14px;
}

.nc-how-agent {
  display: grid;
  grid-template-columns: 188px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
  z-index: 1;
  margin: 0;
}

.nc-how-photo {
  width: 188px;
  height: 188px;
  aspect-ratio: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #d7e3dc;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nc-how-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.nc-how-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #166534;
  background: linear-gradient(160deg, #dcfce7, #86efac);
}

.nc-how-agent-meta {
  background: linear-gradient(to bottom right, #ffffff, #f4f5f7);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  position: relative;
  z-index: 3;
  box-shadow: none;
}

.nc-how-agent-meta .role {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.nc-how-agent-meta .name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.15;
}

.nc-how-agent-meta .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.nc-how-agent-meta .status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.nc-how-intro {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom right, #ffffff, #f4f5f7);
  border-radius: 22px;
  margin: -60px 0 0 30px;
  padding: 20px 20px 18px 20px;
  box-shadow: none;
}

.nc-how-intro h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.35;
}

.nc-how-intro p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.nc-how-schedule-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 4px 12px;
  padding: 0 4px;
}

.nc-how-schedule {
  background: #fff;
  border-radius: 24px;
  padding: 16px 18px 16px;
  overflow: visible;
}

.nc-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.nc-day {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 64px;
  padding: 11px 4px 10px;
  border-radius: 16px;
  border: 0;
  background: #eef1f4;
  color: #9aa3af;
  cursor: pointer;
  text-align: center;
  line-height: 1.15;
}

.nc-day .d,
.nc-day .n {
  position: relative;
  z-index: 1;
  display: block;
}

.nc-day .d {
  font-size: 13.5px;
  font-weight: 700;
  color: inherit;
}

.nc-day .n {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}

.nc-day.is-active,
.nc-day.active {
  background: #1a1d24;
  color: #fff;
}

.nc-day.is-active::before,
.nc-day.active::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 0;
  width: 36px;
  height: 16px;
  transform: translateX(-50%);
  background: #4ade80;
  filter: blur(8px);
  opacity: 0.85;
  border-radius: 50%;
  pointer-events: none;
}

.nc-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.nc-slot {
  min-width: 0;
  height: 42px;
  padding: 0 2px;
  border-radius: 999px;
  border: 0;
  background: #f4f5f7;
  color: #6b7280;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}

.nc-slot:hover {
  background: #e9f8ef;
  color: #15803d;
}

.nc-slot.is-active,
.nc-slot.active {
  background: #e6f6ec;
  color: #15803d;
}

.nc-how-cta.btn {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  margin: 2px 0 14px;
  background: #111827;
  border-color: #111827;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
}

.nc-how-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #9ca3af;
  margin: 0;
}

.nc-how-note i {
  color: #c5cad3;
  margin-top: 2px;
  font-size: 14px;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.nc-features {
  padding: var(--nc-section-y) 0;
  background: #eaf6f0;
}

.nc-features .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.nc-features-copy h2 {
  max-width: 11.5ch;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #111827;
  margin: 0 0 16px;
}

.nc-features-copy > p {
  max-width: 46ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 36px;
}

.nc-features-copy > p strong {
  color: #111827;
  font-weight: 700;
}

.nc-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.nc-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.nc-feature-item .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d8f3e4;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.nc-feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 2px 0 4px;
}

.nc-feature-item p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.nc-features-visual {
  position: relative;
  overflow: visible;
}

.nc-feat-stage {
  position: relative;
  padding: 40px 28px 36px 0;
  overflow: visible;
}

.nc-feat-laptop {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10.4;
  background: linear-gradient(180deg, #f4f5f7 0%, #dfe3e8 100%);
  border-radius: 22px;
  padding: 12px 12px 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 28px 60px rgba(15, 23, 42, 0.14);
}

.nc-feat-laptop-screen {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
}

.nc-feat-laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.nc-feat-phone {
  position: absolute;
  right: 7%;
  bottom: -8px;
  width: 168px;
  aspect-ratio: 9 / 18.4;
  background: #111318;
  border-radius: 30px;
  padding: 8px;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 22px 40px rgba(15, 23, 42, 0.28);
}

.nc-feat-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 42%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0c;
  z-index: 2;
}

.nc-feat-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.nc-feat-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.nc-feat-bubble {
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 248px;
  padding: 16px 22px 16px 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.nc-feat-bubble-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eaf8ef;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.nc-feat-bubble-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nc-feat-bubble-copy strong {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.nc-feat-bubble-copy span {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.nc-testimonials {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-testimonials .wrap,
.nc-testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.82fr);
  gap: 28px 32px;
  align-items: stretch;
}

.nc-testimonials-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

.nc-testimonials-copy p {
  margin: 0 0 22px;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
}

.nc-testimonials-copy p strong {
  color: #111827;
  font-weight: 700;
}

.nc-testimonials-mid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.85fr);
  gap: 20px 24px;
  align-items: center;
}

.nc-quote-card {
  background: #fff;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
  padding: 24px 24px 18px;
  position: relative;
}

.nc-quote-slide[hidden] {
  display: none;
}

.nc-quote-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.nc-quote-card .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8f6ee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #16a34a;
}

.nc-quote-card .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-quote-card .name {
  font-size: 15.5px;
  font-weight: 700;
  color: #111827;
}

.nc-quote-card .role {
  font-size: 13px;
  color: #9ca3af;
}

.nc-quote-card .quote,
.nc-quote-card blockquote {
  font-size: 14.5px;
  line-height: 1.65;
  color: #4b5563;
  font-style: italic;
  margin: 0 0 16px;
}

.nc-quote-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nc-quote-card .stars {
  display: flex;
  gap: 3px;
  color: #22c55e;
  font-size: 13px;
  margin: 0;
}

.nc-quote-nav {
  display: flex;
  gap: 6px;
}

.nc-quote-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 50%;
}

.nc-quote-btn:hover {
  color: #111827;
  background: #f3f4f6;
}

.nc-quote-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.nc-quote-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
}

.nc-quote-dots button.is-active {
  background: #22c55e;
}

.nc-stats-row,
.nc-stats-col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 12px;
}

.nc-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.nc-stat .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f6ee;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nc-stat .n {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1.1;
}

.nc-stat .l {
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 0;
}

.nc-testimonials-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #102018;
}

.nc-testimonials-cta.has-bg {
  background-image: var(--nc-testi-cta-bg);
  background-size: cover;
  background-position: right center;
}

.nc-testimonials-cta.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 16, 14, 0.82) 0%, rgba(8, 16, 14, 0.42) 55%, rgba(8, 16, 14, 0.18) 100%);
}

.nc-testimonials-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.nc-testimonials-cta h3 {
  margin: 0 0 12px;
  max-width: 11ch;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.nc-testimonials-cta p {
  margin: 0 0 22px;
  max-width: 28ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.nc-testimonials-cta .btn-mint {
  align-self: flex-start;
}

/* Alt testimonial band (dark photo) */
.nc-testi-band {
  position: relative;
  padding: var(--nc-section-y) 0;
  background: var(--nc-dark) center / cover no-repeat;
  color: var(--nc-white);
  text-align: center;
}

.nc-testi-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.78);
}

.nc-testi-band .wrap {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
}

.nc-testi-band .quote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 28px;
}

.nc-testi-band .who {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nc-testi-band .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--nc-green);
}

.nc-testi-band .name {
  font-weight: 700;
  font-size: 15px;
}

.nc-testi-band .role {
  font-size: 13px;
  color: var(--nc-green);
}

/* ==========================================================================
   STORIES — full-bleed carousel (independent from system slider)
   ========================================================================== */
.nc-stories {
  position: relative;
  width: 100%;
  background: #1c1814;
  overflow: hidden;
}

.nc-stories-viewport {
  overflow: hidden;
  width: 100%;
}

.nc-stories-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.nc-stories-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nc-section-y) 108px;
  background:
    linear-gradient(180deg, rgba(18, 14, 10, 0.55) 0%, rgba(18, 14, 10, 0.72) 100%),
    var(--nc-story-bg, none) center / cover no-repeat,
    #241c16;
  color: #fff;
  text-align: center;
}

.nc-stories-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.nc-stories-copy h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 18px;
}

.nc-stories-copy blockquote {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.nc-stories-who {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.nc-stories-who .av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #dcfce7;
  border: 3px solid rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.nc-stories-who .av img,
.nc-stories-who .av span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  font-weight: 800;
  color: #166534;
  font-size: 22px;
}

.nc-stories-who .name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.nc-stories-who .role {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 3px;
}

.nc-stories-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nc-stories-nav:hover {
  background: #f3f4f6;
}

.nc-stories-nav.is-prev {
  left: 28px;
}

.nc-stories-nav.is-next {
  right: 28px;
}

.nc-stories-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.nc-stories-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.nc-stories-dots button.is-active {
  background: #4ade80;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .nc-stories-track {
    transition: none;
  }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.nc-pricing {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  grid-template-rows: auto 1fr;
  gap: 18px 22px;
  align-items: stretch;
}

.nc-pricing-head {
  grid-column: 1;
  grid-row: 1;
  max-width: 640px;
  margin: 0 0 10px;
}

.nc-pricing-head h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111827;
  margin: 0;
}

.nc-pricing-head p {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #6b7280;
}

.nc-pricing-head p strong {
  color: #16a34a;
  font-weight: 600;
}

.nc-pricing-plans {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.nc-price-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 22px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: none;
}

.nc-price-card.is-featured {
  border: 1.5px solid #7CFFB2;
  box-shadow: 0 10px 28px rgba(124, 255, 178, 0.18);
}

.nc-price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #7CFFB2;
  color: #0B0C10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.nc-price-card .pname {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.nc-price-card .pdesc {
  font-size: 13px;
  color: #6b7280;
  margin: -4px 0 12px;
}

.nc-price-card .pamt {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  line-height: 1;
}

.nc-price-card .amount {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111827;
}

.nc-price-card .period {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
}

.nc-price-card ul {
  margin: 14px 0 22px;
  flex: 1;
}

.nc-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #4b5563;
  padding: 5px 0;
}

.nc-price-card li i {
  color: #22c55e;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.nc-price-card .btn {
  width: 100%;
  height: 44px;
  margin-top: auto;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.nc-pricing-custom {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(8, 16, 12, 0.82) 0%, rgba(8, 16, 12, 0.42) 52%, rgba(8, 16, 12, 0.22) 100%),
    var(--nc-price-custom-bg, none) center / cover no-repeat,
    #142019;
}

.nc-pricing-custom h3 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 12px;
  max-width: 16ch;
}

.nc-pricing-custom p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 28ch;
}

.nc-pricing-custom .btn {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13.5px;
}

.nc-price-card.custom,
.nc-price-card.is-custom {
  display: none;
}

/* ==========================================================================
   DEMO FORM (homepage lead)
   ========================================================================== */
.nc-lead {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
  gap: 36px;
  align-items: stretch;
}

.nc-lead-form h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 10px;
}

.nc-lead-form .intro {
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0 0 28px;
}

.nc-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.nc-lead-form .nc-field {
  margin-bottom: 14px;
}

.nc-lead-form .nc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.nc-lead-form .nc-field label span {
  color: #ef4444;
}

.nc-lead-form .nc-field input,
.nc-lead-form .nc-field select,
.nc-lead-form .nc-field textarea {
  width: 100%;
  background: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: #111827;
}

.nc-lead-form .nc-field input:focus,
.nc-lead-form .nc-field select:focus,
.nc-lead-form .nc-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: #86efac;
  box-shadow: 0 0 0 3px rgba(134, 239, 172, 0.35);
}

.nc-lead-form .nc-field textarea {
  min-height: 96px;
  resize: vertical;
}

.nc-lead-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 18px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.45;
}

.nc-lead-privacy input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #22c55e;
}

.nc-lead-privacy a {
  color: #16a34a;
  text-decoration: underline;
}

.nc-lead-submit.btn {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  font-size: 15px;
}

.nc-lead-side {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 560px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 16, 12, 0.18) 0%, rgba(8, 16, 12, 0.78) 58%, rgba(8, 16, 12, 0.9) 100%),
    var(--nc-lead-side-bg, none) top / cover no-repeat,
    #142019;
}

.nc-lead-side h3 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 18px;
}

.nc-lead-side ul {
  position: relative;
  z-index: 1;
}

.nc-lead-side li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  padding: 7px 0;
}

.nc-lead-side li i {
  color: #4ade80;
  font-size: 16px;
  flex-shrink: 0;
}

.nc-lead-form .form-success {
  margin-bottom: 18px;
}

/* ==========================================================================
   CONTACT FORM + INFO
   ========================================================================== */
.nc-contact-block {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-cinfo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nc-cinfo h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

.nc-cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  color: inherit;
  text-decoration: none;
}

a.nc-cinfo-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.nc-cinfo-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f6ee;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nc-cinfo-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.nc-cinfo-card span:not(.ico) {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: #6b7280;
}

.nc-cinfo-map {
  overflow: hidden;
  border-radius: 16px;
  min-height: 180px;
  background: #eef2f0;
}

.nc-cinfo-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.nc-cinfo .social-links,
.nc-cinfo .contact-social {
  margin-top: 8px;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.nc-cta {
  padding: var(--nc-section-y) 24px;
  background: transparent;
}

.nc-cta-inner {
  max-width: var(--nc-wrap);
  margin: 0 auto;
  background: var(--nc-dark);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 280px;
}

.nc-cta-copy {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--nc-white);
}

.nc-cta-copy .eyebrow {
  color: var(--nc-green);
}

.nc-cta-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 10px 0 16px;
  color: var(--nc-white);
}

.nc-cta-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.5px;
  margin-bottom: 24px;
  max-width: 42ch;
}

.nc-cta-media {
  position: relative;
  min-height: 240px;
  background: var(--nc-dark-3);
}

.nc-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.nc-faq {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.nc-faq-item,
.faq-item {
  border-bottom: 1px solid var(--nc-border);
}

.nc-faq-q,
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--nc-ink);
}

.nc-faq-q .chev,
.faq-q .plus,
.nc-faq-q i {
  font-size: 14px;
  color: var(--nc-green-btn);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nc-faq-item.open .chev,
.faq-item.open .plus,
.nc-faq-item.open .nc-faq-q i {
  transform: rotate(180deg);
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.nc-faq-a,
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.nc-faq-item.open .nc-faq-a,
.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 22px;
}

.nc-faq-a p,
.faq-a p {
  font-size: 14.5px;
  color: var(--nc-ink-soft);
  padding: 0 4px;
  line-height: 1.65;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.nc-footer {
  background: var(--nc-dark);
  color: var(--nc-muted);
  padding: 48px 0 24px;
}

.nc-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}

.nc-footer .nc-logo,
.nc-footer-logo {
  color: var(--nc-white);
  font-weight: 800;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}

.nc-footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.nc-footer-links a:hover {
  color: var(--nc-green);
}

.nc-footer-social {
  display: flex;
  gap: 10px;
}

.nc-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.nc-footer-social a:hover {
  border-color: var(--nc-green);
  color: var(--nc-green);
}

.nc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.nc-footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  margin-left: 16px;
}

.nc-footer-bottom a:hover {
  color: var(--nc-green);
}

.nc-footer .tagline,
.nc-footer-tagline {
  font-size: 13px;
  color: var(--nc-muted);
  margin: 0 0 28px;
  max-width: 520px;
}

.nc-footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-left: auto;
}

.nc-footer-legal a {
  color: var(--nc-muted);
  font-size: 13px;
  margin-left: 0;
}

.nc-footer-legal a:hover {
  color: var(--nc-green);
}

/* Shared footer module fallbacks */
.nc-footer .footer-cols,
footer.nc-footer .row {
  color: var(--nc-muted);
}

/* ==========================================================================
   CONTACT / DEMO PAGE
   ========================================================================== */
.nc-demo-page,
.nc-contact {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-demo-grid,
.nc-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.nc-demo-form,
.nc-form-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--nc-shadow);
}

.nc-demo-form h1,
.nc-demo-form h2,
.nc-form-card h1,
.nc-form-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--nc-ink);
}

.nc-demo-form .intro,
.nc-form-card .intro {
  font-size: 14.5px;
  color: var(--nc-ink-soft);
  margin-bottom: 24px;
}

.form-row,
.nc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field,
.nc-field {
  margin-bottom: 14px;
}

.form-field label,
.nc-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--nc-ink);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select,
.nc-field input,
.nc-field textarea,
.nc-field select,
.nc-demo-form input,
.nc-demo-form textarea,
.nc-demo-form select {
  width: 100%;
  background: var(--nc-input);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--nc-ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.nc-field input:focus,
.nc-field textarea:focus,
.nc-field select:focus,
.nc-demo-form input:focus,
.nc-demo-form textarea:focus,
.nc-demo-form select:focus {
  outline: none;
  border-color: var(--nc-green);
  background: var(--nc-white);
  box-shadow: 0 0 0 3px var(--nc-green-muted);
}

.form-field textarea,
.nc-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--nc-muted);
  margin-top: 10px;
  text-align: center;
}

.form-success,
.nc-form-success {
  display: none;
  background: var(--nc-dark);
  color: var(--nc-white);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
}

.form-success.is-visible,
.nc-form-success.is-visible,
.form-success:not([hidden]) {
  display: block;
}

.nc-form-success .check,
.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--nc-green-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.nc-form-success h3,
.form-success h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--nc-white);
}

.nc-form-success p,
.form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}

/* Sidebar: Why NACEON / Agent / Stepper */
.nc-demo-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nc-why-card {
  background: var(--nc-dark);
  color: var(--nc-white);
  border-radius: 16px;
  padding: 28px;
}

.nc-why-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--nc-white);
}

.nc-why-card li,
.nc-why-card .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
}

.nc-why-card li i,
.nc-why-card .item i {
  color: var(--nc-green);
  margin-top: 2px;
  flex-shrink: 0;
}

.nc-agent-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--nc-shadow);
}

.nc-agent-card .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--nc-green-soft);
  flex-shrink: 0;
}

.nc-agent-card .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-agent-card .name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--nc-ink);
}

.nc-agent-card .role {
  font-size: 12.5px;
  color: var(--nc-ink-soft);
}

.nc-agent-card .call {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nc-green-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nc-agent-card .call:hover {
  background: var(--nc-green-hover);
  color: #fff;
}

.nc-demo-page .nc-how-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--nc-shadow);
}

.nc-demo-page .nc-how-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--nc-ink);
}

.nc-demo-page .nc-how-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding-bottom: 18px;
  position: relative;
}

.nc-demo-page .nc-how-step:last-child {
  padding-bottom: 0;
}

.nc-demo-page .nc-how-step .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nc-green-btn);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.nc-demo-page .nc-how-step:not(:last-child) .num::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100% + 6px);
  border-left: 2px dashed #D1D5DB;
}

.nc-demo-page .nc-how-step .t {
  font-size: 14px;
  font-weight: 700;
  color: var(--nc-ink);
  margin-bottom: 2px;
}

.nc-demo-page .nc-how-step .d {
  font-size: 13px;
  color: var(--nc-ink-soft);
}

.nc-tip-box {
  margin-top: 16px;
  background: var(--nc-green-soft);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--nc-ink);
}

.nc-tip-box i {
  color: var(--nc-green-btn);
  margin-top: 2px;
}

/* Contact page legacy classes remapped */
.page-hero {
  padding: var(--nc-hero-band-y) 0;
  background: var(--nc-bg);
  position: relative;
  overflow: hidden;
}

.page-hero .blob { display: none; }

.page-hero .eyebrow {
  color: var(--nc-green-btn);
}

.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nc-ink);
  margin: 10px 0 12px;
}

.page-hero h1 .accent {
  color: var(--nc-green-btn);
}

.page-hero .lead {
  color: var(--nc-ink-soft);
  max-width: 52ch;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.info-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 20px;
  box-shadow: var(--nc-shadow);
}

.info-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--nc-green-soft) !important;
  color: var(--nc-green-btn) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card .link {
  font-size: 13.5px;
  color: var(--nc-ink-soft);
}

.info-card .link:hover {
  color: var(--nc-green-btn);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.contact-form {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--nc-shadow);
}

.btn-coral {
  background: var(--nc-green-btn) !important;
  color: #fff !important;
  border-color: var(--nc-green-btn) !important;
  border-radius: var(--nc-radius-pill);
}

.btn-coral:hover {
  background: var(--nc-green-hover) !important;
}

.side-panel .hours-card,
.side-panel .map-card {
  background: var(--nc-dark);
  color: #fff;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.hours-row .v {
  color: var(--nc-green);
  font-weight: 600;
}

.map-card .addr {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.map-embed iframe {
  width: 100%;
  min-height: 180px;
  border: 0;
  display: block;
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.nc-page-hero,
.inner-hero,
.contact-hero {
  background: var(--nc-bg);
  padding: var(--nc-hero-band-y) 0;
  border-bottom: 1px solid var(--nc-border);
}

.nc-page-hero h1,
.inner-hero h1,
.contact-hero h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nc-ink);
}

.nc-page-hero p,
.inner-hero p {
  color: var(--nc-ink-soft);
  margin-top: 8px;
  max-width: 56ch;
}

.breadcrumb-bar {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--nc-muted);
}

.breadcrumb-bar a {
  color: var(--nc-ink-soft);
}

.breadcrumb-bar a:hover {
  color: var(--nc-green-btn);
}

.inner-content {
  padding: var(--nc-section-y) 0;
}

.page-content {
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--nc-ink);
}

.page-content h2,
.page-content h3 {
  margin: 1.4em 0 0.6em;
  letter-spacing: -0.015em;
}

.page-content p {
  margin-bottom: 1em;
  color: var(--nc-ink-soft);
}

.page-content a {
  color: var(--nc-green-btn);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nc-product-tabs,
.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
  border-bottom: 1px solid var(--nc-border);
  padding-bottom: 0;
}

.nc-product-tabs a,
.product-tabs a,
.nc-product-tabs button,
.product-tabs button {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nc-ink-soft);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}

.nc-product-tabs a.active,
.product-tabs a.active,
.nc-product-tabs a:hover,
.product-tabs a:hover,
.nc-product-tabs button.active {
  color: var(--nc-green-btn);
  border-bottom-color: var(--nc-green-btn);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mob-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 16, 0.55);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mob-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mob-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100vh;
  background: var(--nc-dark);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: var(--nc-white);
}

.mob-panel.open {
  transform: translateX(0);
}

.mp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--nc-white);
}

.mp-logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--nc-green-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.mp-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--nc-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mp-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
}

.mp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.mp-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--nc-green);
}

.mp-link .arr {
  font-size: 12px;
  opacity: 0.5;
}

.mp-foot {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--nc-radius-pill);
  background: var(--nc-green-btn);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 14px;
}

.mp-cta:hover {
  background: var(--nc-green-hover);
  color: #fff;
}

.mp-contact a {
  font-size: 13.5px;
  color: var(--nc-muted);
}

.mp-contact a:hover {
  color: var(--nc-green);
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   BLOG / NEWS / ANNOUNCEMENTS
   ========================================================================== */
.blog-page-sec,
.refs-page-sec,
.album-page-sec,
.album-detail-sec,
.blog-detail-sec {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  overflow: hidden;
  box-shadow: var(--nc-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.blog-media {
  aspect-ratio: 16 / 10;
  background: var(--nc-green-soft);
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 800;
  font-size: 28px;
  color: var(--nc-green-btn);
}

.blog-body {
  padding: 20px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--nc-muted);
  margin-bottom: 10px;
}

.blog-category {
  color: var(--nc-green-btn);
  font-weight: 600;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--nc-ink);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--nc-ink-soft);
  margin-bottom: 12px;
  line-height: 1.55;
}

.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--nc-green-btn);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-empty,
.blog-pagination {
  text-align: center;
  color: var(--nc-ink-soft);
  padding: 24px 0;
}

.blog-pagination nav,
.blog-pagination .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--nc-border);
  background: var(--nc-white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nc-ink);
}

.blog-pagination .active span,
.blog-pagination [aria-current="page"] span {
  background: var(--nc-green-btn);
  border-color: var(--nc-green-btn);
  color: #fff;
}

.blog-detail-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--nc-shadow);
}

.blog-detail-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-detail-body {
  padding: 32px;
}

.blog-detail-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  color: var(--nc-ink);
}

.blog-detail-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--nc-ink-soft);
}

.blog-detail-content p {
  margin-bottom: 1em;
}

.blog-detail-back {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 600;
  color: var(--nc-green-btn);
}

.blog-related {
  margin-top: 48px;
}

.blog-related-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-related-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 16px;
  display: block;
  transition: border-color 0.15s;
}

.blog-related-card:hover {
  border-color: var(--nc-green-btn);
}

/* ==========================================================================
   ALBUMS / REFERENCES
   ========================================================================== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.album-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  overflow: hidden;
  box-shadow: var(--nc-shadow);
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.album-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}

.album-media {
  aspect-ratio: 4 / 3;
  background: var(--nc-green-soft);
  overflow: hidden;
}

.album-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--nc-green-btn);
}

.album-body {
  padding: 18px;
}

.album-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--nc-ink);
  margin-bottom: 6px;
}

.album-meta {
  font-size: 13px;
  color: var(--nc-ink-soft);
  margin-bottom: 8px;
}

.album-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--nc-green-btn);
}

.album-empty,
.refs-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--nc-ink-soft);
}

.album-empty-icon,
.album-empty-icon {
  font-size: 36px;
  color: var(--nc-green-btn);
  margin-bottom: 12px;
}

.album-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.album-media-card {
  border-radius: var(--nc-radius);
  overflow: hidden;
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
}

.album-photo-button {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.album-photo-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.album-item-caption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--nc-ink-soft);
}

.album-detail-back {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 600;
  color: var(--nc-green-btn);
}

.refs-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.refs-logo-card {
  background: var(--nc-white);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--nc-shadow);
  transition: border-color 0.15s, transform 0.15s;
  display: block;
  color: inherit;
}

.refs-logo-card:hover {
  border-color: var(--nc-green-btn);
  transform: translateY(-2px);
}

.refs-logo-media {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.refs-logo-media img {
  max-height: 56px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}

.refs-logo-card:hover .refs-logo-media img {
  filter: none;
  opacity: 1;
}

.refs-logo-placeholder {
  font-weight: 800;
  font-size: 22px;
  color: var(--nc-green-btn);
}

.refs-logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--nc-ink);
}

.refs-logo-text {
  font-size: 12.5px;
  color: var(--nc-ink-soft);
  margin-top: 6px;
}

.refs-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nc-green-btn);
}

/* ==========================================================================
   NASIL ÇALIŞIR 2 (compact dark steps)
   ========================================================================== */
.nc-how2 {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-how2-card {
  background: #102018;
  border-radius: 22px;
  padding: 28px 36px 32px;
  color: #fff;
}

.nc-how2-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.nc-how2-head p {
  margin: 6px 0 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #4ADE80;
}

.nc-how2-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 28px;
}

.nc-how2-step {
  flex: 1 1 0;
  min-width: 0;
}

.nc-how2-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.12);
  color: #4ADE80;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.nc-how2-step h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.nc-how2-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

/* ==========================================================================
   THANKS / DEMO SUCCESS CARD
   ========================================================================== */
.nc-thanks {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-thanks-card {
  background: #102018;
  border-radius: 22px;
  padding: 56px 32px 52px;
  text-align: center;
  color: #fff;
}

.nc-thanks-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22C55E;
  color: #fff;
  font-size: 22px;
}

.nc-thanks-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.nc-thanks-card p {
  margin: 0 auto 24px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.nc-thanks-card .btn {
  min-width: 168px;
  padding: 11px 22px;
}

/* ==========================================================================
   PRODUCT DETAILS (tabs)
   ========================================================================== */
.nc-pd {
  padding: var(--nc-section-y) 0;
  background: var(--nc-bg);
}

.nc-pd .section-head {
  margin-bottom: 28px;
}

.nc-pd .section-head h2 {
  margin-top: 0;
}

.nc-pd .section-head p {
  margin-top: 8px;
  font-size: 15.5px;
}

.nc-pd-card {
  background: #fff;
  border: 1px solid var(--nc-card-border);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.nc-pd-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  padding: 8px;
  margin: 18px 18px 0;
  background: #f4f5f7;
  border-radius: 14px;
  scrollbar-width: none;
}

.nc-pd-tabs::-webkit-scrollbar {
  display: none;
}

.nc-pd-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 11px 18px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nc-pd-tab:hover {
  color: #111827;
}

.nc-pd-tab.is-active {
  background: #fff;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.nc-pd-panel {
  padding: 36px 40px 44px;
}

.nc-pd-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.nc-pd-overview.is-text-only {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.nc-pd-copy h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 14px;
}

.nc-pd-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.nc-pd-copy p strong {
  color: #111827;
  font-weight: 700;
}

.nc-pd-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 22px;
}

.nc-pd-actions .btn-mint {
  padding: 11px 20px;
}

.nc-pd-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
}

.nc-pd-video:hover {
  color: var(--nc-green-hover);
}

.nc-pd-video-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #111827;
}

.nc-pd-media .nc-pd-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f3f5f7;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
}

.nc-pd-media img {
  width: 100%;
  height: auto;
  display: block;
}

.nc-pd-feats-wrap {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--nc-card-border);
}

.nc-pd-feats-wrap h4 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 22px;
}

.nc-pd-feats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.nc-pd-feat-ico {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: #111827;
  font-size: 22px;
  display: flex;
  align-items: flex-start;
}

.nc-pd-feat strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.nc-pd-feat p {
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
}

.nc-pd-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.nc-pd-gallery figure {
  margin: 0;
}

.nc-pd-gallery .nc-pd-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f3f5f7;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
}

.nc-pd-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.nc-pd-gallery .nc-pd-zoom:hover img {
  transform: scale(1.03);
}

.nc-pd-gallery figcaption {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}

.nc-pd-faqs {
  max-width: 760px;
}

.nc-zoom {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(11, 12, 16, 0.88);
  cursor: zoom-out;
}

.nc-zoom.is-open {
  display: flex;
}

.nc-zoom img {
  max-width: min(1100px, 92vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  cursor: default;
}

.nc-zoom-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.nc-zoom-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Album lightbox minimal */
.album-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 16, 0.9);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.album-lightbox[aria-hidden="false"],
.album-lightbox.is-open {
  display: flex;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.55);
  z-index: 70;
  color: #fff;
  font-size: 28px;
  transition: transform 0.15s ease;
}

.wa-btn:hover {
  transform: scale(1.06);
  color: #fff;
}

/* ==========================================================================
   UNDER CONSTRUCTION
   ========================================================================== */
.nc-uc,
.under-construction {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  background: var(--nc-bg);
}

.nc-uc h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.nc-uc p {
  color: var(--nc-ink-soft);
  max-width: 420px;
  margin: 0 auto 24px;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-green { color: var(--nc-green-btn) !important; }
.text-muted { color: var(--nc-ink-soft) !important; }
.text-white { color: var(--nc-white) !important; }
.bg-dark { background: var(--nc-dark) !important; }
.bg-soft { background: var(--nc-bg) !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .nc-pricing-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .nc-pricing-head,
  .nc-pricing-plans,
  .nc-pricing-custom {
    grid-column: 1;
    grid-row: auto;
  }

  .nc-pricing-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nc-pricing-custom {
    min-height: 280px;
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .refs-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nc-hero .wrap,
  .nc-hero-main,
  .nc-about .wrap,
  .nc-manage-grid,
  .nc-verticals .wrap,
  .nc-process .wrap,
  .nc-how,
  .nc-features .wrap,
  .nc-testimonials .wrap,
  .nc-cta-inner,
  .nc-lead-layout,
  .nc-demo-grid,
  .nc-contact-grid,
  .contact-grid,
  .nc-pd-overview {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nc-pd-panel {
    padding: 28px 24px 32px;
  }

  .nc-pd-feats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-testimonials .wrap {
    display: flex;
    flex-direction: column;
  }

  .nc-testimonials-mid {
    grid-template-columns: 1fr;
  }

  .nc-testimonials-cta {
    min-height: 280px;
  }

  .nc-lead-row {
    grid-template-columns: 1fr;
  }

  .nc-lead-side {
    min-height: 420px;
  }

  .nc-nav,
  .nc-header .nav-links {
    display: none;
  }

  .nc-toggle,
  .nc-header .nav-toggle {
    display: inline-flex;
  }

  .nc-hero {
    padding: 96px 0 24px;
  }

  .nc-hero-visual {
    min-height: 360px;
    margin-right: 0;
    justify-content: center;
    padding: 24px 0 8px;
  }

  .nc-ipad {
    width: 100%;
    max-width: 520px;
  }

  .nc-iphone {
    width: 128px;
    right: 4%;
    bottom: -12px;
  }

  .nc-toast {
    right: 6%;
    top: 0;
    min-width: 200px;
  }

  .nc-how-agent {
    grid-template-columns: 168px 1fr;
  }

  .nc-device-phone {
    right: 12px;
    width: 120px;
  }

  .nc-hero-features {
    flex-wrap: wrap;
  }

  .nc-hero-features .item,
  .nc-hero-feat {
    flex: 1 1 40%;
  }

  .nc-about-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .nc-about-quote {
    right: 12px;
  }

  .nc-manage-visual,
  .nc-features-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .nc-manage-visual {
    margin-right: 0;
    min-height: 380px;
  }

  .nc-manage-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-manage-stage-bg {
    right: -8%;
    left: 0;
  }

  .nc-features-copy h2 {
    max-width: none;
  }

  .nc-feat-phone {
    width: 132px;
    right: 6%;
    bottom: 0;
  }

  .nc-feat-bubble {
    right: -4px;
    top: 0;
  }

  .nc-verticals-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nc-cta {
    padding: var(--nc-section-y) 16px;
  }

  .nc-cta-media {
    min-height: 220px;
    order: -1;
  }

  .blog-grid,
  .album-grid,
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .album-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nc-stories-slide {
    min-height: 380px;
    padding: 56px 72px 72px;
  }

  .nc-stories-nav.is-prev {
    left: 12px;
  }

  .nc-stories-nav.is-next {
    right: 12px;
  }
}

@media (max-width: 720px) {
  :root {
    --nc-section-y: 64px;
    --nc-hero-band-y: 36px;
  }
  .wrap,
  .container {
    padding: 0 16px;
  }

  .nc-header {
    height: 64px;
  }

  .nc-body:not(:has(.nc-hero)) {
    padding-top: 64px;
  }

  .nc-header .wrap,
  .nc-header nav,
  .nc-header .nc-nav-bar {
    height: 64px;
  }

  .nc-nav-cta .nc-login,
  .nc-lang {
    display: none;
  }

  .nc-hero {
    padding: 88px 0 24px;
  }

  .nc-hero h1 {
    font-size: 32px;
  }

  .nc-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .nc-hero-ctas .btn {
    width: 100%;
  }

  .nc-hero-features {
    gap: 16px;
    padding: 22px 0;
  }

  .nc-hero-features .item,
  .nc-hero-feat {
    flex: 1 1 calc(50% - 8px);
  }

  .nc-hero-callout {
    left: 0;
    top: 0;
    font-size: 12px;
  }

  .nc-iphone {
    width: 104px;
  }

  .nc-stories-slide {
    min-height: 340px;
    padding: var(--nc-section-y) 20px;
  }

  .nc-stories-nav {
    width: 40px;
    height: 40px;
  }

  .nc-stories-nav.is-prev {
    left: 8px;
  }

  .nc-stories-nav.is-next {
    right: 8px;
  }

  .nc-feat-phone {
    width: 108px;
  }

  .nc-feat-bubble {
    min-width: 210px;
    padding: 14px 16px 14px 14px;
    gap: 12px;
  }

  .nc-feat-bubble-ico {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .nc-features-list {
    grid-template-columns: 1fr;
  }

  .nc-toast {
    position: relative;
    right: auto;
    top: auto;
    margin: 12px 0 0 auto;
    max-width: 240px;
  }

  .nc-device-phone {
    display: none;
  }

  .nc-pd-tabs {
    margin: 12px 12px 0;
  }

  .nc-pd-gallery {
    grid-template-columns: 1fr;
  }

  .nc-pd-gallery img {
    height: 200px;
  }

  .nc-pd-feats {
    grid-template-columns: 1fr;
  }

  .nc-how2-card {
    padding: 24px 20px 26px;
  }

  .nc-how2-steps {
    flex-direction: column;
    gap: 18px;
  }

  .nc-how-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .nc-how-agent {
    grid-template-columns: 148px 1fr;
    gap: 10px;
  }

  .nc-how-photo {
    width: 148px;
    height: 148px;
  }

  .nc-how-agent-meta {
    min-height: 88px;
    padding: 12px 14px;
  }

  .nc-how-intro {
    margin: -48px 0 0 24px;
    padding: 20px 20px 18px 20px;
  }

  .nc-days,
  .nc-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nc-manage-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-man-phone {
    width: 120px;
  }

  .nc-verticals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nc-pricing-plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0;
  }

  .nc-price-card.is-featured {
    transform: none;
  }

  .nc-cta-copy {
    padding: 32px 24px;
  }

  .form-row,
  .nc-form-row {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .album-grid,
  .blog-related-grid,
  .album-media-grid,
  .refs-logo-grid {
    grid-template-columns: 1fr;
  }

  .nc-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .nc-footer-links {
    justify-content: flex-start;
  }

  .nc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nc-footer-bottom a {
    margin-left: 0;
    margin-right: 14px;
  }

  .nc-stats-col {
    width: 100%;
  }

  .nc-quote-card {
    padding: 24px;
  }

  .wa-btn {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .nc-hero-features .item,
  .nc-hero-feat {
    flex: 1 1 100%;
  }

  .nc-manage-cards {
    grid-template-columns: 1fr;
  }

  .nc-verticals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nc-vert-card {
    padding: 18px 12px;
  }

  .nc-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}
