/* Nitro Commerce — nitroscommerce.css
   Brand prefix: ntc
   Plus Jakarta Sans + Inter + JetBrains Mono
   Palette: indigo #1C1240 / orange #F76D2B / teal #00C9A7 */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --ntc-indigo:        #1C1240;
  --ntc-indigo-mid:   #2D1F6E;
  --ntc-orange:       #F76D2B;
  --ntc-orange-dark:  #D95B1E;
  --ntc-teal:         #00C9A7;
  --ntc-yellow:       #FFD449;
  --ntc-bg:           #F8F7FF;
  --ntc-surface:      #FFFFFF;
  --ntc-raised:       #F0EEFF;
  --ntc-text:         #12082E;
  --ntc-text-2:       #4A4063;
  --ntc-text-muted:   #8B80A8;
  --ntc-border:       #E5E0F5;
  --ntc-success:      #22C55E;
  --ntc-warning:      #F59E0B;
  --ntc-radius-card:  12px;
  --ntc-radius-btn:   8px;
  --ntc-radius-hero:  24px;
  --ntc-shadow-card:  0 4px 24px rgba(28,18,64,0.08);
  --ntc-shadow-raised:0 8px 40px rgba(28,18,64,0.14);
  --ntc-font-heading: 'Plus Jakarta Sans', sans-serif;
  --ntc-font-body:    'Inter', sans-serif;
  --ntc-font-mono:    'JetBrains Mono', monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ntc-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ntc-text);
  background: var(--ntc-surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--ntc-font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ntc-text);
}
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 700; }
p { font-size: 16px; line-height: 1.7; }
.ntc-eyebrow {
  font-family: var(--ntc-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ntc-orange);
}
.ntc-mono { font-family: var(--ntc-font-mono); }

/* ============================================================
   BUTTONS
   ============================================================ */
.ntc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--ntc-radius-btn);
  font-family: var(--ntc-font-heading);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.ntc-btn:hover { transform: translateY(-1px); }
.ntc-btn--primary {
  background: var(--ntc-orange);
  color: #fff;
  border-color: var(--ntc-orange);
}
.ntc-btn--primary:hover { background: var(--ntc-orange-dark); border-color: var(--ntc-orange-dark); }
.ntc-btn--secondary {
  background: transparent;
  color: var(--ntc-text);
  border-color: var(--ntc-border);
}
.ntc-btn--secondary:hover { border-color: var(--ntc-orange); color: var(--ntc-orange); }
.ntc-btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.ntc-btn--ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }
.ntc-btn--lg { padding: 16px 32px; font-size: 17px; border-radius: 10px; }
.ntc-btn--sm { padding: 8px 16px; font-size: 13px; }

/* ============================================================
   NAV
   ============================================================ */
.ntc-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ntc-indigo);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.ntc-nav--scrolled { box-shadow: 0 2px 24px rgba(28,18,64,0.4); }
.ntc-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ntc-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ntc-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
}
.ntc-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.ntc-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--ntc-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.ntc-nav__link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.ntc-nav__link--active { color: #fff; }
.ntc-nav__dropdown {
  position: relative;
}
.ntc-nav__dropdown-toggle {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--ntc-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.ntc-nav__dropdown-toggle:hover,
.ntc-nav__dropdown.is-open .ntc-nav__dropdown-toggle {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.ntc-nav__dropdown-toggle svg {
  transition: transform 0.2s;
}
.ntc-nav__dropdown.is-open .ntc-nav__dropdown-toggle svg { transform: rotate(180deg); }
.ntc-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--ntc-indigo-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(28,18,64,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.ntc-nav__dropdown.is-open .ntc-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ntc-nav__dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: background 0.12s, color 0.12s;
}
.ntc-nav__dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.ntc-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ntc-nav__login {
  font-family: var(--ntc-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  transition: color 0.15s;
}
.ntc-nav__login:hover { color: #fff; }
.ntc-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.ntc-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.ntc-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ntc-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.ntc-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ntc-nav__mobile {
  display: none;
  background: var(--ntc-indigo);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 32px 24px;
}
.ntc-nav__mobile.is-open { display: block; }
.ntc-nav__mobile a,
.ntc-nav__mobile button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--ntc-font-heading);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
.ntc-nav__mobile a:hover,
.ntc-nav__mobile button:hover { color: #fff; }
.ntc-nav__mobile .ntc-btn--primary {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  border: 2px solid var(--ntc-orange);
}
.ntc-nav__mobile-sub a {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

/* light-top pages: force solid nav */
body.ntc-page--light-top .ntc-nav {
  background: var(--ntc-indigo);
}
body.ntc-page--light-top .ntc-nav__dropdown-menu {
  background: var(--ntc-indigo-mid);
  border-color: rgba(255,255,255,0.12);
}
body.ntc-page--light-top .ntc-nav__dropdown-menu a { color: rgba(255,255,255,0.82); }
body.ntc-page--light-top .ntc-nav__dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.ntc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.ntc-section { padding: 96px 0; }
.ntc-section--sm { padding: 64px 0; }
.ntc-section--lg { padding: 120px 0; }
.ntc-section--dark {
  background: var(--ntc-indigo);
  color: #fff;
}
.ntc-section--dark h1,
.ntc-section--dark h2,
.ntc-section--dark h3,
.ntc-section--dark h4 { color: #fff; }
.ntc-section--dark p { color: rgba(255,255,255,0.75); }
.ntc-section--dark .ntc-eyebrow { color: var(--ntc-teal); }
.ntc-section--indigo-mid {
  background: var(--ntc-indigo-mid);
  color: #fff;
}
.ntc-section--indigo-mid h2,
.ntc-section--indigo-mid h3 { color: #fff; }
.ntc-section--indigo-mid p { color: rgba(255,255,255,0.78); }
.ntc-section--bg { background: var(--ntc-bg); }
.ntc-section--raised { background: var(--ntc-raised); }
.ntc-text-center { text-align: center; }
.ntc-flex { display: flex; }
.ntc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ntc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ntc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   HERO — INDEX (DARK SPLIT)
   ============================================================ */
.ntc-hero {
  background: var(--ntc-indigo);
  padding: 100px 0 80px;
  overflow: hidden;
}
.ntc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ntc-hero__text { }
.ntc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,109,43,0.15);
  color: var(--ntc-orange);
  border: 1px solid rgba(247,109,43,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ntc-hero__h1 {
  font-family: var(--ntc-font-heading);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.ntc-hero__h1 span { color: var(--ntc-orange); }
.ntc-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.ntc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ntc-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ntc-hero__svg-wrap {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ntc-radius-hero);
  padding: 24px;
  overflow: hidden;
}

/* ============================================================
   METRIC BAR
   ============================================================ */
.ntc-metric-bar {
  background: var(--ntc-surface);
  border-bottom: 1px solid var(--ntc-border);
  padding: 24px 0;
}
.ntc-metric-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.ntc-metric-bar__item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--ntc-border);
}
.ntc-metric-bar__item:last-child { border-right: none; }
.ntc-metric-bar__number {
  font-family: var(--ntc-font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--ntc-orange);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.ntc-metric-bar__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ntc-text-2);
}

/* ============================================================
   CARDS
   ============================================================ */
.ntc-card {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 28px;
  box-shadow: var(--ntc-shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ntc-card:hover { box-shadow: var(--ntc-shadow-raised); transform: translateY(-2px); }
.ntc-card--dark {
  background: var(--ntc-indigo-mid);
  border-color: rgba(255,255,255,0.1);
}
.ntc-card--dark h3,
.ntc-card--dark h4,
.ntc-card--dark .ntc-card__title { color: #fff; }
.ntc-card--dark p,
.ntc-card--dark .ntc-card__desc { color: rgba(255,255,255,0.72); }
.ntc-card__icon {
  width: 48px;
  height: 48px;
  background: var(--ntc-raised);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ntc-orange);
  font-size: 22px;
}
.ntc-card--dark .ntc-card__icon {
  background: rgba(247,109,43,0.15);
  color: var(--ntc-orange);
}
.ntc-card__title {
  font-family: var(--ntc-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ntc-text);
  margin-bottom: 8px;
}
.ntc-card__desc {
  font-size: 14px;
  color: var(--ntc-text-2);
  line-height: 1.6;
}
.ntc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ntc-orange);
  transition: gap 0.15s;
}
.ntc-card__link:hover { gap: 10px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.ntc-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.ntc-section-header h2 { margin-bottom: 14px; }
.ntc-section-header p { font-size: 18px; color: var(--ntc-text-2); }

/* ============================================================
   PLATFORM OVERVIEW GRID
   ============================================================ */
.ntc-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   DARK PANEL (CHECKOUT SPOTLIGHT)
   ============================================================ */
.ntc-dark-panel {
  background: var(--ntc-indigo-mid);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ntc-dark-panel__eyebrow { color: var(--ntc-teal); }
.ntc-dark-panel__title {
  font-family: var(--ntc-font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ntc-dark-panel__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
}
.ntc-dark-panel__metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ntc-dark-panel__metric {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.ntc-dark-panel__metric::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ntc-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INTEGRATION LOGO GRID
   ============================================================ */
.ntc-integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.ntc-integration-tile {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ntc-integration-tile:hover { border-color: var(--ntc-orange); box-shadow: var(--ntc-shadow-card); }
.ntc-integration-tile__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  font-family: var(--ntc-font-heading);
}
.ntc-integration-tile__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ntc-text-2);
}

/* ============================================================
   HOW IT WORKS — NUMBERED STEPS
   ============================================================ */
.ntc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.ntc-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--ntc-orange), var(--ntc-teal));
  z-index: 0;
}
.ntc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ntc-step__num {
  width: 48px;
  height: 48px;
  background: var(--ntc-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.ntc-step h4 { font-size: 17px; margin-bottom: 8px; }
.ntc-step p { font-size: 14px; color: var(--ntc-text-2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ntc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ntc-testimonial {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 32px;
  box-shadow: var(--ntc-shadow-card);
}
.ntc-testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ntc-text);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--ntc-orange);
}
.ntc-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ntc-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ntc-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ntc-orange);
  flex-shrink: 0;
}
.ntc-testimonial__name {
  font-weight: 700;
  font-size: 15px;
}
.ntc-testimonial__role {
  font-size: 13px;
  color: var(--ntc-text-muted);
}

/* ============================================================
   CTA BAND (SMALL — ORANGE TINT)
   ============================================================ */
.ntc-cta-band {
  background: var(--ntc-raised);
  border: 1px solid var(--ntc-border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.ntc-cta-band h2 { margin-bottom: 12px; }
.ntc-cta-band p { font-size: 17px; color: var(--ntc-text-2); margin-bottom: 28px; }
.ntc-cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CTA FINAL — DARK FULL
   ============================================================ */
.ntc-cta-final {
  background: var(--ntc-indigo);
  padding: 96px 0;
  text-align: center;
}
.ntc-cta-final h2 { color: #fff; margin-bottom: 14px; }
.ntc-cta-final p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ntc-cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SUB-PAGE HERO
   ============================================================ */
.ntc-subhero {
  background: var(--ntc-bg);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--ntc-border);
}
.ntc-subhero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.ntc-subhero--centered { text-align: center; }
.ntc-subhero--centered .ntc-subhero__inner { max-width: 720px; }
.ntc-subhero--split .ntc-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
}
.ntc-subhero__eyebrow { margin-bottom: 16px; }
.ntc-subhero__h1 {
  font-family: var(--ntc-font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ntc-text);
  margin-bottom: 16px;
}
.ntc-subhero__sub {
  font-size: 18px;
  color: var(--ntc-text-2);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}
.ntc-subhero--centered .ntc-subhero__sub { margin-left: auto; margin-right: auto; }
.ntc-subhero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ntc-subhero--centered .ntc-subhero__actions { justify-content: center; }
.ntc-subhero__visual { }
.ntc-subhero__stat-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ntc-subhero__stat-tile {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 20px;
  text-align: center;
  box-shadow: var(--ntc-shadow-card);
}
.ntc-subhero__stat-tile .ntc-num {
  font-family: var(--ntc-font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--ntc-orange);
  line-height: 1;
  margin-bottom: 4px;
}
.ntc-subhero__stat-tile .ntc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ntc-text-muted);
}

/* ============================================================
   FEATURE GRIDS
   ============================================================ */
.ntc-feature-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ntc-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
}
.ntc-feature-item__icon {
  width: 40px;
  height: 40px;
  background: var(--ntc-raised);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ntc-orange);
  font-size: 18px;
  flex-shrink: 0;
}
.ntc-feature-item__title {
  font-family: var(--ntc-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--ntc-text);
  margin-bottom: 4px;
}
.ntc-feature-item__desc {
  font-size: 13px;
  color: var(--ntc-text-2);
  line-height: 1.6;
}

/* ============================================================
   METRICS BAND
   ============================================================ */
.ntc-metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.ntc-metrics-band__item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid var(--ntc-border);
}
.ntc-metrics-band__item:last-child { border-right: none; }
.ntc-metrics-band__number {
  font-family: var(--ntc-font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--ntc-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.ntc-metrics-band__label {
  font-size: 14px;
  color: var(--ntc-text-2);
  font-weight: 500;
}

/* ============================================================
   CASE CARD
   ============================================================ */
.ntc-case-card {
  background: var(--ntc-raised);
  border: 1px solid var(--ntc-border);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ntc-case-card__brand {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ntc-orange);
  margin-bottom: 12px;
}
.ntc-case-card__headline {
  font-family: var(--ntc-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--ntc-text);
  margin-bottom: 16px;
}
.ntc-case-card__body {
  font-size: 15px;
  color: var(--ntc-text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ntc-case-card__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ntc-case-card__result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ntc-case-card__result-num {
  font-family: var(--ntc-font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--ntc-orange);
  line-height: 1;
  min-width: 60px;
}
.ntc-case-card__result-label {
  font-size: 13px;
  color: var(--ntc-text-2);
  line-height: 1.5;
}

/* ============================================================
   PRICING
   ============================================================ */
.ntc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.ntc-pricing-card {
  background: var(--ntc-surface);
  border: 2px solid var(--ntc-border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow 0.2s;
}
.ntc-pricing-card:hover { box-shadow: var(--ntc-shadow-raised); }
.ntc-pricing-card--featured {
  border-color: var(--ntc-orange);
  box-shadow: 0 8px 40px rgba(247,109,43,0.15);
  transform: translateY(-8px);
}
.ntc-pricing-card__badge {
  display: inline-block;
  background: var(--ntc-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ntc-pricing-card__name {
  font-family: var(--ntc-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--ntc-text);
  margin-bottom: 8px;
}
.ntc-pricing-card__gmv {
  font-size: 13px;
  color: var(--ntc-text-muted);
  margin-bottom: 20px;
}
.ntc-pricing-card__price {
  margin-bottom: 24px;
}
.ntc-pricing-card__inr {
  font-family: var(--ntc-font-mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--ntc-text);
  line-height: 1;
}
.ntc-pricing-card__period {
  font-size: 14px;
  color: var(--ntc-text-muted);
}
.ntc-pricing-card__annual {
  font-size: 13px;
  color: var(--ntc-teal);
  font-weight: 600;
  margin-top: 4px;
}
.ntc-pricing-card__features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ntc-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--ntc-text-2);
}
.ntc-pricing-card__feature::before {
  content: '✓';
  color: var(--ntc-teal);
  font-weight: 700;
  flex-shrink: 0;
}
.ntc-pricing-divider { border: none; border-top: 1px solid var(--ntc-border); margin: 20px 0; }
.ntc-pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.ntc-faq {
  max-width: 780px;
  margin: 0 auto;
}
.ntc-faq__item {
  border-bottom: 1px solid var(--ntc-border);
}
.ntc-faq__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--ntc-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ntc-text);
  cursor: pointer;
  gap: 16px;
  transition: color 0.15s;
}
.ntc-faq__trigger:hover { color: var(--ntc-orange); }
.ntc-faq__icon {
  width: 24px;
  height: 24px;
  background: var(--ntc-raised);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  color: var(--ntc-orange);
  font-size: 16px;
  font-weight: 700;
}
.ntc-faq__item.is-open .ntc-faq__icon { transform: rotate(45deg); background: var(--ntc-orange); color: #fff; }
.ntc-faq__body {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--ntc-text-2);
  line-height: 1.7;
}
.ntc-faq__item.is-open .ntc-faq__body { display: block; }

/* ============================================================
   TEAM GRID
   ============================================================ */
.ntc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ntc-team-card {
  text-align: center;
}
.ntc-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--ntc-raised);
  border: 3px solid var(--ntc-border);
}
.ntc-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ntc-team-card__letter {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--ntc-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--ntc-orange);
  border: 3px solid var(--ntc-border);
}
.ntc-team-card__name {
  font-family: var(--ntc-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ntc-text);
  margin-bottom: 4px;
}
.ntc-team-card__role {
  font-size: 14px;
  color: var(--ntc-text-muted);
}

/* ============================================================
   CUSTOMER CARDS
   ============================================================ */
.ntc-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ntc-customer-card {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 28px;
  box-shadow: var(--ntc-shadow-card);
}
.ntc-customer-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ntc-customer-card__logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ntc-customer-card__brand { font-size: 17px; font-weight: 700; color: var(--ntc-text); }
.ntc-customer-card__vertical { font-size: 12px; color: var(--ntc-text-muted); }
.ntc-customer-card__quote {
  font-size: 14px;
  color: var(--ntc-text-2);
  line-height: 1.65;
  font-style: italic;
}

/* ============================================================
   INTEGRATION CATEGORIES
   ============================================================ */
.ntc-integration-category { margin-bottom: 48px; }
.ntc-integration-category__title {
  font-family: var(--ntc-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ntc-text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ntc-border);
}
.ntc-integration-category__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ntc-integration-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ntc-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ntc-integration-badge:hover { border-color: var(--ntc-orange); box-shadow: var(--ntc-shadow-card); }
.ntc-integration-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ntc-teal);
  flex-shrink: 0;
}

/* ============================================================
   API CALLOUT
   ============================================================ */
.ntc-api-callout {
  background: var(--ntc-indigo);
  border-radius: 16px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ntc-api-callout h3 { color: #fff; margin-bottom: 12px; }
.ntc-api-callout p { color: rgba(255,255,255,0.72); margin-bottom: 24px; }
.ntc-code-block {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
  font-family: var(--ntc-font-mono);
  font-size: 13px;
  color: #e2e8f0;
  overflow-x: auto;
  line-height: 1.7;
}
.ntc-code-block .ntc-code-comment { color: #6b7280; }
.ntc-code-block .ntc-code-key { color: var(--ntc-teal); }
.ntc-code-block .ntc-code-val { color: var(--ntc-orange); }

/* ============================================================
   BLOG
   ============================================================ */
.ntc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.ntc-blog-card {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.ntc-blog-card:hover { box-shadow: var(--ntc-shadow-raised); transform: translateY(-2px); }
.ntc-blog-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--ntc-raised);
}
.ntc-blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ntc-blog-card__cat {
  display: inline-block;
  background: var(--ntc-raised);
  color: var(--ntc-orange);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.ntc-blog-card__title {
  font-family: var(--ntc-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ntc-text);
  line-height: 1.35;
  margin-bottom: 10px;
}
.ntc-blog-card__excerpt {
  font-size: 14px;
  color: var(--ntc-text-2);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.ntc-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ntc-text-muted);
  margin-top: auto;
}
.ntc-blog-card__date { }
.ntc-blog-card__read { font-weight: 600; color: var(--ntc-orange); }

/* Blog Article */
.ntc-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
}
.ntc-article__hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
}
.ntc-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ntc-article__cat {
  background: var(--ntc-raised);
  color: var(--ntc-orange);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ntc-article__date {
  font-size: 14px;
  color: var(--ntc-text-muted);
}
.ntc-article__read {
  font-size: 14px;
  color: var(--ntc-text-muted);
}
.ntc-article__h1 {
  font-family: var(--ntc-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--ntc-text);
  line-height: 1.2;
  margin-bottom: 24px;
}
.ntc-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--ntc-raised);
  border-radius: 10px;
  margin-bottom: 40px;
}
.ntc-article__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ntc-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--ntc-orange);
  flex-shrink: 0;
}
.ntc-article__author-name { font-size: 15px; font-weight: 700; color: var(--ntc-text); }
.ntc-article__author-title { font-size: 13px; color: var(--ntc-text-muted); }
.ntc-article__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ntc-text);
}
.ntc-article__body h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 16px;
}
.ntc-article__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.ntc-article__body p { margin-bottom: 20px; }
.ntc-article__body ul, .ntc-article__body ol {
  margin: 16px 0 20px 24px;
  list-style: disc;
}
.ntc-article__body li { margin-bottom: 8px; }
.ntc-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ntc-orange);
  margin-bottom: 32px;
}

/* ============================================================
   AUTH PAGES (LOGIN / SIGNUP)
   ============================================================ */
.ntc-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ntc-auth-panel {
  background: var(--ntc-indigo);
  padding: clamp(40px, 8vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ntc-auth-panel__logo img { height: 36px; width: auto; }
.ntc-auth-panel__headline {
  font-family: var(--ntc-font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ntc-auth-panel__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.ntc-auth-panel__foot {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.ntc-auth-form-panel {
  background: var(--ntc-surface);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ntc-auth-form-wrap {
  width: 100%;
  max-width: 440px;
}
.ntc-auth-form-wrap h2 {
  font-size: 26px;
  margin-bottom: 6px;
}
.ntc-auth-form-wrap .ntc-auth-sub {
  font-size: 15px;
  color: var(--ntc-text-2);
  margin-bottom: 32px;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.ntc-form-group { margin-bottom: 18px; }
.ntc-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ntc-text);
  margin-bottom: 6px;
}
.ntc-form-input,
.ntc-form-select,
.ntc-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ntc-border);
  border-radius: 8px;
  font-family: var(--ntc-font-body);
  font-size: 15px;
  color: var(--ntc-text);
  background: var(--ntc-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ntc-form-input:focus,
.ntc-form-select:focus,
.ntc-form-textarea:focus {
  outline: none;
  border-color: var(--ntc-orange);
  box-shadow: 0 0 0 3px rgba(247,109,43,0.12);
}
.ntc-form-textarea { resize: vertical; min-height: 100px; }
.ntc-form-hint { font-size: 12px; color: var(--ntc-text-muted); margin-top: 4px; }
.ntc-form-legal {
  font-size: 12px;
  color: var(--ntc-text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.ntc-form-legal a { color: var(--ntc-orange); }

/* ============================================================
   CONTACT SPLIT
   ============================================================ */
.ntc-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.ntc-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.ntc-contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--ntc-raised);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ntc-orange);
  flex-shrink: 0;
}
.ntc-contact-info__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ntc-text-muted); margin-bottom: 4px; }
.ntc-contact-info__value { font-size: 15px; color: var(--ntc-text); font-weight: 500; }
.ntc-founder-card {
  background: var(--ntc-raised);
  border: 1px solid var(--ntc-border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.ntc-founder-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ntc-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--ntc-orange);
  margin: 0 auto 16px;
  border: 3px solid var(--ntc-border);
}
.ntc-founder-card__name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.ntc-founder-card__role { font-size: 14px; color: var(--ntc-text-muted); margin-bottom: 16px; }
.ntc-founder-card__bio { font-size: 15px; color: var(--ntc-text-2); line-height: 1.65; margin-bottom: 20px; }

/* ============================================================
   VALUES
   ============================================================ */
.ntc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ntc-value-card {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 28px;
  text-align: center;
}
.ntc-value-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.ntc-value-card__title {
  font-family: var(--ntc-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ntc-text);
  margin-bottom: 8px;
}
.ntc-value-card__desc { font-size: 14px; color: var(--ntc-text-2); line-height: 1.6; }

/* ============================================================
   CHANNEL GRID
   ============================================================ */
.ntc-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.ntc-channel-card {
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ntc-channel-card:hover { border-color: var(--ntc-orange); box-shadow: var(--ntc-shadow-card); }
.ntc-channel-card__icon { font-size: 32px; margin-bottom: 12px; }
.ntc-channel-card__name { font-size: 16px; font-weight: 700; color: var(--ntc-text); margin-bottom: 6px; }
.ntc-channel-card__desc { font-size: 13px; color: var(--ntc-text-2); }

/* ============================================================
   PLATFORM TAB PANELS
   ============================================================ */
.ntc-tabs { max-width: 1100px; margin: 0 auto; }
.ntc-tabs__nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--ntc-border);
  margin-bottom: 48px;
  overflow-x: auto;
}
.ntc-tabs__tab {
  padding: 12px 20px;
  font-family: var(--ntc-font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ntc-text-2);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.ntc-tabs__tab:hover { color: var(--ntc-text); }
.ntc-tabs__tab.is-active { color: var(--ntc-orange); border-bottom-color: var(--ntc-orange); }
.ntc-tabs__panel { display: none; }
.ntc-tabs__panel.is-active { display: block; }
.ntc-tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ntc-tabs__panel-features { list-style: none; }
.ntc-tabs__panel-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--ntc-text-2);
}
.ntc-tabs__panel-feature::before {
  content: '→';
  color: var(--ntc-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ntc-tabs__panel-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.ntc-tabs__panel-sub { font-size: 16px; color: var(--ntc-text-2); margin-bottom: 24px; }

/* ============================================================
   PROBLEM-SOLUTION
   ============================================================ */
.ntc-problem-solution {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ntc-ps-card {
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius-card);
  overflow: hidden;
}
.ntc-ps-card__problem {
  background: #fff5f5;
  border-bottom: 1px solid #fecaca;
  padding: 20px;
}
.ntc-ps-card__problem-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ef4444;
  margin-bottom: 8px;
}
.ntc-ps-card__problem-text { font-size: 14px; color: var(--ntc-text); font-weight: 600; }
.ntc-ps-card__solution {
  background: var(--ntc-surface);
  padding: 20px;
}
.ntc-ps-card__solution-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ntc-teal);
  margin-bottom: 8px;
}
.ntc-ps-card__solution-text { font-size: 14px; color: var(--ntc-text-2); line-height: 1.55; }

/* ============================================================
   FEATURE LIST (MARKETPLACE)
   ============================================================ */
.ntc-feature-list {
  max-width: 860px;
  margin: 0 auto;
}
.ntc-feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ntc-border);
}
.ntc-feature-list-item:last-child { border-bottom: none; }
.ntc-feature-list-item__icon {
  width: 48px;
  height: 48px;
  background: var(--ntc-raised);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ntc-orange);
  font-size: 22px;
  flex-shrink: 0;
}
.ntc-feature-list-item__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.ntc-feature-list-item__desc { font-size: 14px; color: var(--ntc-text-2); line-height: 1.6; }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.ntc-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.ntc-logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ntc-surface);
  border: 1px solid var(--ntc-border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ntc-text-2);
}
.ntc-logo-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.ntc-founder-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.ntc-founder-story__photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--ntc-border);
  background: var(--ntc-raised);
}
.ntc-founder-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ntc-founder-story__letter {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  background: var(--ntc-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ntc-font-heading);
  font-size: 80px;
  font-weight: 800;
  color: var(--ntc-orange);
  border: 3px solid var(--ntc-border);
}
.ntc-founder-story__content h3 { font-size: 26px; margin-bottom: 16px; }
.ntc-founder-story__content p { font-size: 16px; color: var(--ntc-text-2); line-height: 1.75; margin-bottom: 16px; }
.ntc-funding-callout {
  background: var(--ntc-raised);
  border: 1px solid var(--ntc-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
}
.ntc-funding-callout__badge {
  background: var(--ntc-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.ntc-funding-callout__text { font-size: 14px; color: var(--ntc-text-2); }

/* ============================================================
   ABOUT FUNDING CALLOUT
   ============================================================ */
.ntc-about-funding {
  background: var(--ntc-raised);
  border: 1px solid var(--ntc-border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.ntc-about-funding h3 { margin-bottom: 12px; }
.ntc-about-funding p { font-size: 16px; color: var(--ntc-text-2); line-height: 1.7; }

/* ============================================================
   JOIN US
   ============================================================ */
.ntc-join-us {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.ntc-join-us h3 { margin-bottom: 12px; }
.ntc-join-us p { font-size: 16px; color: var(--ntc-text-2); margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ntc-footer {
  background: var(--ntc-indigo);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.ntc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.ntc-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ntc-footer__brand {}
.ntc-footer__logo img { height: 32px; width: auto; margin-bottom: 16px; }
.ntc-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 220px; }
.ntc-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ntc-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.ntc-footer__social a:hover { background: var(--ntc-orange); color: #fff; }
.ntc-footer__col-title {
  font-family: var(--ntc-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.ntc-footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.ntc-footer__col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  transition: color 0.15s;
}
.ntc-footer__col-links a:hover { color: rgba(255,255,255,0.9); }
.ntc-footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ntc-footer__copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
.ntc-footer__compliance { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.ntc-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ntc-indigo);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.3s;
}
.ntc-cookie.is-hidden { transform: translateY(120%); }
.ntc-cookie__text {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  flex: 1;
  min-width: 200px;
}
.ntc-cookie__text a { color: var(--ntc-orange); }
.ntc-cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
body.cookie-visible { padding-bottom: 80px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.ntc-404 {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
}
.ntc-404__code {
  font-family: var(--ntc-font-mono);
  font-size: clamp(80px, 16vw, 160px);
  font-weight: 700;
  color: var(--ntc-raised);
  line-height: 1;
  margin-bottom: 16px;
}
.ntc-404__title { margin-bottom: 12px; }
.ntc-404__sub { font-size: 17px; color: var(--ntc-text-2); margin-bottom: 36px; max-width: 420px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.ntc-legal { max-width: 760px; margin: 0 auto; padding: 64px 32px; }
.ntc-legal h1 { margin-bottom: 8px; }
.ntc-legal__updated { font-size: 14px; color: var(--ntc-text-muted); margin-bottom: 48px; }
.ntc-legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.ntc-legal h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; }
.ntc-legal p { font-size: 15px; color: var(--ntc-text-2); line-height: 1.75; margin-bottom: 16px; }
.ntc-legal ul { margin: 12px 0 16px 20px; list-style: disc; }
.ntc-legal li { font-size: 15px; color: var(--ntc-text-2); line-height: 1.65; margin-bottom: 8px; }
.ntc-legal a { color: var(--ntc-orange); }

/* ============================================================
   BLOG CARD — EXTENDED (matches new HTML classes)
   ============================================================ */
.ntc-blog-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--ntc-raised); }
.ntc-blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ntc-blog-card:hover .ntc-blog-card__img { transform: scale(1.03); }
.ntc-blog-card__category {
  display: inline-block;
  background: var(--ntc-raised);
  color: var(--ntc-orange);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ntc-blog-card__date { font-size: 12px; color: var(--ntc-text-muted); }
.ntc-blog-card__title h2, .ntc-blog-card h2.ntc-blog-card__title, .ntc-blog-card h3.ntc-blog-card__title {
  font-family: var(--ntc-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ntc-text);
  line-height: 1.35;
  margin-bottom: 10px;
}
.ntc-blog-card h2.ntc-blog-card__title a,
.ntc-blog-card h3.ntc-blog-card__title a { color: var(--ntc-text); }
.ntc-blog-card h2.ntc-blog-card__title a:hover,
.ntc-blog-card h3.ntc-blog-card__title a:hover { color: var(--ntc-orange); }
.ntc-blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ntc-text-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--ntc-border);
}
.ntc-blog-card__author { font-weight: 600; }
.ntc-blog-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   ARTICLE PAGE — EXTENDED
   ============================================================ */
.ntc-article {
  max-width: 100%;
  padding: 0;
}
.ntc-article__header {
  background: var(--ntc-bg);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--ntc-border);
}
.ntc-article__header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.ntc-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ntc-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ntc-orange);
  transition: gap 0.15s;
}
.ntc-article__back:hover { gap: 12px; }
.ntc-article__category {
  display: inline-block;
  background: var(--ntc-raised);
  color: var(--ntc-orange);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ntc-article__title {
  font-family: var(--ntc-font-heading);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--ntc-text);
  line-height: 1.18;
  margin-bottom: 16px;
}
.ntc-article__excerpt {
  font-size: 18px;
  color: var(--ntc-text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ntc-article__byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ntc-text-muted);
}
.ntc-article__author { font-weight: 700; color: var(--ntc-text); }
.ntc-article__author-title { color: var(--ntc-text-muted); }
.ntc-article__date { }
.ntc-article__read { }
.ntc-article__cover {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 32px;
}
.ntc-article__cover-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--ntc-border);
}
.ntc-article__body {
  max-width: 760px;
  margin: 48px auto 80px;
  padding: 0 32px;
}
.ntc-article__content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ntc-text);
}
.ntc-article__content h2 { font-size: 26px; font-weight: 800; margin: 40px 0 16px; }
.ntc-article__content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.ntc-article__content p { margin-bottom: 20px; }
.ntc-article__content ul, .ntc-article__content ol { margin: 16px 0 20px 24px; list-style: disc; }
.ntc-article__content li { margin-bottom: 8px; }

/* ============================================================
   LEGAL CONTENT (matches .ntc-legal-content in HTML)
   ============================================================ */
.ntc-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 64px;
}
.ntc-legal-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; color: var(--ntc-text); }
.ntc-legal-content h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--ntc-text); }
.ntc-legal-content p { font-size: 15px; color: var(--ntc-text-2); line-height: 1.75; margin-bottom: 16px; }
.ntc-legal-content ul { margin: 12px 0 16px 24px; list-style: disc; }
.ntc-legal-content li { font-size: 15px; color: var(--ntc-text-2); line-height: 1.65; margin-bottom: 8px; }
.ntc-legal-content a { color: var(--ntc-orange); }
.ntc-legal-content address { font-style: normal; font-size: 15px; color: var(--ntc-text-2); line-height: 1.8; }

/* ============================================================
   AUTH FORM PANEL — EXTENDED
   ============================================================ */
.ntc-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ntc-auth-panel__content { margin-top: 48px; }
.ntc-auth-panel__metrics {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.ntc-auth-panel__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ntc-auth-panel__metric-num {
  font-family: var(--ntc-font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--ntc-teal);
  line-height: 1;
}
.ntc-auth-panel__metric-label { font-size: 14px; color: rgba(255,255,255,0.55); }
.ntc-auth-panel__checklist {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ntc-auth-panel__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  list-style: none;
}
.ntc-auth-panel__checklist li i { color: var(--ntc-teal); margin-top: 3px; flex-shrink: 0; }
.ntc-auth-form-panel__inner {
  width: 100%;
  max-width: 460px;
}
.ntc-auth-form-panel__title { font-size: 28px; font-weight: 800; color: var(--ntc-text); margin-bottom: 8px; }
.ntc-auth-form-panel__sub { font-size: 15px; color: var(--ntc-text-2); margin-bottom: 32px; }
.ntc-auth-link { color: var(--ntc-orange); font-weight: 600; }
.ntc-auth-form { display: flex; flex-direction: column; gap: 4px; }
.ntc-auth-submit { width: 100%; justify-content: center; padding: 14px 24px; font-size: 16px; margin-top: 8px; }
.ntc-auth-forgot { font-size: 12px; color: var(--ntc-orange); float: right; }
.ntc-auth-legal { font-size: 12px; color: var(--ntc-text-muted); text-align: center; margin-top: 16px; line-height: 1.5; }
.ntc-auth-legal a { color: var(--ntc-orange); }
.ntc-form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============================================================
   404 PAGE — EXTENDED
   ============================================================ */
.ntc-404__inner {
  max-width: 560px;
  margin: 0 auto;
}
.ntc-404__heading { font-size: clamp(24px, 4vw, 36px); margin-bottom: 12px; }
.ntc-404__sub { font-size: 17px; color: var(--ntc-text-2); margin-bottom: 36px; }
.ntc-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.ntc-404__links { text-align: center; }
.ntc-404__links p { font-size: 14px; color: var(--ntc-text-muted); margin-bottom: 12px; }
.ntc-404__links ul { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.ntc-404__links li { }
.ntc-404__links a { font-size: 14px; font-weight: 600; color: var(--ntc-orange); }

/* ============================================================
   SR-ONLY UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ntc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ntc-hero__visual { order: -1; }
  .ntc-hero__sub { max-width: 100%; }
  .ntc-platform-grid { grid-template-columns: 1fr 1fr; }
  .ntc-dark-panel { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .ntc-integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .ntc-steps { gap: 24px; }
  .ntc-steps::before { display: none; }
  .ntc-testimonials-grid { grid-template-columns: 1fr; }
  .ntc-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .ntc-pricing-card--featured { transform: none; }
  .ntc-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ntc-customer-grid { grid-template-columns: 1fr 1fr; }
  .ntc-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ntc-contact-split { grid-template-columns: 1fr; gap: 40px; }
  .ntc-case-card { grid-template-columns: 1fr; gap: 28px; }
  .ntc-api-callout { grid-template-columns: 1fr; gap: 28px; }
  .ntc-tabs__panel-inner { grid-template-columns: 1fr; }
  .ntc-founder-story { grid-template-columns: 1fr; max-width: 640px; }
  .ntc-founder-story__photo,
  .ntc-founder-story__letter { max-width: 200px; }
  .ntc-problem-solution { grid-template-columns: 1fr; }
  .ntc-auth-page { grid-template-columns: 1fr; }
  .ntc-auth-panel { display: none; }
  .ntc-subhero--split .ntc-subhero__inner { grid-template-columns: 1fr; }
  .ntc-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .ntc-channel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ntc-nav__links,
  .ntc-nav__actions { display: none; }
  .ntc-nav__hamburger { display: flex; margin-left: auto; }
  .ntc-section { padding: 64px 0; }
  .ntc-section--lg { padding: 80px 0; }
  .ntc-container { padding: 0 20px; }
  .ntc-hero { padding: 64px 0 48px; }
  .ntc-hero__inner { padding: 0 20px; }
  .ntc-grid-2, .ntc-grid-3, .ntc-grid-4 { grid-template-columns: 1fr; }
  .ntc-platform-grid { grid-template-columns: 1fr; }
  .ntc-integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .ntc-metric-bar__inner { flex-direction: column; gap: 20px; align-items: center; }
  .ntc-metric-bar__item { border-right: none; border-bottom: 1px solid var(--ntc-border); padding: 0 0 16px; max-width: 100%; }
  .ntc-metric-bar__item:last-child { border-bottom: none; }
  .ntc-steps { grid-template-columns: 1fr; }
  .ntc-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ntc-customer-grid { grid-template-columns: 1fr; }
  .ntc-footer__top { grid-template-columns: 1fr 1fr; }
  .ntc-footer__bottom { flex-direction: column; text-align: center; }
  .ntc-blog-grid { grid-template-columns: 1fr; }
  .ntc-pricing-grid { max-width: 100%; }
  .ntc-metrics-band { grid-template-columns: 1fr; border: none; }
  .ntc-metrics-band__item { border-right: none; border-bottom: 1px solid var(--ntc-border); }
  .ntc-metrics-band__item:last-child { border-bottom: none; }
  .ntc-values-grid { grid-template-columns: 1fr; }
  .ntc-cta-band { padding: 36px 24px; }
  .ntc-dark-panel { padding: 32px 24px; }
  .ntc-channel-grid { grid-template-columns: 1fr; }
  .ntc-cookie { flex-direction: column; text-align: center; }
  .ntc-cookie__actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .ntc-hero__actions { flex-direction: column; }
  .ntc-hero__actions .ntc-btn { width: 100%; justify-content: center; }
  .ntc-subhero__actions { flex-direction: column; }
  .ntc-footer__top { grid-template-columns: 1fr; }
  .ntc-team-grid { grid-template-columns: 1fr 1fr; }
  .ntc-integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
