/* ============================================================
   SCOPED RESET — .home
============================================================ */
body.home {
  margin: auto;
}
.home *, .home *::before, .home *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  font-weight: lighter !important;
}
.home {
  overflow-x: hidden;
  font-family: var(--urbanist);
  color: var(--onyx-depth);
  background: var(--pure);
  margin: 0 15px;
}
.home a.home__partner-card-link    {
  margin-top: 10px;
  color: var(--crimson);
}
.home__partner .home__partner-card > div {
  text-align: center;
}
.home ul   { list-style: none; }
.home img  { display: block; max-width: 100%; }

/* ── Shared helpers ── */
.home__section          { padding: var(--section-gap) var(--container-margin); }
.home__section--dark    { background: var(--onyx-depth); }
.home__section--white   { background: var(--pure); }
.home__section--light   { background: #f5f5f5; }

.home__overline {
  font-family: var(--outfit);
  font-size: var(--font-badge);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.home__overline--dark  {
  color: var(--onyx-50);
  border: 1px solid var(--onyx-25);
  width: fit-content;
  padding: 12px 20px;
  border-radius: 50px;
}
.home__overline--light { color: var(--pure-60); }
.home__overline--red   { 
  color: var(--pure);
  border: 1px solid var(--pure-40);
  width: fit-content;
  padding: 12px 20px;
  border-radius: 50px;
 }

/* ── Buttons ── */
.home__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: var(--radius-pill);
  font-family: var(--outfit);
  font-size: var(--font-badge);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.home__btn--crimson      { background: var(--crimson); color: var(--pure); }
.home__btn--outline-lite { background: transparent; border: 1.5px solid var(--pure-40); color: var(--pure); }
.home__btn--outline-dark { background: transparent; border: 1.5px solid var(--onyx-25); color: var(--onyx-depth); }
.home__btn--dark         { float: right; }

/* ── Divider ── */
.home__hr      { border: none; border-top: 1px solid var(--onyx-25); }
.home__hr--lit { border-top-color: var(--pure-40); }



/* ============================================================
   2. HERO
============================================================ */
.home__hero {
  background: var(--onyx-depth);
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  padding: var(--padding-lg);
  min-height: 952px;
  padding-top: 250px;
  text-align: left;
}
.home__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(253, 57, 8, 0.92) 50%, transparent 65%);
  pointer-events: none;
  opacity: 0.5;
}
.home__hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1512px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.home__hero-title {
  font-family: var(--urbanist);
  font-size: var(--font-caption);
  font-weight: 900;
  color: var(--pure);
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.home__hero-title .crimson { color: var(--pure); }
/* Breadcrumb below hero heading */
.home__hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--outfit);
  font-size: 15px; font-weight: 400;
  color: var(--pure-40);
  margin-top: 20px;
}
.home__hero-breadcrumb span { color: rgba(255,255,255,.2); }

.home__hero-sub-title {
  font-family: var(--urbanist);
  font-size: var(--font-card-md);
  font-weight: 300 !important;
  color: var(--pure);
  line-height: 1.2;
  padding: var(--padding-sm) 0;
  letter-spacing: -0.3px;
}
.home__hero-body {
  font-family: var(--outfit);
  font-size: var(--font-body);
  font-weight: 400;
  color: var(--pure-60);
  line-height: 1.7;
  margin-bottom: 32px;
}
.home__hero-buttons {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}

/* ── Platform progress strip ── */
.home__platform-strip {
  position: relative;
  z-index: 2;
  max-width: 1512px;
  width: 100%;
  margin: auto;
  margin-top: var(--padding-lg);

}
.home__platform-steps {
  width:100%;
  background:linear-gradient(180deg,#1a1a1a 0%,#0f0f0f 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:48px 56px;
  position:relative;
  overflow:hidden;
  margin: auto;
}
/* progress line */
.home__platform-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 15%; right: 15%;
  height: 1px;
  background: var(--pure-40);
}
/* active progress fill */
/* .home__platform-steps::after {
  content: '';
  position: absolute;
  top: 44px; left: 15%; width: 15%;
  height: 1px;
  background: var(--crimson);
} */
.home__platform-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative; z-index: 1;
}
.home__platform-step.step-one {
    margin-top: 35px;
}
.home__platform-step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--pure-40);
  background: var(--onyx-depth);
  display: flex; align-items: center; justify-content: center;
}
.home__platform-step-dot--active {
  background: #1d1d1d;
}
.home__platform-step-dot--active-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pure);
  opacity: 0.5
}
.home__platform-step-dot--crimson {
  background: radial-gradient(  circle at 85% 50%,  rgba(253, 57, 8, 0.9) 0%,  rgba(253, 57, 8, 0.7) 30%,  rgba(253, 57, 8, 0.4) 55%,  rgba(253, 57, 8, 0.15) 70%,  transparent 80%);
}
.home__platform-step.step-four .home__platform-step-dot {
  border: none;
}
.home__platform-step-label {
  font-family: var(--outfit);
  font-size: 13px; font-weight: 500;
  color: var(--pure-60);
  text-align: center;
  white-space: nowrap;
}
.home__platform-step-label--active { color: var(--pure); font-weight: 600; }

.home__platform-breadcrumb {
  padding-bottom: 20px;
  font-family: var(--outfit);
  font-size: 14px; font-weight: 400;
  color: var(--pure-40);
  display: flex; gap: 8px;
}
.home__platform-breadcrumb a:hover { color: var(--pure); }


.home__hero .hero__image img {
  display: block;
  max-width: 100%;
  position: absolute;
  top: -60%;
  right: -10%;
  width: 1000px;
  opacity: 0.5;
}

/* ============================================================
   3. STATS ROW
============================================================ */
.home__stats {
  background: var(--pure);
  padding: var(--font-card-sm) var(--container-margin);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1512px;
  width: 100%;
  margin:auto;
}
.home__stat {
  padding: 0 40px;
}
.home__stat:first-child { padding-left: 0; }
.home__stat:last-child  { border-right: none; }

.home__stat-value {
  font-family: var(--urbanist);
  font-size: var(--font-card-lg);
  font-weight: 800;
  color: var(--onyx-depth);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.home__stat-label {
  font-family: var(--outfit);
  font-size: 13px; font-weight: 500;
  color: var(--onyx-50);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ============================================================
   4. PARTNER ECOSYSTEM
============================================================ */
.home__partner {
  background: var(--pure);
}
.home__partner-card {
  padding: var(--padding-sm);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  margin: auto;
}
.home__partner-card-title {
  font-family: var(--urbanist);
  font-size: var(--font-card-sm);
  font-weight: 800;
  color: var(--pure);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.home__partner-card-body {
  font-family: var(--outfit);
  font-size: var(--font-body);
  color: var(--onyx-50);
  line-height: 1.4;
  text-align: center;
  /* border: 1px solid var(--crimson);
  padding: var(--padding-sm);
  background: rgba(254, 54, 25, 7%);
  border-radius: var(--radius); */
}
.home__partner-card-body a,
.home__partner-card-body a span {
  color: red;
  font-weight: 400 !important;
  text-decoration: underline;
}
.home__partner-card-link {
  font-family: var(--outfit);
  font-size: var(--font-badge);
  font-weight: 600;
  color: var(--crimson);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.home__partner-card-link:hover { gap: 10px; }


/* ============================================================
   5. ONYXOS SECTION
============================================================ */
.home__onyxos {
  background: var(--pure);
  padding: var(--padding-sm) var(--container-margin);
  max-width: 1512px;
  width: 100%;
  margin: auto;
}
.home__onyxos-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  align-items: start;
  margin-bottom: 60px;
}
.home__onyxos-heading {
  font-family: var(--urbanist);
  font-size: var(--font-card-sm);
  font-weight: 800;
  color: var(--onyx-depth);
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.home__onyxos-heading .crimson { color: var(--crimson); }
.home__onyxos-body {
  display: none;
}
.home__onyxos-body.onyxos-desc {
  display: block;
  font-family: var(--outfit);
  font-size: var(--font-body);
  font-weight: 400;
  color: var(--onyx-50);
  line-height: 1.7;
  margin-left: auto;
  width: 100%;
  text-align: center;
  margin-top: var(--padding-sm);
}

/* Platform steps list */
.home__onyxos-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.home__onyxos-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px var(--padding-sm);
}
.home__onyxos-step:last-child { border-bottom: none; }
.home__onyxos-step--active {
  background: var(--pure);
}

.home__onyxos-step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--onyx-25);
  flex-shrink: 0;
  margin-top: 6px;
}
.home__onyxos-step-dot--crimson {
  background: var(--crimson);
  border-color: var(--crimson);
}
.home__onyxos-step-content { flex: 1; }
.home__onyxos-step-label {
  font-family: var(--outfit);
  font-size: 13px; font-weight: 600;
  color: var(--onyx-50);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.home__onyxos-step-label--red { color: var(--crimson); }
.home__onyxos-step-name {
  font-family: var(--urbanist);
  font-size: var(--font-caption);
  font-weight: 700;
  color: var(--onyx-depth);
  margin-bottom: 12px;
}

/* Inner platform card */
.home__platform-card {
  background: var(--pure);
  padding: var(--padding-sm);
  margin-top: 8px;
}
.home__platform-card-title {
  font-family: var(--urbanist);
  font-size: 16px; font-weight: 700;
  color: var(--onyx-depth);
  margin-bottom: 12px;
}
.home__platform-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.home__platform-tag {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--onyx-25);
  font-family: var(--outfit);
  font-size: 13px; font-weight: 500;
  color: var(--onyx-depth);
}
.home__platform-tag--dark {
  background: var(--onyx-depth);
  color: var(--pure);
  border-color: var(--onyx-depth);
}

.home__onyxos-explore {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--outfit);
  font-size: var(--font-badge); font-weight: 600;
  color: var(--onyx-depth);
  margin-top: 32px;
}
.home__onyxos-explore-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--onyx-depth);
}




    /* ============================================================
       STEPPER WRAPPER
    ============================================================ */
    .stepper {
      position: relative;
      width: 100%;
      max-width: 700px;
    }

    /* ── Vertical line running through all dots ── */
    .stepper::before {
      content: '';
      position: absolute;
      left: 5px;                  /* centre of the 12px dot */
      top: 6px;                   /* starts at centre of first dot */
      bottom: 6px;                /* ends at centre of last dot */
      width: 1px;
      background: rgba(17,17,17,0.18);
      z-index: 0;
    }

    /* ============================================================
       EACH STEP ITEM
    ============================================================ */
    .stepper__item {
      position: relative;
      padding-left: 36px;         /* space for dot + gap */
      padding-bottom: 0;
      cursor: pointer;
    }

    /* Gap between items — zero when active item is above */
    .stepper__item + .stepper__item {
      margin-top: 32px;
      transition: margin-top 0.35s ease;
    }

    /* When previous sibling is active (has expanded card), reduce gap */
    .stepper__item.is-active + .stepper__item {
      margin-top: 28px;
    }

    /* ── Dot ── */
    .stepper__dot {
      position: absolute;
      left: 0;
      top: 5px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1.5px solid rgba(17,17,17,0.25);
      background: #ffffff;
      z-index: 1;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    }

    /* Active dot → filled crimson */
    .stepper__item.is-active .stepper__dot {
      background: #fe3619;
      border-color: #fe3619;
      transform: scale(1.1);
    }

    /* Hover on inactive → show dark dot */
    .stepper__item:not(.is-active):hover .stepper__dot {
      border-color: #111111;
      background: rgba(17,17,17,0.12);
    }

    /* ============================================================
       OVERLINE (crimson label — only visible when active)
    ============================================================ */
    .stepper__overline {
      font-family: 'Outfit', sans-serif;
      font-size: var(--font-badge);
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--onyx-50);
    }

    .stepper__item.is-active .stepper__overline {
      max-height: 30px;
      opacity: 1;
      margin-bottom: 6px;
      color: var(--crimson);
    }

    /* ============================================================
       TITLE
    ============================================================ */
    .stepper__title {
      font-family: 'Urbanist', sans-serif;
      line-height: 1.25;
      transition: font-size 0.3s ease, color 0.25s ease;

      /* Hidden when inactive */
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition:
        max-height 0.35s ease,
        opacity    0.25s ease,
        margin     0.35s ease;
      margin-bottom: 0;
    }

    /* Active → large dark title */
    .stepper__item.is-active .stepper__title {
      max-height: 30px;
      opacity: 1;
      margin-bottom: 6px;
      font-size: var(--font-caption);
      color: #111111;
      margin-bottom: 20px;
    }

    /* Inactive → small muted uppercase label */
    .stepper__item:not(.is-active) .stepper__title {
      font-size: var(--font-badge);
      color: rgba(17,17,17,0.4);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    /* Hover on inactive → slightly darker */
    .stepper__item:not(.is-active):hover .stepper__title {
      color: rgba(17,17,17,0.65);
    }

    /* ============================================================
       EXPANDABLE CARD CONTENT
    ============================================================ */
    .stepper__body {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity    0.3s ease;
    }

    .stepper__item.is-active .stepper__body {
      max-height: max-content;
      opacity: 1;
    }

    /* Inner card */
    .stepper__card {
      border: 1.5px solid rgba(17,17,17,0.15);
      border-radius: 12px;
      padding: 20px 22px 22px;
      background: rgba(17,17,17, 0.1);
    }

    .stepper__card-title {
      font-family: 'Urbanist', sans-serif;
      font-size: 32px;
      color: #111111;
      margin-bottom: 16px;
    }

    /* Tags row */
    .stepper__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 8px;
    }

    .stepper__tag {
      /* display: inline-flex; */
      align-items: center;
      gap: 5px;
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 500;
      color: rgba(17,17,17,0.6);
    }

    /* Bullet dot before each tag */
    .stepper__tag::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(17,17,17,0.35);
      flex-shrink: 0;
    }

    /* ── Extra slot for custom body content ── */
    .stepper__extra {
      margin-top: 16px;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: rgba(17,17,17,0.55);
      line-height: 1.65;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 600px) {
      /* body { padding: 40px 24px; } */

      .stepper__item.is-active .stepper__title {
        font-size: 22px;
      }
    }

    @media (max-width: 400px) {
      .stepper__item.is-active .stepper__title {
        font-size: 20px;
      }
    }

/* ============================================================
   6. EXPERT SERVICES
============================================================ */
.home__expert {
  background: #f5f5f5;
  padding: var(--container-margin);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
}
.home__expert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--padding-sm);
  align-items: center;
  max-width: 1512px;
  width: 100%;
  margin: auto;
}
.home__expert-circle {
  position: absolute;
  top: 0;
  right: 10px;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1.5px solid var(--onyx-25);
  pointer-events: none;
}
.home__expert-heading {
  font-family: var(--urbanist);
  font-size: var(--font-card-sm);
  font-weight: 800;
  color: var(--onyx-depth);
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative; z-index: 2;
}

/* 5-step pills row */
.home__expert-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--padding-sm);
  flex-wrap: wrap;
  justify-self: center;
}
.home__expert-step {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--outfit);
  font-size: 13px; font-weight: 700;
  color: var(--crimson);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.home__expert-step-label {
  color: var(--onyx-depth);
  width: fit-content;
  padding: 20px 30px;
  background: var(--pure);
  border-radius: 50px;
}
.home__expert-step-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.home__expert-step-arrow svg {
  width: 20px; height: 20px;
  stroke: var(--crimson); fill: none; stroke-width: 1;
  stroke-linecap: round; stroke-linejoin: round;
}
.home__expert-step:last-child .home__expert-step-arrow { display: none; }

.home__expert-body {
  font-family: var(--outfit);
  font-size: var(--font-body); font-weight: 400;
  color: var(--onyx-50);
  line-height: 1.7;
  width: 60%;
  float: left;
}


/* ============================================================
   7. CMS-0057
============================================================ */
.home__cms {
  background: var(--onyx-depth);
  padding: var(--container-margin);
  width: 100%;
  margin: var(--font-card-sm) auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.home__cms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative; z-index: 2;
  max-width: 1512px;
  width: 100%;
  margin: auto;
}
.home__cms-grid div {
  width: 100%;
}
.home__cms-grid div.home__cms-buttons {
  width: 100%;
  justify-content: center;
}
.home__cms-heading {
  font-family: var(--urbanist);
  font-size: var(--font-card-sm);
  font-weight: 800;
  color: var(--pure);
  line-height: 1.1;
  letter-spacing: -1px;
}
.home__cms-heading .crimson { color: var(--crimson); }
.home__cms-body {
  font-family: var(--outfit);
  font-size: var(--font-body); font-weight: 400;
  color: var(--pure-60);
  line-height: 1.7;
  margin-bottom: 32px;
}
.home__cms-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
}
/* Watermark */
.home__cms-watermark {
  font-family: var(--urbanist);
  font-size: 18vw;
  font-weight: 800 !important;
  color: rgba(255,255,255,.04);
  line-height: .85;
  letter-spacing: -4px;
  user-select: none; pointer-events: none;
  white-space: nowrap; overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 100%;
  margin: auto;
  bottom: 0px;
}


/* ============================================================
   8. INSIGHTS / BLOG
============================================================ */
.home__insights {
  background: var(--pure);
  padding: 0 var(--container-margin);
  max-width: 1512px;
  width: 100%;
  margin: auto;
}
.home__insights-heading {
  font-family: var(--urbanist);
  font-size: var(--font-card-sm);
  color: var(--onyx-depth);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 48px;
  width: 100%;
}
.home__insights-heading .crimson { color: var(--crimson); }

.home__blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home__blog-card {
  border: 1.5px solid var(--onyx-25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s;
  padding: var(--font-body);
}
.home__blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.home__blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--gray-light);
}
/* CSS image placeholder */
.home__blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
}
.home__blog-cat {
  font-family: var(--outfit);
  font-size: var(--font-body); font-weight: 600;
  color: var(--crimson);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px auto;
}
.home__blog-title {
  font-family: var(--urbanist);
  font-size: var(--font-badge); font-weight: 700;
  color: var(--onyx-depth);
  line-height: 1.3;
  margin-bottom: 16px;
}
.home__blog-meta {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
}
.home__blog-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  /* background: var(--gray-light); */
  flex-shrink: 0;
  overflow: hidden;
}
.home__blog-author-info {}
.home__blog-author-name {
  font-family: var(--outfit);
  font-size: 13px; font-weight: 600;
  color: var(--onyx-depth);
}
.home__blog-author-role {
  font-family: var(--outfit);
  font-size: 12px; font-weight: 400;
  color: var(--onyx-50);
}


/* ============================================================
   9. FINAL CTA
============================================================ */
.home__cta-final {
  background: var(--onyx-depth);
  padding: var(--container-margin);
  position: relative;
  overflow: hidden;
  margin: var(--font-card-sm) auto;
  border-radius: var(--radius);
  margin-bottom: 0;
}
.home__cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative; z-index: 2;
  padding-bottom: 150px;
  max-width: 1512px;
  width: 100%;
  margin: auto;
}
.home__cta-final-heading {
  font-family: var(--urbanist);
  font-size: var(--font-card-md);
  font-weight: 800;
  color: var(--pure);
  line-height: 1.1;
  letter-spacing: -1px;
}
.home__cta-final-body {
  font-family: var(--outfit);
  font-size: var(--font-body); font-weight: 400;
  color: var(--pure-60);
  line-height: 1.65;
  margin-bottom: 28px;
}
.home__cta-final-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.home__cta-final-watermark {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 800 !important;
  font-family: var(--urbanist);
  font-size: 25vw;
  color: rgba(255, 255, 255, 0.05);
  line-height: 0.85;
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: visible;
  text-align: center;
  width: 100%;
  margin: auto;
}


/* ============================================================
   10. FOOTER
============================================================ */
.home__footer {
  background: var(--pure);
  border-top: 1px solid var(--onyx-25);
  padding: 64px var(--container-margin) 0;
}
.home__footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--onyx-25);
}
.home__footer-col-title {
  font-family: var(--urbanist);
  font-size: 15px; font-weight: 700;
  color: var(--onyx-depth);
  margin-bottom: 20px;
}
.home__footer-links {
  display: flex; flex-direction: column; gap: 12px;
}
.home__footer-links a {
  font-family: var(--outfit);
  font-size: 14px; font-weight: 400;
  color: var(--onyx-50);
  transition: color .2s;
}
.home__footer-links a:hover { color: var(--onyx-depth); }

.home__footer-phone {
  font-family: var(--urbanist);
  font-size: 28px; font-weight: 700;
  color: var(--crimson);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.home__footer-address {
  font-family: var(--outfit);
  font-size: 14px; font-weight: 400;
  color: var(--onyx-50);
  line-height: 1.7;
}
.home__footer-logo-wrap {
  grid-column: 2 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 20px;
}
.home__footer-logo-text {
  font-family: var(--urbanist);
  font-size: 80px; font-weight: 800;
  color: var(--onyx-depth);
  letter-spacing: -4px;
  line-height: 1;
}
.home__footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap; gap: 12px;
}
.home__footer-copy {
  font-family: var(--outfit);
  font-size: 13px; font-weight: 400;
  color: var(--onyx-50);
}
.home__footer-bottom-links {
  display: flex; gap: 24px;
}
.home__footer-bottom-links a {
  font-family: var(--outfit);
  font-size: 13px; color: var(--onyx-50);
  transition: color .2s;
}
.home__footer-bottom-links a:hover { color: var(--onyx-depth); }


@media (max-width: 1200px) {

  .home__hero-grid {
    flex-direction: column;
  }
  .home__platform-strip {
    /* display: none; */
  }
  .home__hero-left,
  .home__hero-right {
    width: 100%;
  }
}
/* ============================================================
   RESPONSIVE — Tablet ≤ 1024px
============================================================ */
@media (max-width: 1024px) {
  .home__expert-body {
    width: 100%;
  }

  .home__hero-grid,
  .home__onyxos-top,
  .home__expert-grid,
  .home__cms-grid,
  .home__cta-final-grid { grid-template-columns: 1fr; gap: 40px; }
  .home__partner-card { grid-template-columns: 1fr; gap: 28px; }
  .home__expert-circle { display: none; }

  .home__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .home__stat:nth-child(3) { border-left: none; padding-left: 0; border-top: 1px solid var(--onyx-25); padding-top: 32px; }
  .home__stat:nth-child(4) { border-top: 1px solid var(--onyx-25); padding-top: 32px; }

  .home__blog-grid { grid-template-columns: repeat(2, 1fr); }

  .home__footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .home__footer-logo-wrap { display: none; }
  .home__onyxos-body {
    width: 100%;
  }
  .home__expert-steps,
  .home__expert-step {
    gap: 10px;
  }
  .home__cms-grid div {
    width: 100%;
  }
  .home__hero {
    min-height: 580px;
    padding-top: 200px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 768px
============================================================ */
@media (max-width: 768px) {
  .home__hero-title { letter-spacing: -1px; }
  .home__hero-buttons,
  .home__cms-buttons,
  .home__cta-final-buttons { flex-direction: column; align-items: center; }
  .home__btn { justify-content: center; }
  .home__hero-grid {
    flex-direction: column;
  }
  .home__platform-strip {
    /* display: none; */
  }
  .home__hero-left,
  .home__hero-right {
    width: 100%;
  }
  .home__hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .home__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .home__stat  { padding: 0 16px; }
  .home__stat:nth-child(odd) { padding-left: 0; border-left: none; }

  .home__platform-steps { flex-direction: column; gap: 20px; }
  .home__platform-steps::before,
  .home__platform-steps::after { display: none; }

  .home__expert-steps { gap: 12px; }

  .home__blog-grid { grid-template-columns: 1fr; }

  .home__footer-top { grid-template-columns: 1fr; gap: 32px; }
  .home__footer-bottom { flex-direction: column; text-align: center; }
  .home__footer-bottom-links { justify-content: center; }
  .home__expert-step-label {
    padding: 10px 20px;
  }
  .home__hero {
    height: auto;
  }
}
@media (max-width: 768px) {
  .home__platform-strip {
    display: none;
  }
}
