:root {
  /* ==================================================
     BRAND
  ================================================== */

  --avn-red: #C0000B;
  --avn-black: #000000;
  --avn-white: #ffffff;
  --avn-dark: #07142d;


  /* ==================================================
     FONTS
  ================================================== */

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


  /* ==================================================
     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);


  /* ==================================================
     TEMPORARY COMPATIBILITY ALIASES
     Remove after typography migration is complete
  ================================================== */


}


/* ==================================================
   HERO SECTION
   Homepage Hero - Inventory Truth
================================================== */

#avn-home {
  font-family: var(--avn-body);
  color: var(--avn-black);
  background: var(--avn-white);
}

#avn-home *,
#avn-home *::before,
#avn-home *::after {
  box-sizing: border-box;
}

#avn-home .avn-container {
  width: min(100% - 88px, 1320px);
  margin-inline: auto;
}

/* Hero */
#avn-home .avn-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

#avn-home .avn-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/wp-content/themes/altavant/images/icons/home-page-images/hero-inventory-truth.png");
  background-size: cover;
  background-position: 65% 40%;
  background-repeat: no-repeat;
}

#avn-home .avn-hero__inner {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  padding-top: 78px;
}

#avn-home .avn-hero__content {
  max-width: 520px;
}


#avn-home .avn-hero__title {
  margin: 0;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h1);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #07142d;
}

#avn-home .avn-hero__title span {
  color: var(--avn-red);
}

#avn-home .avn-hero__text {
  margin: 28px 0 26px;
  max-width: 430px;
  font-size: var(--avn-type-body-large);
  line-height: 1.55;
  font-weight: 500;
  color: #2b3442;
}

#avn-home .avn-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: #07142d;
  color: var(--avn-white);
  font-size: var(--avn-type-button);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.25s ease;
}

#avn-home .avn-btn:hover {
  background: var(--avn-red);
  transform: translateY(-2px);
  color: var(--avn-white);
}

#avn-home .avn-btn span {
  font-size: 18px;
  line-height: 1;
}

#avn-home .avn-hero__metric {
  position: absolute;
  top: 150px;
  right: 150px;
  color: #747b84;
}


/* Responsive */
@media (max-width: 1024px) {
  #avn-home .avn-container {
    width: min(100% - 48px, 1120px);
  }

  #avn-home .avn-hero,
  #avn-home .avn-hero__inner {
    min-height: 680px;
  }

  #avn-home .avn-hero__bg {
    background-position: 58% center;
  }

  #avn-home .avn-hero__metric {
    right: 70px;
  }
}

@media (max-width: 767px) {

#avn-home .avn-hero {
  min-height: 0;
}

#avn-home .avn-hero__inner {
  min-height: 0;
  padding-top: 56px;
  padding-bottom: 80px;
}

  #avn-home .avn-hero__inner {
    padding-top: 56px;
  }

  #avn-home .avn-hero__bg {
    background-position: 70% center;
  }

  /* Soft readability gradient */
#avn-home .avn-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,.94) 0%,
        rgba(255,255,255,.88) 45%,
        rgba(255,255,255,.50) 72%,
        rgba(255,255,255,.10) 100%
      );

    pointer-events: none;
  }

  #avn-home .avn-hero__content {
    max-width: 100%;
  }

  #avn-home .avn-hero__title {
    line-height: 1.02;
  }

  #avn-home .avn-hero__text {
    max-width: 330px;
    line-height: 1.55;
    font-weight: 500;
    color: #07142d;
  }

  #avn-home .avn-btn {
    width: 100%;
    max-width: 340px;

    justify-content: space-between;
  }

}
/* ==================================================
   PROBLEM STATEMENT STRIP
================================================== */

#avn-home .avn-problem-strip {
  padding: 50px 0;
  background: var(--avn-red);
  color: var(--avn-white);
  text-align: center;
}

#avn-home .avn-problem-strip h2 {
  margin: 0 auto;
  max-width: 1200px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
/* ==================================================
   PROBLEM STATEMENT STRIP - MOBILE
================================================== */

@media (max-width: 767px) {

  #avn-home .avn-problem-strip {
    padding: 48px 0;
    text-align: left;
  }

  #avn-home .avn-problem-strip h2 {
    max-width: 100%;

    margin: 0;

    line-height: 1.12;

    letter-spacing: -0.025em;
  }

}

/* ==================================================
   06. HIDDEN INVENTORY RISKS
   Purpose:
   Interactive section showing hidden inventory risks
   and their downstream business impact.
================================================== */

#avn-home .avn-risks {
  padding: 110px 0;
  background: var(--avn-white);
}

#avn-home .avn-risks__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left intro column */
#avn-home .avn-risks__intro h2 {
  margin: 0 0 28px;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--avn-dark);
}

#avn-home .avn-risks__lead {
  position: relative;
  margin: 0 0 22px;
  padding-top: 24px;
  max-width: 260px;
  font-size: var(--avn-type-body-large);
  line-height: 1.45;
  font-weight: 600;
  color: var(--avn-dark);
}

#avn-home .avn-risks__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--avn-red);
}

#avn-home .avn-risks__text {
  margin: 0;
  max-width: 300px;
  font-size: var(--avn-type-body);
  line-height: 1.65;
  color: #4a5565;
}

/* Middle risk selector column */
#avn-home .avn-risks__list {
  display: grid;
  gap: 14px;
}

#avn-home .avn-risk-card {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;

  padding: 20px 22px;
  border: 1px solid #e7e9ee;
  border-left: 3px solid transparent;
  background: #ffffff;

  font-family: var(--avn-body);
  font-size: var(--avn-type-body);
  line-height: 1.45;
  font-weight: 500;
  color: #1d2633;
  text-align: left;

  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

#avn-home .avn-risk-card:hover {
  background: rgba(192, 0, 11, 0.035);
  border-left-color: rgba(192, 0, 11, 0.45);
  transform: translateX(3px);
}

#avn-home .avn-risk-card.is-active {
  background: rgba(192, 0, 11, 0.055);
  border-left-color: var(--avn-red);
}

#avn-home .avn-risk-card__icon {
  width: 64px;
  height: 64px;

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

  flex-shrink: 0;

  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}
#avn-home .avn-risk-card__icon img {
  width: 38px;
  height: 38px;

  object-fit: contain;
  display: block;

  transition: transform .25s ease;
}

#avn-home .avn-risk-card.is-active .avn-risk-card__icon img {
  transform: scale(1.05);
}

/* Right business impact column */
#avn-home .avn-risks__impact {
  position: sticky;
  top: 120px;

  min-height: 360px;
  padding: 42px;
  background: #f7f8fa;
  border: 1px solid #e4e7ec;
}

#avn-home .avn-risks__label {
  margin: 0 0 28px;
  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--avn-red);
  text-transform: uppercase;
}

#avn-home .avn-risks__impact-text {
  margin: 0;
  font-family: var(--avn-heading);
  font-size: clamp(26px, 2.1vw, 38px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--avn-dark);
}

/* ==================================================
   06. HIDDEN INVENTORY RISKS - RESPONSIVE
================================================== */

@media (max-width: 1100px) {
  #avn-home .avn-risks__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  #avn-home .avn-risks__intro h2,
  #avn-home .avn-risks__lead,
  #avn-home .avn-risks__text {
    max-width: 640px;
  }

  #avn-home .avn-risks__impact {
    position: static;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  #avn-home .avn-risks {
    padding: 72px 0;
  }

  #avn-home .avn-risks__grid {
    gap: 32px;
  }

 

  #avn-home .avn-risk-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  #avn-home .avn-risk-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

  #avn-home .avn-risks__impact {
    padding: 30px 24px;
  }

  #avn-home .avn-risks__impact-text {
    font-size: 27px;
  }
}
/* ==================================================
   ACTIVE ICON STATE
================================================== */

#avn-home .avn-risk-card.is-active .avn-risk-card__icon {
  background: rgba(192, 0, 11, 0.08);
  border-color: rgba(192, 0, 11, 0.20);
}

#avn-home .avn-risk-card.is-active .avn-risk-card__icon img {
  transform: scale(1.05);
}

/* ==================================================
   07. INVENTORY IMPACT QUOTE STRIP
   Purpose:
   Creates a dark narrative transition after the
   Hidden Inventory Risks section.
================================================== */

#avn-home .avn-impact-strip {
  padding: 42px 0;
  background: var(--avn-red);
  color: var(--avn-white);
}

#avn-home .avn-impact-strip__inner {
  display: grid;
  grid-template-columns: 70px 1px 1fr;
  gap: 36px;
  align-items: center;
}

#avn-home .avn-impact-strip__quote-mark {
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  text-align: right;
}

#avn-home .avn-impact-strip__divider {
  width: 1px;
  height: 74px;
  background: rgba(255,255,255,.35);
}

#avn-home .avn-impact-strip__content p {
  margin: 0 0 8px;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
}

#avn-home .avn-impact-strip__content span {
  display: block;
  font-size: var(--avn-type-label);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}



/* ==================================================
   07. INVENTORY IMPACT QUOTE STRIP - MOBILE
================================================== */

@media (max-width: 767px) {
  #avn-home .avn-impact-strip {
    padding: 34px 0;
  }

  #avn-home .avn-impact-strip__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #avn-home .avn-impact-strip__quote-mark,
  #avn-home .avn-impact-strip__divider,
  #avn-home .avn-impact-strip__arrow {
    display: none;
  }



  #avn-home .avn-impact-strip__content span {
   
    line-height: 1.4;
  }
}

/* ==================================================
   08. BUSINESS CONSEQUENCES
   Purpose:
   Shows how inventory issues become business-level
   consequences across revenue, operations, planning,
   and growth.
================================================== */

#avn-home .avn-consequences {
  padding: 110px 0;
  background: var(--avn-white);
}

#avn-home .avn-consequences__header {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

#avn-home .avn-consequences__header h2 {
  margin: 0 0 24px;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--avn-dark);
}

#avn-home .avn-consequences__header p {
  margin: 0;
  font-size: var(--avn-type-body-large);
  line-height: 1.55;
  color: #384252;
}

#avn-home .avn-consequences__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Card */
#avn-home .avn-consequence-card {
  min-height: 390px;
  padding: 34px 28px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  text-align: center;

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

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

#avn-home .avn-consequence-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 0, 11, 0.28);
  box-shadow: 0 22px 50px rgba(7, 20, 45, 0.08);
}

/* Icon circle */

#avn-home .avn-consequence-card__icon {
    position: relative;

    width: 86px;
    height: 86px;
	margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f3f4f6;
}

#avn-home .avn-consequence-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

#avn-home .avn-consequence-card h3 {
  margin: 0 0 16px;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--avn-dark);
}

#avn-home .avn-consequence-card p {
  margin: 0 0 28px;
  font-size: var(--avn-type-body-small);
  line-height: 1.6;
  color: #263241;
}

#avn-home .avn-consequence-card span {
  margin-top: auto;
  padding-top: 20px;
  position: relative;

  font-size: var(--avn-type-label);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--avn-red);
}

#avn-home .avn-consequence-card span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--avn-red);
  transform: translateX(-50%);
}

/* ==================================================
   08. BUSINESS CONSEQUENCES - RESPONSIVE
================================================== */

@media (max-width: 1100px) {
  #avn-home .avn-consequences__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #avn-home .avn-consequences {
    padding: 72px 0;
  }

  #avn-home .avn-consequences__header {
    margin-bottom: 38px;
    text-align: left;
  }


  #avn-home .avn-consequences__header p br {
    display: none;
  }

  #avn-home .avn-consequences__grid {
    grid-template-columns: 1fr;
  }

#avn-home .avn-consequence-card {
    min-height: auto;
    padding: 32px 24px;

    /* Keep icon positioning unaffected */
    align-items: stretch;
    text-align: left;
  }

  /* Keep icon centered */
  #avn-home .avn-consequence-card__icon {
    align-self: center;
  }

  #avn-home .avn-consequence-card h3 {
    text-align: left;
  }

  #avn-home .avn-consequence-card p {
    text-align: left;
  }

  /* Remove forced desktop line breaks */
  #avn-home .avn-consequence-card p br,
  #avn-home .avn-consequence-card span br {
    display: none;
  }

  #avn-home .avn-consequence-card span {
    width: 100%;
    text-align: left;
  }

  /* Move red divider to left */
  #avn-home .avn-consequence-card span::before {
    left: 0;
    transform: none;
  }

  /* Header divider also left aligned */
  #avn-home .avn-consequences__divider {
    margin-left: 0;
    margin-right: 0;
  }

}


/* ==================================================
   CONSEQUENCES HEADER DIVIDER
================================================== */

#avn-home .avn-consequences__divider {
    width: 60px;
    height: 2px;

    margin: 24px auto;

    background: var(--avn-red);

    display: block;
}

/* ==================================================
   ICON ACCENT ARC
================================================== */

#avn-home .avn-consequence-card__icon::after {
    content: "";

    position: absolute;

    top: -3px;
    right: -3px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    border-top: 2px solid var(--avn-red);
	border-right: 2px solid var(--avn-red);
	transform: rotate(15deg);
}

/* ==================================================
   09. BUSINESS IMPACT SUMMARY
   Purpose:
   Reinforces that inventory issues affect
   multiple business functions.
================================================== */

#avn-home .avn-impact-summary {
  padding: 60px 0;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}

#avn-home .avn-impact-summary h2 {
  margin: 0 0 36px;

  text-align: center;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  font-weight: 600;
  line-height: 1.2;

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

#avn-home .avn-impact-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#avn-home .avn-impact-summary__item {
    position: relative;

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

    gap: 14px;
}


/* ==================================================
   IMPACT SUMMARY ITEM DIVIDER
================================================== */

#avn-home .avn-impact-summary__item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -15px;
    top: 50%;

    width: 1px;
    height: 42px;

    background: #eceef2;

    transform: translateY(-50%);
}

#avn-home .avn-impact-summary__icon {
  width: 46px;
  height: 46px;

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

#avn-home .avn-impact-summary__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#avn-home .avn-impact-summary__item span {
  font-size: var(--avn-type-body);
  font-weight: 600;
  color: var(--avn-dark);
}

@media (max-width: 991px) {
  #avn-home .avn-impact-summary__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }



  #avn-home .avn-impact-summary__item:nth-child(n+3) {
    padding-top: 24px;
    border-top: 1px solid #eceef2;
  }
}

@media (max-width: 575px) {
  #avn-home .avn-impact-summary__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #avn-home .avn-impact-summary__item::after {
    display: none !important;
  }

  #avn-home .avn-impact-summary__item:nth-child(n+3) {
    padding-top: 0;
    border-top: none;
  }
}

@media (max-width: 575px) {
  #avn-home .avn-impact-summary__item {
    justify-content: flex-start;
    width: 220px;
    margin-inline: auto;
  }

  #avn-home .avn-impact-summary__icon {
    flex: 0 0 52px;
  }

  #avn-home .avn-impact-summary__item span {
    min-width: 120px;
    text-align: left;
  }
}
/* ==================================================
   10. EXPOSURE TRANSITION STRIP
   Purpose:
   Moves user from awareness into assessment.
================================================== */

#avn-home .avn-exposure-strip {
  padding: 42px 0;
  background: var(--avn-red);
}

#avn-home .avn-exposure-strip__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;

  text-align: center;
}

#avn-home .avn-exposure-strip__content p {
  margin: 0;

  color: rgba(255,255,255,.92);

  font-size: var(--avn-type-h3);
  line-height: 1.3;
  font-weight: 400;
}

#avn-home .avn-exposure-strip__content span {
  position: relative;

  padding-left: 36px;

  color: #ffffff;

  font-size: var(--avn-type-h3);
  line-height: 1.3;
  font-weight: 700;
}

#avn-home .avn-exposure-strip__content span::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 1px;
  height: 34px;

  background: rgba(255,255,255,.35);

  transform: translateY(-50%);
}

/* ==================================================
   EXPOSURE TRANSITION STRIP - MOBILE
================================================== */

@media (max-width: 767px) {

  #avn-home .avn-exposure-strip {
    padding: 44px 0;
  }

  #avn-home .avn-exposure-strip__content {
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    text-align: left;
  }

  #avn-home .avn-exposure-strip__content p,
  #avn-home .avn-exposure-strip__content span {
    width: 100%;
   line-height: 1.25;
    padding-left: 0;
    padding-top: 22px;
  }

  #avn-home .avn-exposure-strip__content span::before {
    left: 0;
    top: 0;

    width: 54px;
    height: 1px;

    transform: none;
  }

}

/* ==================================================
   11. INVENTORY EXPOSURE ASSESSMENT
   Purpose:
   Static assessment-style preview showing visitors
   how inventory exposure can be evaluated.
================================================== */

#avn-home .avn-assessment {
  padding: 110px 0;
  background: #ffffff;
}


/* ==================================================
   ASSESSMENT LAYOUT
================================================== */

#avn-home .avn-assessment__grid {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 56px;
  align-items: start;
}


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

#avn-home .avn-assessment__intro h2 {
  margin: 0 0 26px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;

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

#avn-home .avn-assessment__intro h2::after {
  content: "";

  display: block;

  width: 64px;
  height: 2px;

  margin-top: 30px;

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

#avn-home .avn-assessment__intro > p {
  max-width: 310px;
  margin: 0 0 20px;

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

  color: #3b4655;
}


/* ==================================================
   ASSESSMENT INTRO NOTE
================================================== */

#avn-home .avn-assessment__note {
  margin-top: 42px;
  padding: 24px;

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

  border: 1px solid #eceef2;
  background: #fafafa;
  border-radius: 8px;
}

#avn-home .avn-assessment__note-icon,
#avn-home .avn-assessment__q-icon {
  width: 58px;
  height: 58px;

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

  flex-shrink: 0;

  border-radius: 50%;
  background: #f3f4f6;
}

#avn-home .avn-assessment__note-icon img,
#avn-home .avn-assessment__q-icon img {
  width: 34px;
  height: 34px;

  display: block;
  object-fit: contain;
}

#avn-home .avn-assessment__note strong {
  display: block;

  margin-bottom: 8px;

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

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

#avn-home .avn-assessment__note span {
  display: block;

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

  color: #4a5565;
}


/* ==================================================
   ASSESSMENT PANEL
================================================== */

#avn-home .avn-assessment__panel {
  min-width: 0;
  padding: 34px;

  background: #ffffff;

  border: 1px solid #e4e7ec;
  border-radius: 10px;

  box-shadow: 0 24px 70px rgba(7, 20, 45, 0.06);
}


/* ==================================================
   ASSESSMENT PANEL HEADER
================================================== */

#avn-home .avn-assessment__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  padding-bottom: 24px;

  border-bottom: 1px solid #eceef2;
}

#avn-home .avn-assessment__panel-head h3 {
  margin: 0 0 6px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  font-weight: 600;

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

#avn-home .avn-assessment__panel-head p {
  margin: 0;

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

  color: #4a5565;
}


/* ==================================================
   ASSESSMENT LEGEND
================================================== */

#avn-home .avn-assessment__legend {
  display: flex;
  flex-wrap: wrap;

  gap: 22px;

  font-size: var(--avn-type-label);

  color: #4a5565;
}

#avn-home .avn-assessment__legend span {
  display: flex;
  align-items: center;

  gap: 8px;
}

#avn-home .avn-assessment__legend i {
  width: 11px;
  height: 11px;

  display: inline-block;

  border-radius: 50%;
}

#avn-home .is-low {
  --risk-color: #65a97a;
}

#avn-home .is-mid {
  --risk-color: #e4a13d;
}

#avn-home .is-high {
  --risk-color: #d76057;
}

#avn-home .avn-assessment__legend .is-low,
#avn-home .avn-assessment__legend .is-mid,
#avn-home .avn-assessment__legend .is-high {
  background: var(--risk-color);
}


/* ==================================================
   ASSESSMENT ROWS
================================================== */

#avn-home .avn-assessment__row {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr;

  gap: 26px;

  padding: 22px 0;

  border-bottom: 1px solid #eceef2;
}


/* ==================================================
   ASSESSMENT QUESTIONS
================================================== */

#avn-home .avn-assessment__question {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);

  gap: 18px;

  align-items: center;

  min-width: 0;
}

#avn-home .avn-assessment__question h4 {
  margin: 0 0 6px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h4);
  line-height: 1.25;
  font-weight: 600;

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

#avn-home .avn-assessment__question p {
  margin: 0;

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

  color: #5d6878;
}


/* ==================================================
   ASSESSMENT ANSWERS
================================================== */

#avn-home .avn-assessment__answers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 12px;

  align-items: stretch;

  min-width: 0;
}

#avn-home .avn-assessment__answers span {
  display: flex;
  align-items: center;

  gap: 10px;

  min-width: 0;
  min-height: 62px;

  padding: 14px;

  border: 1px solid #e4e7ec;
  border-radius: 7px;

  background: #ffffff;

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

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


/* ==================================================
   RISK OPTION INDICATORS
================================================== */

#avn-home .avn-assessment__answers span i {
  width: 22px;
  height: 22px;

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

  flex: 0 0 22px;

  border-radius: 50%;

  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

#avn-home .avn-assessment__answers .is-low i {
  color: #65a97a;
  border: 1px solid #65a97a;
}

#avn-home .avn-assessment__answers .is-mid i {
  color: #e4a13d;
  border: 1px solid #e4a13d;
}

#avn-home .avn-assessment__answers .is-high i {
  color: #d76057;
  border: 1px solid #d76057;
}


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

#avn-home .avn-assessment__footer {
  margin-top: 28px;
  padding: 28px;

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

  gap: 28px;

  background: #fafafa;

  border-radius: 8px;
}

#avn-home .avn-assessment__footer-content {
  display: flex;
  align-items: center;

  gap: 18px;

  min-width: 0;
}

#avn-home .avn-assessment__footer-icon {
  width: 58px;
  height: 58px;

  flex: 0 0 58px;

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

  border-radius: 50%;

  background: #f3f4f6;
}

#avn-home .avn-assessment__footer-icon img {
  width: 32px;
  height: 32px;

  display: block;

  object-fit: contain;
}

#avn-home .avn-assessment__footer-text {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

#avn-home .avn-assessment__footer h4 {
  margin: 0 0 8px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h4);
  font-weight: 600;

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

#avn-home .avn-assessment__footer p {
  margin: 0;

  font-size: var(--avn-type-body-small);
  color: #4a5565;
}


/* ==================================================
   ASSESSMENT FOOTER CTA
================================================== */

#avn-home .avn-assessment__footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  gap: 10px;

  flex-shrink: 0;
}

#avn-home .avn-assessment__btn {
  min-width: 320px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding: 18px 28px;

  background: var(--avn-dark);
  color: #ffffff;

  border-radius: 4px;

  text-decoration: none;
  text-transform: uppercase;

  white-space: nowrap;

  font-size: var(--avn-type-button);
  font-weight: 800;
  letter-spacing: 0.06em;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

#avn-home .avn-assessment__btn:hover {
  background: var(--avn-red);
  color: #ffffff;

  transform: translateY(-2px);
}


/* ==================================================
   ASSESSMENT PRIVACY NOTE
================================================== */

#avn-home .avn-assessment__privacy {
  margin-top: 0;

  font-size: var(--avn-type-small);

  color: #5d6878;

  text-align: right;
}


/* ==================================================
   INVENTORY EXPOSURE ASSESSMENT - TABLET
================================================== */

@media (max-width: 1180px) {

  #avn-home .avn-assessment__grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  #avn-home .avn-assessment__intro > p {
    max-width: 620px;
  }

  #avn-home .avn-assessment__note {
    max-width: 620px;
  }

  #avn-home .avn-assessment__row {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  #avn-home .avn-assessment__panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* ==================================================
   INVENTORY EXPOSURE ASSESSMENT - MOBILE
================================================== */

@media (max-width: 767px) {

  #avn-home .avn-assessment {
    padding: 72px 0;
  }

  #avn-home .avn-assessment__grid {
    gap: 36px;
  }


  #avn-home .avn-assessment__note {
    grid-template-columns: 52px minmax(0, 1fr);

    gap: 14px;

    padding: 20px;
  }

  #avn-home .avn-assessment__note-icon {
    width: 52px;
    height: 52px;
  }

  #avn-home .avn-assessment__note-icon img {
    width: 30px;
    height: 30px;
  }

  #avn-home .avn-assessment__panel {
    padding: 22px;
  }



  #avn-home .avn-assessment__legend {
    gap: 14px;
  }

  #avn-home .avn-assessment__row {
    padding: 22px 0;
  }

  #avn-home .avn-assessment__question {
    grid-template-columns: 52px minmax(0, 1fr);

    gap: 14px;
  }

  #avn-home .avn-assessment__q-icon {
    width: 52px;
    height: 52px;
  }

  #avn-home .avn-assessment__q-icon img {
    width: 30px;
    height: 30px;
  }

  

  #avn-home .avn-assessment__answers {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-assessment__footer {
    flex-direction: column;
    align-items: stretch;

    padding: 22px;
  }

  #avn-home .avn-assessment__footer-content {
    align-items: flex-start;
  }

  #avn-home .avn-assessment__footer-cta {
    width: 100%;

    align-items: stretch;
  }

  #avn-home .avn-assessment__btn {
    width: 100%;
    min-width: 0;

    justify-content: space-between;
  }

  #avn-home .avn-assessment__privacy {
    text-align: center;
  }

}


/* ==================================================
   INVENTORY EXPOSURE ASSESSMENT - SMALL MOBILE
================================================== */

@media (max-width: 480px) {

  #avn-home .avn-assessment__panel {
    padding: 18px;
  }

  #avn-home .avn-assessment__note {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-assessment__question {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-assessment__footer-content {
    flex-direction: column;
  }

  #avn-home .avn-assessment__btn {
    padding: 16px 18px;

   
  }

}
/* ==================================================
   12. GOOD NEWS STRIP
   Purpose:
   Bridges the assessment preview into Altavant’s
   role as the solution partner.
================================================== */

#avn-home .avn-good-news {
  padding: 34px 0;
  background: var(--avn-red);
  color: var(--avn-white);
}

#avn-home .avn-good-news__inner {
  display: grid;
  grid-template-columns: 1.1fr 1px 1fr;
  gap: 56px;
  align-items: center;
}

#avn-home .avn-good-news__left,
#avn-home .avn-good-news__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

#avn-home .avn-good-news__icon {
  width: 68px;
  height: 68px;

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

  flex-shrink: 0;

  border-radius: 50%;
  background: rgba(255, 255, 255);
  border: 1px solid rgba(255,255,255,.28);
}

#avn-home .avn-good-news__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

#avn-home .avn-good-news__left span {
  display: block;
  margin-bottom: 4px;

  font-size: var(--avn-type-body);
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

#avn-home .avn-good-news__left p,
#avn-home .avn-good-news__right p {
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 1.35;
  color: var(--avn-white);
}

#avn-home .avn-good-news__divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,.35);
}

/* ==================================================
   12. GOOD NEWS STRIP - RESPONSIVE
================================================== */

@media (max-width: 767px) {
  #avn-home .avn-good-news__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  #avn-home .avn-good-news__divider {
    display: none;
  }

  #avn-home .avn-good-news__left,
  #avn-home .avn-good-news__right {
    align-items: flex-start;
  }
}

/* ==================================================
   13. WHY ALTAVANT
   Purpose:
   Explains why Altavant exists and reframes
   inventory accuracy as a decision problem.
================================================== */

#avn-home .avn-why {
    padding: 110px 0;
    background: var(--avn-white);
}

#avn-home .avn-why__content {
    max-width: 760px;
}

/* ==================================================
   HEADING
================================================== */

#avn-home .avn-why__content h2 {
    margin: 0 0 30px;

    font-family: var(--avn-heading);
    font-size: var(--avn-type-h2);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.045em;

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

#avn-home .avn-why__content h2::after {
    content: "";

    display: block;

    width: 64px;
    height: 2px;

    margin-top: 30px;

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

/* ==================================================
   PARAGRAPH
================================================== */

#avn-home .avn-why__text {
    max-width: 560px;

    margin: 0 0 36px;

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

    color: #3f4857;
}

/* ==================================================
   DECISION STATEMENT
================================================== */

#avn-home .avn-why__statement {
    padding-left: 24px;

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

#avn-home .avn-why__statement strong {
    display: block;

    margin-bottom: 8px;

    font-family: var(--avn-heading);
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;

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

#avn-home .avn-why__statement span {
    display: block;

    font-family: var(--avn-heading);
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;

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

/* ==================================================
   DIVIDER
================================================== */

#avn-home .avn-why__divider {
    width: 100%;
    height: 1px;

    margin: 42px 0 42px;

    background: #eceef2;
}

/* ==================================================
   VALUE PILLARS
================================================== */

#avn-home .avn-why__pillars {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 36px;
}

/* ==================================================
   INDIVIDUAL PILLAR
================================================== */

#avn-home .avn-why__pillar {
    position: relative;
}

#avn-home .avn-why__pillar:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;
    right: -18px;

    width: 1px;
    height: 100%;

    background: #eceef2;
}

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

#avn-home .avn-why__pillar-icon {
    width: 58px;
    height: 58px;

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

    border-radius: 50%;

    background: #f5f5f5;
}

#avn-home .avn-why__pillar-icon img {
    width: 30px;
    height: 30px;

    object-fit: contain;
}

/* ==================================================
   PILLAR TITLE
================================================== */

#avn-home .avn-why__pillar h3 {
    margin: 18px 0 12px;

    font-family: var(--avn-heading);
    font-size: var(--avn-type-h3);
    line-height: 1.3;
    font-weight: 600;

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

/* ==================================================
   PILLAR TEXT
================================================== */

#avn-home .avn-why__pillar p {
    margin: 0;

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

    color: #4b5565;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    #avn-home .avn-why__pillars {
        grid-template-columns: 1fr;
    }

    #avn-home .avn-why__pillar:not(:last-child)::after {
        display: none;
    }

}

@media (max-width: 767px) {

  #avn-home .avn-why {
    padding: 72px 0;
  }

}

/* ==================================================
   13. WHY ALTAVANT - GRID
================================================== */

#avn-home .avn-why__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

/* ==================================================
   13. WHY ALTAVANT - ORBIT FRAMEWORK
================================================== */

#avn-home .avn-why__orbit {
    position: relative;
}

#avn-home .avn-why__orbit-label {
    margin: 0 0 28px;

    text-align: center;

    font-size: var(--avn-type-label);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

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

#avn-home .avn-why__orbit-stage {
  position: relative;
  width: min(100%, 760px);
  height: 650px;
  margin-inline: auto;
  margin-bottom: 80px;
}

/* Main dotted/solid orbit */
#avn-home .avn-why__orbit-ring {
    position: absolute;
    inset: 90px 95px;

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

#avn-home .avn-why__orbit-ring::after {
    content: "";

    position: absolute;
    inset: 45px;

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

/* Center Altavant core */
#avn-home .avn-why__logo-core {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 170px;
  height: 170px;

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

  border-radius: 50%;
  background: var(--avn-white);
  border: 1px solid #e4e7ec;

  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 18px 50px rgba(7, 20, 45, 0.08);
}

#avn-home .avn-why__logo-core img {
  width: 118px;
  height: auto;
  display: block;
}

/* Orbit cards */
#avn-home .avn-why__approach-card {
    position: absolute;
    z-index: 4;

    width: 270px;

    padding: 24px;

    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 10px;

    box-shadow: 0 18px 50px rgba(7, 20, 45, 0.08);
	display: flex;
  	align-items: flex-start;
  	gap: 18px;
}

#avn-home .avn-why__approach-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;

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

  border-radius: 50%;
  background: #f5f5f5;
}

#avn-home .avn-why__approach-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

#avn-home .avn-why__approach-content {
  flex: 1;
}
#avn-home .avn-why__approach-card h3 {
    margin: 0 0 10px;

    font-family: var(--avn-heading);
    font-size: var(--avn-type-h3);
    line-height: 1.25;
    font-weight: 700;

    color: var(--avn-dark);
    text-transform: uppercase;
}

#avn-home .avn-why__approach-card p {
    margin: 0;

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

    color: #4b5565;
}

#avn-home .avn-why__approach-card--top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#avn-home .avn-why__approach-card--left {
    left: -40px;
    top: 48%;
    transform: translateY(-50%);
}

#avn-home .avn-why__approach-card--right {
    right: -40px;
    top: 48%;
    transform: translateY(-50%);
}

#avn-home .avn-why__approach-card--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ==================================================
   13. WHY ALTAVANT - RESPONSIVE ORBIT
================================================== */

@media (max-width: 1100px) {
    #avn-home .avn-why__grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
}

@media (max-width: 767px) {
    #avn-home .avn-why__orbit-stage {
        min-height: auto;

        display: grid;
        gap: 16px;
    }

    #avn-home .avn-why__orbit-ring,
    #avn-home .avn-why__logo-core {
        display: none;
    }

    #avn-home .avn-why__approach-card {
        position: static;
        width: 100%;
        transform: none;
    }
}
/* ==================================================
   13. WHY ALTAVANT - CONFIDENCE STRIP
================================================== */

#avn-home .avn-why__confidence {
  margin-top: 0;
  padding: 26px 32px;

  display: grid;
  grid-template-columns: 1.3fr 1px 1fr;
  gap: 32px;
  align-items: center;

  background: #fafafa;
  border: 1px solid #eceef2;
  border-radius: 10px;
}

#avn-home .avn-why__confidence-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

#avn-home .avn-why__confidence-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;

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

  border-radius: 50%;
  background: #f5f5f5;
}


#avn-home .avn-why__confidence-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

#avn-home .avn-why__confidence p {
  margin: 0;
  font-size: var(--avn-type-body);
  line-height: 1.45;
  color: var(--avn-dark);
}

#avn-home .avn-why__confidence strong {
  color: var(--avn-red);
  font-weight: 700;
}

#avn-home .avn-why__confidence-divider {
  width: 1px;
  height: 58px;
  background: #dfe3ea;
}

@media (max-width: 767px) {
  #avn-home .avn-why__confidence {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 22px;
  }

  #avn-home .avn-why__confidence-divider {
    display: none;
  }

  
}

/* ==================================================
   14. PROOF TRANSITION STRIP
   Purpose:
   Bridges the Why Altavant section into social proof
   and testimonials.
================================================== */

#avn-home .avn-proof-strip {
  padding: 42px 0;
  background: #fafafa;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}

#avn-home .avn-proof-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: 56px;
  align-items: center;
}

#avn-home .avn-proof-strip__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

#avn-home .avn-proof-strip__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;

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

  border-radius: 50%;
  background: rgba(192, 0, 11, 0.06);
  border: 1px solid rgba(192, 0, 11, 0.18);

  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
  color: var(--avn-red);
}

#avn-home .avn-proof-strip__left p {
  margin: 0;
  font-size: var(--avn-type-h3);
  line-height: 1.35;
  color: var(--avn-dark);
}

#avn-home .avn-proof-strip__right p {
  margin: 0;
  font-size: var(--avn-type-body);
  line-height: 1.35;
  color: var(--avn-dark);
}

#avn-home .avn-proof-strip__left strong {
  color: var(--avn-red);
  font-weight: 700;
}

#avn-home .avn-proof-strip__divider {
  width: 1px;
  height: 72px;
  background: #dfe3ea;
}

#avn-home .avn-proof-strip__eyebrow {
    margin: 12px 0 0;

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

    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

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

/* ==================================================
   14. PROOF TRANSITION STRIP - RESPONSIVE
================================================== */

@media (max-width: 767px) {
  #avn-home .avn-proof-strip__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  #avn-home .avn-proof-strip__divider {
    display: none;
  }

  #avn-home .avn-proof-strip__left {
    align-items: flex-start;
  }

#avn-home .avn-proof-strip__left p,
#avn-home .avn-proof-strip__right p {
  line-height: 1.4;
}
}

/* ==================================================
   15. TRUST & PROOF
   Purpose:
   Introduces measurable proof and business outcomes
   before showing case-study evidence.
================================================== */

#avn-home .avn-trust-proof__intro h2 span {
    color: var(--avn-red);
}

#avn-home .avn-trust-proof {
  padding: 110px 0;
  background: var(--avn-white);
}

#avn-home .avn-trust-proof__top {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 72px;
  align-items: start;
}

/* Left headline */
#avn-home .avn-trust-proof__intro h2 {
  margin: 0 0 28px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;

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

#avn-home .avn-trust-proof__intro h2::after {
  content: "";
  display: block;

  width: 64px;
  height: 2px;

  margin-top: 30px;

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

#avn-home .avn-trust-proof__intro p {
  max-width: 360px;
  margin: 0;

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

  color: #3f4857;
}

/* KPI grid */


#avn-home .avn-trust-proof__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#avn-home .avn-trust-proof__kpi {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

#avn-home .avn-trust-proof__kpi:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;

  width: 1px;
  height: 180px;

  background: #e4e7ec;
}

/* KPI icon */
#avn-home .avn-trust-proof__kpi-icon {
  width: 62px;
  height: 62px;

  margin: 0 auto 18px;

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

  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid #eceef2;
}

#avn-home .avn-trust-proof__kpi-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* KPI number */
#avn-home .avn-trust-proof__kpi strong {
  display: block;

  margin-bottom: 6px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-kpi);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;

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

/* KPI title */
#avn-home .avn-trust-proof__kpi span {
  display: block;

  margin-bottom: 10px;

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

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

/* KPI description */
#avn-home .avn-trust-proof__kpi p {
  margin: 0 auto;
  max-width: 170px;

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

  color: #4b5565;
}

/* ==================================================
   15. TRUST & PROOF - RESPONSIVE
================================================== */

@media (max-width: 1180px) {
  #avn-home .avn-trust-proof__top {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  #avn-home .avn-trust-proof__intro p {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  #avn-home .avn-trust-proof__kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  #avn-home .avn-trust-proof__kpi:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {

  #avn-home .avn-trust-proof {
    padding: 72px 0;
  }



  #avn-home .avn-trust-proof__kpis {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #avn-home .avn-trust-proof__kpi {
    padding: 30px 0;
    text-align: center;
  }

  #avn-home .avn-trust-proof__kpi:first-child {
    padding-top: 0;
  }

  #avn-home .avn-trust-proof__kpi:not(:last-child) {
    border-bottom: 1px solid #eceef2;
  }

  /* Disable desktop vertical dividers */
  #avn-home .avn-trust-proof__kpi::after {
    display: none;
  }

  #avn-home .avn-trust-proof__kpi-icon {
    margin-bottom: 14px;
  }

  #avn-home .avn-trust-proof__kpi p {
    max-width: 240px;
    margin: 0 auto;
  }

}

/* ==================================================
   15. REAL RESULTS
================================================== */

#avn-home .avn-results {
  margin-top: 78px;
}

#avn-home .avn-results__heading {
  margin-bottom: 32px;
  text-align: center;
}

#avn-home .avn-results__heading h3 {
  margin: 0;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.15;
  font-weight: 600;
  color: var(--avn-dark);
}

#avn-home .avn-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Result card */
#avn-home .avn-results__card {
  display: grid;
  grid-template-columns: 120px 1fr;

  overflow: hidden;

  background: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(7, 20, 45, 0.06);

  transition: transform .25s ease, box-shadow .25s ease;
}

#avn-home .avn-results__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(7, 20, 45, 0.09);
}

/* Image */
#avn-home .avn-results__image {
  min-height: 190px;
}

#avn-home .avn-results__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Content */
#avn-home .avn-results__content {
    padding: 18px;
}

#avn-home .avn-results__content h4 {
  position: relative;

  margin: 0 0 24px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h4);
  line-height: 1.25;
  font-weight: 600;

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

#avn-home .avn-results__content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 42px;
  height: 2px;

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

/* Metrics */
#avn-home .avn-results__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;

	align-items: start;
	
  padding-bottom: 16px;
  margin-bottom: 14px;

  border-bottom: 1px solid #eceef2;
}

#avn-home .avn-results__metrics small {
    display: block;

    min-height: 36px;

    margin-bottom: 6px;

    font-size: var(--avn-type-label);
    line-height: 1.2;
    font-weight: 600;

    color: #4b5565;
}

#avn-home .avn-results__metrics span {
  display: block;

  font-size: 12px;
  line-height: 1;
  font-weight: 700;

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

#avn-home .avn-results__content p {
  margin: 0;

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

  color: #6b7280;
}

#avn-home .avn-results__metrics > div {
    position: relative;
    padding-right: 12px;
}

#avn-home .avn-results__metrics > div:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 4px;
    right: 0;

    width: 1px;
    height: 42px;

    background: #eceef2;
}

#avn-home .avn-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    max-width: 1320px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1180px) {
  #avn-home .avn-results__grid {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-results__card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 767px) {

  #avn-home .avn-results__card {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-results__image {
    height: 220px;
  }

  #avn-home .avn-results__content {
    padding: 18px;
  }

  #avn-home .avn-results__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 0;

    padding-bottom: 16px;
    margin-bottom: 14px;
  }

  #avn-home .avn-results__metrics > div {
    padding: 0 10px;
  }

  #avn-home .avn-results__metrics > div:first-child {
    padding-left: 0;
  }

  #avn-home .avn-results__metrics > div:last-child {
    padding-right: 0;
  }

  #avn-home .avn-results__metrics small {
    min-height: 40px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
  }


#avn-home .avn-results__metrics span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
  }

  #avn-home .avn-results__metrics > div:not(:last-child)::after {
    top: 0;
    height: 100%;
  }

}

/* ==================================================
   15. TRUSTED CLIENTS BY CATEGORY
   Purpose:
   Displays client logos in horizontal rows grouped
   by industry/category.
================================================== */

#avn-home .avn-trusted-logos {
  margin-top: 60px;
  text-align: center;
}


/* ==================================================
   SECTION LABEL
================================================== */

#avn-home .avn-trusted-brands__label {
  margin: 0 0 42px;

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

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--avn-red);

  text-align: center;
}


/* ==================================================
   CATEGORY WRAPPER
================================================== */

#avn-home .avn-trusted-logos__categories {
  max-width: 1180px;
  margin: 0 auto;
}


/* ==================================================
   INDIVIDUAL CATEGORY ROW
================================================== */

#avn-home .avn-trusted-logos__category {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);

  gap: 32px;
  align-items: center;

  min-width: 0;

  padding: 30px 0;

  background: transparent;

  border: none;
  border-radius: 0;

  border-bottom: 1px solid #eceef2;
}

#avn-home .avn-trusted-logos__category:first-child {
  border-top: 1px solid #eceef2;
}


/* ==================================================
   CATEGORY TITLE
================================================== */

#avn-home .avn-trusted-logos__category h3 {
  position: relative;

  margin: 0;
  padding: 0;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-label);
  line-height: 1.35;
  font-weight: 700;

  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--avn-dark);

  text-align: left;
}


/* Remove old red underline */

#avn-home .avn-trusted-logos__category h3::after {
  display: none;
}


/* ==================================================
   LOGO GRID / ROW
================================================== */

#avn-home .avn-trusted-logos__grid {
  width: 100%;
  min-width: 0;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;

  margin: 0;
}


/* ==================================================
   INDIVIDUAL LOGO CELL
================================================== */

#avn-home .avn-trusted-logos__item {
  width: 150px;
  height: 110px;

  flex: 0 0 150px;

  padding: 10px 14px;

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

  background: #ffffff;

  border: 1px solid #eceef2;
  border-radius: 6px;
	
	overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}


/* ==================================================
   LOGO IMAGE
================================================== */

#avn-home .avn-trusted-logos__item img {
  width: 100%;
  height: 100%;

  max-width: 220px;
  max-height: 88px;

  display: block;

  object-fit: contain;
  object-position: center;

  filter: grayscale(100%) brightness(0);
	transition: transform 0.25s ease;
}

#avn-home .avn-trusted-logos__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 20, 45, 0.08);
}

#avn-home .avn-trusted-logos__item:hover img {
  transform: scale(1.08);
}

/* ==================================================
   SUPPORTING TEXT
================================================== */

#avn-home .avn-trusted-logos__text {
  margin: 34px 0 0;

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

  color: #5d6878;
}


/* ==================================================
   TRUSTED CLIENTS - TABLET
================================================== */

@media (max-width: 991px) {

  #avn-home .avn-trusted-logos__category {
    grid-template-columns: 150px minmax(0, 1fr);

    gap: 24px;

    padding: 26px 0;
  }

  #avn-home .avn-trusted-logos__item {
    width: 140px;
    height: 100px;

    flex-basis: 140px;
  }

}


/* ==================================================
   TRUSTED CLIENTS - MOBILE
================================================== */

@media (max-width: 767px) {

  #avn-home .avn-trusted-logos {
    margin-top: 48px;
  }

  #avn-home .avn-trusted-brands__label {
    margin-bottom: 32px;

   
    line-height: 1.5;
  }

  #avn-home .avn-trusted-logos__category {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 28px 0;
  }

  #avn-home .avn-trusted-logos__category h3 {
    
    text-align: center;
  }

  #avn-home .avn-trusted-logos__grid {
    justify-content: center;
  }

  #avn-home .avn-trusted-logos__item {
    width: calc(50% - 8px);
    height: 100px;

    flex: 0 0 calc(50% - 8px);

    padding: 10px 12px;
  }

  #avn-home .avn-trusted-logos__item img {
    max-width: 180px;
    max-height: 72px;
  }

}


/* ==================================================
   TRUSTED CLIENTS - SMALL MOBILE
================================================== */

@media (max-width: 480px) {

  #avn-home .avn-trusted-logos__grid {
    gap: 10px;
  }

  #avn-home .avn-trusted-logos__item {
    width: calc(50% - 5px);
    height: 90px;

    flex-basis: calc(50% - 5px);

    padding: 8px 10px;
  }

  #avn-home .avn-trusted-logos__item img {
    max-width: 150px;
    max-height: 64px;
  }

}
/* ==================================================
   15. TRUST PROOF CTA STRIP
   Purpose:
   Closes the trust/proof section and transitions
   toward the next conversion-focused section.
================================================== */

#avn-home .avn-proof-cta {
  margin-top: 52px;
  padding: 34px 42px;

  display: grid;
  grid-template-columns: 1.1fr 1px 1fr;
  gap: 44px;
  align-items: center;

  background: var(--avn-red);
  border-radius: 10px;
  color: var(--avn-white);
}

#avn-home .avn-proof-cta__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

#avn-home .avn-proof-cta__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;

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

  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);

  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;

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

#avn-home .avn-proof-cta__left p,
#avn-home .avn-proof-cta__right p {
  margin: 0;

  font-size: var(--avn-type-h3);
  line-height: 1.35;
  font-weight: 400;

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

#avn-home .avn-proof-cta__left strong,
#avn-home .avn-proof-cta__right span {
  color: var(--avn-white);
  font-weight: 800;
}

#avn-home .avn-proof-cta__divider {
  width: 1px;
  height: 76px;
  background: rgba(255,255,255,.35);
}

#avn-home .avn-proof-cta__right span {
  display: block;
  margin-top: 8px;

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

/* Responsive */
@media (max-width: 767px) {
  #avn-home .avn-proof-cta {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 24px;
  }

  #avn-home .avn-proof-cta__divider {
    display: none;
  }

  #avn-home .avn-proof-cta__left {
    align-items: flex-start;
  }
}

/* ==================================================
   16. SERVICES PATH
   Purpose:
   Introduces Altavant service paths using a left
   narrative block, middle guidance note, and right
   visual illustration.
================================================== */

#avn-home .avn-services-path {
  padding: 60px 0 0px;
  background: #ffffff;
  overflow: hidden;
}

#avn-home .avn-services-path__top {
  display: grid;
  grid-template-columns:
380px
180px
1fr;
  gap: 24px;
  align-items: center;
}

#avn-home .avn-services-path__intro h2 {
  margin: 0 0 28px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;

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

#avn-home .avn-services-path__intro h2 span {
  color: var(--avn-red);
}

#avn-home .avn-services-path__intro h2::after {
  content: "";
  display: block;

  width: 64px;
  height: 2px;

  margin-top: 30px;

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

#avn-home .avn-services-path__intro p {
  max-width: 390px;
  margin: 0;

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

  color: #3f4857;
}

#avn-home .avn-services-path__note {
  padding-left: 34px;
  border-left: 1px solid #dfe3ea;
}

#avn-home .avn-services-path__note strong {
  display: block;
  margin-bottom: 18px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.35;
  font-weight: 700;

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

#avn-home .avn-services-path__note strong span {
  color: var(--avn-red);
}

#avn-home .avn-services-path__note p {
  margin: 0;

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

  color: #4b5565;
}

#avn-home .avn-services-path__image img {
  width: 125%;
  height: auto;
  display: block;
	max-width: none;
}

#avn-home .avn-services-path__image {
    margin-right: -80px;
}



/* Responsive */

@media (max-width: 1100px) {
  #avn-home .avn-services-path__image {
    max-width: 760px;
    margin-right: 0;
  }

  #avn-home .avn-services-path__image img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  #avn-home .avn-services-path__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  #avn-home .avn-services-path__note {
    padding-left: 24px;
  }

}

@media (max-width: 767px) {
  #avn-home .avn-services-path__note {
    padding-left: 0;
    border-left: none;
  }

  #avn-home .avn-services-path__image {
    margin-top: 26px;
  }

  #avn-home .avn-services-path__image img {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  #avn-home .avn-services-path {
    padding: 72px 0 48px;
  }
}
/* ==================================================
   16. SERVICES PATH - SERVICE CARDS
================================================== */

#avn-home .avn-services-path__cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

#avn-home .avn-service-card {
  min-height: 360px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 10px;

  display: flex;
  flex-direction: column;

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

#avn-home .avn-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 0, 11, 0.22);
  box-shadow: 0 20px 50px rgba(7, 20, 45, 0.08);
}

#avn-home .avn-service-card__icon {
  position: relative;

  width: 56px;
  height: 56px;

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

  border-radius: 50%;

  background: #f5f5f5;
  border: 1px solid #eceef2;
}

#avn-home .avn-service-card__icon::before {
  content: "";

  position: absolute;

  inset: -1px;

  border-radius: 50%;

  border-top: 2px solid var(--avn-red);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;

  transform: rotate(25deg);
}

#avn-home .avn-service-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

#avn-home .avn-service-card h3 {
  margin: 0 0 22px;
  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.2;
  font-weight: 700;
  color: var(--avn-dark);
}

#avn-home .avn-service-card__block {
  margin-bottom: 18px;
}

#avn-home .avn-service-card__block span {
  display: block;
  margin-bottom: 7px;

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

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

#avn-home .avn-service-card__block p {
  margin: 0;
  font-size: var(--avn-type-body-small);
  line-height: 1.55;
  color: #3f4857;
}

#avn-home .avn-service-card__link {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 18px;

  font-size: var(--avn-type-button);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;

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

#avn-home .avn-service-card__link span {
  color: var(--avn-red);
  font-size: 18px;
}

#avn-home .avn-service-card__link:hover {
  color: var(--avn-red);
}

/* Responsive */
@media (max-width: 1100px) {
  #avn-home .avn-services-path__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #avn-home .avn-services-path__cards {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-service-card {
    min-height: auto;
  }
}

/* ==================================================
   16. SERVICES GUIDANCE CTA
================================================== */

#avn-home .avn-services-guidance {
  margin-top: 24px;
  padding: 26px 32px;

  display: grid;
  grid-template-columns: 1.2fr 1px 0.85fr 0.8fr;
  gap: 34px;
  align-items: center;

  background: #fafafa;
  border: 1px solid #eceef2;
  border-radius: 10px;
}

#avn-home .avn-services-guidance__main {
  display: flex;
  align-items: center;
  gap: 22px;
}

#avn-home .avn-services-guidance__icon {
  width: 68px;
  height: 68px;
  min-width: 68px;

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

  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #eceef2;

  box-shadow: 0 12px 30px rgba(7, 20, 45, 0.06);
}

#avn-home .avn-services-guidance__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

#avn-home .avn-services-guidance__headline h3 {
  margin: 0 0 6px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.2;
  font-weight: 600;

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

#avn-home .avn-services-guidance__headline p {
  margin: 0;

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

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

#avn-home .avn-services-guidance__divider {
  width: 1px;
  height: 72px;
  background: #dfe3ea;
}

#avn-home .avn-services-guidance__text p {
  margin: 0;

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

  color: #4b5565;
}

#avn-home .avn-services-guidance__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#avn-home .avn-services-guidance__btn {
  width: 100%;
  min-width: 250px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 16px 24px;

  background: var(--avn-dark);
  color: #ffffff;

  border-radius: 4px;

  text-decoration: none;
  text-transform: uppercase;

  font-size: var(--avn-type-button);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;

  transition: background .25s ease, transform .25s ease;
}

#avn-home .avn-services-guidance__btn:hover {
  background: var(--avn-red);
  color: #ffffff;
  transform: translateY(-2px);
}

#avn-home .avn-services-guidance__btn span {
  font-size: 20px;
  line-height: 1;
}

#avn-home .avn-services-guidance__action small {
  font-size: var(--avn-type-small);
  line-height: 1.3;
  color: #5d6878;
}

/* Responsive */
@media (max-width: 1100px) {
  #avn-home .avn-services-guidance {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #avn-home .avn-services-guidance__divider {
    display: none;
  }

  #avn-home .avn-services-guidance__action {
    align-items: flex-start;
  }

  #avn-home .avn-services-guidance__btn {
    width: auto;
  }
}

@media (max-width: 767px) {
  #avn-home .avn-services-guidance {
    padding: 26px 22px;
  }

  #avn-home .avn-services-guidance__main {
    align-items: flex-start;
  }

  



  #avn-home .avn-services-guidance__btn {
    width: 100%;
    min-width: 0;
  }
}

/* ==================================================
   16. SERVICES TRANSITION STRIP
================================================== */

#avn-home .avn-services-transition {
  margin-top: 20px;
  padding: 34px 42px;

  display: grid;
  grid-template-columns: 1.15fr 1px 1fr;
  gap: 44px;
  align-items: center;

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

#avn-home .avn-services-transition__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

#avn-home .avn-services-transition__icon {
    width: 68px;
    height: 68px;
    min-width: 68px;

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

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(7,20,45,.12);
}

#avn-home .avn-services-transition__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

#avn-home .avn-services-transition p {
  margin: 0;

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

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

#avn-home .avn-services-transition strong {
  font-weight: 800;
  color: var(--avn-white);
}

#avn-home .avn-services-transition__divider {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,.35);
}

/* Responsive */
@media (max-width: 767px) {
  #avn-home .avn-services-transition {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 24px;
  }

  #avn-home .avn-services-transition__divider {
    display: none;
  }

  #avn-home .avn-services-transition__left {
    align-items: flex-start;
  }

  
}

/* ==================================================
   17. PROCESS
   Purpose:
   Shows how Altavant moves from first conversation
   to measurable inventory improvement.
================================================== */

#avn-home .avn-process {
  padding: 10px;
  background: var(--avn-white);
}

#avn-home .avn-process__header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

#avn-home .avn-process__header h2 {
  margin: 0 0 26px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;

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

#avn-home .avn-process__header h2 span {
  color: var(--avn-red);
}

#avn-home .avn-process__header h2::after {
  content: "";
  display: block;

  width: 64px;
  height: 2px;

  margin: 30px auto 0;

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

#avn-home .avn-process__header p {
  margin: 0;

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

  color: #3f4857;
}

/* Responsive */
@media (max-width: 767px) {

  #avn-home .avn-process__header {
    text-align: left;
    margin: 0;
  }

  #avn-home .avn-process__header h2 {
    line-height: 1.02;
  }

  /* Disable heading line break on mobile only */
  #avn-home .avn-process__header h2 br {
    display: none;
  }

  #avn-home .avn-process__header h2::after {
    margin: 24px 0 0;
  }

  #avn-home .avn-process__header p {
    line-height: 1.55;
  }



}

/* ==================================================
   17. PROCESS TIMELINE
================================================== */

#avn-home .avn-process__timeline {
  position: relative;

  margin-top: 78px;

  display: grid;
  grid-template-columns: 80px 1fr 46px 1fr 46px 1fr 46px 1fr 92px;
  gap: 18px;
  align-items: start;
}

#avn-home .avn-process__badge {
  align-self: start;
  margin-top: 56px;

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

  min-width: 78px;
  height: 34px;

  border-radius: 999px;
  background: var(--avn-red);
  color: #ffffff;

  font-size: var(--avn-type-label);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#avn-home .avn-process__step {
  text-align: center;
}

#avn-home .avn-process__circle {
  position: relative;

  width: 145px;
  height: 145px;

  margin: 0 auto 24px;

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

  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #eceef2;

  box-shadow: 0 18px 45px rgba(7, 20, 45, 0.08);
}

#avn-home .avn-process__circle::before {
  content: "";

  position: absolute;
  inset: -12px;

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

#avn-home .avn-process__circle > span {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);

  width: 48px;
  height: 48px;

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

  border-radius: 50%;
  background: var(--avn-dark);
  color: #ffffff;

  font-size: 16px;
  font-weight: 800;
}

#avn-home .avn-process__icon {
  width: 62px;
  height: 62px;

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

#avn-home .avn-process__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

#avn-home .avn-process__arrow {
  margin-top: 54px;

  width: 46px;
  height: 46px;

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

  border-radius: 50%;
  background: var(--avn-dark);
  color: #ffffff;

  font-size: 24px;
  line-height: 1;
}

#avn-home .avn-process__step h3 {
  margin: 0 0 16px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.2;
  font-weight: 700;

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

#avn-home .avn-process__step p {
  max-width: 230px;
  margin: 0 auto;
  margin-top: 16px;
  font-size: var(--avn-type-body-small);
  line-height: 1.6;

  color: #4b5565;
}

#avn-home .avn-process__timeline::before {
    content: "";

    position: absolute;

    top: 72px;
    left: 90px;
    right: 100px;

    height: 2px;

    background: #e4e7ec;

    z-index: 0;
}
#avn-home .avn-process__step h3::after {
    content: "";

    display: block;

    width: 42px;
    height: 2px;

    margin: 16px auto 0;

    background: var(--avn-red);
}
#avn-home .avn-process__step,
#avn-home .avn-process__badge,
#avn-home .avn-process__arrow {
    position: relative;
    z-index: 2;
}
/* Responsive */
@media (max-width: 1200px) {
  #avn-home .avn-process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 32px;
  }

  #avn-home .avn-process__badge,
  #avn-home .avn-process__arrow {
    display: none;
  }
}

@media (max-width: 767px) {

  #avn-home .avn-process__timeline {
    grid-template-columns: 1fr;
    margin-top: 56px;
    gap: 48px;
  }

  /* Hide desktop connecting line */
  #avn-home .avn-process__timeline::before {
    display: none;
  }

  /* Keep process circle centered */
  #avn-home .avn-process__circle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Left-align step content */
  #avn-home .avn-process__step {
    text-align: left;
  }

  #avn-home .avn-process__step h3 {
    text-align: left;
  }

  /* Ignore desktop forced heading breaks */
  #avn-home .avn-process__step h3 br {
    display: none;
  }

  /* Move red underline to left */
  #avn-home .avn-process__step h3::after {
    margin: 16px 0 0;
  }

  #avn-home .avn-process__step p {
    max-width: 100%;
    margin: 16px 0 0;

    text-align: left;
  }

}

/* ==================================================
   17. PROCESS CONFIDENCE STRIP
================================================== */

#avn-home .avn-process__confidence {
  margin-top: 70px;
  padding: 34px 42px;

  display: grid;
  grid-template-columns: 1fr 1px 1.3fr;
  gap: 40px;
  align-items: center;

  background: var(--avn-red);
  border-radius: 10px;
}

#avn-home .avn-process__confidence-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

#avn-home .avn-process__confidence-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;

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

  border-radius: 50%;

    background: #ffffff;
    border: none;
}

#avn-home .avn-process__confidence-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

#avn-home .avn-process__confidence-copy h3 {
  margin: 0;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.25;
  font-weight: 500;

  color: #ffffff;
}

#avn-home .avn-process__confidence-copy span {
  color: rgba(255,255,255,.9);
}

#avn-home .avn-process__confidence-divider {
  width: 1px;
  height: 72px;

  background: rgba(255,255,255,.15);
}

#avn-home .avn-process__confidence-right p {
  margin: 0;

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

  color: rgba(255,255,255,.82);
}

/* ==================================================
   17. PROCESS PROOF ROW
================================================== */

#avn-home .avn-process__proof {
  margin-top: 24px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: #fafafa;
  border: 1px solid #eceef2;
  border-radius: 10px;
}

#avn-home .avn-process__proof-item {
  position: relative;

  padding: 22px 28px;

  display: flex;
  align-items: center;
  gap: 16px;
}

#avn-home .avn-process__proof-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 22px;
  right: 0;

  width: 1px;
  height: calc(100% - 44px);

  background: #dfe3ea;
}

#avn-home .avn-process__proof-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;

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

  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #eceef2;
}

#avn-home .avn-process__proof-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

#avn-home .avn-process__proof-item p {
  margin: 0;

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

  color: #3f4857;
}

#avn-home .avn-process__proof-item strong {
  font-weight: 800;
  color: var(--avn-dark);
}

/* Responsive */
@media (max-width: 991px) {
  #avn-home .avn-process__proof {
    grid-template-columns: repeat(2, 1fr);
  }

  #avn-home .avn-process__proof-item:nth-child(2)::after {
    display: none;
  }

  #avn-home .avn-process__proof-item:nth-child(n+3) {
    border-top: 1px solid #eceef2;
  }
}

@media (max-width: 767px) {
  #avn-home .avn-process__proof {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-process__proof-item::after {
    display: none;
  }

  #avn-home .avn-process__proof-item:not(:last-child) {
    border-bottom: 1px solid #eceef2;
  }
}
/* ==================================================
   17. PROCESS CONFIDENCE STRIP - RESPONSIVE
================================================== */


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

@media (max-width: 1100px) {

  #avn-home .avn-process__confidence {
    margin-top: 56px;
    padding: 30px 32px;

    grid-template-columns: 1fr 1px 1.15fr;
    gap: 28px;
  }

  #avn-home .avn-process__confidence-left {
    gap: 18px;
  }

  #avn-home .avn-process__confidence-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  #avn-home .avn-process__confidence-icon img {
    width: 32px;
    height: 32px;
  }

  



}


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

@media (max-width: 767px) {

  #avn-home .avn-process__confidence {
    margin-top: 48px;
    padding: 28px 24px;

    grid-template-columns: 1fr;
    gap: 24px;

    border-radius: 8px;
  }

  #avn-home .avn-process__confidence-left {
    gap: 18px;
  }

  #avn-home .avn-process__confidence-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  #avn-home .avn-process__confidence-icon img {
    width: 30px;
    height: 30px;
  }

  #avn-home .avn-process__confidence-copy h3 {
  
    line-height: 1.25;
  }

  /* Convert vertical divider into horizontal divider */

  #avn-home .avn-process__confidence-divider {
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,.18);
  }

  #avn-home .avn-process__confidence-right p {
    
    line-height: 1.65;
  }

}


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

@media (max-width: 480px) {

  #avn-home .avn-process__confidence {
    margin-top: 42px;
    padding: 24px 20px;

    gap: 20px;
  }

  #avn-home .avn-process__confidence-left {
    align-items: flex-start;
    gap: 14px;
  }

  #avn-home .avn-process__confidence-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  #avn-home .avn-process__confidence-icon img {
    width: 28px;
    height: 28px;
  }

  #avn-home .avn-process__confidence-copy h3 {
    line-height: 1.3;
  }

  #avn-home .avn-process__confidence-right p {
    
    line-height: 1.65;
  }

}

/* ==================================================
   18. FINAL CONVERSATION
   Purpose:
   Creates the final conversion moment before contact,
   framing the next step as a low-pressure conversation.
================================================== */

#avn-home .avn-conversation {
  position: relative;

  min-height: 560px;
  padding: 72px 0 42px;

  overflow: hidden;

  background: #ffffff;
}


/* ==================================================
   18.1 CONVERSATION BACKGROUND
================================================== */

#avn-home .avn-conversation__bg {
  position: absolute;
  inset: 0;

  z-index: 0;

  background-image:
    url("/wp-content/themes/altavant/images/icons/home-page-images/Executive-inventory-consultation-conversation.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}


/* ==================================================
   18.2 CONVERSATION LAYOUT
================================================== */

#avn-home .avn-conversation__inner {
  position: relative;

  z-index: 1;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 64px;

  align-items: start;
}


/* ==================================================
   18.3 CONVERSATION CONTENT
================================================== */

#avn-home .avn-conversation__content {
  min-width: 0;
}

#avn-home .avn-conversation__content h2 {
  margin: 0 0 28px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h2);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;

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

#avn-home .avn-conversation__content h2 span {
  color: var(--avn-red);
}

#avn-home .avn-conversation__content h2::after {
  content: "";

  display: block;

  width: 64px;
  height: 2px;

  margin-top: 30px;

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

#avn-home .avn-conversation__content > p {
  max-width: 430px;

  margin: 0;

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

  color: #3f4857;
}


/* ==================================================
   18.4 CONVERSATION CTA CARDS
================================================== */

#avn-home .avn-conversation__cards {
  max-width: 520px;

  margin-top: 26px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}


/* ==================================================
   18.5 CONVERSATION CARD
================================================== */

#avn-home .avn-conversation-card {
  min-width: 0;

  padding: 18px;

  display: flex;
  flex-direction: column;

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

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;

  box-shadow: 0 18px 45px rgba(7, 20, 45, 0.08);
}


/* ==================================================
   18.6 CONVERSATION CARD ICON
================================================== */

#avn-home .avn-conversation-card__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  margin-bottom: 14px;

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

  border-radius: 50%;

  background: #f3f4f6;
  border: 1px solid #e4e7ec;

  overflow: hidden;
}

#avn-home .avn-conversation-card__icon img {
  width: 44px;
  height: 44px;

  display: block;

  object-fit: contain;
}


/* ==================================================
   18.7 CONVERSATION CARD CONTENT
================================================== */

#avn-home .avn-conversation-card h3 {
  margin: 0 0 8px;

  font-family: var(--avn-heading);
  font-size: var(--avn-type-h3);
  line-height: 1.25;
  font-weight: 700;

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

#avn-home .avn-conversation-card p {
  margin: 0 0 14px;

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

  color: #4b5565;
}


/* ==================================================
   18.8 CONVERSATION CARD BUTTON
================================================== */

#avn-home .avn-conversation-card__btn {
  width: 100%;

  margin-top: auto;
  padding: 12px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  background: var(--avn-dark);
  color: #ffffff;

  border-radius: 4px;

  text-decoration: none;
  text-transform: uppercase;

  font-size: var(--avn-type-button);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;

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

#avn-home .avn-conversation-card__btn:hover {
  background: var(--avn-red);
  color: #ffffff;

  transform: translateY(-1px);
}

#avn-home .avn-conversation-card__btn--secondary {
  background: #ffffff;
  color: var(--avn-red);

  border: 1px solid rgba(192, 0, 11, 0.28);
}

#avn-home .avn-conversation-card__btn--secondary:hover {
  background: var(--avn-red);
  color: #ffffff;
}


/* ==================================================
   19. CONVERSATION TRUST BAR
================================================== */

#avn-home .avn-conversation-trust {
  padding: 0;

  background: #fafafa;

  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}


/* ==================================================
   19.1 TRUST BAR GRID
================================================== */

#avn-home .avn-conversation__trust {
  width: 100%;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 0;
}


/* ==================================================
   19.2 TRUST BAR ITEM
================================================== */

#avn-home .avn-conversation__trust-item {
  position: relative;

  min-width: 0;
  min-height: 92px;

  padding: 22px 26px;

  display: flex;
  align-items: center;

  gap: 16px;
}


/* ==================================================
   19.3 TRUST BAR DIVIDER
================================================== */

#avn-home
.avn-conversation__trust-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 0;

  width: 1px;
  height: 36px;

  transform: translateY(-50%);

  background: #d9dde3;
}


/* ==================================================
   19.4 TRUST BAR ICON
================================================== */

#avn-home .avn-conversation__trust-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

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

  border-radius: 50%;

  background: #ffffff;

  border: 1px solid rgba(7, 20, 45, 0.08);
}

#avn-home .avn-conversation__trust-icon img {
  width: 26px;
  height: 26px;

  display: block;

  object-fit: contain;
}


/* ==================================================
   19.5 TRUST BAR TEXT
================================================== */

#avn-home .avn-conversation__trust-item p {
  min-width: 0;

  margin: 0;

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

  color: #4b5565;
}

#avn-home .avn-conversation__trust-item strong {
  
  font-weight: 800;
  color: var(--avn-dark);
}


/* ==================================================
   18 + 19 RESPONSIVE — LARGE TABLET
================================================== */

@media (max-width: 1180px) {

  /* Final Conversation */

  #avn-home .avn-conversation {
    min-height: 540px;

    padding: 64px 0 40px;
  }

  #avn-home .avn-conversation__inner {
    grid-template-columns: 1fr 0.8fr;

    gap: 40px;
  }



  #avn-home .avn-conversation__cards {
    max-width: 500px;
  }


  /* Trust Bar */

  #avn-home .avn-conversation__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #avn-home
  .avn-conversation__trust-item:nth-child(2)::after {
    display: none;
  }

  #avn-home
  .avn-conversation__trust-item:nth-child(n + 3) {
    border-top: 1px solid #eceef2;
  }

}


/* ==================================================
   18 + 19 RESPONSIVE — TABLET
================================================== */

@media (max-width: 900px) {

  /* Final Conversation */

  #avn-home .avn-conversation {
    min-height: auto;

    padding: 64px 0 48px;
  }

  #avn-home .avn-conversation__inner {
    display: block;
  }

  #avn-home .avn-conversation__content {
    max-width: 560px;
  }

  #avn-home .avn-conversation__content > p {
    max-width: 500px;
  }

  #avn-home .avn-conversation__cards {
    max-width: 520px;
  }

}


/* ==================================================
   18 + 19 RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767px) {

  #avn-home .avn-conversation {
    padding: 56px 0 42px;
  }

  #avn-home .avn-conversation__bg {
    background-position: 62% center;
  }

  #avn-home .avn-conversation-card__btn {
    width: fit-content;
    justify-content: center;
    gap: 28px;
    padding: 12px 16px;
  }

  #avn-home .avn-conversation__content {
    max-width: 100%;
  }

  #avn-home .avn-conversation__content h2 {
    line-height: 1.02;
  }

  #avn-home .avn-conversation__content h2::after {
    margin-top: 24px;
  }

  #avn-home .avn-conversation__content > p {
    max-width: 100%;

  }

  #avn-home .avn-conversation__cards {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #avn-home .avn-conversation-card {
    padding: 16px;

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

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #avn-home .avn-conversation-card__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    margin-bottom: 12px;
  }

  #avn-home .avn-conversation-card__icon img {
    width: 42px;
    height: 42px;
  }



  #avn-home .avn-conversation-card p {
    
    line-height: 1.5;
  }

  #avn-home .avn-conversation__trust {
    grid-template-columns: 1fr;
  }

  #avn-home .avn-conversation__trust-item {
    min-height: 86px;
    padding: 18px 20px;
  }

  #avn-home .avn-conversation__trust-item::after {
    display: none;
  }

  #avn-home .avn-conversation__trust-item:nth-child(n + 3) {
    border-top: none;
  }

  #avn-home .avn-conversation__trust-item:not(:last-child) {
    border-bottom: 1px solid #eceef2;
  }

}


/* ==================================================
   18 + 19 RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

  /* =========================
     Final Conversation
  ========================= */

  #avn-home .avn-conversation {
    padding: 48px 0 36px;
  }

  #avn-home .avn-conversation__bg {
    background-position: 60% center;
  }


  /* =========================
     Trust Bar
  ========================= */

  #avn-home .avn-conversation__trust-item {
    min-height: 82px;

    padding: 16px 18px;

    gap: 14px;
  }

  #avn-home .avn-conversation__trust-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;
  }

  #avn-home .avn-conversation__trust-icon img {
    width: 24px;
    height: 24px;
  }

}

/* ==================================================
   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;

  }

}