    /* =========================================================================
       PAGE: HOME 2026
       Design tokens, body resets, .nav-bar-wrap, .footer-2026 and the global
       overflow-x/min-width rules live in /css/new/global-2026.css. This file
       only contains home-page-specific component CSS.
       All rules scoped under `.page-home` to:
       - bump specificity above bootstrap.min.css `.btn` and layout.min.css's
         `body a:hover { color: #303030 }`, `body a:visited { color: #303030 }`
       - keep page styles isolated from other 2026 pages
       Every block-level text element pins font-size + line-height + font-weight
       explicitly so layout.min.css's body cascade (20px/30px/300) cannot leak in.
       ========================================================================= */

    /* ---------- Anti-cascade overrides (defeat layout.min.css + bootstrap.min.css) ---------- */
    /* layout.min.css sets `body a:hover/visited/focus { color: #303030 }` and
       `body a { text-decoration: none !important }`. Bootstrap sets `.btn` as
       inline-block with its own padding/font/line-height. Re-establish link
       reset and explicitly re-color every button-styled anchor across all
       interaction states. */
    .page-home a:link,
    .page-home a:visited,
    .page-home a:hover,
    .page-home a:focus,
    .page-home a:active { color: inherit; text-decoration: none; }
    /* Zero out the browser's default button border + background so .tab,
       .arrow-btn and the burger button don't get an unwanted stroke. The
       prototype had this in its global `button { ... }` reset (line 194 of
       styles.css) which we stripped as "shared". Re-add scoped to .page-home. */
    .page-home button {
      font-family: inherit;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }
    /* Prototype line 192: `img { display: block; max-width: 100% }`. We stripped
       it as a body reset, but without it grid items default to `max-width: none`
       and their natural widths force grid columns to expand — `1fr` then no
       longer distributes evenly. The partners-strip 4-col grid was rendering
       with content-sized columns until this came back. */
    .page-home img { display: block; max-width: 100%; }

    /* Hero CTAs + tab CTAs — explicit color on every interaction state */
    .page-home .btn--dark,
    .page-home .btn--dark:link,
    .page-home .btn--dark:visited,
    .page-home .btn--dark:focus,
    .page-home .btn--dark:active { color: var(--color-btn-primary-fg); background: var(--color-btn-primary-bg); }
    .page-home .btn--dark:hover { color: var(--color-btn-primary-fg); background: var(--color-btn-primary-bg-hover); }
    .page-home .tab-slide__cta,
    .page-home .tab-slide__cta:link,
    .page-home .tab-slide__cta:visited,
    .page-home .tab-slide__cta:focus,
    .page-home .tab-slide__cta:active { color: var(--color-btn-primary-fg); }
    .page-home .tab-slide__cta:hover { color: var(--color-btn-primary-fg); background: var(--color-btn-primary-bg-hover); }
    /* Review "Show more" link — keep its neutral colour through hover */
    .page-home .review-card__readmore,
    .page-home .review-card__readmore:link,
    .page-home .review-card__readmore:visited,
    .page-home .review-card__readmore:hover,
    .page-home .review-card__readmore:focus { color: var(--color-neutral-400); text-decoration: underline; }
    /* Arrow buttons (reviews carousel nav) — the `.page-home button` reset
       above zeroes border + padding (specificity 0,1,1 beats `.arrow-btn` at
       0,1,0). Restore the circular black border and padding here at 0,2,1. */
    .page-home .arrow-btn {
      width: 40px;
      height: 40px;
      padding: 8px;
      border-radius: 300px;
      background: transparent;
      border: 2px solid #000;
    }
    .page-home .arrow-btn:hover:not(:disabled) { background: #000; }
    .page-home .arrow-btn:hover:not(:disabled) img { filter: brightness(0) invert(1); }
    /* Product card hover — bootstrap.btn would add transitions we don't want.
       Keep these as anchors but ensure no underline or color change. */
    .page-home .product-card,
    .page-home .product-card:link,
    .page-home .product-card:visited,
    .page-home .product-card:hover,
    .page-home .product-card:focus { color: inherit; text-decoration: none; }

    /* ---------- Container ---------- */
    .page-home .container {
      width: 1320px;
      max-width: 1320px;
      padding-left: 12px;
      padding-right: 12px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    /* =========================================================================
       HERO
       ========================================================================= */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      margin-bottom: -1px;
    }
    .blob-stage {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;
      pointer-events: none;
    }
    .blob-wrap {
      position: absolute;
      width: 866px;
      height: 1014px;
      mix-blend-mode: normal;
    }
    .blob-1 {
      top: -15%; left: -10%;
      animation: drift1 12s ease-in-out infinite, morph1 14.67s ease-in-out infinite, spin1 23.33s linear infinite;
      transform-origin: 60% 55%;
    }
    .blob-2 {
      top: 10%; right: -15%;
      animation: drift2 14.67s ease-in-out infinite, morph2 12s ease-in-out infinite, spin2 18.67s linear infinite;
      transform-origin: 40% 45%;
    }
    .blob-3 {
      bottom: -20%; left: 15%;
      animation: drift3 17.33s ease-in-out infinite, morph3 13.33s ease-in-out infinite, spin3 26.67s linear infinite;
      transform-origin: 50% 50%;
    }
    @keyframes drift1 { 0%{translate:0 0;} 20%{translate:80px 120px;} 40%{translate:160px -60px;} 60%{translate:40px 200px;} 80%{translate:-80px 80px;} 100%{translate:0 0;} }
    @keyframes drift2 { 0%{translate:0 0;} 25%{translate:-120px 100px;} 50%{translate:-40px 220px;} 75%{translate:100px 60px;} 100%{translate:0 0;} }
    @keyframes drift3 { 0%{translate:0 0;} 30%{translate:100px -80px;} 55%{translate:-60px -160px;} 75%{translate:160px -40px;} 100%{translate:0 0;} }
    @keyframes morph1 { 0%,100%{scale:1 1;} 25%{scale:1.12 0.92;} 50%{scale:0.94 1.10;} 75%{scale:1.06 0.96;} }
    @keyframes morph2 { 0%,100%{scale:1 1;} 20%{scale:0.90 1.14;} 50%{scale:1.10 0.88;} 80%{scale:0.96 1.08;} }
    @keyframes morph3 { 0%,100%{scale:1 1;} 33%{scale:1.08 0.94;} 66%{scale:0.92 1.12; } }
    @keyframes spin1 { from{rotate:-141.275deg;} to{rotate:218.725deg;} }
    @keyframes spin2 { from{rotate:-141.275deg;} to{rotate:-501.275deg;} }
    @keyframes spin3 { from{rotate:-141.275deg;} to{rotate:218.725deg;} }

    .hero-fade {
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      height: 360px;
      pointer-events: none;
      z-index: 3;
      background: url("/images-new/common/hero-white-fade.svg") bottom center / 100% 100% no-repeat;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      flex: 1 1 auto;
      padding-top: 100px;
      padding-bottom: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
    }
    .hero-title {
      width: 1100px;
      margin: 0;
      text-align: center;
      font-family: var(--font-family-headline);
      font-weight: 600;
      font-size: var(--fs-headline-large);
      line-height: 1.1;
      letter-spacing: -0.65px;
      color: #000;
    }
    .hero-sub {
      width: 986px;
      max-width: 100%;
      margin: 0;
      text-align: center;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-large);
      line-height: normal;
      color: var(--color-neutral-600);
    }

    /* Hero intro animation (GSAP, mirrors the quarter-presentation heading reveal).
       Title splits into per-char .char-span's that fade/blur/drop in with a stagger;
       subtitle blur-fades as a whole. Chars are grouped into nowrap .word-span
       wrappers so the title only ever breaks at spaces, never mid-word; the space
       between words is its own non-atomic inline .char-space (an inline-block space
       collapses to zero width, which jammed the words together) and is the only
       wrap opportunity. Pre-hidden so there's no flash; the heroIntro IIFE in
       the view's @section('js') reveals them and falls back to visible if GSAP is
       unavailable or reduced-motion is on. */
    .word-span { display: inline-block; white-space: nowrap; }
    .char-span { display: inline-block; will-change: transform, filter, opacity; }
    .char-space { display: inline; }
    .hero-title, .hero-sub { opacity: 0; }
    @media (prefers-reduced-motion: reduce) {
      .hero-title, .hero-sub { opacity: 1; }
    }

    .hero-ctas { display: flex; gap: 16px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      font-family: var(--font-family-body);
      border: 0;
      cursor: pointer;
    }
    .btn--dark {
      background: var(--color-btn-primary-bg);
      color: var(--color-btn-primary-fg);
      font-weight: 500;
      font-size: var(--fs-body-extra-small);
      line-height: 20px;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      transition: background-color 0.15s ease;
    }
    .btn--dark:hover:not(:disabled) { background: var(--color-btn-primary-bg-hover); }
    .btn--dark:disabled,
    .btn--dark[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }

    .partners-strip {
      position: relative;
      z-index: 4;
      width: 100%;
      margin-top: 32px;
      height: 32.943px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* =========================================================================
       HERO ILLUSTRATION (scroll-scaled product video)
       ========================================================================= */
    .section-spacer { margin-top: 41px; }
    .hero-illustration {
      width: 1255px;
      height: 706px;
      margin: 0 auto;
      position: relative;
    }
    .hero-illustration__inner {
      width: 100%;
      height: 100%;
      border-radius: 16px;
      overflow: hidden;
      background: #0b0202;
      transform-origin: 50% 50%;
      transform: scale(0.2);
      will-change: transform;
      box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.24);
    }
    .hero-illustration__video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border: 0;
    }

    /* =========================================================================
       SECTION TITLE
       ========================================================================= */
    .section-title {
      margin: 0;
      width: 1296px;
      margin-left: auto;
      margin-right: auto;
    }

    /* =========================================================================
       PRODUCT CARDS (4-up)
       ========================================================================= */
    .product-cards-section { margin-top: 128px; }
    .product-cards {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .product-card {
      width: 100%;
      min-height: 205px;
      background: rgba(242, 242, 247, 0.55);
      backdrop-filter: blur(3.4px);
      -webkit-backdrop-filter: blur(3.4px);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0px 8px 33.3px -7px var(--color-neutral-400);
      display: flex;
      flex-direction: column;
      gap: 12px;
      cursor: pointer;
    }
    .product-card__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-radius: 9px;
    }
    .product-card__arrow-icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      display: block;
      align-self: flex-start;
    }
    .product-card__slot {
      background: transparent;
      border-radius: 8px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1 0 0;
      justify-content: space-between;
    }
    .product-card__desc {
      margin: 0;
      font-weight: 400;
      font-size: var(--fs-body-small);
      line-height: 1.35;
      letter-spacing: -0.2px;
      color: #000;
    }
    .badges { display: flex; gap: 12px; }
    .badge {
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-extra-small);
      line-height: normal;
      text-align: center;
      padding: 4px 8px;
      border-radius: 4px;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .badge--red     { background: var(--color-red-200);     color: var(--color-red-300); }
    .badge--blue    { background: var(--color-blue-200);    color: var(--color-blue-300); }
    .badge--yellow  { background: var(--color-yellow-300);  color: var(--color-yellow-600); }
    .badge--neutral { background: var(--color-neutral-200); color: var(--color-neutral-400); }

    /* =========================================================================
       REVIEWS
       ========================================================================= */
    .reviews-section { margin-top: 128px; padding-bottom: 0; overflow: hidden; }
    .reviews-viewport {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 32px;
      padding: 8px 0;
      cursor: grab;
      user-select: none;
      touch-action: pan-y;
    }
    .reviews-viewport.is-dragging { cursor: grabbing; }
    .reviews-track {
      padding: 0;
      will-change: transform;
    }
    .reviews-viewport.swiper { overflow: visible; }
    .reviews-viewport.swiper > .swiper-wrapper {
      overflow: visible;
      align-items: flex-start;
    }
    .reviews-viewport .swiper-slide { width: 416px; height: auto; }
    .review-card {
      width: 416px;
      background: var(--bg-secondary);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }
    .review-card__quote-box {
      background: #fff;
      border-radius: 8px;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      height: 226.177px;
      overflow: hidden;
      transition: height 0.4s ease;
    }
    .review-card__quote {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 5;
      overflow: hidden;
      flex-shrink: 0;
    }
    .review-card--expanded .review-card__quote,
    .review-card--no-clamp .review-card__quote {
      -webkit-line-clamp: unset;
      display: block;
    }
    .review-card__readmore {
      align-self: flex-start;
      font-family: var(--font-family-body);
      font-weight: 500;
      font-size: var(--fs-body-extra-small);
      line-height: 1.4;
      color: var(--color-neutral-400);
      text-decoration: underline;
      cursor: pointer;
    }
    .logo_placeholder {
      width: 100%;
      height: 33px;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .review-card__company {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 33px;
      object-fit: contain;
      object-position: left center;
    }
    /* The new SOCAR wordmark fills its full box, so max-height:33px reads oversized
       next to the other review logos. The bold wordmark reads heavy, so cap it
       tighter than raw ink parity to balance optical weight against the peers. */
    .review-card__company[src*="socar"] {
      max-height: 19px;
    }
    .review-card__company-name {
      margin: 0;
      font-family: var(--font-family-body);
      font-weight: 600;
      font-size: 22px;
      line-height: 1;
      letter-spacing: -0.4px;
      color: var(--color-neutral-1000);
    }
    .review-card__quote {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      font-style: italic;
      font-weight: 400;
      font-size: var(--fs-body-small);
      line-height: 1.5;
      color: #000;
    }
    .review-card__person {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      padding-top: 8px;
    }
    .review-card__name,
    .review-card__role { text-align: left; }
    .review-card__avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
    .review-card__meta { flex: 1 0 0; }
    .review-card__name {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: var(--fs-body-medium);
      color: var(--mobupps-black);
      line-height: 1.5;
    }
    .review-card__role {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: var(--fs-body-medium);
      color: var(--mobupps-black);
      line-height: 1.5;
    }
    /* "Download Case Study" CTA — the shared global .arrow-link (same look as
       the 404 "Home →" link, grey→dark on hover + sliding arrow), sized down to
       the card's body-medium so it sits in the slot the old "Client" line held. */
    .review-card__person .arrow-link { font-size: 16px; }
    .reviews-arrows {
      margin-top: 16px;
      display: flex;
      gap: 16px;
      justify-content: flex-end;
    }
    .arrow-btn {
      width: 40px;
      height: 40px;
      padding: 8px;
      border-radius: 300px;
      background: transparent;
      border: 2px solid #000;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, color 0.2s ease;
      cursor: pointer;
    }
    .arrow-btn img {
      width: 14px;
      height: 14px;
      filter: brightness(0);
    }
    .arrow-btn--ghost img { transform: rotate(180deg); }
    .arrow-btn:hover:not(:disabled) { background: #000; }
    .arrow-btn:hover:not(:disabled) img { filter: brightness(0) invert(1); }

    /* =========================================================================
       PRODUCT TAB WIDGET (v2 — icon-led, white slide card on grey wrapper)
       ========================================================================= */
    .product-tab-section { margin-top: 128px; }
    .product-tab-widget {
      width: 1296px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
    }
    .tab-bar {
      background: var(--bg-secondary);
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 8px;
      border-radius: 8px;
    }
    .tab {
      height: 35px;
      padding: 4px 8px;
      border-radius: 4px;
      background: var(--color-neutral-200);
      opacity: 0.64;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    }
    .tab img { display: block; flex-shrink: 0; }
    .tab:not(.tab--active):hover {
      opacity: 0.85;
      cursor: pointer;
      box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.10);
    }
    .tab--active {
      background: var(--color-neutral-0);
      opacity: 1;
      box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px 0 rgba(0, 0, 0, 0.10);
    }
    .tab-stage {
      position: relative;
      width: 1296px;
      min-height: 428px;
    }
    .tab-slide {
      position: absolute;
      inset: 0;
      width: 1296px;
      background: var(--bg-secondary);
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0px 32px 64px 0px rgba(0, 0, 0, 0.14);
      display: flex;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    }
    .tab-slide--active {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.35s ease, visibility 0s linear 0s;
      z-index: 2;
    }
    .tab-slide__copy {
      width: 556px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      flex-shrink: 0;
    }
    .tab-slide__title {
      width: 556px;
      margin: 0;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-title-small);
      line-height: normal;
      color: #000;
    }
    .tab-slide__body {
      margin: 0;
      padding: 12px 0;
      width: 430px;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-medium);
      line-height: normal;
      color: var(--mobupps-black);
    }
    .tab-slide__visual {
      width: 653px;
      height: 364px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .tab-slide__visual--mafo     { background: var(--color-red-200); }
    .tab-slide__visual--mobuppsx { background: var(--color-blue-200); }
    .tab-slide__visual--irtb     { background: var(--color-yellow-200); }
    .tab-slide__screenshot {
      position: absolute;
      width: 88.66%;
      height: auto;
      left: 5.67%;
      top: 28.30%;
      border-radius: 8px;
      box-shadow: 0px 25px 37.7px 10px rgba(18, 12, 41, 0.11);
    }

    /* v2 modifier overrides */
    .product-tab-section--v2 {
      margin-top: 128px;
      width: 100%;
      background: var(--bg-secondary);
      padding: 32px 0;
      border-radius: var(--radius-lg);
    }
    .product-tab-section--v2 .product-tab-widget {
      width: 1296px;
      gap: 12px;
    }
    .product-tab-section--v2 .tab-bar {
      background: var(--bg-secondary);
      gap: 22.43px;
      padding: 9.97px;
      border-radius: 9.97px;
      max-width: 100%;
      flex-wrap: wrap;
      justify-content: center;
    }
    .product-tab-section--v2 .tab {
      height: 83.95px;
      padding: 8.91px 29.71px;
      border-radius: 11.89px;
      background: var(--color-neutral-0);
      opacity: 1;
      box-shadow: none;
    }
    .product-tab-section--v2 .tab--active {
      background: var(--color-neutral-0);
      filter: drop-shadow(0px 17.83px 17.83px rgba(0, 0, 0, 0.18));
    }
    .product-tab-section--v2 .tab img { height: auto; }
    .product-tab-section--v2 .tab[data-tab="mafo"] img      { width: 109.68px; height: 34.31px; }
    .product-tab-section--v2 .tab[data-tab="echoai"] img    { width: 169.20px; height: 38.25px; }
    .product-tab-section--v2 .tab[data-tab="mobuppsx"] img  { width: 171.99px; height: 30.60px; }
    .product-tab-section--v2 .tab[data-tab="irtb"] img      { width: 92.23px;  height: 33.09px; }

    .product-tab-section--v2 .tab-stage {
      width: 1296px;
      min-height: 479px;
      padding: 25.5px 0;
      position: relative;
    }
    .product-tab-section--v2 .tab-slide { inset: 25.5px 0; }
    .product-tab-section--v2 .tab-slide {
      background: var(--color-neutral-0);
      box-shadow: none;
    }

    .tab-slide__head {
      display: flex;
      align-items: center;
      gap: 19.92px;
      height: 64px;
      width: 100%;
      border-radius: 9px;
    }
    .tab-slide__icon {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      padding: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tab-slide__icon svg { width: 32px; height: 32px; }
    .tab-slide__icon--mafo     { background: var(--color-red-400); }
    .tab-slide__icon--mobuppsx { background: var(--color-blue-400); }
    .tab-slide__icon--irtb     { background: var(--color-yellow-400); }
    .tab-slide__icon--echoai {
      --echoai-mesh-opacity: 0.6;
      position: relative;
      background: var(--color-card-body-surface);
      overflow: hidden;
    }
    .tab-slide__icon--echoai::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("/images-new/home-2026/icons-logos-echoai-icon-mesh.svg") center/cover no-repeat;
      opacity: var(--echoai-mesh-opacity);
      pointer-events: none;
    }
    .tab-slide__icon--echoai > img { position: relative; z-index: 1; }

    .product-tab-section--v2 .tab-slide__title {
      width: auto;
      flex: 1 0 0;
      min-width: 0;
      margin: 0;
    }
    .product-tab-section--v2 .tab-slide[data-slide="mafo"] .tab-slide__copy { width: 504px; }
    .product-tab-section--v2 .tab-slide[data-slide="irtb"] .tab-slide__copy { width: 551px; }
    .product-tab-section--v2 .tab-slide__body { padding: 12px 0; width: auto; }
    .product-tab-section--v2 .tab-slide__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      height: auto;
      background: var(--color-btn-primary-bg);
      color: var(--color-btn-primary-fg);
      border-radius: var(--radius-sm);
      transition: background-color 0.15s ease;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-small);
      line-height: normal;
      white-space: nowrap;
    }
    .product-tab-section--v2 .tab-slide__cta:hover:not(:disabled) { background: var(--color-btn-primary-bg-hover); }

    .product-tab-section--v2 .tab-slide__visual--mafo     { background: var(--color-red-200); }
    .product-tab-section--v2 .tab-slide__visual--mobuppsx { background: var(--color-blue-200); }
    .product-tab-section--v2 .tab-slide__visual--irtb     { background: var(--color-yellow-200); }
    .product-tab-section--v2 .tab-slide__visual--echoai {
      background:
        radial-gradient(ellipse 55% 80% at 50% 0%, rgba(249, 196,  38, 0.42) 0%, rgba(249, 196,  38, 0) 65%),
        radial-gradient(ellipse 60% 85% at 95% 0%, rgba(106, 102, 228, 0.40) 0%, rgba(106, 102, 228, 0) 65%),
        radial-gradient(ellipse 60% 85% at  8% 0%, rgba(236, 102,  99, 0.45) 0%, rgba(236, 102,  99, 0) 65%),
        var(--color-card-body-surface);
    }
    .tab-slide__brand {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      max-width: 360px;
      height: auto;
      z-index: 1;
    }

    /* =========================================================================
       AWARDS
       ========================================================================= */
    .awards-section { margin-top: 128px; }
    .awards-grid {
      margin-top: 32px;
      width: 1296px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 24px 30px;
    }
    .award {
      display: block;
      height: 222px;
      width: auto;
      flex-shrink: 0;
    }

    /* =========================================================================
       HORIZONTAL LIST CARD (Tech Partners + Certifications)
       ========================================================================= */
    .hlist-card {
      margin: 128px auto 0;
      width: 1296px;
      background: var(--color-light-blue-100);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      align-items: stretch;
      gap: 12px;
      box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.18);
    }
    .hlist-card--certs { margin-top: 32px; }
    .hlist-card__title {
      width: 279px;
      border-radius: 8px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .hlist-card__title--gradient {
      background: linear-gradient(125deg, #fdc75a 0%, #f9c426 35%, #ebb8fc 100%);
    }
    .hlist-card__title--certs {
      background: linear-gradient(135deg, #4a3df0 0%, #6e3df0 50%, #b03fe0 100%);
    }
    .hlist-card__icon {
      background: var(--color-neutral-0);
      width: 64px;
      height: 64px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      flex-shrink: 0;
    }
    .hlist-card__icon img { width: 32px; height: 32px; }
    .hlist-card__heading {
      margin: 0;
      font-family: var(--font-family-body);
      font-weight: 500;
      font-size: var(--fs-body-large);
      line-height: 1.25;
      color: #ffffff;
      white-space: nowrap;
    }
    .hlist-card__items {
      flex: 1 0 0;
      background: #fff;
      border-radius: 9.248px;
      padding: 18px 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px 48px;
      align-items: center;
      align-content: center;
      justify-content: flex-start;
    }
    .hlist-item {
      display: inline-flex;
      align-items: center;
      height: 38px;
    }
    .hlist-card__items--certs {
      background: #ffffff;
      padding: 20px 32px;
      display: flex;
      flex-wrap: nowrap;
      gap: 0;
      justify-content: space-around;
      align-items: center;
    }

    /* =========================================================================
       RESPONSIVE — tablet + mobile (ported from prototype lines 1988-2301).
       Selectors converted from `body.page-home` → `.page-home` because we
       scope via a div wrapper, not a body class.
       ========================================================================= */

    /* ----- TABLET (768 ≤ w < 1024) -----
       Figma Main_tablet (834w, content 770w, x=32 padding):
         - Hero: single column, title 770w, sub 640w centered, CTAs row
         - Partners: same horizontal strip, may wrap
         - Hero illustration: 770×419
         - Product cards: 2×2 grid, 373w × 202h, 24px gap
         - Reviews swiper: cards unchanged 416w (overflow scrolls)
         - Product tabs: 4 tabs ~153/207/209/137 wide
         - Awards: 4+3 row split, scaled smaller
         - hlist cards: same horizontal layout, smaller
       ----------------------------------------------------------------- */
    @media (max-width: 1023px) {
      .page-home .container {
        width: 100%;
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
      }

      /* HERO — drop min-height: 100vh on tablet so the hero sizes to its content. */
      .page-home .hero { min-height: auto; }
      .page-home .hero-content {
        flex: 0 0 auto;
        padding-top: 110px;
        padding-bottom: 32px;
        justify-content: flex-start;
        gap: 24px;
      }
      .page-home .hero-title { width: 100%; font-size: 48px; line-height: 1.1; }
      .page-home .hero-sub { width: 100%; max-width: 640px; font-size: 18px; }

      /* Tablet static video — JS skips GSAP at <1024 */
      .page-home .hero-illustration__inner {
        transform: scale(1) !important;
      }

      /* PARTNERS — flex-wrap so logos at natural width flow into multiple
         rows as the viewport shrinks (e.g. 4+3 at ~670px). Same rule covers
         tablet AND mobile; we deliberately do NOT override img height so logos
         render at their native sizes. */
      .page-home .partners-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 24px 32px;
        justify-content: center;
        align-items: center;
        height: auto;
      }

      /* HERO ILLUSTRATION — Figma Rectangle 3 tablet: 770×433 */
      .page-home .section-spacer { margin-top: 56px; }
      .page-home .hero-illustration { width: 100%; max-width: 770px; height: 433px; }

      /* PRODUCT CARDS — 2×2 grid */
      .page-home .product-cards-section { margin-top: 80px; }
      .page-home .product-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .page-home .product-card { min-height: 202px; }

      /* SECTION TITLES — narrow to container */
      .page-home .section-title { width: 100%; height: auto; }

      /* REVIEWS — keep 416w cards in horizontal swiper */
      .page-home .reviews-section { margin-top: 80px; }
      .page-home .reviews-viewport { margin-top: var(--space-32); }

      /* PRODUCT TABS — shrink widget to container, stack slide layout */
      .page-home .product-tab-section { margin-top: 80px; }
      .page-home .product-tab-section--v2 { padding: 24px 0; }
      .page-home .product-tab-widget { width: 100%; max-width: 770px; }
      .page-home .product-tab-section--v2 .tab { padding: 8px 16px; height: 76px; }
      .page-home .product-tab-section--v2 .tab[data-tab="mafo"] img      { width: 99px;  height: 31px; }
      .page-home .product-tab-section--v2 .tab[data-tab="echoai"] img    { width: 153px; height: 35px; }
      .page-home .product-tab-section--v2 .tab[data-tab="mobuppsx"] img  { width: 156px; height: 28px; }
      .page-home .product-tab-section--v2 .tab[data-tab="irtb"] img      { width: 84px;  height: 30px; }

      .page-home .tab-stage { width: 100%; max-width: 770px; min-height: 360px; }
      .page-home .product-tab-section--v2 .tab-stage { min-height: 360px; padding: 16px 0; }
      .page-home .tab-slide { width: 100%; padding: 24px; gap: 24px; }
      .page-home .product-tab-section--v2 .tab-slide { inset: 16px 0; }
      .page-home .tab-slide__copy,
      .page-home .product-tab-section--v2 .tab-slide[data-slide="mafo"] .tab-slide__copy,
      .page-home .product-tab-section--v2 .tab-slide[data-slide="irtb"] .tab-slide__copy {
        width: 45%;
        flex-shrink: 1;
      }
      .page-home .tab-slide__title { width: 100%; font-size: 22px; }
      .page-home .tab-slide__body { width: 100%; font-size: 16px; }
      /* Tablet visual — Figma: 371×207, vertically centered in the 360-tall slide. */
      .page-home .tab-slide__visual {
        width: 371px;
        height: 207px;
        align-self: center;
      }

      /* AWARDS — Figma tablet: 4 awards row 1, 3 awards row 2 (centered). Award h=130. */
      .page-home .awards-section { margin-top: 80px; }
      .page-home .awards-grid { width: 100%; max-width: 770px; gap: 32px 24px; }
      .page-home .award { height: 130px; }

      /* HLIST CARDS (Tech Partners, Certifications) — title left (231 wide), items right.
         Tech Partners: 5+5 layout. Certifications: 4 cert badges sized ~70px tall. */
      .page-home .hlist-card { width: 100%; max-width: 770px; padding: 12px; gap: 12px; margin-top: 80px; }
      .page-home .hlist-card--certs { margin-top: 16px; }
      .page-home .hlist-card__title { width: 231px; justify-content: flex-start; }
      .page-home .hlist-card__heading { font-size: 18px; }
      /* Force 5 columns so the 10 logos split cleanly into 5+5 (matches Figma). */
      .page-home .hlist-card__items {
        padding: 12px 16px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        place-items: center;
      }
      .page-home .hlist-item { height: 20px; }
      .page-home .hlist-item img { height: 20px; width: auto; }
      .page-home .hlist-card__items--certs {
        padding: 16px 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        place-items: center;
      }
      .page-home .hlist-card__items--certs img {
        max-height: 70px;
        max-width: 110px;
        width: auto;
        height: auto;
      }
    }

    /* ----- MOBILE (<768) -----
       Figma Main_mobile (402w, content 370w, x=16 padding):
         - Hero: stacked title/sub/CTAs, smaller scale
         - Partners: wrap to 3 rows (3+3+1)
         - Hero illustration: 370×202
         - Product cards: 1 col × 4 rows, 370w × 196h, 16px gap
         - Reviews: 1-up swiper, cards ~330w
         - Product tabs: tabs wrap to a 2×2 grid
         - Awards: 2 cols × 4 rows (last row has 1)
         - hlist cards: title stacks above items
       ----------------------------------------------------------------- */
    @media (max-width: 767px) {
      .page-home .container { padding-left: 16px; padding-right: 16px; }

      /* HERO — content-sized */
      .page-home .hero { min-height: auto; }
      .page-home .hero-content {
        flex: 0 0 auto;
        padding-top: 90px;
        padding-bottom: 24px;
        justify-content: flex-start;
        gap: 16px;
      }
      .page-home .hero-title { font-size: 36px; line-height: 1.15; letter-spacing: -0.3px; }

      .page-home .hero-illustration__inner {
        transform: scale(1) !important;
      }
      .page-home .hero-sub { font-size: 14px; }
      .page-home .hero-ctas { flex-wrap: wrap; justify-content: center; gap: 12px; }

      /* PARTNERS — tablet rule above (display: flex; flex-wrap: wrap) applies
         here too (mobile is ≤767, also matched by ≤1023). No mobile override. */

      /* HERO ILLUSTRATION */
      .page-home .section-spacer { margin-top: 32px; }
      .page-home .hero-illustration { width: 100%; max-width: 341px; height: 193px; }

      /* PRODUCT CARDS — single column stacked */
      .page-home .product-cards-section { margin-top: 56px; }
      .page-home .product-cards { grid-template-columns: 1fr; gap: 16px; }
      .page-home .product-card { min-height: 196px; }

      /* SECTION TITLES — hug text */
      .page-home .section-title {
        height: auto;
      }

      /* REVIEWS — 1 card per view (with peek), arrows under */
      .page-home .reviews-section { margin-top: 40px; }
      .page-home .reviews-viewport { margin-top: var(--space-16); }
      .page-home .reviews-viewport .swiper-slide { width: 330px; }
      .page-home .review-card { width: 330px; padding: 16px; }
      .page-home .review-card__quote-box { height: auto; min-height: 180px; padding: 12px; }
      .page-home .reviews-arrows { justify-content: flex-end; margin-top: 16px; }

      /* PRODUCT TABS — all 4 tabs on a single row to match Figma mobile. */
      .page-home .product-tab-section { margin-top: 40px; }
      .page-home .product-tab-section--v2 { padding: 16px; }
      .page-home .product-tab-section--v2 .tab-bar {
        gap: 11px;
        padding: 10px;
        flex-wrap: nowrap;
      }
      .page-home .product-tab-section--v2 .tab { padding: 10px 8px; height: 40px; border-radius: 8px; }
      .page-home .product-tab-section--v2 .tab[data-tab="mafo"] img      { width: 50px; height: 16px; }
      .page-home .product-tab-section--v2 .tab[data-tab="echoai"] img    { width: 78px; height: 18px; }
      .page-home .product-tab-section--v2 .tab[data-tab="mobuppsx"] img  { width: 79px; height: 14px; }
      .page-home .product-tab-section--v2 .tab[data-tab="irtb"] img      { width: 42px; height: 15px; }

      /* Stack slides in a single grid cell so the tab-stage GROWS to contain
         the tallest slide instead of using a fixed min-height. */
      .page-home .product-tab-section--v2 .tab-stage {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 12px;
      }
      .page-home .product-tab-section--v2 .tab-slide {
        position: relative;
        inset: auto;
        grid-row: 1;
        grid-column: 1;
      }
      .page-home .tab-slide {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 16px;
        gap: 16px;
      }
      .page-home .tab-slide__copy,
      .page-home .product-tab-section--v2 .tab-slide[data-slide="mafo"] .tab-slide__copy,
      .page-home .product-tab-section--v2 .tab-slide[data-slide="irtb"] .tab-slide__copy {
        width: 100%;
      }
      .page-home .tab-slide__head { gap: 12px; height: auto; }
      .page-home .tab-slide__icon { width: 48px; height: 48px; }
      .page-home .tab-slide__icon img { width: 24px; height: 24px; }
      .page-home .tab-slide__title { width: 100%; font-size: 18px; }
      .page-home .tab-slide__body { width: 100%; font-size: 14px; padding: 4px 0; }
      /* Mobile visual — Figma: full width, 188px tall (aspect 338/188). */
      .page-home .tab-slide__visual {
        width: 100%;
        height: auto;
        aspect-ratio: 338 / 188;
      }

      /* AWARDS */
      .page-home .awards-section { margin-top: 40px; }
      .page-home .awards-grid {
        margin-top: var(--space-16);
        gap: 24px 16px;
      }
      .page-home .award { height: 130px; }

      /* HLIST CARDS — title stacks above items. */
      .page-home .hlist-card {
        flex-direction: column;
        width: 100%;
        padding: 12px;
        gap: 12px;
        margin-top: 40px;
        align-items: stretch;
      }
      .page-home .hlist-card--certs { margin-top: 16px; }
      .page-home .hlist-card__title {
        width: 100%;
        padding: 12px;
        justify-content: flex-start;
      }
      /* Reset display back to flex-wrap — the tablet rule sets
         `display: grid; grid-template-columns: repeat(5, 1fr)` which would
         carry into mobile and squish wide logos at 370px-wide viewports.
         Flex-wrap lets logos flow at their natural widths and wrap. */
      .page-home .hlist-card__items {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: none;
        width: 100%;
        padding: 12px;
        gap: 12px 16px;
        justify-content: flex-start;
      }
      .page-home .hlist-card__items--certs {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: none;
        padding: 12px;
        gap: 12px 16px;
        justify-content: space-between;
      }
      .page-home .hlist-item { height: 26px; }
      .page-home .hlist-item img { height: 26px; width: auto; }
      .page-home .hlist-card__items--certs img { max-height: 48px; max-width: 80px; width: auto; }
    }
  


/* ===========================================================
   HOME UPDATE (Jun 2026) — hero-logos, echo-unify, powered-badge,
   echo-ai. Spliced from prototype css/pages/home.css (.page-home scoped).
   =========================================================== */


/* ---------- Hero client logos — 12 logos, two centered rows of 6.
   max-width forces a 6+6 wrap on desktop; column-gap/row-gap from Figma
   (29 row / 89 column). Logos render at natural size (img width/height). */
.page-home .hero-logos {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1120px;
  /* ctas → logos gap in Figma is ~80px to the visible logo (hero pad-bottom 38
     + 22 wrapper + 12 card pad + logo offset) — not the 32px flex gap.
     hero-content gap is 32, so add 48 on top. */
  margin: 48px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 89px;
  row-gap: 29px;
}

/* Logos sized by their HTML width/height attrs (the exported SVGs carry only
   a viewBox, no intrinsic px size, so the attrs must drive the box). */
.page-home .hero-logos img { flex-shrink: 0; }


/* ===========================================================
   ECHO-UNIFIES BLOCK (after the video) — gradient-outlined stadium
   container, the Echo AI badge floating at top-center, and three glassy
   circles (MAFO / MobuppsX / iRTB) with their taglines. Decorative, not
   interactive.
   =========================================================== */
/* Big top margin: the badge floats -60px above the stadium, so the gap to the
   video above = margin - 60. Figma video→badge ≈ 128, so margin ≈ 188. */
.page-home .echo-unify-section { margin-top: 188px; }

.page-home .echo-unify {
  position: relative;
  width: 1226px;
  max-width: 100%;
  margin: 0 auto;
  /* gradient outline via a padding-box/border-box gradient border */
  border: 6px solid transparent;
  border-radius: 222px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(100deg, #ec6663 0%, #f9c426 28%, #e280e0 64%, #8e8beb 100%) border-box;
  /* Figma: 1226 outer → 1076 circle group (69px side padding), 60/62 top/bottom,
     76px between circles (big padding, tight gap — not space-between). */
  padding: 60px 69px 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
}

/* Floating "Echo AI" badge straddling the top edge. */
.page-home .echo-unify__badge {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  /* Scalable pill — fluid width with a 250px floor and the Figma 322px cap;
     height + logo follow proportionally so it never collapses or distorts. */
  width: clamp(250px, 35vw, 322px);
  height: auto;
  aspect-ratio: 322 / 100;
  container-type: inline-size;
  /* Soft pastel gradient fill (lavender → pink → coral → yellow), dimmed so the
     white EchoAI wordmark stays readable across the whole pill. */
  background:
    radial-gradient(140% 180% at 8% 45%,  #bcb9f5 0%, rgba(188,185,245,0) 55%),
    radial-gradient(130% 170% at 40% 85%, #f2a8cb 0%, rgba(242,168,203,0) 55%),
    radial-gradient(120% 160% at 60% 20%, #f4a6a2 0%, rgba(244,166,162,0) 55%),
    radial-gradient(150% 190% at 95% 55%, #fbdd9c 0%, rgba(251,221,156,0) 60%),
    #f1effb;
  border: 6.69px solid #ffffff;
  border-radius: 162px;
  box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blob image not used — the pill gradient lives on .echo-unify__badge itself. */
.page-home .echo-unify__badge-blob { display: none; }

.page-home .echo-unify__badge-logo {
  position: relative;
  z-index: 1;
  width: 72.9cqw;          /* 225 / 308.6 badge content-box — scales with the pill */
  height: auto;
  /* logo is white in the design (sits on the colourful gradient pill) */
  filter: brightness(0) invert(1);
}

/* The three product circles. */
.page-home .echo-circle {
  position: relative;
  width: 308px;
  height: 308px;            /* equal W/H — always a true circle, never an ellipse */
  flex-shrink: 0;
  border-radius: 500px;
  border: 3.35px solid rgba(255, 255, 255, 0.7);
  background: rgba(217, 217, 217, 0.22);
  backdrop-filter: blur(18.4px);
  -webkit-backdrop-filter: blur(18.4px);
  box-shadow: 0px 54px 108px 0px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
}

.page-home .echo-circle__inner {
  width: 243px;
  height: 243px;
  border-radius: 500px;
  border: 2.23px solid rgba(255, 255, 255, 0.79);
  background: linear-gradient(147deg, rgba(255, 255, 255, 0.64) 10%, rgba(242, 240, 240, 0) 93%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0px 54px 108px 0px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 31px 17px 17px;
}

/* Sized by HTML width/height attrs (logos carry width=100%, so a CSS width:auto
   would let them balloon — let the attrs define the box). */
.page-home .echo-circle__logo { flex-shrink: 0; }

.page-home .echo-circle__label {
  margin: 0;
  width: 209px;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  color: #000;
  text-align: center;
}

/* "Powered by Echo AI" badge */
.page-home .powered-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 9px 20px -5px rgba(16, 5, 40, 0.22);
  background:
    linear-gradient(89deg, rgba(228, 37, 33, 0.76) 15%, rgba(249, 196, 38, 0.76) 46%, rgba(239, 84, 210, 0.76) 67%, rgba(106, 102, 228, 0.76) 89%),
    #ffffff;
}

.page-home .powered-badge__text {
  font-family: var(--font-family-body);
  font-weight: 500;
  font-size: 9.7px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.page-home .powered-badge__logo {
  width: 70.57px;
  height: 15.96px;
  filter: brightness(0) invert(1);   /* force the EchoAI wordmark white */
}


/* ===========================================================
   ECHO AI BLOCK — decision engine. Animated organic blob background
   on a light surface, the interactive hover-spotlight logo, and a
   3×2 grid of capability cards.
   =========================================================== */
.page-home .echo-ai-section { margin-top: 128px; }

.page-home .echo-ai {
  position: relative;
  width: 1296px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0px 32px 64px 0px rgba(0, 0, 0, 0.14);
  padding: 52px 32px 32px;   /* top 52, sides/bottom 32 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Echo block uses the shared blob system on a light surface. */
.page-home .echo-ai .blob-stage { background: var(--color-light-blue-100); }


.page-home .echo-ai__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-home .echo-ai__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 728px;
  max-width: 100%;
}

/* The interactive hover logo (white at rest; gradient spotlight follows the
   cursor). The .echo-logo box is masked to the EchoAI wordmark silhouette. */
.page-home .echo-logo {
  --echo-mask: url("data:image/svg+xml,%3Csvg%20width%3D%22548%22%20height%3D%22124%22%20viewBox%3D%220%200%20548%20124%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M63.7044%201.43215L72.332%2035.8086C73.276%2039.5761%2075.2258%2043.0143%2077.9721%2045.7602C80.7183%2048.506%2084.157%2050.4556%2087.925%2051.3995L122.304%2060.024C124.214%2060.5028%20124.214%2063.217%20122.304%2063.6958L87.923%2072.3223C84.157%2073.2661%2080.7183%2075.2157%2077.9721%2077.9616C75.2258%2080.7075%2073.276%2084.1477%2072.332%2087.9132L63.7044%20122.29C63.2254%20124.198%2060.5113%20124.198%2060.032%20122.29L51.4064%2087.9132C50.4604%2084.1477%2048.5105%2080.7075%2045.7643%2077.9616C43.02%2075.2157%2039.5794%2073.2661%2035.8134%2072.3223L1.43234%2063.6958C-0.477448%2063.217%20-0.477448%2060.5032%201.43234%2060.024L35.8134%2051.3995C39.5794%2050.4536%2043.0181%2048.5041%2045.7643%2045.7602C48.5105%2043.0143%2050.4604%2039.5761%2051.4064%2035.8086L60.032%201.43215C60.5109%20-0.477384%2063.2251%20-0.477384%2063.7044%201.43215Z%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M389.651%2095.7314C392.593%2095.7314%20395.175%2095.4541%20397.402%2094.897C399.707%2094.3404%20401.615%2093.2267%20403.126%2091.5588C404.637%2089.8885%20405.79%2087.3843%20406.584%2084.0456C407.379%2080.7074%20407.778%2076.2952%20407.778%2070.8094C407.778%2065.2458%20407.379%2060.834%20406.584%2057.5732C405.79%2054.3147%20404.637%2051.8501%20403.126%2050.1798C401.615%2048.5115%20399.707%2047.3983%20397.402%2046.8416C395.175%2046.285%20392.593%2046.0073%20389.651%2046.0073C386.629%2046.0073%20384.005%2046.2846%20381.779%2046.8416C379.552%2047.3983%20377.684%2048.5119%20376.173%2050.1798C374.663%2051.8501%20373.511%2054.3147%20372.715%2057.5732C371.921%2060.8336%20371.523%2065.2458%20371.523%2070.8094C371.523%2076.2952%20371.921%2080.707%20372.715%2084.0456C373.511%2087.3839%20374.663%2089.8885%20376.173%2091.5588C377.684%2093.2271%20379.552%2094.3404%20381.779%2094.897C384.005%2095.4537%20386.629%2095.7314%20389.651%2095.7314ZM389.651%20103.484C385.038%20103.484%20380.983%20103.005%20377.484%20102.052C374.066%20101.098%20371.204%2099.4295%20368.899%2097.0446C366.594%2094.6602%20364.883%2091.3597%20363.769%2087.147C362.658%2082.8546%20362.101%2077.4089%20362.101%2070.8098C362.101%2064.133%20362.658%2058.6872%20363.769%2054.4746C364.883%2050.1802%20366.594%2046.8817%20368.899%2044.577C371.204%2042.1925%20374.066%2040.5619%20377.484%2039.6879C380.983%2038.7341%20385.038%2038.2572%20389.651%2038.2572C394.263%2038.2572%20398.276%2038.7341%20401.695%2039.6879C405.194%2040.6417%20408.096%2042.31%20410.401%2044.6964C412.706%2047.0011%20414.416%2050.2997%20415.53%2054.592C416.721%2058.8067%20417.318%2064.2123%20417.318%2070.8094C417.318%2077.4882%20416.721%2082.9721%20415.53%2087.2664C414.416%2091.4787%20412.706%2094.7776%20410.401%2097.1621C408.175%2099.4687%20405.313%20101.097%20401.815%20102.051C398.316%20103.005%20394.261%20103.484%20389.65%20103.484M294.256%20102.768V11.7852H303.678V46.1275C306.619%2043.9803%20310.118%2042.1128%20314.171%2040.5222C318.306%2038.8539%20322.599%2038.018%20327.052%2038.018C331.504%2038.018%20335.16%2038.9718%20338.024%2040.8793C340.966%2042.7869%20343.112%2045.3713%20344.463%2048.6317C345.896%2051.8902%20346.61%2055.5081%20346.61%2059.4811V102.767H337.188V60.4349C337.188%2057.7331%20336.632%2055.3482%20335.52%2053.2812C334.486%2051.2137%20332.975%2049.5855%20330.988%2048.3921C329%2047.1987%20326.615%2046.604%20323.833%2046.604C321.208%2046.604%20318.784%2046.8813%20316.556%2047.4383C314.331%2047.9152%20312.184%2048.6317%20310.118%2049.5855C308.05%2050.4595%20305.903%2051.5331%20303.678%2052.8043V102.768H294.256ZM258.926%20103.484C255.348%20103.484%20252.009%20103.005%20248.909%20102.052C245.808%20101.098%20243.104%2099.4295%20240.799%2097.0446C238.494%2094.6602%20236.703%2091.3597%20235.432%2087.147C234.161%2082.9324%20233.524%2077.5664%20233.524%2071.0495C233.524%2064.4504%20234.121%2059.0447%20235.313%2054.8321C236.506%2050.5397%20238.214%2047.1995%20240.442%2044.8146C242.667%2042.4302%20245.371%2040.7619%20248.551%2039.8077C251.732%2038.8539%20255.27%2038.3751%20259.166%2038.3751C262.345%2038.3751%20265.804%2038.5346%20269.54%2038.8539C273.278%2039.0912%20276.855%2039.4883%20280.273%2040.0454V45.6506H261.669C257.615%2045.6506%20254.197%2046.3251%20251.413%2047.678C248.631%2049.0289%20246.523%2051.5732%20245.092%2055.3086C243.661%2058.9642%20242.947%2064.2925%20242.947%2071.2867C242.947%2078.0433%20243.701%2083.2117%20245.212%2086.7895C246.723%2090.3654%20248.87%2092.83%20251.652%2094.1809C254.434%2095.4541%20257.813%2096.0909%20261.789%2096.0909H281.23V101.574C279.4%20101.894%20277.254%20102.211%20274.789%20102.528C272.405%20102.847%20269.86%20103.085%20267.156%20103.244C264.454%20103.404%20261.709%20103.484%20258.927%20103.484M184.518%20103.245C182.611%20103.245%20180.583%20103.085%20178.437%20102.768C176.29%20102.371%20174.262%20101.614%20172.355%20100.503C170.447%2099.3894%20168.896%2097.7191%20167.704%2095.4941C166.511%2093.1895%20165.914%2090.0885%20165.914%2086.1932V32.652C165.914%2029.2336%20166.391%2026.412%20167.345%2024.185C168.379%2021.8804%20169.73%2020.0922%20171.4%2018.821C173.071%2017.4681%20174.939%2016.5144%20177.006%2015.9573C179.072%2015.3225%20181.139%2015.0036%20183.207%2015.0036C188.136%2015.0833%20192.709%2015.2031%20196.922%2015.3626C201.135%2015.4404%20205.111%2015.5602%20208.849%2015.7197C212.665%2015.7994%20216.361%2015.9173%20219.939%2016.0768V23.7074H185.592C182.491%2023.7074%20180.026%2024.5433%20178.198%2026.2116C176.37%2027.8819%20175.455%2030.5437%20175.455%2034.2017V54.9507L214.692%2055.5454V62.8209L175.455%2063.4157V84.0453C175.455%2086.9867%20175.932%2089.2137%20176.886%2090.7241C177.92%2092.2329%20179.271%2093.2264%20180.942%2093.7032C182.61%2094.1801%20184.32%2094.4194%20186.069%2094.4194H219.939V102.05C216.281%20102.29%20212.424%20102.489%20208.371%20102.647C204.396%20102.807%20200.38%20102.926%20196.325%20103.004C192.349%20103.084%20188.413%20103.164%20184.518%20103.244%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M547.01%2021.7676V103.565H530.602V21.7676H547.01Z%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M496.867%2087.9788H464.284L458.893%20103.565H441.664L471.082%2021.6504H490.186L519.605%20103.565H502.258L496.867%2087.9788ZM492.413%2074.8538L480.576%2040.6349L468.738%2074.8538H492.413Z%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  --echo-spot: 200px;
  --echo-gscale: 100%;   /* gradient scale inside the logo (Claude-design tweak) */
  --echo-fade: 0.5s;     /* fade-out duration on mouse leave */
  width: 548px;
  max-width: 100%;
  aspect-ratio: 548 / 124;
  position: relative;
  /* cursor stays default on hover (latest design — no crosshair) */
  -webkit-mask: var(--echo-mask) center / contain no-repeat;
          mask: var(--echo-mask) center / contain no-repeat;
}

.page-home .echo-logo__rest {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.page-home .echo-logo__grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 38%, #ea5956, transparent 55%),
    radial-gradient(circle at 44% 72%, #e280e0, transparent 55%),
    radial-gradient(circle at 70% 28%, #fbd25a, transparent 55%),
    radial-gradient(circle at 92% 66%, #2b25d9, transparent 62%),
    #ea5956;
  background-size: var(--echo-gscale) var(--echo-gscale);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-mask: radial-gradient(circle var(--echo-spot) at var(--emx) var(--emy), #000 0%, #000 30%, transparent 72%);
          mask: radial-gradient(circle var(--echo-spot) at var(--emx) var(--emy), #000 0%, #000 30%, transparent 72%);
  transition: opacity var(--echo-fade) ease, --emx 0.16s ease-out, --emy 0.16s ease-out;
}

.page-home .echo-ai__subtitle {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--fs-title-small);
  line-height: normal;
  color: #ffffff;
}

.page-home .echo-ai__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--color-neutral-darkest);
  color: #ffffff;
  border-radius: var(--radius-small);
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--fs-body-small);
  line-height: normal;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.page-home .echo-ai__cta:link,
.page-home .echo-ai__cta:visited,
.page-home .echo-ai__cta:hover,
.page-home .echo-ai__cta:focus,
.page-home .echo-ai__cta:active { color: #ffffff; }

.page-home .echo-ai__cta:hover { background: var(--color-btn-primary-bg-hover); }


/* The cards are a Swiper carousel on mobile and a static grid on desktop/tablet.
   Same DOM (.swiper > .swiper-wrapper > .swiper-slide); the grid is reasserted
   on ≥768 by neutralising Swiper's flex + inline transform. */
.page-home .echo-ai__grid {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-home .echo-ai__track { width: 100%; }

.page-home .echo-ai__arrows { display: none; }

.page-home .echo-card {
  min-height: 221px;
  background: rgba(242, 242, 247, 0.38);
  backdrop-filter: blur(3.4px);
  -webkit-backdrop-filter: blur(3.4px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 8px 33.3px -7px var(--color-neutral-400);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .echo-card__head {
  display: flex;
  align-items: center;
  gap: 19.92px;
  min-height: 64px;
}

.page-home .echo-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--color-neutral-0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.page-home .echo-card__icon svg { width: 32px; height: 32px; display: block; }

.page-home .echo-card__title {
  margin: 0;
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--font-family-body);
  font-weight: 500;
  font-size: var(--fs-body-large);
  line-height: normal;
  color: var(--color-neutral-1000);
}

.page-home .echo-card__slot {
  flex: 1 0 0;
  background: var(--color-neutral-0);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
}

.page-home .echo-card__desc {
  margin: 0;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--fs-body-small);
  line-height: normal;
  color: var(--color-neutral-1000);
}

@media (min-width: 768px) {
  
    /* Static grid on desktop/tablet — neutralize Swiper's grab cursor + transform.
       (cursor:grab is set inline by Swiper, so it needs !important to override.) */
    .page-home .echo-ai__grid.swiper { overflow: visible; cursor: default !important; }
  
    .page-home .echo-ai__track {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      transform: none !important;
    }
  
    .page-home .echo-ai__track { cursor: default !important; }
  
    .page-home .echo-card.swiper-slide { width: auto !important; height: auto; margin: 0 !important; cursor: default !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  
    .page-home .echo-ai__track { grid-template-columns: repeat(2, 1fr); }
  
    /* Restore the original fixed tablet badge — the base clamp/aspect-ratio/cqw
       (added for the mobile scalable badge) had leaked in and over-sized it. */
    .page-home .echo-unify__badge {
      top: -41px;
      width: 203px;
      height: 63px;
      aspect-ratio: auto;
      border-width: 4.2px;
      max-width: none;
    }
  
    .page-home .echo-unify__badge-logo { width: 142px; }
}

@media (max-width: 1023px) {
  
    .page-home .hero-logos { max-width: 100%; column-gap: 40px; row-gap: 24px; margin-top: 40px; }
  
    /* Scale logos down (≈20px tall) — width follows each logo's viewBox ratio. */
    .page-home .hero-logos img { height: 20px; width: auto; }
  
  
    /* ECHO-UNIFIES — Figma tablet: 770w stadium, 3 circles ~193 each in a row */
    .page-home .echo-unify-section { margin-top: 112px; }
     /* badge -32 overhang + ~80 gap */
    .page-home .echo-unify {
      width: 100%;
      max-width: 770px;
      border-radius: 140px;
      padding: 36px 41px 37px;
      gap: 48px;
    }
  
    /* Badge size + logo now come from the base scalable rules (clamp + cqw). */
    .page-home .echo-unify__badge-blob { inset: -9px -6px auto -14px; width: 261px; height: 84px; }
  
    /* ECHO circles — equal square + 500px radius (guaranteed circle); the inner
       ring, logos and text are all sized in cqw (% of the circle's own width), so
       they scale proportionally with the circle and can never stretch it into an
       ellipse. Applies to tablet AND mobile — the ≤767 block only swaps the
       circle's width to fluid. Reference: Figma 308px circle (cqw = px / 308). */
    .page-home .echo-circle {
      width: 193px;
      height: auto;
      aspect-ratio: 1;
      min-height: 0;             /* let aspect-ratio beat the flex min-content height */
      border-radius: 500px;
      padding: 0;                /* ring gap comes from the centred 79cqw inner */
      container-type: inline-size;
    }
  
    .page-home .echo-circle__inner {
      width: 79cqw;             /* 243.28 / 308 */
      height: 79cqw;
      border-width: 0.72cqw;    /* 2.23 / 308 */
      border-radius: 500px;
      gap: 5.52cqw;            /* 17 / 308 */
      padding: 10.06cqw 5.52cqw 5.52cqw;   /* 31 / 17 / 17 */
    }
  
    .page-home .echo-circle__logo { width: auto; height: auto; }
  
    .page-home .echo-circle__logo[alt="MAFO"]     { width: 45.6cqw; }
     /* 140.51 / 308 */
    .page-home .echo-circle__logo[alt="MobuppsX"] { width: 53.1cqw; }
     /* 163.45 / 308 */
    .page-home .echo-circle__logo[alt="iRTB"]     { width: 44.9cqw; }
     /* 138.18 / 308 */
    .page-home .echo-circle__label { width: 67.9cqw; font-size: 6.17cqw; line-height: 1.25; }
  
  
    /* ECHO AI block — 2 columns */
    .page-home .echo-ai-section { margin-top: 96px; }
  
    .page-home .echo-ai { width: 100%; max-width: 770px; gap: 40px; }
  
    .page-home .echo-ai__title-wrap { width: 100%; }
  
    .page-home .echo-logo { width: 420px; }
  
    .page-home .echo-ai__subtitle { font-size: 22px; }
}

@media (max-width: 767px) {
  
    .page-home .hero-logos { column-gap: 24px; row-gap: 18px; margin-top: 32px; }
  
    .page-home .hero-logos img { height: 16px; width: auto; }
  
  
    /* ECHO-UNIFIES — circles stack vertically */
    .page-home .echo-unify-section { margin-top: 124px; }
     /* badge -60 overhang + ~64 gap */
    .page-home .echo-unify {
      flex-direction: column;
      width: 100%;
      border-radius: 184px;
      padding: 60px 30px 30px;
      gap: 33px;
    }
  
    /* mobile: badge spans 90% of the stadium width (overrides the base clamp),
       capped at 350px; aspect-ratio + the logo's cqw sizing from the base scale. */
    .page-home .echo-unify__badge { top: -70px; width: 90%; max-width: 350px; }
  
    /* Circle width becomes fluid (caps at the Figma 308); aspect-ratio + the cqw
       scaling inherited from the ≤1023 block keep it a perfect circle with
       proportional contents at any width. */
    .page-home .echo-circle { width: 100%; max-width: 308px; }
  
  
    /* ECHO AI block — cards become a Swiper carousel with prev/next arrows */
    .page-home .echo-ai-section { margin-top: 64px; }
  
    /* overflow:visible lets the carousel cards + their drop shadow escape the
       gradient card; the animated blobs are instead clipped by the blob-stage so
       the rounded gradient shape is preserved. */
    .page-home .echo-ai { padding: 20px; gap: 24px; overflow: visible; }
  
    .page-home .echo-ai .blob-stage { overflow: hidden; border-radius: inherit; }
  
    .page-home .echo-logo { width: 100%; max-width: 320px; }
  
    .page-home .echo-ai__subtitle { font-size: 18px; }
  
    /* show one centred card with the neighbours peeking on both sides; the peek
       extends past the gradient card to the screen edge (body has overflow-x:clip,
       so no horizontal scroll). centeredSlides/loop are set in the Swiper init. */
    .page-home .echo-ai__grid.swiper { overflow: visible; }
  
    .page-home .echo-card.swiper-slide { width: 286px; height: auto; }
  
    .page-home .echo-card { min-height: 0; }
  
    .page-home .echo-ai__arrows {
      display: flex;
      justify-content: flex-end;
      gap: 16px;
      width: 100%;
      margin-top: 0;
      /* lift above the absolutely-positioned .blob-stage (which sits in the
         positioned z-index:auto layer) — like .echo-ai__header / __grid do —
         otherwise the blob gradient paints over the buttons and washes out the
         .arrow-btn circle so they look like bare glyphs. */
      position: relative;
      z-index: 2;
    }
}
