/* ============================================================
   identity-verification.css
   Styles for solutions/identity-verification/index.html
   Extends: bootstrap.css / common.css / config.css / style.css
   ============================================================ */

/* ── .reveal utility (scroll-reveal, controlled by main.js IO) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   1. HERO — Full-viewport centred (dark, WAC-inspired layout)
   ══════════════════════════════════════════════════════════════ */

.iv-hc-section {
  position: relative;
  background: var(--landingBackground);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
}

/* Radial orange glow from centre */
.iv-hc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 55% at 50% 38%,
    rgba(246, 99, 32, 0.08) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── SVG staircase line decorations ── */
.iv-hc-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  top: 192px;
}
.iv-hc-lines-left,
.iv-hc-lines-right {
  width: clamp(240px, 34%, 460px);
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0.9;
}
.iv-hc-lines-right svg {
  transform: scaleX(-1);
}

@media (max-width: 1400px) {
  .iv-hc-lines {
    top: 310px;
  }
}
.iv-hc-line-trail {
  fill: none;
  stroke: var(--secondaryMastercolor);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 80, 1100;
  stroke-dashoffset: -80;
  animation: ivLineTrail 5s ease-in-out infinite;
  pointer-events: none;
}
.iv-hc-line-trail--b {
  animation-delay: 2.5s;
}
.iv-hc-line-trail--r {
  animation-delay: 1.25s;
}
.iv-hc-line-trail--r.iv-hc-line-trail--b {
  animation-delay: 3.75s;
}
@keyframes ivLineTrail {
  0% {
    stroke-dashoffset: -80;
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  88% {
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: 1100;
    opacity: 0;
  }
}

/* ── Inner content block ── */
.iv-hc-inner {
  position: relative;
  z-index: 2;
  /* max-width: 860px; */
  margin: 0 auto;
}

/* ── Badge pill ── */
.iv-hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primaryTextColor);
  background: rgba(246, 99, 32, 0.04);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}

/* ── Headline ── */
.iv-hc-headline {
  font-size: clamp(38px, 6.5vw, 82px);
  font-weight: var(--fw_medium);
  font-family: var(--font-primary);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
}

/* ── Subtitle ── */
.iv-hc-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  color: var(--primaryTextColor);
  line-height: 1.72;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ── Tag pills with connecting lines ── */
.iv-hc-tags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
}
.iv-hc-tags-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to var(--line-dir, right),
    transparent 0%,
    var(--layoutBorderColor) 20%,
    var(--layoutBorderColor) 80%,
    transparent 100%
  );
  min-width: 40px;
}
.iv-hc-tags-row > .iv-hc-tags-line:first-child {
  --line-dir: right;
}
.iv-hc-tags-row > .iv-hc-tags-line:last-child {
  --line-dir: left;
}
.iv-hc-tags-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.iv-hc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primaryTextColor);
  background: rgba(246, 99, 32, 0.05);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  cursor: default;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.iv-hc-tag svg {
  color: var(--secondaryMastercolor);
  flex-shrink: 0;
}
.iv-hc-tag:hover {
  border-color: rgba(246, 99, 32, 0.4);
  background: rgba(246, 99, 32, 0.12);
  color: var(--black);
}

/* ── CTA Actions ── */
.iv-hc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
/* ── Stats strip ── */
.iv-hc-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  gap: 0;
}
.iv-hc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 44px;
}
.iv-hc-stat strong {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}
.iv-hc-stat sup {
  font-size: 0.55em;
  vertical-align: super;
}
.iv-hc-stat span {
  font-size: 11px;
  font-weight: 500;
  color: var(--primaryTextColor);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.iv-hc-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--layoutBorderColor);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .iv-hc-geo-rect {
    display: none;
  }
  .iv-hc-section {
    padding: 120px 0 72px;
  }
  .iv-hc-stat {
    padding: 0 28px;
  }
}
@media (max-width: 767.98px) {
  .iv-hc-tags-line {
    display: none;
  }
  .iv-hc-tags-pills {
    flex-wrap: wrap;
    justify-content: center;
  }
  .iv-hc-stat {
    padding: 0 20px;
  }
  .iv-hc-stat strong {
    font-size: 26px;
  }
}
@media (max-width: 575.98px) {
  .iv-hc-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .iv-hc-headline {
    font-size: 34px;
    letter-spacing: -0.03em;
  }
  .iv-hc-stats {
    flex-wrap: wrap;
    gap: 24px;
    border-top: none;
    padding-top: 24px;
  }
  .iv-hc-stat-divider {
    display: none;
  }
  .iv-hc-stat {
    padding: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
  G. IN-DEPTH SOLUTIONS — Flow architecture layout
  ══════════════════════════════════════════════════════════════ */

.iv-nx-shell {
  position: relative;
}

.iv-nx-intro {
  position: sticky;
  top: 110px;
}

.iv-nx-metrics {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.iv-nx-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--layoutBorderColor);
  padding: 10px 14px;
  background: #fff;
}

.iv-nx-metric strong {
  font-size: 20px;
  font-family: var(--font-primary);
  color: var(--black);
  letter-spacing: -0.03em;
}

.iv-nx-metric span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primaryTextColor);
}

.iv-nx-flow {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
}

.iv-nx-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.iv-nx-flow-lines path {
  fill: none;
  stroke: rgba(246, 99, 32, 0.18);
  stroke-width: 1.4;
}

.iv-nx-anim-line {
  stroke: var(--secondaryMastercolor);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 80 260;
  stroke-dashoffset: 260;
  opacity: 0.8;
}

.iv-nx-cards {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.iv-nx-card {
  border: 1px solid rgba(246, 99, 32, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 20px 20px 18px;
  width: min(540px, 100%);
}

.iv-nx-card--a {
  margin-left: auto;
}

.iv-nx-card--b {
  margin-left: 12%;
}

.iv-nx-card--c {
  margin-left: auto;
}

.iv-nx-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.iv-nx-step {
  font-size: 28px;
  line-height: 1;
  color: var(--secondaryMastercolor);
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.iv-nx-card-head h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.03em;
}

.iv-nx-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--primaryTextColor);
  max-width: 94%;
}

.iv-nx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.iv-nx-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  border: 1px solid var(--layoutBorderColor);
  background: #fff;
  padding: 6px 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.iv-nx-cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 991.98px) {
  .iv-nx-intro {
    position: static;
  }

  .iv-nx-card,
  .iv-nx-card--a,
  .iv-nx-card--b,
  .iv-nx-card--c {
    margin-left: 0;
    width: 100%;
  }

  .iv-nx-flow-lines {
    opacity: 0.6;
  }
}

@media (max-width: 575.98px) {
  .iv-nx-flow {
    padding: 18px 14px;
  }

  .iv-nx-step {
    font-size: 22px;
  }

  .iv-nx-card-head h3 {
    font-size: 18px;
  }

  .iv-nx-card p {
    max-width: 100%;
  }
}

/* keep old iv-badge-dot for any residual usage */
.iv-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: ivBadgePulse 2s ease-in-out infinite;
}
@keyframes ivBadgePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

/* ══════════════════════════════════════════════════════════════
   2. INTRO VISUAL WITH FLOATING STAT CHIPS
   ══════════════════════════════════════════════════════════════ */
.iv-intro-visual {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.iv-intro-img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.iv-intro-stat-chip {
  position: absolute;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 2;
}

.iv-intro-stat-chip--1 {
  top: -18px;
  right: -18px;
}

.iv-intro-stat-chip--2 {
  bottom: 24px;
  left: -18px;
}

@media (max-width: 991.98px) {
  .iv-intro-stat-chip--1 {
    top: 10px;
    right: 10px;
  }
  .iv-intro-stat-chip--2 {
    bottom: 10px;
    left: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════
   3. SERVICE CARDS
   ══════════════════════════════════════════════════════════════ */
.iv-svc-card {
  height: 100%;
  padding: 32px 28px 36px;
  background: #fff;
  border: 1px solid var(--layoutBorderColor);
  position: relative;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
  display: flex;
  flex-direction: column;
}

.iv-svc-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.iv-svc-card__num {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--landingBackground);
  letter-spacing: -0.04em;
  position: absolute;
  top: 24px;
  right: 24px;
  user-select: none;
  pointer-events: none;
  font-family: var(--font-primary);
  transition: color 0.3s ease;
}

.iv-svc-card:hover .iv-svc-card__num {
  color: rgba(246, 99, 32, 0.1);
}

.iv-svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.iv-svc-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 99, 32, 0.08);
  color: var(--secondaryMastercolor);
  border-radius: 4px;
  flex-shrink: 0;
}

.iv-svc-link {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
  width: fit-content;
}

.iv-svc-link:hover {
  color: var(--secondaryMastercolor);
}

.iv-svc-link:hover svg {
  color: var(--secondaryMastercolor);
}

/* ══════════════════════════════════════════════════════════════
   4. SERVICE DEEP DIVE PANELS
   ══════════════════════════════════════════════════════════════ */
.iv-dive-rail {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.iv-dive-panel {
  border: 1px solid var(--layoutBorderColor);
  background: #fff;
  overflow: hidden;
}

.iv-dive-content {
  padding: 52px 48px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--layoutBorderColor);
}

.iv-dive-img-col {
  background: var(--landingBackground);
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.iv-dive-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.iv-dive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Floating badge on image */
.iv-dive-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.iv-dive-img-badge svg {
  color: #22c55e;
  flex-shrink: 0;
}

.iv-dive-label {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.4);
}

.iv-dive-label-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--secondaryMastercolor);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.iv-dive-questions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.iv-dive-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primaryTextColor);
  line-height: 1.65;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--layoutBorderColor);
}

.iv-dive-q:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.iv-dive-q-icon {
  color: var(--secondaryMastercolor);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Tech pills inside dive panels */
.iv-tech-pill {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(246, 99, 32, 0.08);
  border: 1px solid rgba(246, 99, 32, 0.2);
  color: var(--secondaryMastercolor);
  letter-spacing: 0.03em;
}

/* Responsive deep dive */
@media (max-width: 991.98px) {
  .iv-dive-content {
    padding: 36px 28px;
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor);
  }
  .iv-dive-img-col {
    min-height: 260px;
    position: relative;
  }
  .iv-dive-img-wrap {
    position: relative;
    height: 260px;
  }
  .iv-dive-img-badge {
    bottom: 12px;
    right: 12px;
  }
  .iv-dive-rail {
    gap: 48px;
  }
}

@media (max-width: 575.98px) {
  .iv-dive-content {
    padding: 28px 20px;
  }
}

/* ══════════════════════════════════════════════════════════════
   5. FEATURE GRID (extends identitySOlutionLineCardGrid)
   ══════════════════════════════════════════════════════════════ */
.iv-feat-item {
  padding: 36px 28px;
}

.iv-feat-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 99, 32, 0.08);
  border: 1px solid rgba(246, 99, 32, 0.15);
  color: var(--secondaryMastercolor);
  margin-bottom: 20px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.iv-feat-item:hover .iv-feat-icon-wrap {
  background: rgba(246, 99, 32, 0.15);
  transform: scale(1.06);
}

/* Responsive feature grid */
@media (max-width: 991.98px) {
  .iv-feat-grid.identitySOlutionLineCardGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Fix border resets for 2-col layout */
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(1),
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(2),
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(3),
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(4),
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(5),
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(6) {
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor);
  }
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(odd) {
    border-right: 1px solid var(--layoutBorderColor);
  }
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(5),
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(6) {
    border-bottom: none;
  }
  .iv-feat-item {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .iv-feat-grid.identitySOlutionLineCardGrid {
    grid-template-columns: 1fr;
  }
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(odd) {
    border-right: none;
  }
  .iv-feat-grid .identitySOlutionLineCardGridItem:nth-child(n) {
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor);
  }
  .iv-feat-grid .identitySOlutionLineCardGridItem:last-child {
    border-bottom: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   6. TRUST / COMPLIANCE BADGES
   ══════════════════════════════════════════════════════════════ */
.iv-trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--layoutBorderColor);
  color: rgba(0, 0, 0, 0.55);
  background: #fff;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.iv-trust-badge:hover {
  border-color: var(--secondaryMastercolor);
  color: var(--secondaryMastercolor);
}

/* ══════════════════════════════════════════════════════════════
   7. CTA DARK SECTION
   ══════════════════════════════════════════════════════════════ */
.iv-cta {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

/* Subtle textured background pattern */
.iv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 30% 50%,
      rgba(246, 99, 32, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(246, 99, 32, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.iv-cta .about-label--cta {
  color: var(--secondaryMastercolor);
}

.iv-cta .about-label--cta::before {
  background-color: var(--secondaryMastercolor);
}

.iv-cta-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 11px 22px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.iv-cta-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Ensure reveal works on dark bg */
.iv-cta .reveal {
  transition-property: opacity, transform;
}

/* ══════════════════════════════════════════════════════════════
   8. SCROLL PROGRESS BAR (injected by GSAP script)
   ══════════════════════════════════════════════════════════════ */
#ivScrollProgress {
  position: fixed;
  top: 74px;
  left: 0;
  height: 2px;
  background: var(--secondaryMastercolor);
  z-index: 9998;
  pointer-events: none;
  transform-origin: left;
  will-change: width;
}

/* ══════════════════════════════════════════════════════════════
   9. MISC GLOBAL OVERRIDES FOR THIS PAGE
   ══════════════════════════════════════════════════════════════ */

/* Prevent layout shift when GSAP sets opacity before .visible */
.iv-svc-card,
.iv-dive-panel,
.iv-dive-img-wrap {
  will-change: opacity, transform;
}

/* Smooth border-radius for all images */
.iv-dive-img,
.iv-intro-img {
  border-radius: 2px;
}

/* ── Mobile: hero has single column (inherits from style.css
   .hero-section responsive rules) — just ensure image shown ── */
@media (max-width: 991.98px) {
  .iv-hero__visual {
    border-left: none;
    border-top: 1px solid var(--layoutBorderColor);
    height: 55vw;
    min-height: 220px;
  }
}

/* ══════════════════════════════════════════════════════════════
   A. HERO — DARK LEFT PANE
   ══════════════════════════════════════════════════════════════ */

.iv-hero-pane-dark {
  background-color: var(--black) !important;
}

/* Breadcrumb on dark bg */
.iv-hero-pane-dark nav a,
.iv-hero-pane-dark nav li {
  color: rgba(255, 255, 255, 0.38) !important;
}
.iv-hero-pane-dark nav li[style*="secondaryMastercolor"] {
  color: var(--secondaryMastercolor) !important;
}

/* Eyebrow */
.iv-hero-pane-dark .hero-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* H1 — include char spans created by hero-reveal-text JS */
.iv-hero-pane-dark .hero-hd,
.iv-hero-pane-dark .hero-hd .word,
.iv-hero-pane-dark .hero-hd .char {
  color: #fff;
}

/* Sub-text */
.iv-hero-pane-dark .hero-sub {
  color: rgba(255, 255, 255, 0.58) !important;
}

/* Ghost CTA link */
.iv-hero-pane-dark .hero-ghost-btn {
  color: rgba(255, 255, 255, 0.6);
}
.iv-hero-pane-dark .hero-ghost-btn:hover {
  color: #fff;
}

/* Stats bar — override layoutBorder* colours for dark bg */
.iv-hero-stats-bar {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
.iv-hero-stats-bar .layoutBorderRight {
  border-right-color: rgba(255, 255, 255, 0.1) !important;
}
.iv-hero-pane-dark .hero-stat strong {
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--secondaryMastercolor);
  letter-spacing: -0.03em;
}
.iv-hero-pane-dark .hero-stat span {
  color: rgba(255, 255, 255, 0.42);
}

/* Tags — custom dark style (replaces bg-white) */
.iv-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  transition:
    border-color 0.22s ease,
    color 0.22s ease;
}
.iv-hero-tag:hover {
  border-color: rgba(246, 99, 32, 0.45);
  color: var(--secondaryMastercolor);
}

/* Animated scan line over hero image */
.iv-hero__visual::after {
  content: "";
  position: absolute;
  top: -3%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 99, 32, 0.65),
    transparent
  );
  pointer-events: none;
  z-index: 3;
  animation: ivScanLine 4.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes ivScanLine {
  0% {
    top: -3%;
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  100% {
    top: 103%;
    opacity: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   B. SERVICES — FULL-WIDTH SHOWCASE ROWS
   ══════════════════════════════════════════════════════════════ */

.iv-svc-showcase {
  background: #fff;
}

.iv-svc-row {
  background: #fff;
  position: relative;
  transition: background 0.25s ease;
}

/* Left orange accent that slides in on hover */
.iv-svc-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--secondaryMastercolor);
  transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
.iv-svc-row:hover::before {
  width: 4px;
}
.iv-svc-row:hover {
  background: #fafafa;
}

.iv-svc-row--alt {
  background: var(--landingBackground);
}
.iv-svc-row--alt:hover {
  background: #efefef;
}

/* 4-column grid: number | icon | content | links */
.iv-svc-row-inner {
  display: grid;
  grid-template-columns: 72px 76px 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.iv-svc-row-num {
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 700;
  font-family: var(--font-primary);
  color: rgba(0, 0, 0, 0.07);
  line-height: 1;
  letter-spacing: -0.05em;
  display: block;
  transition: color 0.28s ease;
  user-select: none;
}
.iv-svc-row:hover .iv-svc-row-num {
  color: rgba(246, 99, 32, 0.14);
}

.iv-svc-row-icon-box {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 99, 32, 0.07);
  border: 1px solid rgba(246, 99, 32, 0.15);
  color: var(--secondaryMastercolor);
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.iv-svc-row:hover .iv-svc-row-icon-box {
  background: rgba(246, 99, 32, 0.13);
  transform: scale(1.05);
}

.iv-svc-row-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.iv-svc-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  border: 1.5px solid var(--layoutBorderColor);
  background: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.iv-svc-tag-link:hover {
  border-color: var(--secondaryMastercolor);
  color: var(--secondaryMastercolor);
  background: rgba(246, 99, 32, 0.04);
}
.iv-svc-row--alt .iv-svc-tag-link {
  background: #fff;
}

/* Responsive rows */
@media (max-width: 991.98px) {
  .iv-svc-row-inner {
    grid-template-columns: 52px 60px 1fr;
    gap: 20px;
    flex-wrap: wrap;
  }
  .iv-svc-row-links {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 575.98px) {
  .iv-svc-row-inner {
    grid-template-columns: 42px 52px 1fr;
    gap: 14px;
  }
  .iv-svc-row-num {
    font-size: 28px;
  }
  .iv-svc-row-icon-box {
    width: 52px;
    height: 52px;
  }
}

/* ══════════════════════════════════════════════════════════════
   C. SOLUTION HIGHLIGHTS — DARK PREMIUM BENTO GRID
   ══════════════════════════════════════════════════════════════ */

.iv-highlights-dark {
  background-color: var(--black);
}

/* about-label override for dark section */
.iv-hl-label {
  color: var(--secondaryMastercolor) !important;
}
.iv-hl-label::before {
  background-color: var(--secondaryMastercolor) !important;
}

.iv-hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.iv-hl-card {
  padding: 40px 32px;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

/* Orange top-bar that scales in on hover */
.iv-hl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondaryMastercolor),
    rgba(246, 99, 32, 0.25)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.iv-hl-card:hover::before {
  transform: scaleX(1);
}
.iv-hl-card:hover {
  background: #141414;
}

.iv-hl-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 99, 32, 0.1);
  border: 1px solid rgba(246, 99, 32, 0.2);
  color: var(--secondaryMastercolor);
  flex-shrink: 0;
  margin-bottom: 4px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.iv-hl-card:hover .iv-hl-card-icon {
  background: rgba(246, 99, 32, 0.18);
  box-shadow: 0 0 28px rgba(246, 99, 32, 0.2);
}

.iv-hl-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.iv-hl-card-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

.iv-hl-card-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--secondaryMastercolor);
  border: 1px solid rgba(246, 99, 32, 0.22);
  background: rgba(246, 99, 32, 0.08);
  margin-top: 4px;
}

/* Responsive dark grid */
@media (max-width: 991.98px) {
  .iv-hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .iv-hl-card {
    padding: 32px 24px;
  }
}
@media (max-width: 575.98px) {
  .iv-hl-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   D. HERO ARTWORK — Stacked ID cards (no images)
   ══════════════════════════════════════════════════════════════ */

.iv-hero-artwork {
  background: var(--landingBackground);
  border-left: 1px solid var(--layoutBorderColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background */
.iv-hero-artwork::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(160, 160, 160, 0.35) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

/* Card stack wrapper */
.iv-art-cards {
  position: relative;
  width: 280px;
  height: 320px;
  z-index: 1;
}

/* Base card */
.iv-art-card {
  position: absolute;
  width: 264px;
  height: 158px;
  background: #fff;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 10px;
  padding: 18px 20px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Back card */
.iv-art-card--3 {
  bottom: 0;
  left: 16px;
  transform: rotate(-5deg);
  background: #f0f0f0;
  border-color: #e0e0e0;
  z-index: 1;
  opacity: 0.7;
}

/* Middle card — shows scan animation */
.iv-art-card--2 {
  bottom: 48px;
  left: 8px;
  transform: rotate(-2.5deg);
  z-index: 2;
  overflow: hidden;
}

/* Front (verified) card */
.iv-art-card--1 {
  bottom: 96px;
  left: 0;
  transform: rotate(0deg);
  z-index: 3;
  border-color: rgba(246, 99, 32, 0.4);
  box-shadow:
    0 8px 32px rgba(246, 99, 32, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Top colour stripe */
.iv-art-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--layoutBorderColor);
  border-radius: 10px 10px 0 0;
}
.iv-art-card-bar--orange {
  background: linear-gradient(
    90deg,
    var(--secondaryMastercolor),
    rgba(246, 99, 32, 0.5)
  );
}

/* Avatar circle */
.iv-art-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--landingBackground);
  border: 1.5px solid var(--layoutBorderColor);
  flex-shrink: 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.2);
}
.iv-art-card--1 .iv-art-card-avatar {
  background: rgba(246, 99, 32, 0.06);
  border-color: rgba(246, 99, 32, 0.3);
  color: var(--secondaryMastercolor);
}

/* Fake text lines */
.iv-art-card-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
}
.iv-art-line {
  height: 7px;
  border-radius: 4px;
  background: #ebebeb;
}
.iv-art-card--1 .iv-art-line {
  background: rgba(246, 99, 32, 0.1);
}
.iv-art-line--lg {
  width: 82%;
}
.iv-art-line--md {
  width: 62%;
}
.iv-art-line--sm {
  width: 44%;
}

/* Verified badge on front card */
.iv-art-verified-badge {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #15803d;
}

/* Animated scan line on middle card */
.iv-art-scan-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 10px;
}
.iv-art-scan-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 99, 32, 0.7),
    transparent
  );
  animation: ivCardScanLine 2.8s ease-in-out infinite;
  top: 0;
}
@keyframes ivCardScanLine {
  0% {
    top: 0%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Status chip — bottom-left of pane */
.iv-art-status-chip {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--layoutBorderColor);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

/* Accuracy chip — top-right of pane */
.iv-art-acc-chip {
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  z-index: 5;
}
.iv-art-acc-val {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--secondaryMastercolor);
  line-height: 1;
  letter-spacing: -0.04em;
}
.iv-art-acc-lbl {
  font-size: 10px;
  font-weight: 500;
  color: var(--primaryTextColor);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 991.98px) {
  .iv-hero-artwork {
    border-left: none;
    border-top: 1px solid var(--layoutBorderColor);
    min-height: 280px;
  }
  .iv-art-cards {
    width: 240px;
    height: 280px;
  }
  .iv-art-card {
    width: 220px;
    height: 132px;
  }
  .iv-art-card--3 {
    left: 12px;
  }
  .iv-art-card--2 {
    bottom: 40px;
    left: 6px;
  }
  .iv-art-card--1 {
    bottom: 80px;
  }
}

/* ══════════════════════════════════════════════════════════════
   E. SERVICES — Split-row layout
   ══════════════════════════════════════════════════════════════ */

.iv-spl-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  min-height: 160px;
  position: relative;
  transition: background 0.25s ease;
  cursor: default;
}
.iv-spl-row:hover {
  background: var(--landingBackground);
}
.iv-spl-row--alt {
  background: var(--landingBackground);
}
.iv-spl-row--alt:hover {
  background: #efefef;
}

/* Orange left accent stripe */
.iv-spl-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--secondaryMastercolor);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.iv-spl-row:hover::before {
  width: 3px;
}

/* Left column */
.iv-spl-left {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 40px 32px 32px;
  position: relative;
  z-index: 1;
}
.iv-spl-num {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  font-family: var(--font-primary);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  user-select: none;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.iv-spl-row:hover .iv-spl-num {
  color: rgba(246, 99, 32, 0.15);
}

.iv-spl-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 99, 32, 0.07);
  border: 1px solid rgba(246, 99, 32, 0.18);
  color: var(--secondaryMastercolor);
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.iv-spl-row:hover .iv-spl-icon-wrap {
  background: rgba(246, 99, 32, 0.14);
  transform: scale(1.06);
}

.iv-spl-title {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--black);
  line-height: 1.25;
}

/* Vertical divider */
.iv-spl-divider {
  width: 1px;
  align-self: stretch;
  background: var(--layoutBorderColor);
  flex-shrink: 0;
}

/* Right column */
.iv-spl-right {
  padding: 32px 32px 32px 40px;
  position: relative;
  z-index: 1;
}

/* Tag link buttons */
.iv-spl-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  background: #fff;
  border: 1.5px solid var(--layoutBorderColor);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.iv-spl-tag-link:hover {
  border-color: var(--secondaryMastercolor);
  color: var(--secondaryMastercolor);
  background: rgba(246, 99, 32, 0.04);
}
.iv-spl-row--alt .iv-spl-tag-link {
  background: #fff;
}

@media (max-width: 991.98px) {
  .iv-spl-row {
    grid-template-columns: 1fr;
  }
  .iv-spl-divider {
    width: auto;
    height: 1px;
    align-self: unset;
  }
  .iv-spl-left {
    padding: 28px 24px 20px;
    gap: 14px;
  }
  .iv-spl-right {
    padding: 20px 24px 28px;
  }
}
@media (max-width: 575.98px) {
  .iv-spl-num {
    font-size: 36px;
  }
  .iv-spl-icon-wrap {
    width: 44px;
    height: 44px;
  }
}

/* ══════════════════════════════════════════════════════════════
   F. SOLUTION HIGHLIGHTS — Left-anchored numbered list
   ══════════════════════════════════════════════════════════════ */

/* Count badge */
.iv-hl-count-widget {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  margin-top: 36px;
  max-width: 220px;
}
.iv-hl-cw-num {
  font-size: 52px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--secondaryMastercolor);
  letter-spacing: -0.06em;
  line-height: 1;
}

/* Sticky heading column (desktop) */
@media (min-width: 992px) {
  .iv-hl-sticky {
    position: sticky;
    top: 100px;
  }
}

/* Feature list */
.iv-hl-list {
  border-top: 1px solid var(--layoutBorderColor);
}

.iv-hl-li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--layoutBorderColor);
  position: relative;
  transition: background 0.22s ease;
}
/* Number + icon column */
.iv-hl-li-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  flex-shrink: 0;
}
.iv-hl-li-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing: 0.04em;
  transition: color 0.22s ease;
}
.iv-hl-li:hover .iv-hl-li-num {
  color: var(--secondaryMastercolor);
}

.iv-hl-li-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
  background: var(--landingBackground);
  border: 1px solid var(--layoutBorderColor);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.iv-hl-li:hover .iv-hl-li-icon {
  color: var(--secondaryMastercolor);
  background: rgba(246, 99, 32, 0.07);
  border-color: rgba(246, 99, 32, 0.2);
}

/* Body */
.iv-hl-li-body {
  z-index: 1;
}
.iv-hl-li-title {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}
.iv-hl-li-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--primaryTextColor);
  line-height: 1.7;
  margin: 0;
}

/* Label tag */
.iv-hl-li-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border: 1px solid var(--layoutBorderColor);
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  transition:
    color 0.22s ease,
    border-color 0.22s ease;
}
.iv-hl-li:hover .iv-hl-li-tag {
  color: var(--secondaryMastercolor);
  border-color: rgba(246, 99, 32, 0.3);
}

@media (max-width: 991.98px) {
  .iv-hl-count-widget {
    max-width: 180px;
    margin-top: 24px;
    margin-bottom: 36px;
  }
  .iv-hl-cw-num {
    font-size: 40px;
  }
  .iv-hl-li {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .iv-hl-li-tag {
    grid-column: 2;
  }
}
@media (max-width: 575.98px) {
  .iv-hl-li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .iv-hl-li-left {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .iv-hl-li-tag {
    grid-column: 1;
    align-self: flex-start;
  }
}

/* ══════════════════════════════════════════════════════════════
   E2. SERVICES — Interactive onboarding flow
   ══════════════════════════════════════════════════════════════ */

.iv-proc-wrap {
  position: relative;
  overflow: hidden;
}

.iv-proc-heading {
  max-width: 960px;
  margin-bottom: 32px;
}

.iv-proc-slider {
  height: 340px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1199.98px) {
  .iv-proc-slider {
    height: 100%;
  }
}
/* Height is the only custom property — flex layout handled by Bootstrap d-flex + align-items-stretch + gap-3 in HTML */
.iv-proc-accordion {
  height: 340px;
  flex: 1;
}

.iv-proc-card {
  flex: 1;
  position: relative;
  border: none;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(246, 99, 32, 0.8),
    rgba(246, 99, 32, 0.68)
  );
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition:
    flex 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.iv-proc-card-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

/* Inactive h3: fixed 20px, clipped single line — prevents reflow wrapping during flex expansion */
.iv-proc-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.72;
  transform: translateY(20px);
  transition:
    font-size 0.35s ease,
    opacity 0.3s ease,
    transform 0.4s ease 0.25s;
  text-align: left;
}

/* Details hidden on inactive cards; delayed fade-in + fadeup after card has expanded */
.iv-proc-details {
  max-width: 92%;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease 0.25s,
    transform 0.4s ease 0.25s;
  text-align: left;
}

.iv-proc-number {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.06em;
}

/* Active card expands to 3× width */
.iv-proc-card.active {
  flex: 3;
  z-index: 10;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

/* Active h3: 24px, single line, full opacity, slides up */
.iv-proc-card.active h3 {
  font-size: 24px;
  white-space: normal;
  opacity: 1;
  transform: translateY(0);
  transition:
    font-size 0.35s ease,
    opacity 0.3s ease,
    transform 0.4s ease 0.25s;
}

/* Details fade in + slide up after 0.25s delay (card is mostly expanded by then) */
.iv-proc-card.active .iv-proc-details {
  opacity: 1;
  transform: translateY(0);
}

.iv-proc-last {
  min-height: 420px;
}

.iv-proc-step-image img {
  min-height: 320px;
  max-height: 320px;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .iv-proc-last {
    min-height: 360px;
  }
  .iv-proc-step-image img {
    max-height: 360px;
  }
}

@media (max-width: 991.98px) {
  .iv-proc-accordion {
    height: auto;
    display: grid !important;
    gap: 12px !important;
  }
  .iv-proc-card {
    flex: unset;
    width: 100%;
    height: auto;
    min-height: 160px;
  }
  .iv-proc-card h3 {
    white-space: normal;
    opacity: 1;
    font-size: 20px;
  }
  .iv-proc-details {
    opacity: 1;
    transition: none;
  }
  .iv-proc-last {
    min-height: 280px;
  }
  .iv-proc-step-image img {
    max-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .iv-proc-number {
    font-size: 48px;
  }
}
