/* =====================================================================
   Harris Thermal — NQA-1 Nuclear Landing Page
   Scoped stylesheet. Every rule is namespaced under `.ntl` so it cannot
   leak into the GeneratePress header/footer or the rest of the site, and
   the site's styles are out-specified inside the page. Loaded only on the
   "Nuclear Landing Page" template (see functions.php).

   Differences from the original standalone document:
   - CSS custom properties live on `.ntl`, not :root (no global leak).
   - The global reset (*, html, body) is contained to `.ntl`.
   - The page's own <nav>/<footer> styles are removed — GeneratePress now
     supplies the site header and footer.
   - `.hero` no longer reserves 64px for a fixed in-page nav.
   - `@keyframes fadeUp` is renamed `ntl-fadeUp` to avoid name collisions.
   - Full-bleed + flush rules let the design span the GP content container.
   ===================================================================== */

/* ── Break out of GeneratePress's centered content container (full-bleed) ── */
.page-template-template-nuclear-landing .grid-container {
  max-width: none;
}

.page-template-template-nuclear-landing .grid-container > .site-content {
  padding: 0;
}

.gb-container-0933a8e0 {
  display: none;
}

.ntl {
  width: 100vw;
  position: relative;
}

/* Flush GeneratePress's content-area padding so the hero meets the header
   and the final CTA meets the footer with no page-colored gaps. */
.nuclear-landing-template .site-content,
.nuclear-landing-template #content,
.nuclear-landing-template .site-content .container {
  padding-top: 0;
  padding-bottom: 0;
}
.nuclear-landing-template #content {
  margin-top: 0;
  margin-bottom: 0;
}

/* ── Design tokens (scoped) ── */
.ntl {
  --navy:        #0B2E4F;
  --navy-dark:   #071E35;
  --blue-mid:    #1F4E79;
  --accent:      #3B82C4;
  --accent-hover:#2D6BA8;
  --gray-bg:     #F5F7FA;
  --white:       #FFFFFF;
  --text:        #333333;
  --text-muted:  #5A6472;
  --border:      #D8DDE5;
  --rule-light:  rgba(255,255,255,0.1);
  --sans:        'Inter', system-ui, -apple-system, sans-serif;

  /* Base typography for the landing page (was on <body>). */
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Contained reset. */
.ntl,
.ntl *,
.ntl *::before,
.ntl *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── HERO ── */
.ntl .hero {
  min-height: 80vh;
  display: grid; grid-template-columns: 55fr 45fr;
  background: var(--navy); position: relative; overflow: hidden;
}
.ntl .hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.02) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.02) 60px);
  pointer-events: none;
}
.ntl .hero-left {
  padding: 2.5rem 4rem 2.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--rule-light);
  position: relative; z-index: 1;
}
.ntl .hero-kicker {
  font-size: 0.84rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 10px;
}
.ntl .hero-kicker::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.ntl .hero-h1 {
  font-size: clamp(1.9rem, 3vw, 2.85rem); font-weight: 300;
  color: rgba(255,255,255,0.9); line-height: 1.2; margin-bottom: 1.75rem;
}
.ntl .hero-h1 strong { font-weight: 700; color: #fff; display: block; }
.ntl .hero-sub {
  font-size: 1.025rem; color: rgba(255,255,255,0.58);
  max-width: 750px; line-height: 1.8; margin-bottom: 2.75rem;
}
.ntl .hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.ntl .btn-primary {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--white); background: var(--accent); text-decoration: none;
  padding: 13px 26px; border-radius: 3px; text-transform: uppercase;
  transition: background 0.2s; display: inline-block;
}
.ntl .btn-primary:hover { background: var(--accent-hover); }
.ntl .btn-ghost {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.22);
  text-decoration: none; padding: 13px 26px; border-radius: 3px;
  text-transform: uppercase; transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.ntl .btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

/* ── HERO STAT PANEL ── */
.ntl .hero-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem 3rem 2.5rem 3.5rem;
  position: relative; z-index: 1;
}
.ntl .stat-block {
  border-left: 3px solid var(--accent);
  padding: 1.1rem 0 1.1rem 1.6rem;
  margin-bottom: 1.6rem;
}
.ntl .stat-block:last-child { margin-bottom: 0; }
.ntl .stat-num {
  font-size: 1.9rem; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: 0.4rem;
}
.ntl .stat-label {
  font-size: 0.825rem; color: rgba(255,255,255,0.48); line-height: 1.5;
}

/* ── CREDIBILITY STRIP ── */
.ntl .cred-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ntl .cred-strip-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 3rem;
  display: flex; align-items: stretch; justify-content: space-between;
}
.ntl .cred-item {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1.1rem 1.5rem 1.1rem 0;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ntl .cred-item:last-child { border-right: none; padding-right: 0; }
.ntl .cred-item:first-child { padding-left: 0; }
.ntl .cred-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.ntl .cred-label {
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}

/* ── IMAGE PLACEHOLDER ── */
.ntl .img-placeholder {
  width: 100%; aspect-ratio: 16/7;
  background: linear-gradient(135deg, rgba(11,46,79,0.06) 0%, rgba(31,78,121,0.1) 100%);
  border: 1.5px dashed rgba(59,130,196,0.35);
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; margin: 2rem 0;
}
.ntl .img-placeholder-icon {
  width: 36px; height: 36px; opacity: 0.3;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ntl .img-placeholder-text {
  font-size: 0.75rem; color: rgba(59,130,196,0.55);
  font-weight: 500; letter-spacing: 0.06em; text-align: center; padding: 0 1rem;
}
/* Tall variant for card images */
.ntl .img-placeholder-card {
  aspect-ratio: 16/9;
  margin: 0;
  border-radius: 2px 2px 0 0;
}

/* ── REAL IMAGES (drop-in replacements for .img-placeholder) ── */
.ntl .ntl-figure {
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
  margin: 2rem 0;
  background: var(--gray-bg);
}
.ntl .ntl-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Card variant: matches .img-placeholder-card geometry inside .exp-card */
.ntl .ntl-figure-card {
  aspect-ratio: 16/9;
  margin: 0;
  border-radius: 2px 2px 0 0;
}

/* ── SECTION WRAPPER ── */
.ntl section { position: relative; }
.ntl .section-inner {
  max-width: 1140px; margin: 0 auto; padding: 6rem 3rem;
}
.ntl .section-kicker {
  font-size: 0.82rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.ntl .section-kicker::before {
  content: ''; display: inline-block; width: 20px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.ntl .section-h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem); font-weight: 300;
  color: var(--navy); line-height: 1.25; margin-bottom: 1.1rem;
}
.ntl .section-h2 strong { font-weight: 700; color: var(--navy); }
.ntl .section-lead {
  font-size: 1.025rem; color: var(--text-muted); max-width: 660px;
  line-height: 1.8; margin-bottom: 3rem;
}
.ntl hr.rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── LEGACY SECTION ── */
.ntl .legacy-section { background: var(--navy); }
.ntl .legacy-section .section-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center; padding: 5.5rem 3rem;
}
.ntl .legacy-text .section-kicker { color: var(--accent); }
.ntl .legacy-text .section-h2 { color: #fff; }
.ntl .legacy-text .section-h2 strong { color: #fff; }
.ntl .legacy-text .section-lead { color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.ntl .legacy-text .section-lead:last-child { margin-bottom: 0; }

/* Legacy image frame */
.ntl .legacy-img-frame {
  display: flex; flex-direction: column; gap: 0;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.ntl .legacy-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(160deg, rgba(31,78,121,0.55) 0%, rgba(11,46,79,0.85) 100%);
  border: 1.5px dashed rgba(59,130,196,0.4);
  border-bottom: none;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem; padding: 2rem;
  position: relative;
}
.ntl .legacy-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255,255,255,0.015) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255,255,255,0.015) 30px);
  pointer-events: none;
}
.ntl .legacy-img-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,196,0.25);
  border: 1px solid rgba(59,130,196,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.ntl .legacy-img-icon::after {
  content: '';
  width: 20px; height: 20px;
  background: rgba(59,130,196,0.8);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ntl .legacy-img-label {
  font-size: 0.72rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; line-height: 1.5; position: relative; z-index: 1;
}
.ntl .legacy-img-sublabel {
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  text-align: center; line-height: 1.5; position: relative; z-index: 1;
  max-width: 280px;
}
.ntl .legacy-img-caption {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(59,130,196,0.4);
  border-top: none;
  padding: 1rem 1.4rem;
}
.ntl .legacy-img-caption p {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  line-height: 1.6; font-style: italic;
}
.ntl .legacy-cred-strip {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; border: 1.5px dashed rgba(59,130,196,0.4);
  border-top: none; overflow: hidden;
}
.ntl .legacy-cred-item {
  flex: 1; padding: 0.7rem 1rem;
  border-right: 1px solid rgba(59,130,196,0.2);
  text-align: center;
}
.ntl .legacy-cred-item:last-child { border-right: none; }
.ntl .legacy-cred-item span {
  font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}

/* ── CAPABILITY GRID ── */
.ntl .cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 1rem;
}
.ntl .cap-card {
  background: var(--white);
  border: 1px solid var(--border); border-top: 3px solid var(--accent);
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 2px 8px rgba(11,46,79,0.06);
  border-radius: 2px; transition: box-shadow 0.2s, transform 0.2s;
}
.ntl .cap-card:hover { box-shadow: 0 6px 20px rgba(11,46,79,0.1); transform: translateY(-2px); }
.ntl .cap-num {
  font-size: 0.68rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.15em; margin-bottom: 0.85rem;
}
.ntl .cap-title { font-size: 0.975rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.ntl .cap-body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── EXPERIENCE CARDS ── */
.ntl .exp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 1rem;
}
.ntl .exp-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,46,79,0.07);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ntl .exp-card:hover { box-shadow: 0 8px 28px rgba(11,46,79,0.12); transform: translateY(-2px); }
.ntl .exp-card-body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.ntl .exp-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.ntl .exp-card-copy { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.ntl .exp-card-ref {
  font-size: 0.75rem; font-weight: 600; color: var(--accent);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  margin-top: 0.5rem;
}
.ntl .exp-card-ref::after { content: '\2192'; }
.ntl .exp-card-ref:hover { color: var(--accent-hover); }
.ntl .exp-tag {
  display: inline-block; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: rgba(59,130,196,0.08);
  border: 1px solid rgba(59,130,196,0.25);
  padding: 3px 8px; border-radius: 2px; margin-bottom: 0.25rem;
}

/* ── QA PROGRAM ── */
.ntl .qa-section { background: var(--gray-bg); }
.ntl .qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ntl .qa-list { list-style: none; margin-top: 1.5rem; }
.ntl .qa-list li {
  display: flex; gap: 1rem; padding: 1.05rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
}
.ntl .qa-list li:first-child { border-top: 1px solid var(--border); }
.ntl .qa-list .check { font-size: 0.8rem; color: var(--accent); font-weight: 700; padding-top: 1px; flex-shrink: 0; }
.ntl .qa-panel {
  background: var(--navy); padding: 2.5rem;
  border-radius: 2px; box-shadow: 0 4px 20px rgba(11,46,79,0.15);
}
.ntl .qa-panel-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 1.5rem;
}
.ntl .qa-panel p {
  font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: 1.25rem;
}
.ntl .qa-panel p:last-child { margin-bottom: 0; }
.ntl .qa-panel strong { color: rgba(255,255,255,0.95); font-weight: 600; }

.ntl .qa-status-callout {
  background: var(--gray-bg); border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.ntl .qa-status-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 0.6rem;
}
.ntl .qa-status-callout p {
  font-size: 0.88rem; color: var(--text); line-height: 1.75; margin: 0;
}

/* ── PRODUCTS GRID ── */
.ntl .products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1rem;
}
.ntl .product-item {
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--blue-mid); padding: 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  border-radius: 2px; box-shadow: 0 2px 8px rgba(11,46,79,0.05);
  transition: box-shadow 0.2s;
}
.ntl .product-item:hover { box-shadow: 0 4px 16px rgba(11,46,79,0.1); }
.ntl .product-name { font-size: 0.975rem; font-weight: 700; color: var(--navy); }
.ntl .product-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.ntl .product-tag {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); text-transform: uppercase; margin-top: 0.25rem;
  display: flex; align-items: center; gap: 5px;
}
.ntl .product-tag::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── HONEST CALLOUT ── */
.ntl .honest {
  border-left: 3px solid var(--blue-mid); padding: 2.25rem 2.5rem;
  background: var(--gray-bg); margin: 2.5rem 0 0; border-radius: 0 2px 2px 0;
}
.ntl .honest-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--blue-mid); text-transform: uppercase; margin-bottom: 1rem;
}
.ntl .honest p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.ntl .honest p:last-child { margin-bottom: 0; }
.ntl .honest strong { color: var(--navy); font-weight: 600; }

/* ── AUDIENCE SECTION ── */
.ntl .audience-section { background: var(--navy); }
.ntl .audience-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 2.5rem; border-radius: 2px; overflow: hidden;
}
.ntl .audience-item {
  padding: 2rem 1.4rem; background: rgba(255,255,255,0.025);
  text-align: center; transition: background 0.2s;
}
.ntl .audience-item:hover { background: rgba(255,255,255,0.065); }
.ntl .audience-title { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0.6rem; }
.ntl .audience-sub { font-size: 0.92rem; color: rgba(255,255,255,0.42); line-height: 1.55; }
.ntl .audience-section .section-h2 { color: #fff; }
.ntl .audience-section .section-h2 strong { color: #fff; }
.ntl .audience-section .section-lead { color: rgba(255,255,255,0.48); }

/* ── RESOURCES ── */
.ntl .resources-section { background: var(--gray-bg); }
.ntl .resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
.ntl .resource-card {
  background: var(--white); border: 1px solid var(--border); padding: 1.75rem 2rem;
  border-radius: 2px; box-shadow: 0 2px 8px rgba(11,46,79,0.05);
  display: flex; flex-direction: column; gap: 0.5rem;
  text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s;
}
.ntl .resource-card:hover { box-shadow: 0 6px 20px rgba(11,46,79,0.1); transform: translateY(-2px); }
.ntl .resource-type { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); text-transform: uppercase; }
.ntl .resource-title { font-size: 0.975rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.ntl .resource-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.ntl .resource-link {
  font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-top: 0.25rem;
  display: flex; align-items: center; gap: 5px;
}
.ntl .resource-link::after { content: '\2192'; }

/* ── FAQ ACCORDION ── */
.ntl .faq-section { background: var(--white); }
.ntl .faq-intro {
  font-size: 1.025rem; color: var(--text-muted); max-width: 660px;
  line-height: 1.8; margin-bottom: 2.75rem;
}
.ntl .faq-list { list-style: none; border-top: 1px solid var(--border); }
.ntl .faq-item { border-bottom: 1px solid var(--border); }
.ntl .faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  text-align: left;
}
.ntl .faq-question-text {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  line-height: 1.4; flex: 1;
}
.ntl .faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.ntl .faq-icon::before,
.ntl .faq-icon::after {
  content: ''; position: absolute;
  background: var(--accent); border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ntl .faq-icon::before { width: 10px; height: 1.5px; }
.ntl .faq-icon::after  { width: 1.5px; height: 10px; }
.ntl .faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.ntl .faq-item.open .faq-icon::before,
.ntl .faq-item.open .faq-icon::after { background: #fff; }
.ntl .faq-item.open .faq-icon::after  { transform: rotate(90deg); opacity: 0; }
.ntl .faq-item.open .faq-question-text { color: var(--accent); }
.ntl .faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.32s ease, padding 0.25s ease;
  padding: 0 2rem 0 0;
}
.ntl .faq-item.open .faq-answer { max-height: 600px; padding-bottom: 1.4rem; }
.ntl .faq-answer p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.8; margin: 0;
}
.ntl .faq-answer p + p { margin-top: 0.75rem; }
/* Two-column FAQ layout at wide viewports */
.ntl .faq-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 3.5rem;
  align-items: start;
}
.ntl .faq-columns .faq-list { border-top: 1px solid var(--border); }
@media (max-width: 860px) {
  .ntl .faq-columns { grid-template-columns: 1fr; }
  .ntl .faq-columns .faq-list + .faq-list { border-top: none; }
}

/* ── CTA SECTION ── */
.ntl .cta-section { background: var(--blue-mid); }
.ntl .cta-inner {
  max-width: 1140px; margin: 0 auto; padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.ntl .cta-h2 { font-size: clamp(1.4rem, 2vw, 1.95rem); font-weight: 300; color: rgba(255,255,255,0.95); line-height: 1.3; }
.ntl .cta-h2 strong { font-weight: 700; color: #fff; display: block; }
.ntl .cta-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; }
.ntl .btn-white {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--navy); background: #fff; text-decoration: none;
  padding: 16px 34px; border-radius: 3px; text-transform: uppercase;
  white-space: nowrap; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ntl .btn-white:hover { opacity: 0.93; transform: translateY(-1px); }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .ntl .cred-strip-inner { flex-wrap: wrap; padding: 0 2rem; }
  .ntl .cred-item { padding: 1rem 1rem 1rem 0; border-right: none; flex: 0 0 33%; }
  .ntl .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .ntl .hero { grid-template-columns: 1fr; min-height: auto; }
  .ntl .hero-right { border-top: 1px solid var(--rule-light); padding: 3.5rem 2.5rem; }
  .ntl .hero-left { padding: 4.5rem 2.5rem 3rem; }
  .ntl .legacy-section .section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ntl .legacy-cred-strip { flex-wrap: wrap; }
  .ntl .legacy-cred-item { flex: 0 0 50%; border-bottom: 1px solid rgba(59,130,196,0.2); }
  .ntl .legacy-cred-item:nth-child(2n) { border-right: none; }
  .ntl .legacy-cred-item:nth-last-child(-n+2) { border-bottom: none; }
  .ntl .cap-grid { grid-template-columns: 1fr 1fr; }
  .ntl .qa-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ntl .exp-grid { grid-template-columns: 1fr; }
  .ntl .products-grid { grid-template-columns: 1fr; }
  .ntl .resources-grid { grid-template-columns: 1fr 1fr; }
  .ntl .cta-inner { grid-template-columns: 1fr; }
  .ntl .section-inner { padding: 4.5rem 2rem; }
  .ntl .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ntl .cap-grid { grid-template-columns: 1fr; }
  .ntl .audience-grid { grid-template-columns: 1fr 1fr; }
  .ntl .resources-grid { grid-template-columns: 1fr; }
  .ntl .cred-item { flex: 0 0 50%; }
  .ntl .hero-left { padding: 3.5rem 1.5rem 2.5rem; }
  .ntl .hero-right { padding: 2.5rem 1.5rem; }
  .ntl .section-inner { padding: 3.5rem 1.5rem; }
}

/* ── ANIMATIONS ── */
@keyframes ntl-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ntl .hero-kicker  { animation: ntl-fadeUp 0.5s ease both; }
.ntl .hero-h1      { animation: ntl-fadeUp 0.5s 0.1s ease both; }
.ntl .hero-sub     { animation: ntl-fadeUp 0.5s 0.2s ease both; }
.ntl .hero-actions { animation: ntl-fadeUp 0.5s 0.3s ease both; }
.ntl .stat-block:nth-child(1) { animation: ntl-fadeUp 0.5s 0.1s ease both; }
.ntl .stat-block:nth-child(2) { animation: ntl-fadeUp 0.5s 0.2s ease both; }
.ntl .stat-block:nth-child(3) { animation: ntl-fadeUp 0.5s 0.3s ease both; }
.ntl .stat-block:nth-child(4) { animation: ntl-fadeUp 0.5s 0.4s ease both; }
