/* ============================================================
   TNA LANDING PAGE — tna-style.css
   Load via child theme functions.php
   Scoped entirely under #tna-lp and #tna-wrap
   ============================================================ */

/* ── RESET & ROOT ── */
#tna-lp*,
#tna-lp *::before,
#tna-lp *::after {
  box-sizing: border-box
}

#tna-lp {
  --navy: #0B2447;
  --blue: #1B5BEB;
  --blue-l: #EFF4FF;
  --green: #1D9E75;
  --green-d: #0F6E56;
  --green-l: #E1F5EE;
  --red: #DC3545;
  --orange: #D97706;
  --text: #0F172A;
  --text2: #475569;
  --text3: #94A3B8;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --sh: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .05);
  --sh-lg: 0 8px 48px rgba(0, 0, 0, .10);
  --r: 10px;
  --r-lg: 16px;
  --fh: 'Sora', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  font-family: var(--fb);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden
}

/* ── ANIMATIONS ── */
@keyframes lp-up {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes lp-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes lp-ring {
  0% {
    transform: scale(1);
    opacity: .4
  }

  100% {
    transform: scale(1.45);
    opacity: 0
  }
}

@keyframes tna-spin {
  to {
    transform: translateY(-50%) rotate(360deg)
  }
}

.lp-rev {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1)
}

.lp-rev.lp-vis {
  opacity: 1;
  transform: translateY(0)
}

.lp-d1 {
  transition-delay: .08s
}

.lp-d2 {
  transition-delay: .16s
}

.lp-d3 {
  transition-delay: .24s
}

.lp-d4 {
  transition-delay: .32s
}

.lp-d5 {
  transition-delay: .40s
}

.lp-d6 {
  transition-delay: .48s
}

/* ── LAYOUT ── */
#tna-lp .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px
}

#tna-lp .sec {
  padding: 64px 0
}

#tna-lp .sec-sm {
  padding: 56px 0
}

#tna-lp .sec-dark {
  background: var(--navy);
  color: #fff
}

#tna-lp .sec-tint {
  background: var(--bg)
}

#tna-lp .sec-white {
  background: var(--white)
}

/* ── LABEL ── */
#tna-lp .lbl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px
}

#tna-lp .lbl::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px
}

#tna-lp .lbl-w {
  color: rgba(255, 255, 255, .75)
}

#tna-lp .lbl-w::before {
  background: rgba(255, 255, 255, .5)
}

/* ── TITLES ── */
#tna-lp .h2 {
  font-family: var(--fh);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 16px
}

#tna-lp .h2-w {
  color: #fff
}

#tna-lp .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  max-width: 640px;
  margin: 0 0 48px
}

#tna-lp .lead-w {
  color: rgba(255, 255, 255, .75)
}

#tna-lp .sec-hd {
  margin-bottom: 52px
}

/* ── GRID ── */
#tna-lp .g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

#tna-lp .g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

/* ── BUTTONS ── */
#tna-lp .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
  position: relative;
  white-space: nowrap
}

#tna-lp .btn-g {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(29, 158, 117, .30)
}

#tna-lp .btn-g:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 158, 117, .38)
}

#tna-lp .btn-w {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12)
}

#tna-lp .btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .18)
}

#tna-lp .btn-lg {
  font-size: 16px;
  padding: 17px 36px;
  border-radius: 11px
}

#tna-lp .btn-g.pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 2px solid var(--green);
  animation: lp-ring 1.8s ease-out infinite
}

/* ── CARDS ── */
#tna-lp .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s
}

#tna-lp .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg)
}

/* ── CALLOUT ── */
#tna-lp .callout {
  border-left: 4px solid var(--green);
  background: var(--green-l);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 32px 0
}

/* ── CHECK LIST ── */
#tna-lp .chklist {
  list-style: none;
  padding: 0;
  margin: 0
}

#tna-lp .chklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border)
}

#tna-lp .chklist li:last-child {
  border-bottom: none
}

#tna-lp .chklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0
}

/* ── HERO ── */
#tna-lp .hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px
}

/* hero::before removed — animations handled by .hero-anim-bg div */
#tna-lp .hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center
}

#tna-lp .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px
}

#tna-lp .hero-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%
}

#tna-lp .hero h1 {
  font-family: var(--fh);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px
}

#tna-lp .hero h1 .acc {
  color: var(--green)
}

#tna-lp .hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 36px;
  max-width: 520px
}

#tna-lp .hero-note {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  margin-top: 14px;
  font-style: italic
}

#tna-lp .hero-vis {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 28px;
  animation: lp-float 4.5s ease-in-out infinite
}

#tna-lp .vis-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px
}

#tna-lp .vbar {
  margin-bottom: 14px
}

#tna-lp .vbar-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, .70);
  margin-bottom: 6px
}

#tna-lp .vbar-track {
  height: 7px;
  background: rgba(255, 255, 255, .10);
  border-radius: 4px;
  overflow: hidden
}

#tna-lp .vbar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(.16, 1, .3, 1)
}

#tna-lp .vbar-fill.g {
  background: var(--green)
}

#tna-lp .vbar-fill.o {
  background: var(--orange)
}

#tna-lp .vbar-fill.r {
  background: var(--red)
}

#tna-lp .vbar-fill.b {
  background: var(--blue)
}

#tna-lp .vis-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px
}

#tna-lp .vs-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .60)
}

#tna-lp .vs-val {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  color: var(--green)
}
/* ── STATS ── */
#tna-lp .stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 44px 0
}

#tna-lp .stats-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

#tna-lp .stat {
  text-align: center;
  padding: 20px 32px;
  position: relative
}

#tna-lp .stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border)
}

#tna-lp .tna-stat-n {
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 8px
}

#tna-lp .stat-d {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text2);
  max-width: 240px;
  margin: 0 auto
}

/* ── DEFINITION ── */
#tna-lp .def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

#tna-lp .def-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text2);
  margin: 0 0 18px
}

#tna-lp .def-side {
  position: sticky;
  top: 100px
}

#tna-lp .sum-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff
}

#tna-lp .sum-card h3 {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 18px
}

#tna-lp .sum-card p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  font-style: italic;
  margin: 0
}

#tna-lp .levels {
  margin-top: 28px;
  display: grid;
  gap: 10px
}

#tna-lp .level {
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px
}

#tna-lp .lv-ic {
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0
}

#tna-lp .lv-nm {
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

#tna-lp .lv-ds {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px
}

/* ── PAIN CARDS ── */
#tna-lp .pain-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

#tna-lp .pain-c {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  border-top: 3px solid var(--red);
  transition: transform .2s, box-shadow .2s
}

#tna-lp .pain-c:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg)
}

#tna-lp .pain-ic {
  font-size: 26px;
  margin-bottom: 12px
}

#tna-lp .pain-c h3 {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px
}

#tna-lp .pain-c p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text2);
  margin: 0
}

/* ── HOW TOOL WORKS ── */
#tna-lp .how-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

#tna-lp .steps-ol {
  list-style: none;
  padding: 0;
  margin: 0
}

#tna-lp .step-li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border)
}

#tna-lp .step-li:last-child {
  border-bottom: none
}

#tna-lp .sn {
  width: 36px;
  height: 36px;
  background: var(--green-l);
  color: var(--green-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0
}

#tna-lp .step-li p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text2);
  margin: 4px 0 0
}

#tna-lp .feat-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

#tna-lp .feat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s, transform .2s
}

#tna-lp .feat:hover {
  border-color: var(--green);
  transform: translateY(-2px)
}

#tna-lp .feat-ic {
  font-size: 22px;
  flex-shrink: 0
}

#tna-lp .feat h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 5px
}

#tna-lp .feat p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text2);
  margin: 0
}

#tna-lp .time-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-l);
  color: var(--green-d);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  margin-top: 24px
}

/* ── TOOL SECTION WRAPPER ── */
#tna-lp .tool-sec {
  padding: 48px 0 64px;
  background: var(--bg)
}

#tna-lp .tool-hd {
  text-align: center;
  margin-bottom: 44px
}

#tna-lp .tool-hd h2 {
  font-family: var(--fh);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px
}

#tna-lp .tool-hd p {
  font-size: 16px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto
}

/* ── TNA TOOL EMBED ── */
#tna-wrap {
  --ind: #1D9E75;
  --ind-l: #E1F5EE;
  --ind-m: #0F6E56;
  --ind-d: #04342C;
  --crit: #DC3545;
  --crit-bg: #FFF0F1;
  --high: #D97706;
  --high-bg: #FEF3E0;
  --med: #2D6BE4;
  --med-bg: #EDF3FF;
  --low: #6B7280;
  --low-bg: #F3F4F6;
  --ok: #1D9E75;
  --ok-bg: #E1F5EE;
  --tfont: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --tbg: #F5F4F0;
  --tsurf: #fff;
  --tb: rgba(0, 0, 0, .08);
  --tbm: rgba(0, 0, 0, .14);
  --tt: #1A1A18;
  --tt2: #56544F;
  --tt3: #9A9893;
  --tr: 12px;
  --tr-lg: 16px;
  --tsh: 0 1px 3px rgba(0, 0, 0, .05), 0 4px 14px rgba(0, 0, 0, .04);
  --tsh-lg: 0 8px 40px rgba(0, 0, 0, .13);
  font-family: var(--tfont);
  background: var(--tbg);
  border-radius: 20px;
  padding: 2.5rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 32px rgba(0, 0, 0, .09), 0 0 0 1px rgba(0, 0, 0, .06)
}

#tna-wrap #prog {
  display: none;
  align-items: center;
  background: var(--tsurf);
  border: 1px solid var(--tb);
  border-radius: var(--tr);
  padding: .7rem 1.25rem;
  margin-bottom: 1.75rem;
  gap: 0
}

#tna-wrap #prog.vis {
  display: flex
}

#tna-wrap .ps {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  font-size: 11px;
  color: var(--tt3);
  white-space: nowrap
}

#tna-wrap .ps.act {
  color: var(--tt);
  font-weight: 600
}

#tna-wrap .ps.done {
  color: var(--ok)
}

#tna-wrap .pn {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--tbg);
  border: 1.5px solid var(--tbm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0
}

#tna-wrap .ps.act .pn {
  background: var(--ind);
  border-color: var(--ind);
  color: #fff
}

#tna-wrap .ps.done .pn {
  background: var(--ok-bg);
  border-color: var(--ok);
  color: var(--ok)
}

#tna-wrap .pl {
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--tb);
  margin: 0 3px
}

#tna-wrap .scr {
  display: none
}

#tna-wrap .scr.on {
  display: block
}

#tna-wrap .w-hero {
  text-align: center;
  padding: 1.5rem 1rem 2rem
}

#tna-wrap .w-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ind-l);
  color: var(--ind-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.1rem
}

#tna-wrap .w-hero h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: .65rem
}

#tna-wrap .w-hero h2 span {
  color: var(--ind)
}

#tna-wrap .w-hero>p {
  font-size: 14px;
  color: var(--tt2);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.65
}

#tna-wrap .ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  max-width: 720px;
  margin: 0 auto
}

#tna-wrap .ic {
  background: var(--tsurf);
  border: 1.5px solid var(--tb);
  border-radius: var(--tr-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color .15s, transform .12s, box-shadow .15s;
  text-align: center;
  position: relative;
  user-select: none
}

#tna-wrap .ic:hover:not(.lk) {
  border-color: var(--ind);
  transform: translateY(-2px);
  box-shadow: var(--tsh)
}

#tna-wrap .ic.lk {
  opacity: .5;
  cursor: default
}

#tna-wrap .ic-em {
  font-size: 28px;
  display: block;
  margin-bottom: .5rem
}

#tna-wrap .ic-nm {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: .18rem
}

#tna-wrap .ic-sb {
  font-size: 10px;
  color: var(--tt3);
  line-height: 1.35
}

#tna-wrap .ic-bd {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase
}

#tna-wrap .ic-avail {
  background: var(--ok-bg);
  color: var(--ok)
}

#tna-wrap .ic-soon {
  background: var(--tbg);
  color: var(--tt3)
}

#tna-wrap .sc {
  background: var(--tsurf);
  border: 1px solid var(--tb);
  border-radius: var(--tr-lg);
  padding: 2rem;
  box-shadow: var(--tsh)
}

#tna-wrap .s-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ind-m);
  margin-bottom: .8rem
}

#tna-wrap .s-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ind)
}

#tna-wrap .sc h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .3rem
}

#tna-wrap .sc>p {
  font-size: 13px;
  color: var(--tt2);
  line-height: 1.55;
  margin-bottom: 1.6rem
}

#tna-wrap .fl {
  margin-bottom: 1.15rem
}

#tna-wrap .fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem
}

#tna-wrap .fl label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tt2);
  margin-bottom: .38rem
}

#tna-wrap .fl select,
#tna-wrap .fl input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--tbm);
  border-radius: 10px;
  font-size: 13px;
  font-family: var(--tfont);
  color: var(--tt);
  background: var(--tsurf);
  appearance: none;
  outline: none;
  transition: border-color .15s
}

#tna-wrap .fl select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6'%3E%3Cpath d='M0 0l4.5 6L9 0z' fill='%239A9893'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer
}

#tna-wrap .fl select:focus,
#tna-wrap .fl input:focus {
  border-color: var(--ind)
}

#tna-wrap .fn {
  font-size: 11px;
  color: var(--tt3);
  margin-top: .3rem;
  line-height: 1.4
}

#tna-wrap .fe {
  font-size: 11px;
  color: var(--crit);
  margin-top: .3rem;
  display: none
}

#tna-wrap .fe.sh {
  display: block
}

#tna-wrap .ep-g {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap
}

#tna-wrap .ep {
  padding: 8px 15px;
  border-radius: 20px;
  border: 1.5px solid var(--tbm);
  font-size: 12px;
  font-family: var(--tfont);
  cursor: pointer;
  background: transparent;
  color: var(--tt2);
  transition: all .14s
}

#tna-wrap .ep.sel {
  border-color: var(--ind);
  background: var(--ind-l);
  color: var(--ind-d);
  font-weight: 700
}

#tna-wrap .hz-g {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .45rem
}

#tna-wrap .hz {
  padding: 6px 11px;
  border-radius: 8px;
  border: 1.5px solid var(--tbm);
  font-size: 11px;
  font-family: var(--tfont);
  cursor: pointer;
  background: transparent;
  color: var(--tt2);
  transition: all .14s
}

#tna-wrap .hz.sel {
  border-color: var(--high);
  background: var(--high-bg);
  color: #7C3500;
  font-weight: 600
}

#tna-wrap .cg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem
}

#tna-wrap .ci {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: .6rem .7rem;
  border: 1.5px solid var(--tb);
  border-radius: 9px;
  cursor: pointer;
  transition: all .12s
}

#tna-wrap .ci:hover {
  border-color: var(--ind)
}

#tna-wrap .ci.sel {
  border-color: var(--ind);
  background: var(--ind-l)
}

#tna-wrap .ci input[type=checkbox] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ind);
  cursor: pointer
}

#tna-wrap .ci-n {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3
}

#tna-wrap .ci-m {
  font-size: 10px;
  color: var(--crit);
  display: block;
  margin-top: 1px
}

#tna-wrap .ci-s {
  font-size: 10px;
  color: var(--tt3);
  display: block;
  margin-top: 1px
}

#tna-wrap .di {
  margin-bottom: 1.4rem
}

#tna-wrap .di-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .38rem
}

#tna-wrap .di-nm {
  font-size: 13px;
  font-weight: 600
}

#tna-wrap .di-vl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ind);
  min-width: 52px;
  text-align: right
}

#tna-wrap input[type=range].ds {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--ind) var(--pct, 20%), #E5E3DC var(--pct, 20%))
}

#tna-wrap input[type=range].ds::-webkit-slider-thumb {
  appearance: none;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ind);
  border: 2.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  cursor: grab
}

#tna-wrap .sl-lbs {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--tt3);
  margin-top: 4px
}

#tna-wrap .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tb)
}

#tna-wrap .tbtn {
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--tfont);
  cursor: pointer;
  transition: all .14s;
  border: 1.5px solid
}

#tna-wrap .tbtn-p {
  background: var(--ind);
  border-color: var(--ind);
  color: #fff
}

#tna-wrap .tbtn-p:hover {
  opacity: .88;
  transform: translateY(-1px)
}

#tna-wrap .tbtn-s {
  background: transparent;
  border-color: var(--tbm);
  color: var(--tt2)
}

#tna-wrap .tbtn-s:hover {
  background: var(--tbg)
}

/* ── LEAD MODAL ── */
#lo {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, .55);
  backdrop-filter: blur(4px);
  z-index: 9100;
  align-items: center;
  justify-content: center
}

#lo.op {
  display: flex
}

.lm {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem;
  max-width: 460px;
  width: 92%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .13)
}

.lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #E1F5EE;
  color: #0F6E56;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em
}

.lm h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .35rem
}

.lm>p {
  font-size: 12px;
  color: #56544F;
  line-height: 1.55;
  margin-bottom: 1.35rem
}

.lr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: .6rem
}

.li {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid rgba(0, 0, 0, .14);
  border-radius: 9px;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: #1A1A18;
  background: #fff;
  outline: none;
  transition: border-color .14s
}

.li:focus {
  border-color: #1D9E75
}

.li::placeholder {
  color: #9A9893
}

.ls {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid rgba(0, 0, 0, .14);
  border-radius: 9px;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: #1A1A18;
  background: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  margin-bottom: .55rem
}

.l-err {
  font-size: 11px;
  color: #DC3545;
  margin: .2rem 0;
  display: none
}

.l-err.sh {
  display: block
}

.l-sub {
  width: 100%;
  padding: 13px;
  background: #1D9E75;
  border: none;
  border-radius: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  cursor: pointer;
  transition: opacity .14s;
  margin-top: .4rem
}

.l-sub:hover {
  opacity: .9
}

.l-priv {
  font-size: 10px;
  color: #9A9893;
  text-align: center;
  margin-top: .8rem;
  line-height: 1.45
}

/* ── RESULTS ── */
#tna-wrap .rh {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--tsurf);
  border: 1px solid var(--tb);
  border-radius: var(--tr-lg);
  padding: 1.6rem 1.85rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--tsh)
}

#tna-wrap .rm h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .2rem
}

#tna-wrap .rm p {
  font-size: 12px;
  color: var(--tt2);
  margin-bottom: .5rem
}

#tna-wrap .rbgs {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap
}

#tna-wrap .rbg {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px
}

#tna-wrap .rbg-c {
  background: var(--crit-bg);
  color: var(--crit)
}

#tna-wrap .rbg-h {
  background: var(--high-bg);
  color: var(--high)
}

#tna-wrap .rbg-m {
  background: var(--med-bg);
  color: var(--med)
}

#tna-wrap .rbg-l {
  background: var(--low-bg);
  color: var(--low)
}

#tna-wrap .sr-wrap {
  text-align: center;
  flex-shrink: 0
}

#tna-wrap .sr {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto .35rem
}

#tna-wrap .sr svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg)
}

#tna-wrap .sr-in {
  position: relative;
  z-index: 1;
  text-align: center
}

#tna-wrap .sr-n {
  font-size: 25px;
  font-weight: 700;
  line-height: 1
}

#tna-wrap .sr-p {
  font-size: 10px;
  color: var(--tt3)
}

#tna-wrap .sr-lbl {
  font-size: 10px;
  color: var(--tt2);
  font-weight: 600
}

#tna-wrap .rc {
  background: var(--tsurf);
  border: 1px solid var(--tb);
  border-radius: var(--tr-lg);
  padding: 1.4rem 1.65rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--tsh)
}

#tna-wrap .rst {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tt3);
  margin-bottom: .8rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--tb)
}

#tna-wrap .pi {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--tb)
}

#tna-wrap .pi:last-child {
  border-bottom: none;
  padding-bottom: 0
}

#tna-wrap .pk {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px
}

#tna-wrap .pk-c {
  background: var(--crit)
}

#tna-wrap .pk-h {
  background: var(--high)
}

#tna-wrap .pk-m {
  background: var(--med)
}

#tna-wrap .pk-l {
  background: var(--low)
}

#tna-wrap .pb {
  flex: 1
}

#tna-wrap .pn2 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: .18rem
}

#tna-wrap .pm {
  font-size: 11px;
  color: var(--tt3);
  line-height: 1.35
}

#tna-wrap .pt {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 7px;
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap
}

#tna-wrap .gr {
  margin-bottom: 1rem
}

#tna-wrap .gt {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: .3rem
}

#tna-wrap .gd {
  font-weight: 700
}

#tna-wrap .gv {
  color: var(--tt2)
}

#tna-wrap .gtr {
  height: 9px;
  background: #ECEAE4;
  border-radius: 5px;
  position: relative;
  overflow: hidden
}

#tna-wrap .gr-req {
  position: absolute;
  height: 100%;
  background: #DEDAD3;
  border-radius: 5px
}

#tna-wrap .gr-cur {
  position: absolute;
  height: 100%;
  border-radius: 5px;
  transition: width .5s ease
}

#tna-wrap .cr2 {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .55rem .7rem;
  border-radius: 8px;
  font-size: 11px;
  margin-bottom: .32rem
}

#tna-wrap .cr2-ok {
  background: var(--ok-bg)
}

#tna-wrap .cr2-fail {
  background: var(--crit-bg)
}

#tna-wrap .cr2-ic {
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px
}

#tna-wrap .cr2-n {
  font-weight: 600;
  display: block
}

#tna-wrap .cr2-s {
  font-size: 10px;
  display: block;
  margin-top: 1px
}

#tna-wrap .dl-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem
}

#tna-wrap .dl-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.1rem;
  border-radius: var(--tr);
  border: 1.5px solid;
  cursor: pointer;
  text-align: left;
  font-family: var(--tfont);
  transition: all .15s;
  position: relative;
  overflow: hidden
}

#tna-wrap .dl-r {
  background: var(--ind);
  border-color: var(--ind);
  color: #fff
}

#tna-wrap .dl-r:hover {
  opacity: .9;
  transform: translateY(-1px)
}

#tna-wrap .dl-q {
  background: transparent;
  border-color: var(--ind);
  color: var(--ind)
}

#tna-wrap .dl-q:hover {
  background: var(--ind-l)
}

#tna-wrap .dl-ic {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0
}

#tna-wrap .dl-r .dl-ic {
  background: rgba(255, 255, 255, .2)
}

#tna-wrap .dl-q .dl-ic {
  background: var(--ind-l)
}

#tna-wrap .dl-tm {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: .1rem
}

#tna-wrap .dl-ts {
  font-size: 10px;
  opacity: .8;
  display: block
}

#tna-wrap .dl-spin {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: tna-spin .7s linear infinite
}

#tna-wrap .dl-rs {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 11px;
  color: var(--tt3);
  cursor: pointer;
  text-decoration: underline
}

#tna-wrap .dl-rs:hover {
  color: var(--tt2)
}

#tna-wrap .inote {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  background: var(--med-bg);
  border-radius: 8px;
  padding: .7rem;
  font-size: 11px;
  color: var(--med);
  line-height: 1.45;
  margin-top: .7rem
}

/* ── INDUSTRY TABS ── */
#tna-lp .ind-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px
}

#tna-lp .ind-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .15s
}

#tna-lp .ind-tab:hover,
#tna-lp .ind-tab.active {
  border-color: var(--green);
  background: var(--green-l);
  color: var(--green-d)
}

#tna-lp .ind-pnl {
  display: none
}

#tna-lp .ind-pnl.active {
  display: block
}

#tna-lp .ind-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh)
}

#tna-lp .ind-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border)
}

#tna-lp .ind-ic {
  font-size: 36px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-l);
  border-radius: 14px;
  flex-shrink: 0
}

#tna-lp .ind-hd h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px
}

#tna-lp .ind-hd p {
  font-size: 14px;
  color: var(--text2);
  margin: 0;
  line-height: 1.6
}

#tna-lp .ind-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
  margin: 0 0 16px
}

#tna-lp .ind-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 28px
}

#tna-lp .ind-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 10px 14px;
  background: var(--bg);
  border-bottom: 2px solid var(--border)
}

#tna-lp .ind-table td {
  padding: 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
  color: var(--text2)
}

#tna-lp .ind-table td:first-child {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  width: 180px
}

#tna-lp .ind-table tr:last-child td {
  border-bottom: none
}

#tna-lp .ind-table tr:hover td {
  background: var(--bg)
}

/* ── LMS SECTION ── */
#tna-lp .lms-g {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center
}

#tna-lp .lms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px
}

#tna-lp .lms-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text2)
}

#tna-lp .lms-list li:last-child {
  border-bottom: none
}

#tna-lp .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px
}

#tna-lp .price-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px
}

#tna-lp .price-box h3 {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px
}

#tna-lp .price-box p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
  font-style: italic;
  margin: 0
}

#tna-lp .price-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-l);
  color: var(--green-d);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 16px
}

/* ── QUESTIONNAIRE ── */
#tna-lp .q-lvls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

#tna-lp .q-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh)
}

#tna-lp .q-card h3 {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green)
}

#tna-lp .q-card ul {
  list-style: none;
  padding: 0;
  margin: 0
}

#tna-lp .q-card li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px
}

#tna-lp .q-card li:last-child {
  border-bottom: none
}

#tna-lp .q-card li::before {
  content: '→';
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700
}

#tna-lp .q-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  background: var(--green-l);
  color: var(--green-d)
}

#tna-lp .q-tw {
  text-align: center;
  margin-top: 36px
}

/* ── HOW-TO STEPS ── */
#tna-lp .howto-steps {
  display: grid;
  gap: 0
}

#tna-lp .hts {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 36px
}

#tna-lp .hts:last-child {
  padding-bottom: 0
}

#tna-lp .ht-left {
  display: flex;
  flex-direction: column;
  align-items: center
}

#tna-lp .ht-n {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(29, 158, 117, .30)
}

#tna-lp .ht-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
  min-height: 30px
}

#tna-lp .hts:last-child .ht-line {
  display: none
}

#tna-lp .ht-body {
  padding-top: 10px;
  padding-bottom: 20px
}

#tna-lp .ht-body h3 {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px
}

#tna-lp .ht-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text2);
  margin: 0
}

#tna-lp .auto-note {
  background: var(--blue-l);
  border: 1px solid rgba(27, 91, 235, .15);
  border-radius: var(--r);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px
}

#tna-lp .auto-note span {
  font-weight: 400;
  color: var(--text2)
}

/* ── IDENTIFY CARDS ── */
#tna-lp .id-g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

#tna-lp .id-c {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all .2s
}

#tna-lp .id-c:hover {
  border-color: var(--green);
  box-shadow: var(--sh)
}

#tna-lp .id-n {
  width: 32px;
  height: 32px;
  background: var(--green-l);
  color: var(--green-d);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0
}

#tna-lp .id-c h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px
}

#tna-lp .id-c p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text2);
  margin: 0
}

/* ── WHY LMSPEDIA ── */
#tna-lp .why-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

#tna-lp .why-c {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: background .2s, transform .2s
}

#tna-lp .why-c:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px)
}

#tna-lp .why-ic {
  font-size: 26px;
  margin-bottom: 14px
}

#tna-lp .why-c h3 {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px
}

#tna-lp .why-c p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
  margin: 0
}

/* ── TESTIMONIALS ── */
#tna-lp .test-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

#tna-lp .test-c {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh);
  position: relative
}

#tna-lp .test-c::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--fh);
  font-size: 72px;
  color: var(--green-l);
  line-height: 1;
  font-weight: 800
}

#tna-lp .test-txt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
  font-style: italic;
  margin: 0 0 24px;
  position: relative
}

#tna-lp .test-auth {
  font-size: 13px;
  font-weight: 700;
  color: var(--text)
}

#tna-lp .test-role {
  font-size: 12px;
  color: var(--text3);
  margin-top: 3px
}

/* ── CTA SECTION ── */
#tna-lp .cta-sec {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 60%, #27C98A 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

#tna-lp .cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center;
  pointer-events: none
}

#tna-lp .cta-title {
  font-family: var(--fh);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 16px
}

#tna-lp .cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65
}

#tna-lp .cta-chks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

#tna-lp .cta-chk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .90)
}

#tna-lp .cta-chk::before {
  content: '✅';
  font-size: 15px
}

#tna-lp .cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  margin-top: 20px;
  font-style: italic
}

#tna-lp .cta-note a {
  color: rgba(255, 255, 255, .85);
  text-decoration: underline
}

/* ── FAQ ── */
#tna-lp .faq-wrap {
  max-width: 820px;
  margin: 0 auto
}

#tna-lp .faq-it {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s
}

#tna-lp .faq-it.open {
  box-shadow: var(--sh)
}

#tna-lp .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: color .15s;
  white-space: normal;
  line-height: 1.4;
}

#tna-lp .faq-q:hover {
  color: var(--green)
}

#tna-lp .faq-ic {
  width: 24px;
  height: 24px;
  background: var(--green-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .25s, background .15s;
  font-weight: 400;
  line-height: 1
}

#tna-lp .faq-it.open .faq-ic {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff
}

#tna-lp .faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text2)
}

#tna-lp .faq-it.open .faq-a {
  display: block
}

/* ── RESPONSIVE: TABLET ── */
@media(max-width:960px) {

  #tna-lp .hero-grid,
  #tna-lp .def-grid,
  #tna-lp .how-g,
  #tna-lp .lms-g {
    grid-template-columns: 1fr;
    gap: 40px
  }

  #tna-lp .hero-vis {
    display: none
  }

  #tna-lp .stats-g {
    grid-template-columns: 1fr
  }

  #tna-lp .stat::after {
    display: none
  }

  #tna-lp .pain-g {
    grid-template-columns: 1fr 1fr
  }

  #tna-lp .q-lvls {
    grid-template-columns: 1fr
  }

  #tna-lp .why-g {
    grid-template-columns: 1fr 1fr
  }

  #tna-lp .test-g {
    grid-template-columns: 1fr
  }

  #tna-lp .id-g {
    grid-template-columns: 1fr
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media(max-width:640px) {
  #tna-lp .sec {
    padding: 56px 0
  }

  #tna-lp .hero {
    padding: 64px 0 52px
  }

  #tna-lp .pain-g,
  #tna-lp .why-g,
  #tna-lp .feat-g,
  #tna-lp .g2,
  #tna-lp .g3 {
    grid-template-columns: 1fr
  }

  /* Fix: remove gap between how-to step blocks when grid stacks on mobile */
  #tna-lp .g2>div>.howto-steps {
    margin-top: 0 !important
  }

  /* Fix: CTA button wraps cleanly on small screens, not cut off */
  #tna-lp .cta-sec .btn {
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word
  }

  #tna-lp .cta-chks {
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  #tna-wrap .ind-grid,
  #tna-wrap .fr,
  #tna-wrap .cg,
  #tna-wrap .dl-g,
  .lr {
    grid-template-columns: 1fr
  }

  #tna-wrap .rh {
    flex-direction: column
  }

  #tna-wrap {
    padding: 1.5rem 1rem 2rem;
    border-radius: 14px
  }

  #tna-lp .hts {
    grid-template-columns: 56px 1fr;
    gap: 16px
  }
  
  #tna-lp .faq-q {
    padding: 16px;
    font-size: 14px;
  }
  
  #tna-wrap .ps span {
    display: none;
  }
  
  #tna-wrap #prog {
    padding: .7rem;
  }
  
  #tna-wrap .sl-lbs span {
    font-size: 8px;
    letter-spacing: -0.2px;
  }
}

/* ══════════════════════════════════════════════════════
   CLOSE THE LOOP — Results section resource cards
   ══════════════════════════════════════════════════════ */

/* Section intro */
#tna-wrap .ctl-intro {
  font-size: 15px;
  font-weight: 700;
  color: var(--tt);
  margin-bottom: .3rem
}

#tna-wrap .ctl-intro-sub {
  font-size: 12px;
  color: var(--tt2);
  line-height: 1.55;
  margin-bottom: 1rem
}

#tna-wrap .ctl-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tt3);
  margin-bottom: .6rem
}

/* Blog cards grid */
#tna-wrap .ctl-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  margin-bottom: .5rem
}

#tna-wrap .ctl-blog-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .9rem 1rem;
  background: var(--tbg);
  border: 1.5px solid var(--tb);
  border-radius: var(--tr);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .12s
}

#tna-wrap .ctl-blog-card:hover {
  border-color: var(--ind);
  transform: translateY(-2px)
}

#tna-wrap .ctl-blog-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--ind-l);
  color: var(--ind-m);
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start
}

#tna-wrap .ctl-blog-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--tt);
  line-height: 1.35;
  margin-top: .1rem
}

#tna-wrap .ctl-blog-desc {
  font-size: 11px;
  color: var(--tt2);
  line-height: 1.45;
  flex: 1
}

#tna-wrap .ctl-blog-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--ind);
  margin-top: .2rem
}

/* Vendor cards grid */
#tna-wrap .ctl-vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-bottom: .5rem
}

#tna-wrap .ctl-vendor-card {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .85rem .9rem;
  background: var(--tsurf);
  border: 1.5px solid var(--tb);
  border-radius: var(--tr);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
  position: relative
}

#tna-wrap .ctl-vendor-card:hover {
  border-color: var(--ind);
  box-shadow: var(--tsh)
}

#tna-wrap .ctl-vendor-badge {
  position: absolute;
  top: -1px;
  right: 8px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--ind);
  color: #fff;
  padding: 2px 7px;
  border-radius: 0 0 6px 6px
}

#tna-wrap .ctl-vendor-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--tt);
  margin-top: .3rem
}

#tna-wrap .ctl-vendor-tagline {
  font-size: 10px;
  color: var(--tt3);
  margin-bottom: .15rem
}

#tna-wrap .ctl-vendor-fit {
  font-size: 10px;
  color: var(--tt2);
  line-height: 1.4;
  flex: 1
}

#tna-wrap .ctl-vendor-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--ind);
  margin-top: .35rem
}

/* LMSpedia CTA — always visible */
#tna-wrap .ctl-cta {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: linear-gradient(135deg, #0B2447, #1B3A6B);
  border-radius: var(--tr);
  padding: 1.1rem 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap
}

#tna-wrap .ctl-cta-icon {
  font-size: 22px;
  flex-shrink: 0
}

#tna-wrap .ctl-cta-body {
  flex: 1;
  min-width: 0
}

#tna-wrap .ctl-cta-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem
}

#tna-wrap .ctl-cta-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.45
}

#tna-wrap .ctl-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #1D9E75;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .14s;
  flex-shrink: 0
}

#tna-wrap .ctl-cta-btn:hover {
  opacity: .88
}

/* Mobile responsive */
@media(max-width:640px) {
  #tna-wrap .ctl-blog-grid {
    grid-template-columns: 1fr
  }

  #tna-wrap .ctl-vendor-grid {
    grid-template-columns: 1fr 1fr
  }

  #tna-wrap .ctl-cta {
    flex-direction: column;
    align-items: flex-start
  }
}

@media(max-width:400px) {
  #tna-wrap .ctl-vendor-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════════════════════════════
   INDUSTRY COLOR THEMES — applied via data-industry attr
   and CSS custom props --ind-a / --ind-al / --ind-ad
   ══════════════════════════════════════════════════════════ */

/* Use --ind-a for dynamic accent throughout */
#tna-lp .lbl {
  color: var(--ind-a, var(--green));
}

#tna-lp .lbl::before {
  background: var(--ind-a, var(--green));
}

#tna-lp .callout {
  border-left-color: var(--ind-a, var(--green));
  background: var(--ind-al, var(--green-l));
}

#tna-lp .chklist li::before {
  color: var(--ind-a, var(--green));
}

#tna-lp .sn {
  background: var(--ind-al, var(--green-l));
  color: var(--ind-ad, var(--green-d));
}

#tna-lp .time-badge {
  background: var(--ind-al, var(--green-l));
  color: var(--ind-ad, var(--green-d));
}

#tna-lp .feat:hover {
  border-color: var(--ind-a, var(--green));
}

#tna-lp .ht-n {
  background: var(--ind-a, var(--green));
}

#tna-lp .q-card h3 {
  border-bottom-color: var(--ind-a, var(--green));
}

#tna-lp .q-card li::before {
  color: var(--ind-a, var(--green));
}

#tna-lp .q-time {
  background: var(--ind-al, var(--green-l));
  color: var(--ind-ad, var(--green-d));
}

#tna-lp .dot {
  background: var(--ind-a, var(--green));
}

#tna-lp .price-badge {
  background: var(--ind-al, var(--green-l));
  color: var(--ind-ad, var(--green-d));
}

#tna-lp .id-n {
  background: var(--ind-al, var(--green-l));
  color: var(--ind-ad, var(--green-d));
}

#tna-lp .id-c:hover {
  border-color: var(--ind-a, var(--green));
}

#tna-lp .faq-q:hover {
  color: var(--ind-a, var(--green));
}

#tna-lp .faq-ic {
  background: var(--ind-al, var(--green-l));
  color: var(--ind-a, var(--green));
}

#tna-lp .faq-it.open .faq-ic {
  background: var(--ind-a, var(--green));
  color: #fff;
}

#tna-lp .btn-g {
  background: var(--ind-a, var(--green));
}

#tna-lp .btn-g:hover {
  background: var(--ind-ad, var(--green-d));
}

#tna-lp .btn-g.pulse::before {
  border-color: var(--ind-a, var(--green));
}

#tna-lp .tna-stat-n {
  color: var(--ind-a, var(--green));
}

/* Smooth content swap transition when industry changes */
#tna-lp .hero,
#tna-lp .stats-bar,
#tna-lp .sec {
  transition: background-color 0.4s ease;
}

#tna-lp .hero h1 .acc,
#tna-lp .hero-dot,
#tna-lp .stat-n {
  transition: color 0.3s ease;
}

/* Industry accent colors — professional, muted palette */
#tna-lp[data-industry="healthcare"] {
  --ind-a: #0D7A5F;
  --ind-al: #E6F5F1;
  --ind-ad: #085042;
}

#tna-lp[data-industry="manufacturing"] {
  --ind-a: #5C4A1E;
  --ind-al: #F5F0E6;
  --ind-ad: #3A2E10;
}

#tna-lp[data-industry="hospitality"] {
  --ind-a: #7B4F3A;
  --ind-al: #F5EDE8;
  --ind-ad: #4E2F20;
}

#tna-lp[data-industry="training-ld"] {
  --ind-a: #3D3B8E;
  --ind-al: #EEEDF8;
  --ind-ad: #252480;
}

#tna-lp[data-industry="software-it"] {
  --ind-a: #1B4965;
  --ind-al: #E6EFF5;
  --ind-ad: #0F2D40;
}

#tna-lp[data-industry="financial-services"] {
  --ind-a: #1B4D3E;
  --ind-al: #E6F0ED;
  --ind-ad: #0F2E25;
}

/* Industry intro grid */
#tna-lp .ind-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

#tna-lp .ind-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text2);
  margin: 0 0 18px;
}

#tna-lp .ind-intro-aside {
  position: sticky;
  top: 100px;
}

/* Industry tool CTA strip */
#tna-lp .ind-cta-strip {
  padding: 16px 0;
  text-align: center;
}

@media(max-width:960px) {
  #tna-lp .ind-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #tna-lp .ind-intro-aside {
    position: static;
  }
}

/* ══════════════════════════════════════════════════════
   INDUSTRY HERO COMPLIANCE CARD
   ══════════════════════════════════════════════════════ */
#tna-lp .ind-hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 24px
}

#tna-lp .ihc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px
}

#tna-lp .ihc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

#tna-lp .ihc-item:last-of-type {
  border-bottom: none
}

#tna-lp .ihc-dot {
  width: 7px;
  height: 7px;
  background: var(--ind-a, var(--green));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px
}

#tna-lp .ihc-item b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px
}

#tna-lp .ihc-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4
}

#tna-lp .ihc-cta {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ind-a, var(--green));
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  padding: 8px 12px
}

/* ══════════════════════════════════════════════════════
   INDUSTRY INTRO GRID — tighter, more readable
   ══════════════════════════════════════════════════════ */
#tna-lp .ind-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start
}

#tna-lp .ind-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
  margin: 0 0 16px
}

#tna-lp .ind-aside-card {
  position: sticky;
  top: 100px
}

/* ══════════════════════════════════════════════════════
   AUTO-NOTE — remove m-dash version, style correctly
   ══════════════════════════════════════════════════════ */
#tna-lp .auto-note {
  background: var(--blue-l, #EFF4FF);
  border: 1px solid rgba(27, 91, 235, .12);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--blue, #1B5BEB);
  font-weight: 500;
  margin-top: 32px;
  line-height: 1.55
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE UPDATES
   ══════════════════════════════════════════════════════ */
@media(max-width:960px) {
  #tna-lp .ind-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  #tna-lp .ind-aside-card {
    position: static
  }
}

@media(max-width:640px) {
  #tna-lp .ind-hero-card {
    display: none
  }

  /* hide compliance card on mobile, too small */
  #tna-lp .hero-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════════════════════════════════
   INDUSTRY INTRO SECTION — new layout
   ══════════════════════════════════════════════════════════════ */
#tna-lp .ind-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

#tna-lp .ind-aside-sticky {
  position: sticky;
  top: 100px;
}

#tna-lp .ind-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
  margin: 0 0 16px;
}

/* "What this TNA checks" card */
#tna-lp .tna-checks-card {
  margin-bottom: 16px;
}

#tna-lp .chk-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#tna-lp .chk-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text2);
  line-height: 1.45;
}

#tna-lp .chk-item:last-child {
  border-bottom: none;
}

#tna-lp .chk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Aside CTA button */
#tna-lp .ind-cta-btn {
  width: 100%;
  padding: 13px;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--fb);
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  margin-top: 4px;
}

#tna-lp .ind-cta-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Extra content grid */
#tna-lp .ind-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

#tna-lp .ind-extra-card {
  background: var(--bg);
  border-radius: var(--r);
  padding: 24px;
}

#tna-lp .ind-extra-card h3 {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

#tna-lp .ind-extra-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text2);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   HERO CARD — compliance checklist card in hero right
   ══════════════════════════════════════════════════════════════ */
#tna-lp .ind-hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 22px;
}

#tna-lp .ihc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
}

#tna-lp .ihc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

#tna-lp .ihc-item:last-of-type {
  border-bottom: none;
}

#tna-lp .ihc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

#tna-lp .ihc-item b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 2px;
}

#tna-lp .ihc-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
}

#tna-lp .ihc-cta {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 8px 12px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media(max-width:960px) {
  #tna-lp .ind-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #tna-lp .ind-aside-sticky {
    position: static;
  }

  #tna-lp .ind-extra-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  #tna-lp .ind-hero-card {
    display: none;
  }

  /* Show compliance card in intro instead on mobile */
  #tna-lp .ind-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATED HERO BACKGROUNDS — target .hero-anim-bg inner div
   Avoids all ::before/::after conflicts. Pure CSS animations.
   ══════════════════════════════════════════════════════════════ */

/* Base: anim div fills hero section */
#tna-lp .hero-anim-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Everything else in hero sits above */
#tna-lp .hero .wrap {
  position: relative;
  z-index: 1;
}

/* ── Animation keyframes (Professional ambient motion) ── */
@keyframes tna-ambient-drift {

  0%,
  100% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.03) translate(-15px, 10px)
  }
}

@keyframes tna-ambient-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1)
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02)
  }
}

@keyframes tna-ambient-pan {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes tna-ambient-glow {

  0%,
  100% {
    opacity: 0.3
  }

  50% {
    opacity: 0.6
  }
}

/* ── MAIN PAGE: subtle floating grid ── */
#tna-lp .hero-bg-main .hero-anim-bg {
  background:
    radial-gradient(circle 1px, rgba(29, 158, 117, .5) 100%, transparent 100%) 0 0 / 40px 40px,
    radial-gradient(circle 1px, rgba(27, 91, 235, .35) 100%, transparent 100%) 20px 20px / 80px 80px,
    radial-gradient(ellipse 70% 60% at 80% -10%, rgba(27, 91, 235, .2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at -5% 110%, rgba(29, 158, 117, .15) 0%, transparent 60%);
  animation: tna-ambient-drift 28s ease-in-out infinite;
  transform-origin: center center;
}

/* ── HEALTHCARE: subtle pulse instead of fast ECG slide ── */
#tna-lp .hero-bg-hc .hero-anim-bg {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='100'%3E%3Cpolyline points='0,50 50,50 70,25 90,75 110,50 160,50 175,10 185,90 200,50 250,50 270,30 290,70 310,50 400,50' fill='none' stroke='rgba(13,122,95,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(13, 122, 95, .2) 0%, transparent 70%);
  background-size: 400px 100px, 100% 100%;
  background-repeat: repeat-x, no-repeat;
  background-position: center center, 0 0;
  animation: tna-ambient-pulse 14s ease-in-out infinite;
}

/* ── MANUFACTURING: slow hexagonal drift ── */
#tna-lp .hero-bg-mfg .hero-anim-bg {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,17 58,45 30,50 2,45 2,17' fill='none' stroke='rgba(92,74,30,0.3)' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 55% 80% at 85% 50%, rgba(92, 74, 30, .2) 0%, transparent 65%);
  background-size: 60px 52px, 100% 100%;
  background-repeat: repeat, no-repeat;
  animation: tna-ambient-drift 32s ease-in-out infinite;
  transform-origin: top left;
}

/* ── HOSPITALITY: soft diagonal pan ── */
#tna-lp .hero-bg-hosp .hero-anim-bg {
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(123, 79, 58, .12) 18px, rgba(123, 79, 58, .12) 20px),
    radial-gradient(ellipse 65% 45% at 70% 60%, rgba(123, 79, 58, .2) 0%, transparent 70%);
  background-size: 200% 200%;
  animation: tna-ambient-pan 24s ease-in-out infinite;
}

/* ── L&D: ambient node glow ── */
#tna-lp .hero-bg-ld .hero-anim-bg {
  background:
    radial-gradient(circle 2px, rgba(61, 59, 142, .6) 100%, transparent 100%) 0 0 / 60px 60px,
    linear-gradient(rgba(61, 59, 142, .08) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(61, 59, 142, .08) 1px, transparent 1px) 0 0 / 60px 60px,
    radial-gradient(ellipse 55% 55% at 20% 80%, rgba(61, 59, 142, .25) 0%, transparent 70%);
  animation: tna-ambient-glow 12s ease-in-out infinite;
}

/* ── SOFTWARE/IT: smooth glowing gradient instead of fast scanline ── */
#tna-lp .hero-bg-sw .hero-anim-bg {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(27, 73, 101, .12) 3px, rgba(27, 73, 101, .12) 4px),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(27, 73, 101, .25) 0%, transparent 70%);
  background-size: 100% 4px, 100% 100%;
}

#tna-lp .hero-bg-sw .hero-anim-bg::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(27, 73, 101, .4) 0%, transparent 60%);
  animation: tna-ambient-pulse 16s ease-in-out infinite;
}

/* ── FINANCIAL: subtle chart glow ── */
#tna-lp .hero-bg-fin .hero-anim-bg {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='120'%3E%3Cpolyline points='0,110 25,95 50,100 80,65 110,72 140,35 165,48 200,18' fill='none' stroke='rgba(27,77,62,0.4)' stroke-width='1.5'/%3E%3Ccircle cx='80' cy='65' r='2.5' fill='rgba(27,77,62,0.5)'/%3E%3Ccircle cx='140' cy='35' r='2.5' fill='rgba(27,77,62,0.5)'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(27, 77, 62, .25) 0%, transparent 70%);
  background-size: 200px 120px, 100% 100%;
  background-repeat: repeat-x, no-repeat;
  background-position: center bottom, 0 0;
  animation: tna-ambient-pulse 18s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   COMPLIANCE CARD VISIBILITY FIXES
   ══════════════════════════════════════════════════════════════ */
#tna-lp .ihc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 14px;
}

#tna-lp .ihc-item b {
  color: #ffffff !important;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

#tna-lp .ihc-item span {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px;
  display: block;
  line-height: 1.4;
}

#tna-lp .ihc-cta {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 14px;
}

/* Hero vis (main page) text visibility */
#tna-lp .vis-title {
  color: rgba(255, 255, 255, 0.65) !important;
}

#tna-lp .vbar-row span {
  color: rgba(255, 255, 255, 0.82) !important;
}

#tna-lp .vs-lbl {
  color: rgba(255, 255, 255, 0.65) !important;
}

#tna-lp .hero-sub {
  color: rgba(255, 255, 255, 0.85) !important;
}

#tna-lp .hero-note {
  color: rgba(255, 255, 255, 0.55) !important;
}

#tna-lp .hero-eyebrow {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* ========================================================
   TNA HERO OVERHAUL: PREMIUM GLASSMORPHISM & MESH GRADIENTS
   ======================================================== */
   
/* 1. Glassmorphism Utilities */
#tna-lp .glass-panel {
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  background: rgba(10, 15, 25, 0.45); /* Deep dark glass */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  color: #ffffff;
}
#tna-lp .hero-vis.glass-panel {
  background: rgba(10, 15, 25, 0.50);
}
#tna-lp .ind-hero-card.glass-panel {
  background: rgba(10, 15, 25, 0.45);
}
#tna-lp .ihc-item {
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* 2. 3D Floating Visual Wrapper */
#tna-lp .tna-hero-3d-wrapper {
  position: absolute;
  top: 50%;
  left: 65%; /* Offset to the right */
  transform: translate(-30%, -50%);
  width: 110%; /* Controlled width */
  max-width: 500px;
  z-index: -1; 
  pointer-events: none;
}
#tna-lp #tna-hero-3d-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) saturate(1.2);
}
@keyframes tna-ambient-float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-15px) rotate(1deg) scale(1.02); }
}
#tna-lp .tna-ambient-float {
  animation: tna-ambient-float 16s ease-in-out infinite;
}

/* Make sure the right column has relative positioning for the absolute 3D wrap */
#tna-lp #tna-hero-right {
  position: relative;
  z-index: 2;
}

/* Fix mobile/tablet layout for 3D hero wrapper so it doesn't overlap text */
@media(max-width: 960px) {
  #tna-lp .tna-hero-3d-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
    margin: 40px auto 0;
    z-index: 1;
    display: block;
  }
}

/* Ensure buttons and layout are fully optimized on small mobile screens */
@media(max-width: 640px) {
  #tna-lp .btn {
    white-space: normal;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  
  #tna-lp .hero-sub {
    font-size: 15px;
    line-height: 1.6;
  }
  
  #tna-lp .lead {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* 3. Deep Mesh Gradients (Replacing flat hero_bg's) */
/* Hide the old anim-bg SVGs completely for a cleaner look or reduce opacity */
#tna-lp .hero-anim-bg { opacity: 0.1; mix-blend-mode: overlay; pointer-events: none; }

/* Main Grid */
#tna-lp .hero-bg-main {
  background: radial-gradient(circle at 10% 20%, #061122 0%, #0B2447 50%, #0a1f3c 100%) !important;
}
/* Healthcare: Deep Emerald & Teal */
#tna-lp .hero-bg-hc {
  background: radial-gradient(circle at 80% 80%, #053b2d 0%, #062b1e 60%, #031c13 100%) !important;
}
/* Manufacturing: Rich Bronze & Amber */
#tna-lp .hero-bg-mfg {
  background: radial-gradient(circle at 100% 0%, #291f0a 0%, #171206 50%, #0a0802 100%) !important;
}
/* Hospitality: Deep Burgundy & Gold */
#tna-lp .hero-bg-hosp {
  background: radial-gradient(circle at 0% 100%, #2f131a 0%, #18090d 50%, #0c0407 100%) !important;
}
/* L&D: Intense Neon Purple/Blue */
#tna-lp .hero-bg-ld {
  background: radial-gradient(circle at 100% 100%, #15144d 0%, #0a0a20 60%, #050512 100%) !important;
}
/* Software: Cyber Blue & Navy */
#tna-lp .hero-bg-sw {
  background: radial-gradient(circle at 50% 0%, #0c2033 0%, #060f1a 50%, #03080d 100%) !important;
}
/* Financial: Deep Forest Green */
#tna-lp .hero-bg-fin {
  background: radial-gradient(circle at 20% 80%, #072e20 0%, #041a12 60%, #020d09 100%) !important;
}

/* Typography refinements for the new premium backdrop */
#tna-lp .hero h1 span, #tna-lp .hero p.hero-sub {
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}