.np-section {
  padding: 88px 0;
}
.np-section.np-bg-white {
  background: var(--white);
}
.np-section.np-bg-off {
  background: var(--off-white);
}
.np-section.np-bg-navy {
  background: linear-gradient(135deg, #0f1629, #1a2456);
}
.np-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.np-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.np-bg-navy .np-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.np-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.np-bg-navy .np-title {
  color: #fff;
}
.np-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 14px;
  max-width: 640px;
}
.np-bg-navy .np-sub {
  color: rgba(255, 255, 255, 0.68);
}
.np-p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
}
.np-bg-navy .np-p {
  color: rgba(255, 255, 255, 0.7);
}
.np-p strong {
  color: var(--ink);
  font-weight: 700;
}
.np-bg-navy .np-p strong {
  color: #fff;
}
.np-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* 1. Intro — accent-rail flowing text, no boxes */
.np-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.np-intro-heading {
  position: sticky;
  top: 100px;
}
.np-intro-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.np-rail-p {
  padding-left: 18px;
  border-left: 3px solid var(--indigo);
}
.np-rail-p:nth-child(2) {
  border-color: var(--teal);
}
.np-rail-p:nth-child(3) {
  border-color: var(--amber);
}

/* 2. Why Pune — split graphic */
.np-pune-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.np-pune-graphic {
  aspect-ratio: 1/1;
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-pune-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(93, 122, 247, 0.35) 1.5px,
    transparent 1.5px
  );
  background-size: 26px 26px;
  opacity: 0.5;
}
.np-pune-pin {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-indigo);
}
.np-pune-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 3. About — zig-zag numbered rows */
.np-zig-list {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}
.np-zig-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--slate-100);
}
.np-zig-row:first-child {
  border-top: none;
  padding-top: 0;
}
.np-zig-num {
  width: 58px;
  height: 58px;
  border-radius: var(--r-lg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
}
.np-zig-row:nth-child(2n) .np-zig-num {
  background: linear-gradient(135deg, var(--teal), #16b794);
}
.np-zig-row:nth-child(3n) .np-zig-num {
  background: linear-gradient(135deg, var(--amber), #e78713);
}

/* 4. How It Works — dashed horizontal flow */
.np-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
}
.np-flow-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
}
.np-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0 6px,
    transparent 6px 12px
  );
}
.np-flow-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-amber);
  position: relative;
  z-index: 1;
}
.np-flow-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* 5. Data Science modules — staircase ladder, no boxes */
.np-ladder {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 4px;
}
.np-ladder-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--slate-100);
}
.np-ladder-item:last-child {
  border-bottom: none;
}
.np-ladder-dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--indigo-glow);
  color: var(--indigo);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-ladder-item span.txt {
  font-size: 13.5px;
  color: var(--text-muted);
}
.np-ladder-item span.txt strong {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
}
.np-ribbon {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow-indigo);
}

/* 6. Data Analytics modules — dotted two-column list */
.np-dotted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  margin-top: 32px;
}
.np-dotted-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px dotted var(--slate-200);
}
.np-dotted-grid .np-dotted-item:nth-child(-n + 2) {
  border-top: none;
  padding-top: 0;
}
.np-dotted-check {
  color: var(--teal);
  flex-shrink: 0;
}
.np-dotted-item span.txt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.np-dotted-item span.txt strong {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  display: block;
  margin-bottom: 1px;
}
.np-ribbon-teal {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), #16b794);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
}

/* 7. AI Course modules — ghost-number poster grid */
.np-ghost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 32px;
}
.np-ghost-item {
  position: relative;
  padding: 22px 10px 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.np-ghost-num {
  position: absolute;
  top: -8px;
  left: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 52px;
  color: rgba(245, 163, 25, 0.16);
  line-height: 1;
  pointer-events: none;
}
.np-ghost-item strong {
  position: relative;
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  padding-left: 48px;
}
.np-ghost-item span {
  position: relative;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 48px;
  line-height: 1.6;
}
.np-ribbon-amber {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--amber), #e78713);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow-amber);
}

/* 8. Compare programs — proportional bar chart */
.np-cbar-block {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.np-cbar-metric-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 12px;
}
.np-cbar-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}
.np-cbar-row:last-child {
  margin-bottom: 0;
}
.np-cbar-name {
  font-size: 12.5px;
  font-family: var(--font-head);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.np-cbar-track {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-pill);
  height: 28px;
  overflow: hidden;
}
.np-cbar-fill {
  height: 100%;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  color: #fff;
  white-space: nowrap;
}
.np-cbar-fill.da {
  background: linear-gradient(90deg, var(--teal), #16b794);
}
.np-cbar-fill.ds {
  background: linear-gradient(90deg, var(--indigo), var(--indigo-deep));
}
.np-cbar-fill.ai {
  background: linear-gradient(90deg, var(--amber), #e78713);
}
.np-cbar-role-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.np-cbar-role-chip {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
}
.np-cbar-role-chip.da {
  background: rgba(25, 217, 167, 0.12);
  border-left: 3px solid var(--teal);
}
.np-cbar-role-chip.ds {
  background: rgba(93, 122, 247, 0.12);
  border-left: 3px solid var(--indigo);
}
.np-cbar-role-chip.ai {
  background: rgba(245, 163, 25, 0.12);
  border-left: 3px solid var(--amber);
}
.np-cbar-role-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

/* 9. Month by month — zig-zag timeline */
.np-tl {
  position: relative;
  margin-top: 48px;
  max-width: 880px;
  margin-inline: auto;
}
.np-tl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate-200);
  transform: translateX(-50%);
}
.np-tl-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  margin-bottom: 10px;
}
.np-tl-card {
  padding: 4px 22px;
}
.np-tl-row:nth-child(odd) .np-tl-card {
  grid-column: 1;
  text-align: right;
}
.np-tl-row:nth-child(odd) .np-tl-spacer {
  grid-column: 3;
}
.np-tl-row:nth-child(even) .np-tl-card {
  grid-column: 3;
  text-align: left;
}
.np-tl-row:nth-child(even) .np-tl-spacer {
  grid-column: 1;
}
.np-tl-dot {
  grid-column: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--indigo);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--indigo);
  justify-self: center;
}
.np-tl-badge {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.np-tl-card h4 {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.np-tl-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* 10. Salary — horizontal bar chart by role */
.np-stat-callout {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--indigo-glow),
    rgba(25, 217, 167, 0.06)
  );
  border: 1px solid rgba(93, 122, 247, 0.18);
  border-radius: var(--r-xl);
  padding: 26px;
  margin: 28px auto 44px;
  max-width: 620px;
}
.np-stat-callout p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.7;
}
.np-sbar-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.np-sbar-role {
}
.np-sbar-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 12px;
}
.np-sbar-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.np-sbar-row:last-child {
  margin-bottom: 0;
}
.np-sbar-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.np-sbar-track {
  background: var(--slate-50);
  border-radius: var(--r-pill);
  height: 24px;
  overflow: hidden;
}
.np-sbar-fill {
  height: 100%;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
}
.np-sbar-fill.f {
  background: linear-gradient(90deg, var(--indigo-bright), var(--indigo));
}
.np-sbar-fill.m {
  background: linear-gradient(90deg, var(--teal), #16b794);
}
.np-sbar-fill.s {
  background: linear-gradient(90deg, var(--amber), #e78713);
}

/* 11. Tools — grouped pill clusters */
.np-tool-groups {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}
.np-tool-group-label {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.np-tool-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.np-tool-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

/* 12. Trainers — divided profile list */
.np-trainer-list {
  max-width: 840px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
}
.np-trainer-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--slate-100);
}
.np-trainer-row:last-child {
  border-bottom: none;
}
.np-trainer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}
.np-trainer-body {
  flex: 1;
  min-width: 0;
}
.np-trainer-body h4 {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  display: inline;
}
.np-trainer-focus {
  font-size: 12px;
  color: var(--indigo);
  font-weight: 700;
  margin-left: 8px;
}
.np-trainer-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 4px;
}
.np-trainer-count {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  text-align: right;
  white-space: nowrap;
}

/* 13. How We Place You — vertical connected steps */
.np-vsteps {
  max-width: 740px;
  margin: 44px auto 0;
  position: relative;
  padding-left: 42px;
}
.np-vsteps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--slate-200);
}
.np-vstep {
  position: relative;
  padding-bottom: 34px;
}
.np-vstep:last-child {
  padding-bottom: 0;
}
.np-vstep::before {
  content: attr(data-num);
  position: absolute;
  left: -42px;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--off-white);
}
.np-vstep:nth-child(2)::before {
  background: var(--teal);
}
.np-vstep:nth-child(3)::before {
  background: var(--amber);
}
.np-vstep:nth-child(4)::before {
  background: var(--rose);
}
.np-vstep p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: 4px;
}

/* 14. Placed students — divided list */
.np-placed-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
}
.np-placed-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--slate-100);
}
.np-placed-row:last-child {
  border-bottom: none;
}
.np-placed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}
.np-placed-name {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.np-placed-company {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 1px;
}
.np-placed-pkg {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: #1ca581;
  white-space: nowrap;
}

/* 15. Format choice — minimal editorial */
.np-editorial {
  max-width: 720px;
  margin: 36px auto 0;
  border-left: 3px solid var(--indigo);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.np-editorial p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0;
}

/* 16. Compare — badge table (the one literal table) */
.np-badge-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--slate-100);
  box-shadow: var(--shadow-card);
}
.np-badge-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #fff;
}
.np-badge-table th {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  background: var(--slate-50);
  color: var(--text-muted);
}
.np-badge-table th:nth-child(2) {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
}
.np-badge-table td {
  padding: 13px 20px;
  border-top: 1px solid var(--slate-100);
  font-size: 13px;
}
.np-badge-table td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.np-pill-yes {
  display: inline-block;
  background: var(--teal-pale);
  color: #1ca581;
  border: 1px solid rgba(25, 217, 167, 0.25);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-weight: 700;
  font-size: 12.5px;
}
.np-pill-no {
  display: inline-block;
  background: rgba(244, 81, 108, 0.08);
  color: #c22347;
  border: 1px solid rgba(244, 81, 108, 0.2);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-weight: 700;
  font-size: 12.5px;
}
.np-pill-mid {
  display: inline-block;
  background: var(--amber-pale);
  color: #9a4e20;
  border: 1px solid rgba(245, 163, 25, 0.22);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-weight: 700;
  font-size: 12.5px;
}

/* 17. FAQ accordion */
.np-faq {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.np-faq details {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.np-faq summary {
  cursor: pointer;
  padding: 16px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  list-style: none;
}
.np-faq summary::-webkit-details-marker {
  display: none;
}
.np-faq summary::after {
  content: "+";
  float: right;
  color: var(--indigo);
  font-weight: 800;
}
.np-faq details[open] summary::after {
  content: "\2013";
}
.np-faq-a {
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* 18. As Featured In — pull quote */
.np-quote-wrap {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
}
.np-quote-mark {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  color: var(--indigo-glow);
  line-height: 1;
  margin-bottom: -18px;
}
.np-quote-wrap p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
  font-style: italic;
}

/* 19. Start Learning — CTA icon row */
.np-cta-box {
  max-width: 780px;
  margin: 8px auto 0;
  text-align: center;
}
.np-cta-icons {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.np-cta-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.np-cta-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-cta-icon-item span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.np-cta-box p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 14px;
}
.np-cta-box p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1024px) {
  .np-intro-grid,
  .np-pune-grid {
    grid-template-columns: 1fr;
  }
  .np-intro-heading {
    position: static;
  }
  .np-flow {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .np-flow-step::after {
    display: none;
  }
  .np-dotted-grid,
  .np-ghost-grid {
    grid-template-columns: 1fr;
  }
  .np-dotted-grid .np-dotted-item:nth-child(-n + 2) {
    border-top: 1px dotted var(--slate-200);
    padding-top: 14px;
  }
  .np-dotted-grid .np-dotted-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .np-cbar-row {
    grid-template-columns: 120px 1fr;
  }
  .np-sbar-row {
    grid-template-columns: 110px 1fr;
  }
}
@media (max-width: 768px) {
  .np-flow {
    grid-template-columns: 1fr;
  }
  .np-zig-row {
    grid-template-columns: 46px 1fr;
  }
  .np-zig-num {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }
  .np-tl::before {
    left: 20px;
  }
  .np-tl-row {
    grid-template-columns: 40px 1fr;
  }
  .np-tl-dot {
    grid-column: 1;
  }
  .np-tl-row:nth-child(odd) .np-tl-card,
  .np-tl-row:nth-child(even) .np-tl-card {
    grid-column: 2;
    text-align: left;
  }
  .np-tl-row:nth-child(odd) .np-tl-spacer,
  .np-tl-row:nth-child(even) .np-tl-spacer {
    display: none;
  }
  .np-trainer-row {
    flex-wrap: wrap;
  }
  .np-trainer-count {
    width: 100%;
    text-align: left;
    margin-left: 68px;
    margin-top: -8px;
  }
  .np-cbar-row,
  .np-sbar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .np-cbar-name,
  .np-sbar-label {
    margin-bottom: 2px;
  }
}
.cc2-section {
  padding: 88px 0;
  background: var(--white);
}
.cc2-section input[type="radio"] {
  display: none !important;
}
.cc2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cc2-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.cc2-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 10px;
}
.cc2-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cc2-sub2 {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Tabs — mobile only */
.cc2-tabs {
  display: flex;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 6px;
  margin-bottom: 24px;
}
.cc2-tab {
  flex: 1;
  text-align: center;
  cursor: pointer;
  padding: 12px 10px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
}
#cc2-da:checked ~ .cc2-tabs .cc2-tab-da {
  background: linear-gradient(135deg, var(--teal), #16b794);
  color: #fff;
  box-shadow: 0 4px 14px rgba(25, 217, 167, 0.3);
}
#cc2-ds:checked ~ .cc2-tabs .cc2-tab-ds {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  box-shadow: var(--shadow-indigo);
}
#cc2-ai:checked ~ .cc2-tabs .cc2-tab-ai {
  background: linear-gradient(135deg, var(--amber), #e78713);
  color: #fff;
  box-shadow: var(--shadow-amber);
}

/* Panels — mobile: single column, only checked one shows */
.cc2-panels {
  display: block;
}
.cc2-panel {
  display: none;
  flex-direction: column;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}
#cc2-da:checked ~ .cc2-panels .cc2-panel-da,
#cc2-ds:checked ~ .cc2-panels .cc2-panel-ds,
#cc2-ai:checked ~ .cc2-panels .cc2-panel-ai {
  display: flex;
}

.cc2-panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cc2-chip {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 11px;
  border-radius: var(--r-pill);
}
.cc2-panel-da .cc2-chip {
  background: linear-gradient(135deg, var(--teal), #16b794);
}
.cc2-panel-ds .cc2-chip {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
}
.cc2-panel-ai .cc2-chip {
  background: linear-gradient(135deg, var(--amber), #e78713);
}
.cc2-panel-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cc2-panel p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.cc2-mod-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 18px 0 10px;
}

.cc2-mod-list {
  display: flex;
  flex-direction: column;
}
.cc2-mod {
  display: flex;
  gap: 9px;
  padding: 9px 0;
  border-top: 1px solid var(--slate-100);
}
.cc2-mod:first-child {
  border-top: none;
  padding-top: 0;
}
.cc2-mod-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cc2-panel-da .cc2-mod-icon {
  background: var(--teal-pale);
  color: #1ca581;
}
.cc2-panel-ds .cc2-mod-icon {
  background: var(--indigo-glow);
  color: var(--indigo);
}
.cc2-panel-ai .cc2-mod-icon {
  background: var(--amber-pale);
  color: #c5791a;
}
.cc2-mod-txt strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 1px;
}
.cc2-mod-txt span {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pushed to the bottom of the flex column so all three fee badges align, regardless of content length above */
.cc2-fee {
  margin-top: auto;
  padding-top: 20px;
}
.cc2-fee-inner {
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.6;
  color: #fff;
}
.cc2-panel-da .cc2-fee-inner {
  background: linear-gradient(135deg, var(--teal), #16b794);
}
.cc2-panel-ds .cc2-fee-inner {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
}
.cc2-panel-ai .cc2-fee-inner {
  background: linear-gradient(135deg, var(--amber), #e78713);
}

/* DESKTOP: all three side by side, equal height, tabs hidden */
@media (min-width: 900px) {
  .cc2-tabs {
    display: none;
  }
  .cc2-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .cc2-panel {
    display: flex !important;
    height: 100%;
  }
}

.ap2-section {
  padding: 88px 0;
  background: var(--white);
}
.ap2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ap2-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}
.ap2-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.ap2-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.ap2-title em {
  font-style: normal;
  color: var(--indigo);
}

.ap2-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
}

.ap2-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 28px;
}
.ap2-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(93, 122, 247, 0.28);
}
.ap2-feat h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ap2-feat p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.ap2-feat.full {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--slate-100);
}
.ap2-feat.full .ap2-feat-icon {
  background: linear-gradient(135deg, var(--teal), #16b794);
  box-shadow: 0 4px 14px rgba(25, 217, 167, 0.28);
}

.ap2-side {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-xl);
  padding: 34px;
  color: #fff;
  box-shadow: 0 24px 64px rgba(20, 24, 43, 0.22);
  position: sticky;
  top: 100px;
}
.ap2-side h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ap2-side > p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ap2-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}
.ap2-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  padding: 5px 13px;
  font-size: 11.5px;
  font-family: var(--font-head);
  font-weight: 600;
}

.ap2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.ap2-stat {
  text-align: center;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
}
.ap2-stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.ap2-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  font-weight: 600;
}

.ap2-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 13px;
  background: #fff;
  color: var(--indigo);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 22px;
  transition: all 0.2s;
}
.ap2-cta:hover {
  background: var(--off-white);
}

.ap2-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .ap2-grid {
    grid-template-columns: 1fr;
  }
  .ap2-side {
    position: static;
  }
}
@media (max-width: 640px) {
  .ap2-feats {
    grid-template-columns: 1fr;
  }
  .ap2-feat.full {
    grid-column: 1;
    padding-top: 0;
    border-top: none;
  }
  .ap2-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.cp2-section {
  padding: 88px 0;
  background: var(--off-white);
}
.cp2-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.cp2-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.cp2-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.cp2-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cp2-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 12px auto 0;
  max-width: 640px;
}

.cp2-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--slate-100);
}
.cp2-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}
.cp2-table th {
  padding: 18px 20px 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  text-align: left;
  color: #fff;
  position: relative;
}
.cp2-table th:first-child {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cp2-table th.da {
  background: linear-gradient(135deg, var(--teal), #16b794);
}
.cp2-table th.ds {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
}
.cp2-table th.ai {
  background: linear-gradient(135deg, var(--amber), #e78713);
}
.cp2-table th span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.cp2-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--slate-100);
}
.cp2-table td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}
.cp2-table tr:nth-child(even) td {
  background: var(--off-white);
}
.cp2-table td.val {
  font-family: var(--font-head);
  font-weight: 700;
}
.cp2-table td.val.da {
  color: #1ca581;
}
.cp2-table td.val.ds {
  color: var(--indigo-deep);
}
.cp2-table td.val.ai {
  color: #c5791a;
}

.cp2-role {
  display: inline-block;
  font-size: 12.5px;
  line-height: 1.4;
}

.cp2-foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px;
  margin: 24px auto 0;
}

@media (max-width: 560px) {
  .cp2-table th,
  .cp2-table td {
    padding: 12px 14px;
    font-size: 12.5px;
  }
}

.tt2-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #0f1629, #1a2456);
}
.tt2-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.tt2-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.tt2-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border: 1px solid rgba(25, 217, 167, 0.22);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.tt2-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.tt2-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin: 14px auto 0;
  max-width: 600px;
}

.tt2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tt2-cell {
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.25s;
}
.tt2-cell:hover {
  background: rgba(255, 255, 255, 0.03);
}
.tt2-cell-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.tt2-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.tt2-cell-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.tt2-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tt2-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 9px 16px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s;
}
.tt2-pill:hover {
  border-color: var(--teal);
  color: #fff;
  background: rgba(25, 217, 167, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .tt2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tt2-cell:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 560px) {
  .tt2-grid {
    grid-template-columns: 1fr;
  }
  .tt2-cell {
    border-right: none !important;
    padding: 26px 22px;
  }
}

.fmt-tabs input {
  display: none;
}
.fmt-panel {
  display: none;
}
#fmt-1:checked ~ .fmt-panels .fmt-panel-1,
#fmt-2:checked ~ .fmt-panels .fmt-panel-2,
#fmt-3:checked ~ .fmt-panels .fmt-panel-3 {
  display: flex;
}
#fmt-1:checked ~ .fmt-tabs label[for="fmt-1"],
#fmt-2:checked ~ .fmt-tabs label[for="fmt-2"],
#fmt-3:checked ~ .fmt-tabs label[for="fmt-3"] {
  background: #14182b;
  color: #fff;
}
#fmt-1:checked ~ .fmt-tabs label[for="fmt-1"] .fmt-tab-icon,
#fmt-2:checked ~ .fmt-tabs label[for="fmt-2"] .fmt-tab-icon,
#fmt-3:checked ~ .fmt-tabs label[for="fmt-3"] .fmt-tab-icon {
  opacity: 1;
}
@media (max-width: 700px) {
  .fmt-tabs {
    flex-direction: column !important;
  }
  .fmt-panel {
    flex-direction: column !important;
    text-align: center;
  }
  .fmt-panel-graphic {
    margin: 0 auto !important;
  }
}

/* ===== IN-PAGE SECTION NAV ===== */
.inpage-nav-wrap {
  position: relative;
  z-index: 90;
}
#inpageNavSpacer {
  height: 0;
}

.inpage-nav {
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-xs);
}
.inpage-nav-wrap.stuck .inpage-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 95;
  box-shadow: 0 6px 20px rgba(20, 24, 43, 0.08);
  animation: inpageNavDrop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes inpageNavDrop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.inpage-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 52px;
  position: relative;
}
.inpage-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.inpage-nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
  white-space: nowrap;
}
.inpage-nav-link:hover,
.inpage-nav-link.active {
  color: var(--indigo);
  background: var(--indigo-glow);
}
.inpage-nav-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-left: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-indigo);
  transition: all 0.2s;
}
.inpage-nav-cta:hover {
  transform: translateY(-1px);
}
.inpage-nav-toggle {
  display: none;
}

@media (max-width: 900px) {
  .inpage-nav-inner {
    justify-content: stretch;
    min-height: 48px;
  }
  .inpage-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 13px 4px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
  }
  .inpage-nav-toggle-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--indigo-glow);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .inpage-nav-toggle-icon .icon-close {
    display: none;
  }
  .inpage-nav-toggle[aria-expanded="true"] .icon-open {
    display: none;
  }
  .inpage-nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }
  .inpage-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--slate-100);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: 0 16px 40px rgba(20, 24, 43, 0.14);
    padding: 8px;
    gap: 2px;
  }
  .inpage-nav-links.open {
    display: flex;
  }
  .inpage-nav-link {
    text-align: left;
    padding: 12px 14px;
    border-radius: var(--r-sm);
  }
  .inpage-nav-cta {
    margin: 6px 0 0;
    justify-content: center;
    display: flex;
  }
}
