:root {
  --avn-red: #c0000b;
  --avn-black: #000000;
  --avn-white: #ffffff;

  --avn-heading: 'Archivo', sans-serif;
  --avn-body: 'Inter', sans-serif;

  /* Typography colours */
  --avn-text-heading: #111827;
  --avn-text-body: #5f6672;
  --avn-text-supporting: #4f5662;
  --avn-text-muted: #6f7480;

  /* ==================================================
     CORE TYPOGRAPHY SYSTEM
  ================================================== */

  /* Headings */
  --avn-type-h1: clamp(48px, 4.4vw, 74px);
  --avn-type-h2: clamp(44px, 4vw, 68px);
  --avn-type-h3: 22px;
  --avn-type-h4: 18px;

  /* Body Copy */
  --avn-type-body-large: 18px;
  --avn-type-body: 16px;
  --avn-type-body-small: 14px;

  /* Supporting / Metadata */
  --avn-type-small: 13px;

  /* UI Typography */
  --avn-type-label: 12px;
  --avn-type-button: 12px;

  /* Special Data Display */
  --avn-type-kpi: clamp(42px, 3.4vw, 62px);
}

.avn-iaa {
  font-family: var(--avn-body);
  color: var(--avn-black);
  background: #f8f8f8;
}

.avn-iaa h1,
.avn-iaa h2,
.avn-iaa h3,
.avn-iaa h4,
.avn-iaa h5,
.avn-iaa h6 {
  font-family: var(--avn-heading);
  color: var(--avn-text-heading);
}

.avn-iaa *,
.avn-iaa *::before,
.avn-iaa *::after {
  box-sizing: border-box;
}

.avn-container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

/* ==========================================================
   SECTION 1: INTRODUCTION
========================================================== */

.avn-iaa-intro {
  padding: 70px 0 48px;

  background:
    radial-gradient(
      circle at 50% 15%,
      #ffffff 0%,
      #f8f8f8 62%,
      #f8f8f8 100%
    );
}

/* ==========================================================
   HEADER
========================================================== */

.avn-iaa-intro__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.avn-iaa-intro__header h1 {
  margin: 0;

  font-size: var(--avn-type-h1);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.055em;

  color: var(--avn-black);
}

.avn-iaa-intro__header h1 span,
.avn-iaa-intro__header h1 strong {
  display: block;
}

.avn-iaa-intro__header h1 strong {
  font-weight: 800;
  color: var(--avn-red);
}

/* Divider */
.avn-iaa-intro__divider {
  width: 46px;
  height: 2px;

  margin: 22px auto 18px;

  background: var(--avn-red);
}

/* Intro body copy */
.avn-iaa-intro__header p {
  margin: 0;

  font-size: var(--avn-type-body-large);
  line-height: 1.35;
  font-weight: 500;

  color: var(--avn-text-muted);
}

.avn-iaa-intro__header p em {
  font-style: italic;

  color: var(--avn-red);

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ==========================================================
   CARDS GRID
========================================================== */

.avn-iaa-intro__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;

  margin-top: 36px;
}

.avn-iaa-intro__card {
  min-height: 250px;
  padding: 28px 28px 24px;

  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  transform: translateY(0);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.avn-iaa-intro__card:hover {
  transform: translateY(-7px);

  border-color: rgba(192, 0, 11, 0.18);

  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.15),
    0 14px 28px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ==========================================================
   CARD ICON
========================================================== */

.avn-iaa-intro__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  margin-bottom: 22px;

  border: 1.5px solid rgba(192, 0, 11, 0.28);
  border-radius: 50%;

  background: var(--avn-white);

  transition: transform 0.35s ease;
}

.avn-iaa-intro__card:hover .avn-iaa-intro__icon {
  transform: scale(1.06);
}

.avn-iaa-intro__icon img {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;
}

/* ==========================================================
   CARD CONTENT
========================================================== */

.avn-iaa-intro__card h3 {
  position: relative;

  margin: 0 0 16px;
  padding-bottom: 11px;

  font-size: var(--avn-type-h3);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;

  color: var(--avn-text-heading);
}

.avn-iaa-intro__card h3::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 36px;
  height: 2px;

  background: var(--avn-red);
}

.avn-iaa-intro__card p {
  margin: 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.55;
  font-weight: 500;

  color: var(--avn-text-supporting);
}

/* ==========================================================
   FOOTER
========================================================== */

.avn-iaa-intro__footer {
  margin-top: 30px;
  text-align: center;
}

.avn-iaa-intro__footer > p {
  margin: 0 0 16px;

  font-size: var(--avn-type-small);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.18em;

  color: var(--avn-text-heading);
}

.avn-iaa-intro__footer > p span {
  color: var(--avn-red);
}

/* ==========================================================
   PRIMARY BUTTON
========================================================== */

.avn-iaa-intro__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 54px;

  padding: 17px 30px;

  border-radius: 6px;

  background: var(--avn-red);

  font-size: var(--avn-type-button);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--avn-white);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.avn-iaa-intro__button:hover {
  background: #980008;
  color: var(--avn-white);

  transform: translateY(-1px);
}

.avn-iaa-intro__button span {
  font-size: 18px;
  line-height: 1;
}

/* ==========================================================
   TRUST META
========================================================== */

.avn-iaa-intro__trust {
  margin-top: 12px;

  font-size: var(--avn-type-label);
  line-height: 1.4;

  color: var(--avn-text-muted);
}

.avn-iaa-intro__trust-icon {
  margin-right: 6px;
  color: var(--avn-red);
}

.avn-iaa-intro__trust span:not(.avn-iaa-intro__trust-icon) {
  margin: 0 8px;
  color: #b4b8bf;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {
  .avn-iaa-intro__cards {
    gap: 20px;
  }

  .avn-iaa-intro__card {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .avn-iaa-intro {
    padding: 72px 0 56px;
  }

  .avn-iaa-intro__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   MOBILE — SECTION 01 POLISH
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-intro {
    min-height: auto;
    padding: 52px 0 44px;
  }


  /* ------------------------------------------
     HEADER
  ------------------------------------------ */

  .avn-iaa-intro__header h1 {
    line-height: 1.05;
  }

  .avn-iaa-intro__divider {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .avn-iaa-intro__header p {
    max-width: 420px;
    margin-inline: auto;
  }


  /* ------------------------------------------
     CARDS
  ------------------------------------------ */

  .avn-iaa-intro__cards {
    gap: 12px;
    margin-top: 26px;
  }

  .avn-iaa-intro__card {
    min-height: 0;

    padding: 18px 18px 18px;

    border-radius: 10px;

    box-shadow:
      0 8px 20px rgba(17, 24, 39, 0.055),
      0 2px 6px rgba(17, 24, 39, 0.03);
  }


  /* ------------------------------------------
     CARD ICON
  ------------------------------------------ */

  .avn-iaa-intro__icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 10px;
  }

  .avn-iaa-intro__icon img {
    width: 24px;
    height: 24px;
  }


  /* ------------------------------------------
     CARD CONTENT
  ------------------------------------------ */

  .avn-iaa-intro__card h3 {
    margin: 0 0 8px;
    padding-bottom: 8px;
  }

  .avn-iaa-intro__card h3::after {
    left: 50%;
    width: 30px;

    transform: translateX(-50%);
  }

  .avn-iaa-intro__card p {
    max-width: 360px;

    margin-inline: auto;

    line-height: 1.45;
  }


  /* ------------------------------------------
     FOOTER
  ------------------------------------------ */

  .avn-iaa-intro__footer {
    margin-top: 20px;
  }

  .avn-iaa-intro__footer > p {
    max-width: 440px;

    margin: 0 auto 16px;

    line-height: 1.5;
    letter-spacing: 0.10em;
  }

  .avn-iaa-intro__footer > p span {
    display: inline;
    margin-top: 0;
  }


  /* ------------------------------------------
     CTA
  ------------------------------------------ */

  .avn-iaa-intro__button {
    width: auto;
    min-width: 280px;
    min-height: 52px;

    padding: 16px 26px;

    margin-inline: auto;
  }


  /* ------------------------------------------
     TRUST META
  ------------------------------------------ */

  .avn-iaa-intro__trust {
    margin-top: 12px;
  }
}
/* ==========================================================
   SECTION 02 : REPEATING INVENTORY CYCLE
========================================================== */

.avn-iaa-reality {
  padding: 76px 0 72px;
  background: var(--avn-white);
}

.avn-iaa-reality .avn-container {
  width: min(100% - 48px, 1420px);
}

/* ==========================================================
   MAIN LAYOUT
========================================================== */

.avn-iaa-reality__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.6fr);
  gap: 60px;
  align-items: center;
}

/* ==========================================================
   LEFT CONTENT
========================================================== */

.avn-iaa-reality__content h2 {
  max-width: 540px;
  margin: 0;

  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.05em;

  color: var(--avn-text-heading);
}

.avn-iaa-reality__content h2 span {
  display: block;
  margin-top: 10px;

  color: var(--avn-red);
}

.avn-iaa-reality__content > p {
  max-width: 400px;
  margin: 28px 0 0;

  font-size: var(--avn-type-body-large);
  line-height: 1.6;

  color: var(--avn-text-body);
}

.avn-iaa-reality__line {
  width: 42px;
  height: 2px;

  margin-top: 28px;

  background: var(--avn-red);
}

/* ==========================================================
   VISUAL CYCLE
========================================================== */

.avn-iaa-reality__visual {
  position: relative;
  min-height: 580px;
}

/* Outer orbit */
.avn-iaa-reality__orbit {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 560px;
  height: 560px;

  border: 1px dashed rgba(17, 24, 39, 0.15);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

/* Inner orbit */
.avn-iaa-reality__orbit::before {
  content: "";

  position: absolute;
  inset: 62px;

  border: 1px solid rgba(192, 0, 11, 0.07);
  border-radius: 50%;
}

/* ==========================================================
   ERP CENTRE
========================================================== */

.avn-iaa-reality__erp {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 170px;
  height: 170px;

  border: 1px solid rgba(192, 0, 11, 0.08);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow:
    0 0 0 38px rgba(192, 0, 11, 0.04),
    0 28px 70px rgba(192, 0, 11, 0.16),
    0 18px 42px rgba(17, 24, 39, 0.09);

  transform: translate(-50%, -50%);
}

.avn-iaa-reality__erp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 10px;
}

.avn-iaa-reality__erp-icon img {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;
}

.avn-iaa-reality__erp strong {
  font-size: var(--avn-type-kpi);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.055em;

  color: var(--avn-red);
}

.avn-iaa-reality__erp small {
  margin-top: 10px;

  font-size: var(--avn-type-small);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--avn-text-muted);
}

/* ==========================================================
   FLOATING CARDS
========================================================== */

.avn-iaa-reality__card {
  position: absolute;
  z-index: 4;

  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;

  width: 280px;
  min-height: 108px;

  padding: 18px 20px;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 22px 52px rgba(17, 24, 39, 0.09),
    0 7px 18px rgba(17, 24, 39, 0.04);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.avn-iaa-reality__card:hover {
  border-color: rgba(192, 0, 11, 0.18);

  box-shadow:
    0 32px 72px rgba(17, 24, 39, 0.13),
    0 10px 22px rgba(17, 24, 39, 0.06);

  transform: translateY(-7px);
}

/* Card positions */
.avn-iaa-reality__card--top {
  top: 0;
  left: 50%;

  transform: translateX(-50%);
}

.avn-iaa-reality__card--top:hover {
  transform: translateX(-50%) translateY(-7px);
}

.avn-iaa-reality__card--right {
  top: 185px;
  right: 0;
}

.avn-iaa-reality__card--bottom-right {
  right: 95px;
  bottom: 12px;
}

.avn-iaa-reality__card--bottom-left {
  bottom: 12px;
  left: 95px;
}

.avn-iaa-reality__card--left {
  top: 185px;
  left: 0;
}

/* ==========================================================
   CARD ICON
========================================================== */

.avn-iaa-reality__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.06);
}

.avn-iaa-reality__icon img {
  display: block;

  width: 27px;
  height: 27px;

  object-fit: contain;
}

.avn-iaa-reality__card-content {
  min-width: 0;
}

.avn-iaa-reality__card h3 {
  margin: 0 0 6px;

  font-size: var(--avn-type-h4);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;

  color: var(--avn-text-heading);
}

.avn-iaa-reality__card p {
  margin: 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.45;

  color: var(--avn-text-supporting);
}

/* ==========================================================
   WARNING BAR
========================================================== */

.avn-iaa-reality__warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  max-width: 900px;

  margin: 32px auto 0;
  padding: 22px 32px;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 12px;

  background: #f7f7f8;

  box-shadow: 0 15px 38px rgba(17, 24, 39, 0.05);
}

.avn-iaa-reality__warning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.07);
}

.avn-iaa-reality__warning-icon img {
  display: block;

  width: 24px;
  height: 24px;

  object-fit: contain;
}

.avn-iaa-reality__warning strong {
  font-size: var(--avn-type-h4);
  line-height: 1.3;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-reality__warning p {
  margin: 0;

  font-size: var(--avn-type-body);
  line-height: 1.5;

  color: var(--avn-text-body);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1200px) {
  .avn-iaa-reality__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .avn-iaa-reality__content {
    text-align: center;
  }

  .avn-iaa-reality__content h2 {
    max-width: 760px;
    margin-inline: auto;
  }

  .avn-iaa-reality__content > p {
    max-width: 560px;

    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-reality__line {
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-reality__visual {
    width: min(100%, 920px);

    margin-inline: auto;
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {
  .avn-iaa-reality {
    padding: 60px 0;
  }

  .avn-iaa-reality .avn-container {
    width: min(100% - 32px, 1200px);
  }

  .avn-iaa-reality__grid {
    gap: 34px;
  }

  .avn-iaa-reality__content h2 {
    max-width: 560px;

    line-height: 1.08;
  }

  .avn-iaa-reality__content h2 span {
    margin-top: 8px;
  }

  .avn-iaa-reality__content > p {
    max-width: 470px;

    margin-top: 24px;
  }

  .avn-iaa-reality__line {
    margin-top: 24px;
  }

  /* ========================================================
     MOBILE CYCLE
  ======================================================== */

  .avn-iaa-reality__visual {
    display: grid;
    gap: 14px;

    min-height: auto;
  }

  .avn-iaa-reality__orbit {
    display: none;
  }

  .avn-iaa-reality__erp,
  .avn-iaa-reality__card {
    position: static;

    transform: none;
  }

  /* Slightly smaller mobile ERP */
 .avn-iaa-reality__erp {
    width: 146px;
    height: 146px;

    margin: 0 auto 30px;

    padding: 14px 10px;

    box-shadow:
      0 0 0 28px rgba(192, 0, 11, 0.04),
      0 20px 50px rgba(192, 0, 11, 0.13),
      0 12px 30px rgba(17, 24, 39, 0.07);
  }

  .avn-iaa-reality__erp-icon {
    margin-bottom: 6px;
  }


  .avn-iaa-reality__erp-icon img {
    width: 24px;
    height: 24px;
  }

	  .avn-iaa-reality__erp strong {
    font-size: 42px;
    line-height: 0.92;
  }
	
	
    .avn-iaa-reality__erp small {
    margin-top: 8px;

    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0.07em;

    text-align: center;
  }

  /* Mobile symptom cards */
  .avn-iaa-reality__card,
  .avn-iaa-reality__card--top,
  .avn-iaa-reality__card--right,
  .avn-iaa-reality__card--bottom-right,
  .avn-iaa-reality__card--bottom-left,
  .avn-iaa-reality__card--left {
    width: 100%;

    min-height: auto;

    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;

    padding: 17px 18px;
  }

  .avn-iaa-reality__icon {
    width: 48px;
    height: 48px;
  }

  .avn-iaa-reality__icon img {
    width: 24px;
    height: 24px;
  }

  /* Keep row content left aligned */
  .avn-iaa-reality__card-content {
    text-align: left;
  }

  .avn-iaa-reality__card:hover,
  .avn-iaa-reality__card--top:hover {
    transform: none;
  }

  /* ========================================================
     MOBILE CONCLUSION
  ======================================================== */

  .avn-iaa-reality__warning {
    flex-direction: column;
    gap: 10px;

    margin-top: 24px;
    padding: 22px 20px;

    text-align: center;
  }

  .avn-iaa-reality__warning-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .avn-iaa-reality__warning-icon img {
    width: 23px;
    height: 23px;
  }
}

/* ==========================================================
   SECTION 03 : WHAT THE ASSESSMENT REVEALS
========================================================== */

.avn-iaa-reveals {
  padding: 76px 0 80px;
  background: #f8f8f8;
}

.avn-iaa-reveals .avn-container {
  width: min(100% - 48px, 1320px);
}

/* ==========================================================
   MAIN LAYOUT
========================================================== */

.avn-iaa-reveals__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.55fr);
  gap: 32px;
  align-items: center;
}

/* ==========================================================
   LEFT CONTENT
========================================================== */

.avn-iaa-reveals__content h2 {
  max-width: 560px;
  margin: 0;
  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: var(--avn-text-heading);
}

.avn-iaa-reveals__content h2 span {
  display: block;
  margin-top: 8px;
  color: var(--avn-red);
}

.avn-iaa-reveals__line {
  width: 42px;
  height: 2px;
  margin-top: 24px;
  background: var(--avn-red);
}

.avn-iaa-reveals__content > p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: var(--avn-type-body);
  line-height: 1.65;
  color: var(--avn-text-body);
}

/* ==========================================================
   MINI INSIGHT CARD
========================================================== */

.avn-iaa-reveals__mini-card {
  position: relative;

  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;

  max-width: 390px;

  /* Pull it closer to the paragraph */
  margin-top: 22px;

  padding: 15px 18px;

  border: 1px solid rgba(17, 24, 39, 0.055);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 6px 18px rgba(17, 24, 39, 0.035);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.avn-iaa-reveals__mini-card:hover {
  border-color: rgba(192, 0, 11, 0.14);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.075);
  transform: translateY(-4px);
}

.avn-iaa-reveals__mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.06);
}

.avn-iaa-reveals__mini-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.avn-iaa-reveals__mini-card strong,
.avn-iaa-reveals__mini-card span {
  display: block;
}

.avn-iaa-reveals__mini-card strong {
  font-size: var(--avn-type-body-small);
  line-height: 1.3;
  font-weight: 800;
  color: var(--avn-text-heading);
}

.avn-iaa-reveals__mini-card span {
  margin-top: 3px;
  font-size: var(--avn-type-small);
  line-height: 1.4;
  color: var(--avn-text-supporting);
}

/* ==========================================================
   DESKTOP : INSIGHT → REPORT CONNECTOR
========================================================== */

@media (min-width: 1101px) {

  .avn-iaa-reveals__mini-card::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 100%;

    width: 132px;
    height: 1px;

    background:
      linear-gradient(
        90deg,
        rgba(192, 0, 11, 0.30) 0%,
        rgba(192, 0, 11, 0.15) 55%,
        rgba(17, 24, 39, 0.08) 100%
      );

    transform: translateY(-50%);

    pointer-events: none;
  }

  .avn-iaa-reveals__mini-card::before {
    content: "";

    position: absolute;
    top: 50%;
    left: calc(100% + 76px);

    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: rgba(192, 0, 11, 0.55);

    transform: translate(-50%, -50%);

    pointer-events: none;
  }
}

/* ==========================================================
   REPORT WRAPPER
========================================================== */

.avn-iaa-report {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 960px;
  padding: 24px 30px 22px;

  overflow: visible;

  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);

box-shadow:
  0 14px 34px rgba(17, 24, 39, 0.065),
  0 4px 10px rgba(17, 24, 39, 0.025);
}



/* ==========================================================
   REPORT HEADER
========================================================== */

.avn-iaa-report__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.avn-iaa-report__header span {
  display: block;
  margin-bottom: 6px;

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--avn-text-muted);
}

.avn-iaa-report__header h3 {
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;

  color: var(--avn-text-heading);
}

/* Confidential badge */
.avn-iaa-report__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 12px;

  border: 1px solid rgba(192, 0, 11, 0.24);
  border-radius: 5px;

  font-size: var(--avn-type-label);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--avn-red);
}

.avn-iaa-report__badge img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ==========================================================
   REPORT METRICS
========================================================== */

.avn-iaa-report__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avn-iaa-report__metric {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;

  min-height: 150px;
  padding: 20px 22px;

  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.avn-iaa-report__metric:nth-child(odd) {
  border-right: 1px solid rgba(17, 24, 39, 0.08);
}

.avn-iaa-report__metric:nth-child(4) {
  border-bottom: 0;
}

.avn-iaa-report__metric:nth-child(4) {
  grid-template-columns: 42px minmax(0, 1fr);
}

/* ==========================================================
   METRIC 03 : CATEGORY BREAKDOWN
========================================================== */

.avn-iaa-report__metric.avn-iaa-report__metric--category {
  grid-template-columns:
    40px
    minmax(120px, 1fr)
    132px;

  gap: 10px;

  padding-left: 18px;
  padding-right: 14px;
}

.avn-iaa-report__metric--category .avn-iaa-report__metric-content {
  min-width: 0;
}

.avn-iaa-report__metric--category h4 {
  white-space: nowrap;
}

/* Chart */

.avn-iaa-report__category-chart {
  display: grid;
  gap: 8px;

  width: 132px;

  align-self: center;

  margin: 0;
  transform: none;
}

.avn-iaa-report__category-row {
  display: grid;

  grid-template-columns: 56px 44px 24px;

  gap: 4px;
  align-items: center;
}

/* Labels */

.avn-iaa-report__category-name {
  min-width: 0;

  overflow: hidden;

  font-size: 10px;
  line-height: 1.15;

  white-space: nowrap;
  text-overflow: ellipsis;

  color: var(--avn-text-body);
}

.avn-iaa-report__category-row:first-child
.avn-iaa-report__category-name {
  font-size: 9px;
}

/* Bar */

.avn-iaa-report__category-bar {
  display: block;

  width: 44px;
  height: 6px;

  overflow: hidden;

  border-radius: 2px;

  background: #dedede;
}

.avn-iaa-report__category-fill {
  display: block;

  height: 100%;

  border-radius: inherit;

  background: #bfc1c4;
}

.avn-iaa-report__category-fill--primary {
  background: var(--avn-red);
}

/* Percentage */

.avn-iaa-report__category-value {
  display: block;

  margin: 0;

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;

  text-align: right;

  color: var(--avn-text-heading);
}
/* Metric icon */
.avn-iaa-report__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.06);
}

.avn-iaa-report__icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.avn-iaa-report__metric-content {
  min-width: 0;
}

/* Metric label */
.avn-iaa-report__label {
  display: block;
  margin-bottom: 6px;

  font-size: var(--avn-type-label);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: var(--avn-red);
}

/* Metric title */
.avn-iaa-report__metric h4 {
  margin: 0 0 7px;

  font-size: var(--avn-type-h4);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;

  color: var(--avn-text-heading);
}

/* KPI value */
.avn-iaa-report__metric strong {
  display: block;
  margin-top: 4px;

  font-size: var(--avn-type-kpi);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;

  color: var(--avn-red);
}

/* Supporting copy */
.avn-iaa-report__metric small {
  display: block;

  font-size: var(--avn-type-small);
  line-height: 1.4;

  color: var(--avn-text-body);
}

/* Risk tag */
.avn-iaa-report__metric em {
  display: inline-flex;
  margin-top: 9px;
  padding: 6px 9px;

  border-radius: 5px;
  background: rgba(192, 0, 11, 0.08);

  font-style: normal;
  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--avn-red);
}

/* ==========================================================
   REPORT CHARTS
========================================================== */

.avn-iaa-report__chart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avn-iaa-report__chart img {
  display: block;
  width: 100%;
  max-width: 108px;
  max-height: 108px;
  object-fit: contain;
}

.avn-iaa-report__chart--donut img {
  max-width: 116px;
  max-height: 116px;
}

/* ==========================================================
   BUSINESS IMPACT NOTE
========================================================== */

.avn-iaa-report__note {
  max-width: 190px;
  margin-top: 10px;
  padding: 9px 11px;

  border-radius: 6px;
  background: rgba(192, 0, 11, 0.08);

  font-size: var(--avn-type-small);
  line-height: 1.4;

  color: var(--avn-text-supporting);
}

/* ==========================================================
   REPORT FOOTER
========================================================== */

.avn-iaa-report__footer {
  display: flex;
  align-items: center;
  gap: 12px;

  /*
   * Extend the footer to the report edges.
   * Report horizontal padding = 30px.
   */
  margin: 0 -30px -22px;

  padding: 14px 30px 15px;

  border-top: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 0 0 10px 10px;

  background: rgba(192, 0, 11, 0.018);
}

.avn-iaa-report__footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.06);
}

.avn-iaa-report__footer-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.avn-iaa-report__footer p {
  margin: 0;

  font-size: var(--avn-type-small);
  line-height: 1.45;

  color: var(--avn-text-body);
}

.avn-iaa-report__footer strong {
  display: block;
  color: var(--avn-text-heading);
}

/* ==========================================================
   BOTTOM CLARITY BAR
========================================================== */

.avn-iaa-reveals__bottom {
  display: grid;
    grid-template-columns:
    52px
    minmax(0, 1.05fr)
    minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 12px;
  max-width: 980px;
margin: 18px auto 0;
padding: 20px 28px;

  border-left: 5px solid var(--avn-red);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);

  box-shadow:
  0 8px 22px rgba(17, 24, 39, 0.035);
}

.avn-iaa-reveals__bottom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.06);
}

.avn-iaa-reveals__bottom-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.avn-iaa-reveals__bottom strong {
  font-size: var(--avn-type-h4);
  line-height: 1.3;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-reveals__bottom p {
  margin: 4px 0 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.55;

  color: var(--avn-text-body);
}

/* ==========================================================
   CLARITY BAR : MESSAGE DIVIDER
========================================================== */

.avn-iaa-reveals__bottom > p {
  position: relative;

  margin: 0;
  padding-left: 28px;
}

.avn-iaa-reveals__bottom > p::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 1px;
  height: 44px;

  background: rgba(17, 24, 39, 0.10);

  transform: translateY(-50%);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {
  .avn-iaa-reveals__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .avn-iaa-reveals__content {
    text-align: center;
  }

  .avn-iaa-reveals__content h2,
  .avn-iaa-reveals__content > p,
  .avn-iaa-reveals__mini-card {
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-reveals__line {
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-report {
    margin-inline: auto;
  }
}

/* ==========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 900px) {
  .avn-iaa-report__grid {
    grid-template-columns: 1fr;
  }

  .avn-iaa-report__metric,
  .avn-iaa-report__metric:nth-child(4) {
    grid-template-columns: 58px minmax(0, 1fr) 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .avn-iaa-report__metric:last-child {
    grid-template-columns: 58px minmax(0, 1fr);
    border-bottom: 0;
  }

  .avn-iaa-reveals__bottom {
    grid-template-columns: 1fr;

    border-top: 5px solid var(--avn-red);
    border-left: 0;

    text-align: center;
  }

  .avn-iaa-reveals__bottom-icon {
    margin-inline: auto;
  }
}
.avn-iaa-reveals__bottom > p {
  padding-left: 0;
}

.avn-iaa-reveals__bottom > p::before {
  display: none;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-reveals {
    padding: 56px 0 60px;
  }

  .avn-iaa-reveals .avn-container {
    width: min(100% - 32px, 1200px);
  }


  /* ========================================================
     INTRO
  ======================================================== */

  .avn-iaa-reveals__grid {
    gap: 30px;
  }

  .avn-iaa-reveals__content {
    text-align: center;
  }

  .avn-iaa-reveals__content h2 {
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.08;
  }

  .avn-iaa-reveals__content h2 span {
    margin-top: 6px;
  }

  .avn-iaa-reveals__line {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-reveals__content > p {
    max-width: 470px;

    margin: 20px auto 0;

    line-height: 1.55;
  }


  /* ========================================================
     MINI INSIGHT
  ======================================================== */

  .avn-iaa-reveals__mini-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;

    max-width: 380px;

    margin: 22px auto 0;
    padding: 14px 16px;

    text-align: left;

    border-color: rgba(192, 0, 11, 0.13);

    box-shadow:
      0 7px 18px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-reveals__mini-icon {
    width: 42px;
    height: 42px;
  }

  .avn-iaa-reveals__mini-icon img {
    width: 22px;
    height: 22px;
  }

  .avn-iaa-reveals__mini-card span {
    margin-top: 2px;
  }


  /* ========================================================
     REPORT
  ======================================================== */

  .avn-iaa-report {
    max-width: 100%;

    padding: 16px;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
      0 10px 26px rgba(17, 24, 39, 0.06),
      0 3px 8px rgba(17, 24, 39, 0.025);
  }


  /* ========================================================
     REPORT HEADER
  ======================================================== */

  .avn-iaa-report__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    padding-bottom: 14px;
  }

  .avn-iaa-report__header > div:first-child {
    min-width: 0;
  }

  .avn-iaa-report__header span {
    margin-bottom: 5px;
  }

  .avn-iaa-report__badge {
    flex: 0 0 auto;

    margin: 0;

    padding: 7px 9px;

    gap: 6px;
  }

  .avn-iaa-report__badge img {
    width: 14px;
    height: 14px;
  }


  /* ========================================================
     METRIC GRID
  ======================================================== */

  .avn-iaa-report__grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 10px;

    padding-top: 12px;
  }


  /* ========================================================
     STANDARD METRIC CARDS
  ======================================================== */

  .avn-iaa-report__metric,
  .avn-iaa-report__metric:nth-child(4),
  .avn-iaa-report__metric:last-child {
    display: grid;

    grid-template-columns:
      38px
      minmax(0, 1fr)
      64px;

    gap: 10px;
    align-items: center;

    min-height: 0;

    margin: 0;
    padding: 13px 14px;

    border: 1px solid rgba(17, 24, 39, 0.065);
    border-radius: 8px;

    background: #fafafa;
  }

  .avn-iaa-report__metric:nth-child(odd),
  .avn-iaa-report__metric:nth-child(4) {
    border-right: 1px solid rgba(17, 24, 39, 0.065);
    border-bottom: 1px solid rgba(17, 24, 39, 0.065);
  }


  /* Metric 04 has no chart */
  .avn-iaa-report__metric:nth-child(4),
  .avn-iaa-report__metric:last-child {
    grid-template-columns:
      38px
      minmax(0, 1fr);
  }


  /* ========================================================
     METRIC ICON
  ======================================================== */

  .avn-iaa-report__icon {
    width: 36px;
    height: 36px;

    align-self: start;
  }

  .avn-iaa-report__icon img {
    width: 18px;
    height: 18px;
  }


  /* ========================================================
     METRIC CONTENT
  ======================================================== */

  .avn-iaa-report__label {
    margin-bottom: 4px;
  }

  .avn-iaa-report__metric h4 {
    margin-bottom: 4px;
  }

  .avn-iaa-report__metric strong {
    margin-top: 2px;
  }

  .avn-iaa-report__metric small {
    line-height: 1.35;
  }

  .avn-iaa-report__metric em {
    margin-top: 6px;
    padding: 5px 7px;
  }


  /* ========================================================
     STANDARD REPORT VISUALS
  ======================================================== */

  .avn-iaa-report__chart {
    align-self: center;
    justify-content: flex-end;
  }

  .avn-iaa-report__chart img,
  .avn-iaa-report__chart--donut img {
    width: 58px;
    max-width: 58px;

    height: 58px;
    max-height: 58px;
  }


  /* ========================================================
     METRIC 03 : CATEGORY BREAKDOWN
  ======================================================== */

  .avn-iaa-report__metric.avn-iaa-report__metric--category {
    grid-template-columns:
      36px
      minmax(120px, 1fr)
      128px;

    gap: 9px;

    padding: 13px 12px;
  }

  .avn-iaa-report__metric--category h4 {
    white-space: nowrap;
  }

  .avn-iaa-report__category-chart {
    width: 128px;

    gap: 7px;

    align-self: center;
  }

  .avn-iaa-report__category-row {
    grid-template-columns:
      54px
      42px
      24px;

    gap: 4px;
  }

  .avn-iaa-report__category-name {
    font-size: 9px;
  }

  .avn-iaa-report__category-row:first-child
  .avn-iaa-report__category-name {
    font-size: 8px;
  }

  .avn-iaa-report__category-bar {
    width: 42px;
    height: 5px;
  }

  .avn-iaa-report__category-value {
    font-size: 9px;
  }


  /* ========================================================
     BUSINESS IMPACT
  ======================================================== */

  .avn-iaa-report__note {
    max-width: 220px;

    margin-top: 7px;
    padding: 7px 9px;
  }


  /* ========================================================
     REPORT FOOTER
  ======================================================== */

  .avn-iaa-report__footer {
    /*
     * Important:
     * desktop uses negative margins to reach the report edges.
     * Mobile must redefine those values.
     */
    margin:
      12px
      -16px
      -16px;

    padding:
      12px
      16px
      13px;

    gap: 10px;

    border-radius: 0 0 10px 10px;
  }

  .avn-iaa-report__footer-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .avn-iaa-report__footer-icon img {
    width: 16px;
    height: 16px;
  }

  .avn-iaa-report__footer p {
    line-height: 1.4;
  }


  /* ========================================================
     BOTTOM CLARITY CARD
  ======================================================== */

  .avn-iaa-reveals__bottom {
    grid-template-columns: 1fr;
    gap: 0;

    margin-top: 18px;

    padding: 18px;

    border-top: 3px solid var(--avn-red);
    border-left: 0;

    border-radius: 10px;

    text-align: center;

    box-shadow:
      0 8px 22px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-reveals__bottom-icon {
    width: 42px;
    height: 42px;

    margin-inline: auto;
    margin-bottom: 12px;
  }

  .avn-iaa-reveals__bottom-icon img {
    width: 21px;
    height: 21px;
  }

  .avn-iaa-reveals__bottom > div {
    padding-bottom: 14px;
  }

  .avn-iaa-reveals__bottom > div p {
    margin-top: 3px;
  }

  .avn-iaa-reveals__bottom > p {
    position: relative;

    margin: 0;

    padding:
      14px
      0
      0;
  }

  /* Horizontal divider between conclusion messages */
  .avn-iaa-reveals__bottom > p::before {
    content: "";

    display: block;

    position: absolute;
    top: 0;
    left: 50%;

    width: 64px;
    height: 1px;

    background: rgba(17, 24, 39, 0.10);

    transform: translateX(-50%);
  }
}

/* ==========================================================
   SECTION 04 : HOW WE UNCOVER IT
========================================================== */

.avn-iaa-uncover {
  padding: 88px 0 48px;
  background: var(--avn-white);
}

.avn-iaa-uncover .avn-container {
  width: min(100% - 48px, 1500px);
}

/* ==========================================================
   MAIN LAYOUT
========================================================== */

.avn-iaa-uncover__grid {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

/* ==========================================================
   LEFT CONTENT
========================================================== */

.avn-iaa-uncover__content h2 {
  margin: 0;

  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.05em;

  color: var(--avn-text-heading);
}

.avn-iaa-uncover__content h2 span {
  color: var(--avn-red);
}

.avn-iaa-uncover__line {
  width: 46px;
  height: 2px;
  margin-top: 30px;
  background: var(--avn-red);
}

.avn-iaa-uncover__content > p {
  max-width: 390px;
  margin: 30px 0 0;

  font-size: var(--avn-type-body-large);
  line-height: 1.65;

  color: var(--avn-text-body);
}

/* ==========================================================
   INSIGHT NOTE
========================================================== */

.avn-iaa-uncover__note {
  display: grid;
  grid-template-columns: 58px 1px minmax(0, 1fr);
  gap: 18px;
  align-items: center;

  max-width: 390px;
  margin-top: 38px;
}

.avn-iaa-uncover__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border: 1px solid rgba(192, 0, 11, 0.32);
  border-radius: 50%;
  background: var(--avn-white);
}

.avn-iaa-uncover__note-icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.avn-iaa-uncover__note-divider {
  width: 1px;
  height: 58px;
  background: rgba(17, 24, 39, 0.14);
}

.avn-iaa-uncover__note p {
  margin: 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.5;

  color: var(--avn-text-heading);
}

.avn-iaa-uncover__note strong {
  font-weight: 800;
}

/* ==========================================================
   PROCESS GRID
========================================================== */

.avn-iaa-uncover__process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* ==========================================================
   PROCESS CARD
========================================================== */

.avn-iaa-uncover__card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 520px;
  padding: 32px 24px 28px;

  overflow: visible;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 16px;
  background: rgba(248, 248, 248, 0.74);

  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.045);
}

/* Active validation card */
.avn-iaa-uncover__card--active {
  border-color: rgba(192, 0, 11, 0.18);
  background: var(--avn-white);

  box-shadow:
    0 18px 44px rgba(192, 0, 11, 0.055),
    0 10px 24px rgba(17, 24, 39, 0.045);
}

/* Soft clarity card */
.avn-iaa-uncover__card--soft {
  background: rgba(192, 0, 11, 0.025);
}

/* ==========================================================
   CARD TOP
========================================================== */

.avn-iaa-uncover__card-top {
  min-height: 86px;
  text-align: center;
}

.avn-iaa-uncover__card-top span {
  display: block;
  margin-bottom: 10px;

  font-size: var(--avn-type-h4);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;

  color: var(--avn-text-heading);
}

.avn-iaa-uncover__card--active .avn-iaa-uncover__card-top span {
  color: var(--avn-red);
}

.avn-iaa-uncover__card-top p {
  max-width: 170px;
  margin: 0 auto;

  font-size: var(--avn-type-body-small);
  line-height: 1.45;

  color: var(--avn-text-supporting);
}

/* ==========================================================
   MAIN CIRCLE
========================================================== */

.avn-iaa-uncover__circle {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 150px;
  height: 150px;

  margin: 14px auto 20px;

  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow:
    0 14px 34px rgba(17, 24, 39, 0.08),
    inset 0 0 0 18px rgba(192, 0, 11, 0.035);
}

.avn-iaa-uncover__circle img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Active circle */
.avn-iaa-uncover__card--active .avn-iaa-uncover__circle {
  width: 166px;
  height: 166px;

  margin-top: 8px;
margin-bottom: 20px;
  border-color: rgba(192, 0, 11, 0.32);

  box-shadow:
    0 0 0 11px rgba(192, 0, 11, 0.04),
    0 18px 44px rgba(192, 0, 11, 0.11),
    inset 0 0 0 19px rgba(192, 0, 11, 0.035);
}

.avn-iaa-uncover__card--active .avn-iaa-uncover__circle img {
  width: 80px;
  height: 80px;
}

/* ==========================================================
   CONNECTORS
========================================================== */

.avn-iaa-uncover__card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 226px;
  right: -38px;
  z-index: 2;

  width: 56px;
  height: 1px;

  background: rgba(17, 24, 39, 0.12);
}

.avn-iaa-uncover__card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 204px;
  right: -30px;
  z-index: 8;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);

  font-size: 22px;
  line-height: 1;
  font-weight: 600;

  color: var(--avn-text-muted);
}

/* ==========================================================
   CARD BOTTOM
========================================================== */

.avn-iaa-uncover__card-bottom {
  display: grid;
  gap: 16px;
}

.avn-iaa-uncover__quote {
  max-width: 190px;
  margin: 0 auto;

  text-align: center;

  font-size: var(--avn-type-body-small);
  line-height: 1.5;

  color: var(--avn-text-body);
}

.avn-iaa-uncover__card-bottom > strong {
  display: block;

  text-align: center;

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--avn-text-muted);
}

.avn-iaa-uncover__card:first-child .avn-iaa-uncover__card-bottom {
  margin-top: 0;
	  border-color: rgba(17, 24, 39, 0.05);
  background: rgba(255, 255, 255, 0.58);
}

/* ==========================================================
   PROCESS ITEMS
========================================================== */

.avn-iaa-uncover__item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.avn-iaa-uncover__item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.065);
}

.avn-iaa-uncover__item > span img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.avn-iaa-uncover__item strong {
  display: block;
  margin-bottom: 4px;

  font-size: var(--avn-type-body-small);
  line-height: 1.25;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-uncover__item p {
  margin: 0;

  font-size: var(--avn-type-small);
  line-height: 1.4;

  color: var(--avn-text-supporting);
}

.avn-iaa-uncover__item b {
  font-size: var(--avn-type-h3);
  line-height: 1;
  font-weight: 800;

  color: var(--avn-red);
}

/* ==========================================================
   BOTTOM STRAP
========================================================== */

.avn-iaa-uncover__strap {
  display: grid;
  grid-template-columns: 60px minmax(280px, 1.15fr) minmax(0, 1.6fr);
  gap: 22px;
  align-items: center;

  margin-top: 54px;
  padding: 28px 34px;

  border-left: 5px solid var(--avn-red);
  border-radius: 12px;
  background: #f8f8f8;

  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.05);
}

.avn-iaa-uncover__strap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.07);
}

.avn-iaa-uncover__strap-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.avn-iaa-uncover__strap-main strong {
  display: block;

  font-size: var(--avn-type-h4);
  line-height: 1.25;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-uncover__strap-main p {
  margin: 6px 0 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.5;

  color: var(--avn-text-body);
}

/* ==========================================================
   PROOF ITEMS
========================================================== */

.avn-iaa-uncover__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.avn-iaa-uncover__proof {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 11px;
  align-items: center;

  min-width: 0;
  padding: 0 16px;

  border-left: 1px solid rgba(17, 24, 39, 0.11);
}

.avn-iaa-uncover__proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(192, 0, 11, 0.26);
  border-radius: 50%;
  background: var(--avn-white);
}

.avn-iaa-uncover__proof span img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.avn-iaa-uncover__proof strong {
  display: block;

  font-size: var(--avn-type-body-small);
  line-height: 1.3;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-uncover__proof p {
  margin: 4px 0 0;

  font-size: var(--avn-type-small);
  line-height: 1.35;

  color: var(--avn-text-body);
}

/* ==========================================================
   SECTION 04 : DESKTOP VISUAL POLISH
========================================================== */

@media (min-width: 1101px) {

  /* ========================================================
     LEFT INSIGHT → PROCESS CONNECTION
  ======================================================== */

  .avn-iaa-uncover__note {
    position: relative;
  }

  .avn-iaa-uncover__note::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 100%;

    width: 34px;
    height: 1px;

    background:
      linear-gradient(
        90deg,
        rgba(192, 0, 11, 0.28),
        rgba(17, 24, 39, 0.10)
      );

    transform: translateY(-50%);

    pointer-events: none;
  }


  /* ========================================================
     PROCESS CARD CONNECTIONS
  ======================================================== */

  /*
   * Your cards already have connector lines.
   * We strengthen them instead of adding another competing
   * process line.
   */

  .avn-iaa-uncover__card:not(:last-child)::before {
    top: 226px;
    right: -38px;

    width: 56px;
    height: 1px;

    background:
      linear-gradient(
        90deg,
        rgba(17, 24, 39, 0.12),
        rgba(192, 0, 11, 0.22),
        rgba(17, 24, 39, 0.12)
      );
  }

  .avn-iaa-uncover__card:not(:last-child)::after {
    border-color: rgba(17, 24, 39, 0.12);

    box-shadow:
      0 7px 18px rgba(17, 24, 39, 0.065);

    color: var(--avn-text-supporting);
  }


  /* ========================================================
     SHARED CARD STRUCTURE
  ======================================================== */

  .avn-iaa-uncover__card {
    box-shadow:
      0 9px 24px rgba(17, 24, 39, 0.035);
  }

  /*
   * Create a clear break between the large visual
   * and the evidence/content below it.
   */
  .avn-iaa-uncover__card-bottom {
    position: relative;

    padding-top: 19px;

    border-top: 1px solid rgba(17, 24, 39, 0.075);
  }


  /* ========================================================
     VALIDATION — FOCAL STAGE
  ======================================================== */

  .avn-iaa-uncover__card--active {
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(192, 0, 11, 0.012) 100%
      );

    box-shadow:
      0 16px 38px rgba(192, 0, 11, 0.05),
      0 7px 18px rgba(17, 24, 39, 0.035);
  }


  /* ========================================================
     ASSUMPTION CARD
  ======================================================== */

  /*
   * Assumption contains less information than the other
   * stages. Give the quote area a defined visual anchor.
   */

  .avn-iaa-uncover__card:first-child
  .avn-iaa-uncover__card-bottom {
    padding: 18px 16px;

    border: 1px solid rgba(17, 24, 39, 0.065);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.72);
  }

  .avn-iaa-uncover__quote {
    max-width: 200px;
  }

  .avn-iaa-uncover__card:first-child
  .avn-iaa-uncover__card-bottom > strong {
    margin-top: 2px;
  }


  /* ========================================================
     INTERNAL VERTICAL FLOW
  ======================================================== */

  /*
   * Validation / Evidence / Clarity:
   *
   *   ○ Item
   *   │
   *   ○ Item
   *   │
   *   ○ Item
   */

  .avn-iaa-uncover__item {
    position: relative;
  }

  .avn-iaa-uncover__item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 38px;
    bottom: -16px;
    left: 19px;

    width: 1px;

    background:
      linear-gradient(
        180deg,
        rgba(192, 0, 11, 0.16),
        rgba(17, 24, 39, 0.09)
      );

    pointer-events: none;
  }


  /* ========================================================
     PROCESS ITEM ICONS
  ======================================================== */

  .avn-iaa-uncover__item > span {
    position: relative;
    z-index: 2;

    background: #f9eeee;
  }


  /* ========================================================
     BOTTOM STRAP CONNECTION
  ======================================================== */

  /*
   * Reduce the visual gap so the strap reads as the
   * conclusion of the process.
   */

  .avn-iaa-uncover__strap {
    margin-top: 36px;

    box-shadow:
      0 10px 28px rgba(17, 24, 39, 0.04);
  }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {
  .avn-iaa-uncover__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .avn-iaa-uncover__content {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }

  .avn-iaa-uncover__content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-uncover__line {
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-uncover__note {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .avn-iaa-uncover__process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .avn-iaa-uncover__card {
    min-height: 500px;
  }

  .avn-iaa-uncover__card::before,
  .avn-iaa-uncover__card::after {
    display: none;
  }

  .avn-iaa-uncover__strap {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .avn-iaa-uncover__proofs {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}

/* ==========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 900px) {
  .avn-iaa-uncover__proofs {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .avn-iaa-uncover__proof {
    padding: 0;
    border-left: 0;
  }
}

/* ==========================================================
   MOBILE — SECTION 04 : HOW WE UNCOVER IT
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-uncover {
    padding: 56px 0 60px;
  }

  .avn-iaa-uncover .avn-container {
    width: min(100% - 32px, 1200px);
  }


  /* ========================================================
     INTRO
  ======================================================== */

  .avn-iaa-uncover__grid {
    gap: 30px;
  }

  .avn-iaa-uncover__content {
    text-align: center;
  }

  .avn-iaa-uncover__content h2 {
    line-height: 1.08;
  }

  .avn-iaa-uncover__line {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .avn-iaa-uncover__content > p {
    max-width: 470px;

    margin: 20px auto 0;

    line-height: 1.55;
  }


  /* ========================================================
     INTRO INSIGHT
  ======================================================== */

  .avn-iaa-uncover__note {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: initial;

    max-width: 390px;

    margin: 22px auto 0;
    padding: 14px 16px;

    border: 1px solid rgba(17, 24, 39, 0.055);
    border-radius: 10px;

    background: rgba(248, 248, 248, 0.65);

    text-align: left;
  }

  .avn-iaa-uncover__note-icon {
    width: 42px;
    height: 42px;
  }

  .avn-iaa-uncover__note-icon img {
    width: 21px;
    height: 21px;
  }

  .avn-iaa-uncover__note-divider {
    display: none;
  }

  .avn-iaa-uncover__note p {
    line-height: 1.45;
  }


  /* ========================================================
     PROCESS FLOW
  ======================================================== */

  .avn-iaa-uncover__process {
    position: relative;

    grid-template-columns: 1fr;

    /*
     * Enough room for connector arrow,
     * without creating huge empty gaps.
     */
    gap: 30px;
  }


  /* ========================================================
     PROCESS CARDS
  ======================================================== */

  .avn-iaa-uncover__card {
    min-height: 0;

    padding: 20px 18px;

    border-radius: 12px;

    box-shadow:
      0 7px 18px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-uncover__card--active {
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(192, 0, 11, 0.012) 100%
      );

    box-shadow:
      0 10px 24px rgba(192, 0, 11, 0.04);
  }

  .avn-iaa-uncover__card-top {
    min-height: 0;
  }

  .avn-iaa-uncover__card-top span {
    margin-bottom: 6px;
  }

  .avn-iaa-uncover__card-top p {
    max-width: 230px;
  }


  /* ========================================================
     CARD-TO-CARD CONNECTORS
  ======================================================== */

  /*
   * Desktop horizontal connector is not needed.
   */
  .avn-iaa-uncover__card::before {
    display: none !important;
  }

  /*
   * Keep the mobile downward process indicator,
   * but make it smaller and better integrated.
   */
  .avn-iaa-uncover__card:not(:last-child)::after {
    content: "↓";

    top: auto;
    right: auto;

    bottom: -24px;
    left: 50%;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 50%;

    background: var(--avn-white);

    box-shadow:
      0 5px 14px rgba(17, 24, 39, 0.055);

    font-size: 15px;
    line-height: 1;

    color: var(--avn-text-muted);

    transform: translateX(-50%);
  }


  /* ========================================================
     MAIN STAGE CIRCLES
  ======================================================== */

  /*
   * Large 124px circles were consuming too much mobile
   * vertical space.
   */

  .avn-iaa-uncover__circle,
  .avn-iaa-uncover__card--active .avn-iaa-uncover__circle {
    width: 96px;
    height: 96px;

    margin: 14px auto 16px;
  }

  .avn-iaa-uncover__circle {
    box-shadow:
      0 8px 22px rgba(17, 24, 39, 0.06),
      inset 0 0 0 11px rgba(192, 0, 11, 0.03);
  }

  .avn-iaa-uncover__circle img {
    width: 46px;
    height: 46px;
  }

  /*
   * Validation remains the focal stage,
   * but no longer becomes oversized.
   */
  .avn-iaa-uncover__card--active .avn-iaa-uncover__circle {
    width: 104px;
    height: 104px;

    border-color: rgba(192, 0, 11, 0.26);

    box-shadow:
      0 0 0 7px rgba(192, 0, 11, 0.03),
      0 10px 26px rgba(192, 0, 11, 0.075),
      inset 0 0 0 12px rgba(192, 0, 11, 0.028);
  }

  .avn-iaa-uncover__card--active .avn-iaa-uncover__circle img {
    width: 50px;
    height: 50px;
  }


  /* ========================================================
     CARD CONTENT AREA
  ======================================================== */

  .avn-iaa-uncover__card-bottom {
    position: relative;

    gap: 12px;

    padding-top: 14px;

    border-top: 1px solid rgba(17, 24, 39, 0.07);
  }


  /* ========================================================
     ASSUMPTION
  ======================================================== */

  .avn-iaa-uncover__card:first-child
  .avn-iaa-uncover__card-bottom {
    max-width: 310px;

    margin: 0 auto;

    padding: 14px 16px;

    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.58);
  }

  .avn-iaa-uncover__quote {
    max-width: 250px;

    margin-inline: auto;

    line-height: 1.45;
  }

  .avn-iaa-uncover__card:first-child
  .avn-iaa-uncover__card-bottom > strong {
    margin-top: 0;
  }


  /* ========================================================
     VALIDATION / EVIDENCE / CLARITY ITEMS
  ======================================================== */

  .avn-iaa-uncover__item {
    position: relative;

    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;

    align-items: start;
  }

  .avn-iaa-uncover__item > span {
    position: relative;
    z-index: 2;

    width: 34px;
    height: 34px;

    background: #f9eeee;
  }

  .avn-iaa-uncover__item > span img {
    width: 17px;
    height: 17px;
  }


  /*
   * Mobile vertical timeline.
   *
   * ○ Item
   * │
   * ○ Item
   * │
   * ○ Item
   */
  .avn-iaa-uncover__item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 34px;
    bottom: -12px;
    left: 17px;

    width: 1px;

    background:
      linear-gradient(
        180deg,
        rgba(192, 0, 11, 0.14),
        rgba(17, 24, 39, 0.08)
      );

    pointer-events: none;
  }

  .avn-iaa-uncover__item strong {
    margin-bottom: 3px;
  }

  .avn-iaa-uncover__item p {
    line-height: 1.4;
  }


  /* ========================================================
     EVIDENCE KPI RHYTHM
  ======================================================== */

  .avn-iaa-uncover__card:nth-child(3)
  .avn-iaa-uncover__item {
    padding-bottom: 0;
  }

  .avn-iaa-uncover__card:nth-child(3)
  .avn-iaa-uncover__item b {
    display: inline-block;

    margin-top: 2px;
  }


  /* ========================================================
     BOTTOM STRAP
  ======================================================== */

  .avn-iaa-uncover__strap {
    grid-template-columns: 1fr;
    gap: 0;

    margin-top: 28px;

    padding: 18px;

    border-top: 3px solid var(--avn-red);
    border-left: 0;

    border-radius: 10px;

    text-align: center;

    box-shadow:
      0 8px 22px rgba(17, 24, 39, 0.035);
  }


  /* ========================================================
     STRAP MAIN MESSAGE
  ======================================================== */

  .avn-iaa-uncover__strap-icon {
    width: 44px;
    height: 44px;

    margin: 0 auto 12px;
  }

  .avn-iaa-uncover__strap-icon img {
    width: 22px;
    height: 22px;
  }

  .avn-iaa-uncover__strap-main {
    padding-bottom: 16px;
  }

  .avn-iaa-uncover__strap-main p {
    margin-top: 4px;
  }


  /* ========================================================
     STRAP PROOFS
  ======================================================== */

  .avn-iaa-uncover__proofs {
    grid-template-columns: 1fr;
    gap: 13px;

    margin-top: 0;

    padding-top: 16px;

    border-top: 1px solid rgba(17, 24, 39, 0.09);
  }

  .avn-iaa-uncover__proof {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;

    width: min(100%, 300px);

    margin-inline: auto;
    padding: 0;

    border-left: 0;

    text-align: left;
  }

  .avn-iaa-uncover__proof span {
    width: 38px;
    height: 38px;
  }

  .avn-iaa-uncover__proof span img {
    width: 19px;
    height: 19px;
  }

  .avn-iaa-uncover__proof p {
    margin-top: 2px;
  }
}

/* ==========================================================
   SECTION 05 : DECISION-MAKING PACKAGE
========================================================== */

.avn-iaa-package {
  padding: 88px 0 48px;
  background: #f8f8f8;
  overflow: hidden;
}

.avn-iaa-package .avn-container {
  width: min(100% - 48px, 1320px);
}

/* ==========================================================
   SECTION HEADER
========================================================== */

.avn-iaa-package__header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.avn-iaa-package__header h2 {
  margin: 0;

  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.05em;

  color: var(--avn-text-heading);
}

.avn-iaa-package__header h2 span {
  color: var(--avn-red);
}

.avn-iaa-package__line {
  width: 46px;
  height: 2px;
  margin: 26px auto 24px;

  background: var(--avn-red);
}

.avn-iaa-package__header p {
  max-width: 680px;
  margin: 0 auto;

  font-size: var(--avn-type-body-large);
  line-height: 1.6;

  color: var(--avn-text-body);
}

/* ==========================================================
   REPORT PAPER STACK
========================================================== */

.avn-iaa-package__papers {
  position: relative;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  margin-top: 52px;
  padding: 0 8px 18px;
}

.avn-iaa-package__paper {
  position: relative;

  width: 300px;
  min-height: 455px;
  flex: 0 0 300px;

  overflow: hidden;

  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: var(--avn-white);

  box-shadow:
    0 22px 52px rgba(17, 24, 39, 0.11),
    0 8px 18px rgba(17, 24, 39, 0.05);

  transform-origin: center bottom;
}

.avn-iaa-package__paper:not(:last-child) {
  margin-right: -20px;
}

/* Bottom document accent */
.avn-iaa-package__paper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 5px;

  background: var(--avn-red);
}

/* Paper positioning */
.avn-iaa-package__paper--accuracy {
  z-index: 1;
  transform: rotate(-3deg) translateY(10px);
}

.avn-iaa-package__paper--analysis {
  z-index: 2;
  transform: rotate(-0.7deg) translateY(2px);
}

.avn-iaa-package__paper--summary {
  z-index: 3;
  transform: rotate(0.7deg) translateY(0);
}

.avn-iaa-package__paper--plan {
  z-index: 4;
  transform: rotate(3deg) translateY(10px);
}

/* ==========================================================
   DOCUMENT FOUNDATION
========================================================== */

.avn-iaa-package__doc {
  height: 100%;
  padding: 32px 26px 28px;

  color: var(--avn-text-heading);
}

.avn-iaa-package__doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 28px;
}

.avn-iaa-package__logo {
  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.2em;

  color: var(--avn-text-heading);
}

.avn-iaa-package__doc-header small {
  font-size: var(--avn-type-small);
  line-height: 1.2;
  font-weight: 700;

  color: var(--avn-text-muted);
}

.avn-iaa-package__doc-kicker {
  display: block;
  margin-bottom: 7px;

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--avn-red);
}

.avn-iaa-package__doc h3 {
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;

  color: var(--avn-text-heading);
}

.avn-iaa-package__doc-subtitle {
  margin: 10px 0 0;

  font-size: var(--avn-type-small);
  line-height: 1.35;
  font-weight: 700;

  color: var(--avn-text-supporting);
}

.avn-iaa-package__doc-rule {
  height: 1px;
  margin: 20px 0 22px;

  background: rgba(17, 24, 39, 0.11);
}

.avn-iaa-package__section-label {
  display: block;
  margin-bottom: 14px;

  font-size: var(--avn-type-label);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: var(--avn-text-heading);
}

/* ==========================================================
   PAPER 01 : ACCURACY REPORT
========================================================== */

.avn-iaa-package__accuracy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.avn-iaa-package__donut {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 145px;
  height: 145px;

  border-radius: 50%;

  background:
    radial-gradient(circle, #ffffff 0 48%, transparent 49%),
    conic-gradient(
      var(--avn-red) 0 72%,
      #dddddd 72% 100%
    );
}

.avn-iaa-package__donut span {
  display: block;

  width: 100%;
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;

  color: var(--avn-red);

  /* Optical correction for the percentage glyph */
  transform: translateX(2px);
}

.avn-iaa-package__donut small {
  display: block;

  width: 100%;
  margin-top: 5px;

  font-size: var(--avn-type-label);
  line-height: 1.15;
  font-weight: 800;
  text-align: center;

  color: var(--avn-text-heading);
}

.avn-iaa-package__stats {
  display: grid;
  gap: 16px;
}

.avn-iaa-package__stats small {
  display: block;
  margin-bottom: 4px;

  font-size: var(--avn-type-small);
  line-height: 1.3;

  color: var(--avn-text-body);
}

.avn-iaa-package__stats strong {
  display: block;

  font-size: var(--avn-type-h4);
  line-height: 1.15;
  font-weight: 800;

  color: var(--avn-red);
}

/* Chart */
.avn-iaa-package__chart-box {
  margin-top: 26px;
  padding: 18px 16px 16px;

  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #fafafa;
}

.avn-iaa-package__bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;

  height: 92px;
}

.avn-iaa-package__bars span {
  position: relative;

  display: block;
  height: var(--h);

  border-radius: 2px 2px 0 0;
  background: #d8d8d8;
}

.avn-iaa-package__bars span.is-red {
  background: var(--avn-red);
}

.avn-iaa-package__bars b {
  position: absolute;
  top: -17px;
  left: 50%;

  transform: translateX(-50%);

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 700;

  color: var(--avn-text-heading);
}

.avn-iaa-package__bar-labels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;

  margin-top: 8px;
}

.avn-iaa-package__bar-labels span {
  font-size: var(--avn-type-label);
  line-height: 1.2;
  text-align: center;

  color: var(--avn-text-muted);
}

/* ==========================================================
   PAPER 02 : VARIANCE ANALYSIS
========================================================== */

.avn-iaa-package__variance-grid {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.avn-iaa-package__doc--analysis .avn-iaa-package__donut--small {
  width: 122px;
  height: 122px;

  background:
    radial-gradient(circle, #ffffff 0 45%, transparent 46%),
    conic-gradient(
      var(--avn-red) 0 38%,
      #8f8f8f 38% 62%,
      #b7b7b7 62% 78%,
      #d2d2d2 78% 90%,
      #e7e7e7 90% 100%
    );
}

.avn-iaa-package__legend {
  display: grid;
  gap: 10px;
}

.avn-iaa-package__legend div {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 32px;
  gap: 7px;
  align-items: center;
}

.avn-iaa-package__legend i {
  display: block;

  width: 9px;
  height: 9px;

  border-radius: 2px;
}

.avn-iaa-package__legend span,
.avn-iaa-package__legend strong {
  font-size: var(--avn-type-small);
  line-height: 1.25;

  color: var(--avn-text-heading);
}

.avn-iaa-package__legend strong {
  font-weight: 900;
  text-align: right;
}

/* Root Causes */
.avn-iaa-package__root-box {
  position: relative;

  margin-top: 28px;
  padding: 17px 17px 46px;

  border: 1px solid rgba(17, 24, 39, 0.085);
  border-radius: 8px;
  background: #fafafa;
}

.avn-iaa-package__root-list {
  display: grid;
  gap: 11px;
}

.avn-iaa-package__root-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.avn-iaa-package__root-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.08);

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;

  color: var(--avn-red);
}

.avn-iaa-package__root-list p {
  margin: 0;

  font-size: var(--avn-type-small);
  line-height: 1.35;

  color: var(--avn-text-heading);
}

.avn-iaa-package__root-search {
  position: absolute;
  right: 17px;
  bottom: 15px;

  width: 30px;
  height: 30px;
}

.avn-iaa-package__root-search img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================
   PAPER 03 : RISK SUMMARY
========================================================== */

.avn-iaa-package__risk-table {
  display: grid;

  margin-top: 5px;
}

.avn-iaa-package__risk-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 64px 62px;
  gap: 7px;
  align-items: center;

  min-height: 31px;

  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.avn-iaa-package__risk-row span,
.avn-iaa-package__risk-row strong {
  font-size: var(--avn-type-small);
  line-height: 1.2;

  color: var(--avn-text-heading);
}

.avn-iaa-package__risk-row strong {
  font-weight: 800;
}

.avn-iaa-package__risk-head {
  min-height: 24px;
}

.avn-iaa-package__risk-head span {
  font-size: var(--avn-type-label);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: var(--avn-text-muted);
}

/* Risk tags */
.avn-iaa-package__risk-row em {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 18px;
  padding: 3px 7px;

  border-radius: 4px;

  font-style: normal;
  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

/* ==========================================================
   RESTORE FUNCTIONAL STATUS COLOURS
========================================================== */

/* Paper 04 Bottom Accent */
.avn-iaa-package__paper--plan::after {
  background: #F2A51A;
}

.avn-iaa-package__risk-row em.is-high {
  background: var(--avn-red);
  color: var(--avn-white);
}

.avn-iaa-package__risk-row em.is-medium {
  background: #F2A51A;
  color: var(--avn-text-heading);
}

.avn-iaa-package__risk-row em.is-low {
  background: #8FC36A;
  color: var(--avn-text-heading);
}

/* Risk Distribution */
.avn-iaa-package__risk-box {
  margin-top: 26px;
  padding: 17px 16px 15px;

  border: 1px solid rgba(17, 24, 39, 0.085);
  border-radius: 8px;
  background: #fafafa;
}

.avn-iaa-package__risk-scale {
  display: grid;
  grid-template-columns: 24% 46% 30%;

  height: 12px;
  margin-top: 10px;

  overflow: hidden;

  border-radius: 20px;
  background: #eeeeee;
}

.avn-iaa-package__risk-scale .is-high {
  background: var(--avn-red);
}

.avn-iaa-package__risk-scale .is-medium {
  background: #F2A51A;
}

.avn-iaa-package__risk-scale .is-low {
  background: #3E9B47;
}

.avn-iaa-package__risk-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: 10px;
}

.avn-iaa-package__risk-labels span {
  font-size: var(--avn-type-small);
  line-height: 1.35;
  text-align: center;

  color: var(--avn-text-body);
}

.avn-iaa-package__risk-labels span:first-child {
  text-align: left;
}

.avn-iaa-package__risk-labels span:last-child {
  text-align: right;
}

.avn-iaa-package__risk-labels strong {
  color: var(--avn-text-heading);
}

/* ==========================================================
   PAPER 04 : PRIORITY ACTION PLAN
========================================================== */

.avn-iaa-package__action-list {
  display: grid;
  gap: 13px;
}

.avn-iaa-package__action {
  display: grid;
  grid-template-columns: 34px 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;

  padding-bottom: 11px;

  border-bottom: 1px solid rgba(17, 24, 39, 0.075);
}

.avn-iaa-package__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(192, 0, 11, 0.3);
  border-radius: 50%;
  background: var(--avn-white);
}

.avn-iaa-package__action-icon img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.avn-iaa-package__action > strong {
  position: relative;

  display: block;
  padding-top: 8px;

  font-size: var(--avn-type-body);
  line-height: 1;
  font-weight: 800;
  text-align: center;

  color: var(--avn-text-heading);
}

.avn-iaa-package__action > strong::before {
  content: "↑";
  position: absolute;
  top: -5px;
  left: 50%;

  transform: translateX(-50%);

  font-size: var(--avn-type-small);
  line-height: 1;

  color: var(--avn-red);
}

.avn-iaa-package__action h4 {
  margin: 0 0 3px;

  font-size: var(--avn-type-body-small);
  line-height: 1.2;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-package__action p {
  margin: 0;

  font-size: var(--avn-type-small);
  line-height: 1.35;

  color: var(--avn-text-supporting);
}

/* Expected Outcome */
.avn-iaa-package__outcome {
  position: relative;

  margin-top: 18px;
  padding: 15px 44px 15px 15px;

  border: 1px solid rgba(17, 24, 39, 0.085);
  border-radius: 8px;
  background: #fafafa;
}

.avn-iaa-package__outcome span {
  display: block;
  margin-bottom: 7px;

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: var(--avn-red);
}

.avn-iaa-package__outcome p {
  margin: 0;

  font-size: var(--avn-type-small);
  line-height: 1.4;

  color: var(--avn-text-heading);
}

.avn-iaa-package__outcome img {
  position: absolute;
  right: 13px;
  bottom: 13px;

  width: 27px;
  height: 27px;

  object-fit: contain;
}

/* ==========================================================
   BOTTOM FEATURE ROW
========================================================== */

.avn-iaa-package__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  max-width: 1160px;
  margin: 56px auto 0;
}

.avn-iaa-package__feature {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;

  padding: 0 28px;

  border-left: 1px solid rgba(17, 24, 39, 0.12);
}

.avn-iaa-package__feature:first-child {
  border-left: 0;
}

.avn-iaa-package__feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border: 1px solid rgba(192, 0, 11, 0.3);
  border-radius: 50%;
  background: var(--avn-white);
}

.avn-iaa-package__feature span img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.avn-iaa-package__feature strong {
  display: block;

  font-size: var(--avn-type-body);
  line-height: 1.25;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-package__feature p {
  margin: 5px 0 0;

  font-size: var(--avn-type-small);
  line-height: 1.45;

  color: var(--avn-text-body);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {
  .avn-iaa-package__papers {
    flex-wrap: wrap;
    gap: 28px;
  }

  .avn-iaa-package__paper {
    width: min(100%, 315px);
    flex: 0 0 min(100%, 315px);

    margin-right: 0;
  }

  .avn-iaa-package__paper--accuracy,
  .avn-iaa-package__paper--analysis,
  .avn-iaa-package__paper--summary,
  .avn-iaa-package__paper--plan {
    transform: none;
  }
}

/* ==========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 1000px) {
  .avn-iaa-package__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .avn-iaa-package__feature:nth-child(3) {
    border-left: 0;
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-package {
    padding: 56px 0 60px;
  }

  .avn-iaa-package .avn-container {
    width: min(100% - 32px, 1200px);
  }

  /* ========================================================
     HEADER
  ======================================================== */

  .avn-iaa-package__header {
    max-width: 560px;
  }

  .avn-iaa-package__header h2 {
    line-height: 1.08;
  }

  .avn-iaa-package__line {
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .avn-iaa-package__header p {
    max-width: 520px;
    line-height: 1.55;
  }

  /* ========================================================
     REPORT PAPERS
  ======================================================== */

  .avn-iaa-package__papers {
    flex-direction: column;
    align-items: stretch;

    gap: 14px;

    margin-top: 32px;
    padding: 0;
  }

  .avn-iaa-package__paper {
    width: 100%;
    min-height: auto;
    flex-basis: auto;

    margin-right: 0;

    border-radius: 8px;

    box-shadow:
      0 12px 28px rgba(17, 24, 39, 0.07),
      0 4px 10px rgba(17, 24, 39, 0.03);
  }

  .avn-iaa-package__paper--accuracy,
  .avn-iaa-package__paper--analysis,
  .avn-iaa-package__paper--summary,
  .avn-iaa-package__paper--plan {
    transform: none;
  }

  /* ========================================================
     DOCUMENT SPACING
  ======================================================== */

  .avn-iaa-package__doc {
    padding: 20px 18px 20px;
  }

  .avn-iaa-package__doc-header {
    margin-bottom: 18px;
  }

  .avn-iaa-package__doc-subtitle {
    margin-top: 6px;
  }

  .avn-iaa-package__doc-rule {
    margin: 14px 0 16px;
  }

  .avn-iaa-package__section-label {
    margin-bottom: 10px;
  }

  /* ========================================================
     ACCURACY REPORT
  ======================================================== */

  .avn-iaa-package__accuracy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .avn-iaa-package__donut {
    width: 128px;
    height: 128px;

    margin-inline: auto;
  }

  .avn-iaa-package__stats {
    gap: 11px;
  }

  .avn-iaa-package__chart-box {
    margin-top: 16px;
    padding: 14px 12px 12px;
  }

  .avn-iaa-package__bars {
    height: 76px;
    gap: 7px;
  }

  /* ========================================================
     VARIANCE REPORT
  ======================================================== */

  .avn-iaa-package__variance-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .avn-iaa-package__doc--analysis
  .avn-iaa-package__donut--small {
    width: 104px;
    height: 104px;

    margin-inline: auto;
  }

  .avn-iaa-package__legend {
    gap: 8px;
  }

  .avn-iaa-package__root-box {
    margin-top: 18px;
    padding: 14px 14px 38px;
  }

  .avn-iaa-package__root-list {
    gap: 9px;
  }

  /* ========================================================
     RISK REPORT
  ======================================================== */

  .avn-iaa-package__risk-row {
    grid-template-columns: 28px minmax(0, 1fr) 58px 54px;
    gap: 5px;

    min-height: 28px;
  }

  .avn-iaa-package__risk-box {
    margin-top: 16px;
    padding: 13px 12px 12px;
  }

  .avn-iaa-package__risk-scale {
    margin-top: 8px;
  }

  .avn-iaa-package__risk-labels {
    margin-top: 8px;
  }

  /* ========================================================
     ACTION PLAN
  ======================================================== */

  .avn-iaa-package__action-list {
    gap: 9px;
  }

  .avn-iaa-package__action {
    padding-bottom: 9px;
  }

  .avn-iaa-package__outcome {
    margin-top: 13px;
    padding: 13px 40px 13px 13px;
  }

  /* ========================================================
     BOTTOM FEATURE LIST
  ======================================================== */

  .avn-iaa-package__features {
    grid-template-columns: 1fr;
    gap: 0;

    margin-top: 28px;
    padding-top: 4px;

    border-top: 1px solid rgba(17, 24, 39, 0.09);
  }

  .avn-iaa-package__feature {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;

    padding: 15px 0;

    border-left: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  }

  .avn-iaa-package__feature:last-child {
    border-bottom: 0;
  }

  .avn-iaa-package__feature span {
    width: 46px;
    height: 46px;
  }

  .avn-iaa-package__feature span img {
    width: 22px;
    height: 22px;
  }

  .avn-iaa-package__feature p {
    margin-top: 4px;
    line-height: 1.4;
  }
}
/* ==========================================================
   SECTION 06 : FROM UNCERTAINTY TO CONFIDENT DECISIONS
========================================================== */

.avn-iaa-transform {
  padding: 88px 0 28px;
  background: var(--avn-white);
}

.avn-iaa-transform .avn-container {
  width: min(100% - 48px, 1320px);
}

/* ==========================================================
   SECTION HEADER
========================================================== */

.avn-iaa-transform__header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.avn-iaa-transform__header h2 {
  margin: 0;

  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.05em;

  color: var(--avn-text-heading);
}

.avn-iaa-transform__header h2 span {
  color: var(--avn-red);
}

.avn-iaa-transform__header p {
  max-width: 680px;
  margin: 24px auto 0;

  font-size: var(--avn-type-body-large);
  line-height: 1.6;

  color: var(--avn-text-body);
}

/* ==========================================================
   MAIN COMPARISON CARD
========================================================== */

.avn-iaa-transform__card {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px minmax(0, 1fr);

  min-height: 470px;

  overflow: hidden;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 14px;

  background:
    linear-gradient(
      90deg,
      rgba(192, 0, 11, 0.045) 0%,
      rgba(255, 255, 255, 0.96) 42%,
      rgba(255, 255, 255, 0.96) 58%,
      rgba(46, 125, 50, 0.055) 100%
    ),
    var(--avn-white);

  box-shadow: 0 20px 58px rgba(17, 24, 39, 0.07);
}

/* ==========================================================
   SIDE COLUMNS
========================================================== */

.avn-iaa-transform__side {
  padding: 34px 30px;
}

.avn-iaa-transform__side--from {
  background:
    linear-gradient(
      90deg,
      rgba(192, 0, 11, 0.04),
      transparent
    );
}

.avn-iaa-transform__side--to {
  background:
    linear-gradient(
      270deg,
      rgba(46, 125, 50, 0.05),
      transparent
    );
}

/* ==========================================================
   SIDE LABELS
========================================================== */

.avn-iaa-transform__label {
  display: inline-block;

  margin-bottom: 24px;
  padding-bottom: 10px;

  border-bottom: 2px solid currentColor;

  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avn-iaa-transform__side--from .avn-iaa-transform__label {
  color: var(--avn-red);
}

.avn-iaa-transform__side--to .avn-iaa-transform__label {
  color: #2E7D32;
}

/* ==========================================================
   COMPARISON ITEMS
========================================================== */

.avn-iaa-transform__items {
  display: grid;
}

.avn-iaa-transform__item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;

  padding: 20px 0;

  border-bottom: 1px dashed rgba(17, 24, 39, 0.12);
}

.avn-iaa-transform__item:last-child {
  border-bottom: 0;
}

.avn-iaa-transform__side--from .avn-iaa-transform__item {
  border-bottom-color: rgba(192, 0, 11, 0.13);
}

.avn-iaa-transform__side--to .avn-iaa-transform__item {
  border-bottom-color: rgba(46, 125, 50, 0.14);
}

/* Item Icon */
.avn-iaa-transform__item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  border-radius: 50%;
}

/* Current-state icon circle */
.avn-iaa-transform__side--from .avn-iaa-transform__item > span {
  border: 1px solid rgba(192, 0, 11, 0.16);
  background: rgba(192, 0, 11, 0.07);
}

/* Future-state icon circle */
.avn-iaa-transform__side--to .avn-iaa-transform__item > span {
  border: 1px solid rgba(46, 125, 50, 0.2);
  background: rgba(46, 125, 50, 0.09);
}

.avn-iaa-transform__item > span img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

/* Red current-state icons */
.avn-iaa-transform__side--from .avn-iaa-transform__item > span img {
  filter:
    brightness(0)
    saturate(100%)
    invert(12%)
    sepia(96%)
    saturate(4755%)
    hue-rotate(350deg)
    brightness(91%)
    contrast(112%);
}

/* Green future-state icons */
.avn-iaa-transform__side--to .avn-iaa-transform__item > span img {
  filter:
    brightness(0)
    saturate(100%)
    invert(30%)
    sepia(56%)
    saturate(813%)
    hue-rotate(82deg)
    brightness(92%)
    contrast(91%);
}

/* Item Content */
.avn-iaa-transform__item strong {
  display: block;

  font-size: var(--avn-type-h4);
  line-height: 1.25;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-transform__item p {
  max-width: 340px;
  margin: 6px 0 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.5;

  color: var(--avn-text-supporting);
}

/* ==========================================================
   CENTER TRANSITION
========================================================== */

.avn-iaa-transform__center {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 110px 78px 110px;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.avn-iaa-transform__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avn-iaa-transform__dots--left {
  justify-content: flex-end;
}

.avn-iaa-transform__dots--right {
  justify-content: flex-start;
}

.avn-iaa-transform__dots span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;

  border-radius: 50%;
}

.avn-iaa-transform__dots--left span {
  background: rgba(192, 0, 11, 0.62);
}

.avn-iaa-transform__dots--right span {
  background: rgba(46, 125, 50, 0.72);
}

/* Dot fading */
.avn-iaa-transform__dots span:nth-child(1),
.avn-iaa-transform__dots span:nth-child(7) {
  opacity: 0.35;
}

.avn-iaa-transform__dots span:nth-child(2),
.avn-iaa-transform__dots span:nth-child(6) {
  opacity: 0.55;
}

.avn-iaa-transform__dots span:nth-child(3),
.avn-iaa-transform__dots span:nth-child(5) {
  opacity: 0.75;
}

.avn-iaa-transform__dots span:nth-child(4) {
  opacity: 1;
}

/* Center arrow */
.avn-iaa-transform__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 78px;
  height: 64px;

  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow:
    0 14px 34px rgba(17, 24, 39, 0.11),
    0 0 46px rgba(192, 0, 11, 0.055),
    0 0 46px rgba(46, 125, 50, 0.055);
}

.avn-iaa-transform__arrow span {
  transform: translateY(-1px);

  font-size: 32px;
  line-height: 1;
  font-weight: 800;

  color: var(--avn-red);
}

/* ==========================================================
   BOTTOM BENEFITS
========================================================== */

.avn-iaa-transform__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 20px;
  padding: 28px 30px;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 14px;
  background: #f8f8f8;

  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.05);
}

.avn-iaa-transform__benefit {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: center;

  padding: 0 26px;

  border-left: 1px solid rgba(17, 24, 39, 0.12);
}

.avn-iaa-transform__benefit:first-child {
  border-left: 0;
}

.avn-iaa-transform__benefit > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border: 1px solid rgba(192, 0, 11, 0.3);
  border-radius: 50%;
  background: var(--avn-white);
}

.avn-iaa-transform__benefit > span img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;

  filter:
    brightness(0)
    saturate(100%)
    invert(12%)
    sepia(96%)
    saturate(4755%)
    hue-rotate(350deg)
    brightness(91%)
    contrast(112%);
}

.avn-iaa-transform__benefit strong {
  display: block;

  font-size: var(--avn-type-h4);
  line-height: 1.25;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-transform__benefit p {
  margin: 5px 0 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.45;

  color: var(--avn-text-supporting);
}

/* ==========================================================
   FINAL TRUST LINE
========================================================== */

.avn-iaa-transform__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;

  margin: 16px auto 0;
  padding-top: 14px;

  border-top: 1px solid rgba(17, 24, 39, 0.08);

  text-align: center;
}

.avn-iaa-transform__trust > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.avn-iaa-transform__trust > span img {
  display: block;

  width: 22px;
  height: 22px;

  object-fit: contain;

  filter:
    brightness(0)
    saturate(100%)
    invert(12%)
    sepia(96%)
    saturate(4755%)
    hue-rotate(350deg)
    brightness(91%)
    contrast(112%);
}

.avn-iaa-transform__trust p {
  margin: 0;

  font-size: var(--avn-type-body);
  line-height: 1.4;
  font-weight: 500;

  color: var(--avn-text-heading);
}

.avn-iaa-transform__trust strong {
  font-weight: 800;
  color: var(--avn-red);
}

/* ==========================================================
   SECTION 06 : DESKTOP VISUAL POLISH
========================================================== */

@media (min-width: 1001px) {

  /* ========================================================
     MAIN TRANSFORMATION CARD
  ======================================================== */

  .avn-iaa-transform__card {
    box-shadow:
      0 14px 38px rgba(17, 24, 39, 0.055);
  }


  /* ========================================================
     CENTRE TRANSFORMATION AXIS
  ======================================================== */

  .avn-iaa-transform__center {
    position: relative;
  }

  /*
   * Subtle structural axis:
   * CURRENT REALITY | TRANSFORMATION | FUTURE STATE
   */
  .avn-iaa-transform__center::before {
    content: "";

    position: absolute;
    top: 36px;
    bottom: 36px;
    left: 50%;
    z-index: 0;

    width: 1px;

    background:
      linear-gradient(
        180deg,
        transparent 0%,
      rgba(17, 24, 39, 0.10) 14%,
      rgba(17, 24, 39, 0.10) 86%,
        transparent 100%
      );

    transform: translateX(-50%);

    pointer-events: none;
  }

  .avn-iaa-transform__dots,
  .avn-iaa-transform__arrow {
    position: relative;
    z-index: 2;
  }


  /* ========================================================
     TRANSFORMATION ARROW
  ======================================================== */

  .avn-iaa-transform__arrow {
    box-shadow:
      0 10px 28px rgba(17, 24, 39, 0.09),
      0 0 32px rgba(192, 0, 11, 0.04),
      0 0 32px rgba(46, 125, 50, 0.04);
  }


  /* ========================================================
     ROW ALIGNMENT
  ======================================================== */

  /*
   * Keep left and right states visually paired.
   * Every row now occupies the same minimum rhythm.
   */

  .avn-iaa-transform__items {
    grid-template-rows: repeat(4, minmax(92px, auto));
  }

  .avn-iaa-transform__item {
    min-height: 92px;

    padding-top: 16px;
    padding-bottom: 16px;
  }


  /* ========================================================
     ITEM ICONS
  ======================================================== */

  /*
   * Slightly reduce their dominance.
   * Content should remain the primary signal.
   */

  .avn-iaa-transform__item > span {
    width: 56px;
    height: 56px;
  }

  .avn-iaa-transform__item > span img {
    width: 28px;
    height: 28px;
  }


  /* ========================================================
     BOTTOM BENEFIT STRIP
  ======================================================== */

  .avn-iaa-transform__benefits {
    margin-top: 16px;

    padding-top: 24px;
    padding-bottom: 24px;

    border-top-color: rgba(17, 24, 39, 0.09);

    box-shadow:
      0 10px 28px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-transform__benefit {
    gap: 14px;

    padding-left: 24px;
    padding-right: 24px;
  }

  /*
   * Make the four outcome divisions more deliberate,
   * without creating separate cards.
   */
  .avn-iaa-transform__benefit:not(:first-child) {
    border-left-color: rgba(17, 24, 39, 0.10);
  }

  .avn-iaa-transform__benefit > span {
    width: 52px;
    height: 52px;
  }

  .avn-iaa-transform__benefit > span img {
    width: 25px;
    height: 25px;
  }


  /* ========================================================
     FINAL TRUST STATEMENT
  ======================================================== */

  .avn-iaa-transform__trust {
    margin-top: 18px;
    gap: 10px;
  }

  .avn-iaa-transform__trust p {
    font-weight: 500;
  }

  .avn-iaa-transform__trust strong {
    font-weight: 800;
  }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {
  .avn-iaa-transform__card {
    grid-template-columns: 1fr;
	background: var(--avn-white);
  }

	.avn-iaa-transform__side--from {
  background: rgba(192, 0, 11, 0.035);
}
	
  .avn-iaa-transform__center {
    grid-template-columns: 1fr;
    justify-items: center;
    background: var(--avn-white);
    padding: 24px 0;
  }

	.avn-iaa-transform__side--to {
  background: rgba(46, 125, 50, 0.045);
}
	
  .avn-iaa-transform__dots {
    display: none;
  }

  .avn-iaa-transform__arrow {
    transform: rotate(90deg);
  }

  .avn-iaa-transform__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .avn-iaa-transform__benefit:nth-child(3) {
    border-left: 0;
  }
}

/* ==========================================================
   MOBILE — SECTION 06
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-transform {
    padding: 56px 0 20px;
  }

  .avn-iaa-transform .avn-container {
    width: min(100% - 32px, 1200px);
  }


  /* ========================================================
     HEADER
  ======================================================== */

  .avn-iaa-transform__header {
    max-width: 560px;
    margin-bottom: 26px;
  }

  .avn-iaa-transform__header h2 {
    line-height: 1.08;
  }

  .avn-iaa-transform__header p {
    max-width: 500px;
    margin-top: 18px;
    line-height: 1.55;
  }


  /* ========================================================
     MAIN TRANSFORMATION CARD
  ======================================================== */

  .avn-iaa-transform__card {
    grid-template-columns: 1fr;

    min-height: auto;

    background: var(--avn-white);

    border-radius: 12px;

    box-shadow:
      0 8px 22px rgba(17, 24, 39, 0.04);
  }

  .avn-iaa-transform__side {
    padding: 20px 18px;
  }

  .avn-iaa-transform__side--from {
    background: rgba(192, 0, 11, 0.035);
  }

  .avn-iaa-transform__side--to {
    background: rgba(46, 125, 50, 0.045);
  }

  .avn-iaa-transform__label {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }


  /* ========================================================
     COMPARISON ITEMS
  ======================================================== */

  /*
   * Key mobile change:
   * icon stays on the left,
   * content stays on the right.
   */

  .avn-iaa-transform__item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;

    padding: 14px 0;

    text-align: left;
  }

  .avn-iaa-transform__item > span {
    width: 44px;
    height: 44px;

    margin: 0;
  }

  .avn-iaa-transform__item > span img {
    width: 22px;
    height: 22px;
  }

  .avn-iaa-transform__item strong {
    line-height: 1.2;
  }

  .avn-iaa-transform__item p {
    max-width: none;

    margin: 4px 0 0;

    line-height: 1.4;
  }


  /* ========================================================
     TRANSITION BRIDGE
  ======================================================== */

  .avn-iaa-transform__center {
    position: relative;

    grid-template-columns: 1fr;
    justify-items: center;

    padding: 10px 0;

    background: var(--avn-white);
  }

  .avn-iaa-transform__dots {
    display: none;
  }

  /*
   * Small vertical guide through the transition.
   */
  .avn-iaa-transform__center::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    background: rgba(17, 24, 39, 0.07);

    transform: translateX(-50%);
  }

  .avn-iaa-transform__arrow {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    box-shadow:
      0 6px 18px rgba(17, 24, 39, 0.065);

    transform: rotate(90deg);
  }

  .avn-iaa-transform__arrow span {
    font-size: 26px;
  }


  /* ========================================================
     BENEFITS
  ======================================================== */

  .avn-iaa-transform__benefits {
    grid-template-columns: 1fr;
    gap: 0;

    margin-top: 16px;
    padding: 6px 18px;

    border-radius: 12px;

    background: #f8f8f8;

    box-shadow:
      0 7px 18px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-transform__benefit {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;

    padding: 14px 0;

    border-left: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  }

  .avn-iaa-transform__benefit:last-child {
    border-bottom: 0;
  }

  .avn-iaa-transform__benefit > span {
    width: 44px;
    height: 44px;
  }

  .avn-iaa-transform__benefit > span img {
    width: 22px;
    height: 22px;
  }

  .avn-iaa-transform__benefit p {
    margin-top: 3px;
    line-height: 1.4;
  }

/* ========================================================
   TRUST LINE
======================================================== */

.avn-iaa-transform__trust {
  display: grid;

  grid-template-columns:
    24px
    minmax(0, 1fr);

  gap: 10px;
  align-items: center;

  width: min(100%, 420px);

  margin: 16px auto 0;
  padding-top: 12px;

  border-top: 1px solid rgba(17, 24, 39, 0.08);

  text-align: left;
}

.avn-iaa-transform__trust > span {
  width: 24px;
  height: 24px;

  margin: 0;
}

.avn-iaa-transform__trust > span img {
  width: 20px;
  height: 20px;
}

.avn-iaa-transform__trust p {
  margin: 0;

  line-height: 1.45;

  text-align: left;
}

.avn-iaa-transform__trust strong {
  white-space: nowrap;
}
 
}

/* ==========================================================
   SECTION 07 : DIFFERENT FINDINGS / RIGHT OUTCOMES
========================================================== */

.avn-iaa-pathways {
  padding: 88px 0 48px;
  background: #f8f8f8;
}

.avn-iaa-pathways .avn-container {
  width: min(100% - 48px, 1320px);
}

/* ==========================================================
   SECTION HEADER
========================================================== */

.avn-iaa-pathways__header {
  max-width: 840px;
  margin: 0 auto 48px;
  text-align: center;
}

.avn-iaa-pathways__header h2 {
  margin: 0;

  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.05em;

  color: var(--avn-text-heading);
}

.avn-iaa-pathways__header h2 span {
  color: var(--avn-red);
}

.avn-iaa-pathways__line {
  width: 46px;
  height: 2px;
  margin: 26px auto 24px;

  background: var(--avn-red);
}

.avn-iaa-pathways__header p {
  max-width: 690px;
  margin: 0 auto;

  font-size: var(--avn-type-body-large);
  line-height: 1.6;

  color: var(--avn-text-body);
}

/* ==========================================================
   ECOSYSTEM LAYOUT
========================================================== */

.avn-iaa-pathways__ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.avn-iaa-pathways__cards {
  display: grid;
  gap: 28px;
}

/* ==========================================================
   SOLUTION CARDS
========================================================== */

.avn-iaa-pathways__solution {
  position: relative;

  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  align-items: center;

  min-height: 190px;
  padding: 28px 30px;

  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  background: var(--avn-white);

  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.075);
}

/* ==========================================================
   PATHWAY COLOUR SYSTEM
========================================================== */

.avn-iaa-pathways__solution--red {
  --path-color: var(--avn-red);
  --path-rgb: 192, 0, 11;
}

.avn-iaa-pathways__solution--orange {
  --path-color: #E86A00;
  --path-rgb: 232, 106, 0;
}

.avn-iaa-pathways__solution--purple {
  --path-color: #3B168C;
  --path-rgb: 59, 22, 140;
}

.avn-iaa-pathways__solution--green {
  --path-color: #138A36;
  --path-rgb: 19, 138, 54;
}

/* ==========================================================
   SOLUTION ICON
========================================================== */

.avn-iaa-pathways__solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 104px;
  height: 104px;

  border: 1px solid rgba(var(--path-rgb), 0.16);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow: 0 12px 32px rgba(var(--path-rgb), 0.10);
}

.avn-iaa-pathways__solution-icon img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ==========================================================
   SOLUTION CONTENT
========================================================== */

.avn-iaa-pathways__label {
  display: block;
  margin-bottom: 9px;

  font-size: var(--avn-type-label);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--path-color);
}

.avn-iaa-pathways__solution h3 {
  max-width: 270px;
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;

  color: var(--avn-text-heading);
}

.avn-iaa-pathways__accent {
  width: 46px;
  height: 2px;
  margin: 14px 0 17px;

  background: var(--path-color);
}

.avn-iaa-pathways__solution p {
  max-width: 300px;
  margin: 0;

  font-size: var(--avn-type-body);
  line-height: 1.55;

  color: var(--avn-text-supporting);
}

.avn-iaa-pathways__solution a {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 22px;

  font-size: var(--avn-type-button);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;

  color: var(--path-color);

  transition: gap 0.25s ease;
}

.avn-iaa-pathways__solution a:hover {
  gap: 14px;
}

/* ==========================================================
   CONNECTORS
========================================================== */

.avn-iaa-pathways__solution::before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 1;

  width: 92px;

  border-top: 2px dotted rgba(var(--path-rgb), 0.55);

  transform: translateY(-50%);
}

.avn-iaa-pathways__solution::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 16px;
  height: 16px;

  border: 5px solid var(--avn-white);
  border-radius: 50%;
  background: var(--path-color);

  box-shadow: 0 8px 18px rgba(var(--path-rgb), 0.20);

  transform: translateY(-50%);
}

.avn-iaa-pathways__cards--left .avn-iaa-pathways__solution::before {
  right: -92px;
}

.avn-iaa-pathways__cards--left .avn-iaa-pathways__solution::after {
  right: -101px;
}

.avn-iaa-pathways__cards--right .avn-iaa-pathways__solution::before {
  left: -92px;
}

.avn-iaa-pathways__cards--right .avn-iaa-pathways__solution::after {
  left: -101px;
}

/* ==========================================================
   CENTRAL ASSESSMENT HUB
========================================================== */

.avn-iaa-pathways__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avn-iaa-pathways__rings {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 320px;
  height: 320px;
}

.avn-iaa-pathways__ring {
  position: absolute;

  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 50%;
}

.avn-iaa-pathways__ring.ring-1 {
  width: 290px;
  height: 290px;

  background: rgba(255, 255, 255, 0.58);

  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.05);
}

.avn-iaa-pathways__ring.ring-2 {
  width: 255px;
  height: 255px;

  background: #fafafa;
}

/* ==========================================================
   CENTRAL HUB — INTERNAL CONTENT ALIGNMENT
========================================================== */

.avn-iaa-pathways__center-circle {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 50%;
  background: var(--avn-white);

  text-align: center;

  box-shadow:
    0 22px 52px rgba(17, 24, 39, 0.09),
    0 0 0 12px rgba(192, 0, 11, 0.035);
}

/* Icon */
.avn-iaa-pathways__center-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: auto;
  height: auto;

  margin: 0;
}


.avn-iaa-pathways__center-icon img {
  display: block;

  width: 42px;
  height: 42px;

  margin: 0;

  object-fit: contain;
}

/* Heading */
.avn-iaa-pathways__center-circle h3 {
  margin: 0;
  padding: 0;

  font-size: var(--avn-type-h4);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;

  color: var(--avn-text-heading);
}

/* Supporting copy */
.avn-iaa-pathways__center-circle p {
  margin: 2px 0 0;
  padding: 0;

  font-size: var(--avn-type-small);
  line-height: 1.35;
  text-align: center;

  color: var(--avn-text-body);
}

/* ==========================================================
   CTA STRIP
========================================================== */

.avn-iaa-pathways__cta {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto
    minmax(240px, 0.9fr)
    auto;
  gap: 32px;
  align-items: center;

  margin-top: 56px;
  padding: 28px 34px;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 18px;
  background: var(--avn-white);

  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.055);
}

.avn-iaa-pathways__cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.avn-iaa-pathways__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 76px;
  height: 76px;
  flex: 0 0 76px;

  border: 1px solid rgba(192, 0, 11, 0.18);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow: 0 12px 28px rgba(192, 0, 11, 0.09);
}

.avn-iaa-pathways__cta-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.avn-iaa-pathways__cta-text h3 {
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;

  color: var(--avn-text-heading);
}

.avn-iaa-pathways__cta-divider {
  width: 1px;
  height: 72px;

  background: rgba(17, 24, 39, 0.09);
}

.avn-iaa-pathways__cta-center {
  max-width: 400px;
}

.avn-iaa-pathways__cta-center p {
  margin: 0;

  font-size: var(--avn-type-body);
  line-height: 1.55;

  color: var(--avn-text-body);
}

.avn-iaa-pathways__cta-right {
  display: flex;
  justify-content: flex-end;
}

.avn-iaa-pathways__cta-right .avn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 290px;
  min-height: 60px;
  padding: 14px 22px;

  border-radius: 10px;
  background: var(--avn-red);

  font-size: var(--avn-type-button);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  color: var(--avn-white);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.avn-iaa-pathways__cta-right .avn-btn:hover {
  transform: translateY(-2px);

  background: #A40009;

  box-shadow: 0 14px 32px rgba(192, 0, 11, 0.26);
}

/* ==========================================================
   BOTTOM PROOF ROW
========================================================== */

.avn-iaa-pathways__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 40px;

  overflow: hidden;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 16px;
  background: var(--avn-white);

  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
}

.avn-iaa-pathways__proof-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 26px 24px;
}

.avn-iaa-pathways__proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 54px;

  background: rgba(17, 24, 39, 0.09);

  transform: translateY(-50%);
}

.avn-iaa-pathways__proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;
  flex: 0 0 56px;

  border: 1px solid rgba(192, 0, 11, 0.15);
  border-radius: 50%;
  background: var(--avn-white);

  box-shadow: 0 10px 24px rgba(192, 0, 11, 0.07);
}

.avn-iaa-pathways__proof-icon img {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.avn-iaa-pathways__proof-content h4 {
  margin: 0 0 5px;

  font-size: var(--avn-type-h4);
  line-height: 1.2;
  font-weight: 800;

  color: var(--avn-text-heading);
}

.avn-iaa-pathways__proof-content p {
  margin: 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.45;

  color: var(--avn-text-body);
}

/* ==========================================================
   SECTION 07 : DESKTOP VISUAL POLISH
========================================================== */

@media (min-width: 1051px) {

  /* ========================================================
     ECOSYSTEM COMPOSITION
  ======================================================== */

  .avn-iaa-pathways__ecosystem {
    grid-template-columns:
      minmax(0, 1fr)
      280px
      minmax(0, 1fr);

    gap: 24px;
  }

  .avn-iaa-pathways__cards {
    gap: 24px;
  }


  /* ========================================================
     SOLUTION CARDS
  ======================================================== */

  .avn-iaa-pathways__solution {
    min-height: 184px;

    padding: 26px 28px;

    box-shadow:
      0 12px 30px rgba(17, 24, 39, 0.06);
  }


  /* ========================================================
     SOLUTION CONTENT STRUCTURE
  ======================================================== */

  .avn-iaa-pathways__solution-content {
    min-width: 0;
  }

  /*
   * Make the accent behave like a structural divider
   * rather than a decorative dash.
   */
  .avn-iaa-pathways__accent {
    width: 100%;
    max-width: 220px;

    height: 1px;

    margin: 13px 0 14px;

    background:
      linear-gradient(
        90deg,
        var(--path-color) 0 42px,
        rgba(17, 24, 39, 0.07) 42px 100%
      );
  }


  /* ========================================================
     STRONGER PATH CONNECTORS
  ======================================================== */

  .avn-iaa-pathways__solution::before {
    width: 78px;

    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: rgba(var(--path-rgb), 0.68);
  }

  .avn-iaa-pathways__solution::after {
    width: 12px;
    height: 12px;

    border-width: 4px;

  box-shadow:
    0 0 0 2px rgba(var(--path-rgb), 0.08),
    0 5px 12px rgba(var(--path-rgb), 0.20);
  }

  .avn-iaa-pathways__cards--left
  .avn-iaa-pathways__solution::before {
    right: -78px;
  }

  .avn-iaa-pathways__cards--left
  .avn-iaa-pathways__solution::after {
    right: -84px;
  }

  .avn-iaa-pathways__cards--right
  .avn-iaa-pathways__solution::before {
    left: -78px;
  }

  .avn-iaa-pathways__cards--right
  .avn-iaa-pathways__solution::after {
    left: -84px;
  }


  /* ========================================================
     CENTRAL HUB
  ======================================================== */

  .avn-iaa-pathways__rings {
    width: 290px;
    height: 290px;
  }

  .avn-iaa-pathways__ring.ring-1 {
    width: 270px;
    height: 270px;
  }

  .avn-iaa-pathways__ring.ring-2 {
    width: 238px;
    height: 238px;
  }

  .avn-iaa-pathways__center-circle {
    width: 214px;
    height: 214px;

    box-shadow:
      0 16px 38px rgba(17, 24, 39, 0.075),
      0 0 0 10px rgba(192, 0, 11, 0.028);
  }


  /* ========================================================
     CTA STRIP
  ======================================================== */

  .avn-iaa-pathways__cta {
    margin-top: 42px;

    padding: 24px 30px;

    box-shadow:
      0 10px 28px rgba(17, 24, 39, 0.04);
  }

  .avn-iaa-pathways__cta-divider {
    height: 60px;
  }


  /* ========================================================
     PROOF STRIP
  ======================================================== */

  .avn-iaa-pathways__proof {
    margin-top: 18px;

    box-shadow:
      0 8px 22px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-pathways__proof-item {
    padding: 22px 22px;
  }

  .avn-iaa-pathways__proof-item:not(:last-child)::after {
    height: 44px;

    background: rgba(17, 24, 39, 0.085);
  }

  .avn-iaa-pathways__proof-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;

    box-shadow: none;
  }

  .avn-iaa-pathways__proof-icon img {
    width: 25px;
    height: 25px;
  }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {
  .avn-iaa-pathways__ecosystem {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .avn-iaa-pathways__center {
    order: -1;
  }

  .avn-iaa-pathways__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .avn-iaa-pathways__solution::before,
  .avn-iaa-pathways__solution::after {
    display: none;
  }

  .avn-iaa-pathways__cta {
    grid-template-columns: 1fr;
    gap: 24px;

    text-align: center;
  }

  .avn-iaa-pathways__cta-left {
    justify-content: center;
  }

  .avn-iaa-pathways__cta-divider {
    display: none;
  }

  .avn-iaa-pathways__cta-center {
    max-width: 620px;
    margin-inline: auto;
  }

  .avn-iaa-pathways__cta-right {
    justify-content: center;
  }

  .avn-iaa-pathways__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .avn-iaa-pathways__proof-item:nth-child(2)::after {
    display: none;
  }
}

/* ==========================================================
   MOBILE — SECTION 07
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-pathways {
    padding: 56px 0 60px;
  }

  .avn-iaa-pathways .avn-container {
    width: min(100% - 32px, 1200px);
  }


  /* ========================================================
     HEADER
  ======================================================== */

  .avn-iaa-pathways__header {
    max-width: 560px;
    margin-bottom: 30px;
  }

  .avn-iaa-pathways__header h2 {
    line-height: 1.08;
  }

  .avn-iaa-pathways__line {
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .avn-iaa-pathways__header p {
    max-width: 500px;

    line-height: 1.55;
  }


  /* ========================================================
     ECOSYSTEM
  ======================================================== */

  .avn-iaa-pathways__ecosystem {
    position: relative;

    grid-template-columns: 1fr;
    gap: 14px;
  }

  /*
   * Desktop connectors are not useful once the
   * ecosystem becomes a vertical mobile journey.
   */
  .avn-iaa-pathways__solution::before,
  .avn-iaa-pathways__solution::after {
    display: none;
  }


/* ========================================================
   CENTRAL ASSESSMENT HUB — MOBILE FINAL FIX
======================================================== */

.avn-iaa-pathways__center {
  position: relative;

  order: -1;

  margin-bottom: 18px;
}

.avn-iaa-pathways__center::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -18px;

  width: 1px;
  height: 18px;

  background: rgba(17, 24, 39, 0.13);

  transform: translateX(-50%);
}


/* ========================================================
   RINGS
======================================================== */

.avn-iaa-pathways__rings {
  width: 210px;
  height: 210px;
}

.avn-iaa-pathways__ring.ring-1 {
  width: 202px;
  height: 202px;
}

.avn-iaa-pathways__ring.ring-2 {
  width: 180px;
  height: 180px;
}


/* Mobile inner hub */
.avn-iaa-pathways__center-circle {
  width: 166px;
  height: 166px;

  gap: 5px;

  padding:
    4px
    12px
    20px;

  box-sizing: border-box;

  box-shadow:
    0 12px 30px rgba(17, 24, 39, 0.065),
    0 0 0 7px rgba(192, 0, 11, 0.025);
}

.avn-iaa-pathways__center-icon img {
  width: 28px;
  height: 28px;
}
	
	.avn-iaa-pathways__center-circle h3 {
  margin: 0;

  line-height: 1.02;
}
.avn-iaa-pathways__center-circle p {
  margin: 2px 0 0;

  line-height: 1.25;
}




  /* ========================================================
     PATHWAY CARD GROUPS
  ======================================================== */

  .avn-iaa-pathways__cards {
    grid-template-columns: 1fr;

    /*
     * Reduced from 18px so all four pathways read
     * as one continuous result set.
     */
    gap: 14px;
  }


  /* ========================================================
     SOLUTION CARDS
  ======================================================== */

  .avn-iaa-pathways__solution {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: start;

    min-height: auto;

    padding: 18px 20px;

    border-radius: 14px;

    text-align: left;

    box-shadow:
      0 8px 20px rgba(17, 24, 39, 0.045);
  }

  .avn-iaa-pathways__solution-icon {
    width: 54px;
    height: 54px;

    margin: 0;

    box-shadow: none;
  }

  .avn-iaa-pathways__solution-icon img {
    width: 27px;
    height: 27px;
  }

  .avn-iaa-pathways__solution-content {
    min-width: 0;
  }


  /* ========================================================
     SOLUTION CONTENT
  ======================================================== */

  .avn-iaa-pathways__label {
    margin-bottom: 5px;
  }

  .avn-iaa-pathways__solution h3 {
    max-width: none;
    margin: 0;
  }

  /*
   * Preserve the pathway colour while using the accent
   * as a compact structural separator.
   */
  .avn-iaa-pathways__accent {
    width: 34px;
    height: 2px;

    margin: 9px 0 10px;
  }

  .avn-iaa-pathways__solution p {
    max-width: none;
    margin: 0;

    line-height: 1.5;
  }

  .avn-iaa-pathways__solution a {
    justify-content: flex-start;

    margin-top: 12px;
  }


  /* ========================================================
     CTA STRIP
  ======================================================== */

  .avn-iaa-pathways__cta {
    grid-template-columns: 1fr;
    gap: 14px;

    margin-top: 28px;

    padding: 20px 18px 22px;

    border-radius: 14px;

    text-align: center;

    box-shadow:
      0 8px 22px rgba(17, 24, 39, 0.04);
  }

  .avn-iaa-pathways__cta-left {
    flex-direction: column;
    justify-content: center;

    gap: 10px;
  }

  .avn-iaa-pathways__cta-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;

    box-shadow:
      0 8px 20px rgba(192, 0, 11, 0.065);
  }

  .avn-iaa-pathways__cta-icon img {
    width: 32px;
    height: 32px;
  }

  .avn-iaa-pathways__cta-text h3 {
    max-width: 420px;

    margin-inline: auto;
  }

  .avn-iaa-pathways__cta-text h3 br {
    display: none;
  }

  .avn-iaa-pathways__cta-divider {
    display: none;
  }

  .avn-iaa-pathways__cta-center {
    max-width: 440px;

    margin-inline: auto;
  }

  .avn-iaa-pathways__cta-center p {
    line-height: 1.5;
  }

  .avn-iaa-pathways__cta-right {
    justify-content: center;

    width: 100%;
  }

  .avn-iaa-pathways__cta-right .avn-btn {
    width: 100%;
    min-height: 54px;

    padding: 14px 18px;
  }


  /* ========================================================
     PROOF / OUTCOME ROW
  ======================================================== */

  .avn-iaa-pathways__proof {
    grid-template-columns: 1fr;

    /*
     * Closer to CTA because both components form
     * one conclusion sequence.
     */
    margin-top: 18px;

    border-radius: 14px;

    box-shadow:
      0 7px 18px rgba(17, 24, 39, 0.035);
  }

  .avn-iaa-pathways__proof-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);

    gap: 12px;
    align-items: center;

    padding: 15px 18px;

    text-align: left;
  }

  .avn-iaa-pathways__proof-item:not(:last-child) {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  /*
   * Desktop vertical separators are replaced by
   * horizontal mobile separators.
   */
  .avn-iaa-pathways__proof-item::after {
    display: none;
  }

  .avn-iaa-pathways__proof-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;

    box-shadow: none;
  }

  .avn-iaa-pathways__proof-icon img {
    width: 22px;
    height: 22px;
  }

  .avn-iaa-pathways__proof-content h4 {
    margin-bottom: 3px;
  }

  .avn-iaa-pathways__proof-content p {
    line-height: 1.4;
  }
	
	/* ========================================================
   SECTION 07 — MOBILE BOTTOM SPACING FIX
======================================================== */

.avn-iaa-pathways {
  padding-bottom: 18px;
}		
}

/* ==========================================================
   SECTION 08 : FINAL CTA
========================================================== */

.avn-iaa-final-cta {
  position: relative;

  padding: 84px 0 72px;

  overflow: hidden;

  background: var(--avn-white);
}


/* ==========================================================
   BACKGROUND ATMOSPHERE
========================================================== */

.avn-iaa-final-cta::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 1050px;
  height: 1050px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(192, 0, 11, 0.032) 0%,
      rgba(192, 0, 11, 0.015) 44%,
      transparent 72%
    );

  transform: translate(-50%, -50%);

  pointer-events: none;
}


.avn-iaa-final-cta .avn-container {
  width: min(100% - 48px, 1200px);
}


/* ==========================================================
   INNER WRAPPER
========================================================== */

.avn-iaa-final-cta__inner {
  position: relative;
  z-index: 2;

  max-width: 980px;

  margin: 0 auto;

  text-align: center;
}


/* ==========================================================
   HEADING
========================================================== */

.avn-iaa-final-cta__heading h2 {
  margin: 0;

  font-size: var(--avn-type-h2);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.05em;

  color: var(--avn-text-heading);
}


.avn-iaa-final-cta__heading span {
  display: block;

  margin-top: 10px;

  color: var(--avn-red);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.avn-iaa-final-cta__description {
  max-width: 740px;

  margin: 26px auto 0;

  font-size: var(--avn-type-body-large);
  line-height: 1.6;

  color: var(--avn-text-body);
}


/* ==========================================================
   DIVIDER
========================================================== */

.avn-section-divider {
  width: 54px;
  height: 2px;

  margin: 26px auto 0;

  background: var(--avn-red);
}


/* ==========================================================
   ACTION / CONVERSION PANEL
========================================================== */

.avn-iaa-final-cta__action {
  position: relative;

  width: min(100%, 780px);

  margin: 34px auto 0;
  padding: 28px 34px 24px;

  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 248, 248, 0.92) 100%
    );

  box-shadow:
    0 18px 46px rgba(17, 24, 39, 0.055);

  text-align: center;
}


/* ==========================================================
   PRIMARY CTA BUTTON
========================================================== */

.avn-iaa-final-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(100%, 660px);
  min-height: 86px;

  margin: 0 auto;
  padding: 18px 26px;

  border-radius: 10px;

  background:
    linear-gradient(
      180deg,
      #d60009 0%,
      var(--avn-red) 100%
    );

  box-shadow:
    0 12px 28px rgba(192, 0, 11, 0.18);

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.avn-iaa-final-cta__button,
.avn-iaa-final-cta__button:visited,
.avn-iaa-final-cta__button:hover,
.avn-iaa-final-cta__button:focus,
.avn-iaa-final-cta__button:active {
  color: var(--avn-white);
  text-decoration: none;
}


.avn-iaa-final-cta__button:hover {
  transform: translateY(-2px);

  background:
    linear-gradient(
      180deg,
      #cc0009 0%,
      #a40009 100%
    );

  box-shadow:
    0 18px 38px rgba(192, 0, 11, 0.24);
}


/* ==========================================================
   BUTTON ICON
========================================================== */

.avn-iaa-final-cta__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  flex: 0 0 50px;

  margin-right: 18px;
}


.avn-iaa-final-cta__button-icon img {
  display: block;

  width: 39px;
  height: 39px;

  object-fit: contain;

  filter:
    brightness(0)
    invert(1);
}


/* ==========================================================
   BUTTON TEXT
========================================================== */

.avn-iaa-final-cta__button-text {
  flex: 0 0 auto;

  font-size: var(--avn-type-h4);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.055em;

  text-align: left;
  text-transform: uppercase;

  color: var(--avn-white);
}

/* ==========================================================
   BUTTON ARROW
========================================================== */

.avn-iaa-final-cta__button-arrow {
  flex: 0 0 auto;

  margin-left: 46px;

  font-size: 30px;
  line-height: 1;
  font-weight: 400;

  color: var(--avn-white);
}


/* ==========================================================
   REASSURANCE STRIP
========================================================== */

.avn-iaa-final-cta__benefits {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  align-items: center;

  width: 100%;
  margin-top: 18px;
  margin: 22px auto 0;
  padding: 13px 0;

  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}


/* ==========================================================
   REASSURANCE ITEM
========================================================== */

.avn-iaa-final-cta__benefit {
  position: relative;

  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  justify-content: center;

  gap: 10px;
  text-align: left;
  min-width: 0;

  padding: 0 22px;
}


.avn-iaa-final-cta__benefit:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 40px;

  background: rgba(17, 24, 39, 0.10);

  transform: translateY(-50%);
}


/* ==========================================================
   REASSURANCE ICON
========================================================== */

.avn-iaa-final-cta__benefit > span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  flex: none;

  border: 1px solid rgba(192, 0, 11, 0.10);
  border-radius: 50%;

  background: rgba(192, 0, 11, 0.045);
}


.avn-iaa-final-cta__benefit > span img {
  display: block;

  width: 21px;
  height: 21px;

  object-fit: contain;

  filter:
    brightness(0)
    saturate(100%)
    invert(12%)
    sepia(96%)
    saturate(4755%)
    hue-rotate(350deg)
    brightness(91%)
    contrast(112%);
}


/* ==========================================================
   REASSURANCE TEXT
========================================================== */

.avn-iaa-final-cta__benefit p {
  margin: 0;

  font-size: var(--avn-type-body-small);
  line-height: 1.4;

  text-align: left;

  color: var(--avn-text-heading);
}


/* ==========================================================
   CLOSING STATEMENT
========================================================== */

.avn-iaa-final-cta__closing {
  margin-top: 18px;

  text-align: center;
}


.avn-iaa-final-cta__closing p {
  margin: 0;

  font-size: var(--avn-type-body);
  line-height: 1.5;

  color: var(--avn-text-supporting);
}


.avn-iaa-final-cta__closing strong {
  display: inline-block;

  margin-top: 3px;

  font-weight: 800;

  color: var(--avn-red);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

  .avn-iaa-final-cta {
    padding: 76px 0 64px;
  }

  .avn-iaa-final-cta__description {
    max-width: 680px;
  }

  .avn-iaa-final-cta__action {
    width: min(100%, 720px);

    padding: 26px 28px 24px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .avn-iaa-final-cta {
    padding: 56px 0 48px;
  }


  /* ========================================================
     BACKGROUND
  ======================================================== */

  .avn-iaa-final-cta::before {
    width: 680px;
    height: 680px;
  }


  .avn-iaa-final-cta .avn-container {
    width: min(100% - 32px, 1200px);
  }


  /* ========================================================
     HEADING
  ======================================================== */

  .avn-iaa-final-cta__heading h2 {
    line-height: 1.08;
  }


  .avn-iaa-final-cta__heading span {
    margin-top: 8px;
  }


  /* ========================================================
     DESCRIPTION
  ======================================================== */

  .avn-iaa-final-cta__description {
    max-width: 520px;

    margin-top: 20px;

    line-height: 1.55;
  }


  /* ========================================================
     DIVIDER
  ======================================================== */

  .avn-section-divider {
    width: 46px;

    margin-top: 22px;
  }


  /* ========================================================
     ACTION PANEL
  ======================================================== */

  .avn-iaa-final-cta__action {
    width: 100%;

    margin-top: 28px;

    padding: 16px;

    border-radius: 14px;

    box-shadow:
      0 10px 28px rgba(17, 24, 39, 0.045);
  }


  /* ========================================================
     PRIMARY CTA
  ======================================================== */

  .avn-iaa-final-cta__button {
    grid-template-columns:
      40px
      minmax(0, 1fr)
      24px;

    gap: 12px;

    width: 100%;
    min-height: 72px;

    padding: 14px 16px;
    justify-content: center;
    border-radius: 9px;

    box-shadow:
      0 10px 22px rgba(192, 0, 11, 0.17);
  }


  .avn-iaa-final-cta__button-icon {
   width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin-right: 14px;
	  
  }


  .avn-iaa-final-cta__button-icon img {
  width: 31px;
  height: 31px;
  }


  .avn-iaa-final-cta__button-text {
  font-size: var(--avn-type-button);
  line-height: 1.25;
    letter-spacing: 0.045em;
  }


.avn-iaa-final-cta__button-arrow {
  margin-left: 28px;

  font-size: 23px;
  }


  /* ========================================================
     REASSURANCE BLOCK
  ======================================================== */

  .avn-iaa-final-cta__benefits {
    grid-template-columns: 1fr;

    width: 100%;

    margin-top: 16px;

    padding: 4px 0;

    border-top: 1px solid rgba(17, 24, 39, 0.08);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }


  .avn-iaa-final-cta__benefit {
    display: grid;

    grid-template-columns:
      40px
      minmax(0, 1fr);

    gap: 11px;
    align-items: center;

    width: 100%;

    padding: 10px 4px;

    justify-content: initial;

    text-align: left;
  }


  .avn-iaa-final-cta__benefit:not(:last-child) {
    border-bottom: 1px solid rgba(17, 24, 39, 0.075);
  }


  .avn-iaa-final-cta__benefit::after {
    display: none;
  }


  .avn-iaa-final-cta__benefit > span {
  width: 36px;
  height: 36px;
  flex-basis: 38px;
  }


  .avn-iaa-final-cta__benefit > span img {
  width: 18px;
  height: 18px;
  }


  .avn-iaa-final-cta__benefit p {
    text-align: left;
  }


  /*
   * Prevent desktop forced line breaks from creating
   * unnecessarily tall reassurance rows.
   */
  .avn-iaa-final-cta__benefit p br {
    display: none;
  }


  /* ========================================================
     CLOSING STATEMENT
  ======================================================== */

  .avn-iaa-final-cta__closing {
    max-width: 440px;
    margin-top: 14px;
    margin: 16px auto 0;
  }


  .avn-iaa-final-cta__closing strong {
    margin-top: 3px;
  }

}

/* ==================================================
   GLOBAL TYPOGRAPHY - MOBILE
================================================== */

@media (max-width: 767px) {

  :root {

    /* Headings */
    --avn-type-h1: 38px;
    --avn-type-h2: 42px;
    --avn-type-h3: 22px;
    --avn-type-h4: 18px;

    /* Body Copy */
    --avn-type-body-large: 16px;
    --avn-type-body: 15px;
    --avn-type-body-small: 14px;

    /* Supporting / Metadata */
    --avn-type-small: 13px;

    /* UI Typography */
    --avn-type-label: 12px;
    --avn-type-button: 12px;

    /* Special Data Display */
    --avn-type-kpi: 48px;
  }

}