    * { box-sizing: border-box; }
    html {
      background: #0d2c29;
      scroll-behavior: smooth;
    }
    html, body { margin: 0; min-width: 320px; }
    body { font-family: Inter, sans-serif; background: #0d2c29; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .mobileItem {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 16px;
      padding: 16px;
      font-family: Sora, sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.72);
      transition: background .2s ease, color .2s ease;
    }
    .mobileItem:hover { background: rgba(255,255,255,.05); color: white; }
    .mobileItem span:last-child { font-size: 10px; color: rgba(255,255,255,.28); }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }

    :root {
      --orange: #ff5b3e;
      --hero-green: #0d2c29;
      --ease-premium: cubic-bezier(.22, 1, .36, 1);
      --ease-snap: cubic-bezier(.16, 1, .3, 1);
    }

    .hero {
      position: relative;
      min-height: 80svh;
      height: auto;
      overflow: hidden;
      color: white;
      background: #123230;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -28px;
      background-image: url('./reference.jpg');
      background-size: cover;
      background-position: center;
      filter: blur(9px) saturate(.78) contrast(.95);
      transform: scale(1.06);
      opacity: .9;
      z-index: -5;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,48,46,.82) 0%, rgba(0,45,43,.67) 33%, rgba(7,32,30,.21) 60%, rgba(0,59,57,.28) 100%),
        linear-gradient(0deg, rgba(4,31,29,.53) 0%, rgba(6,31,28,.06) 48%, rgba(1,41,39,.39) 100%);
      z-index: -4;
    }

    .grain {
      position: absolute;
      inset: 0;
      z-index: -3;
      pointer-events: none;
      opacity: .12;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
      mix-blend-mode: soft-light;
    }

    .grid-dots {
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      height: 58%;
      z-index: -2;
      background-image: radial-gradient(circle, rgba(147,238,224,.35) 1px, transparent 1.1px);
      background-size: 8px 8px;
      opacity: .34;
      mask-image: radial-gradient(ellipse at 22% 25%, black 0 35%, transparent 77%);
      -webkit-mask-image: radial-gradient(ellipse at 22% 25%, black 0 35%, transparent 77%);
    }

    .hero-shell {
      width: min(100%, 1480px);
      min-height: 100svh;
      height: auto;
      margin-inline: auto;
      padding: 18px clamp(24px, 3.1vw, 52px) 0;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
    }

    .glass {
      background: rgba(28,65,61,.42);
      backdrop-filter: blur(13px);
      -webkit-backdrop-filter: blur(13px);
    }

    .pill-shadow {
      box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 10px 40px rgba(0,0,0,.14);
    }

    .robot-photo {
      background-image: url('./reference.jpg');
      background-repeat: no-repeat;
      background-size: 745% auto;
      background-position: 4.7% 9.3%;
    }

    .corner-frame::before,
    .corner-frame::after,
    .corner-frame > i::before,
    .corner-frame > i::after {
      content: "";
      position: absolute;
      width: 13px;
      height: 13px;
      border-color: rgba(255,255,255,.72);
      pointer-events: none;
      transition: transform .55s var(--ease-premium), opacity .55s ease;
    }
    .corner-frame::before { left: -10px; top: -10px; border-left: 1px solid; border-top: 1px solid; }
    .corner-frame::after { right: -10px; top: -10px; border-right: 1px solid; border-top: 1px solid; }
    .corner-frame > i::before { left: -10px; bottom: -10px; border-left: 1px solid; border-bottom: 1px solid; }
    .corner-frame > i::after { right: -10px; bottom: -10px; border-right: 1px solid; border-bottom: 1px solid; }

    /* Header / navigation --------------------------------------------------- */
    #siteHeader { pointer-events: none; }
    #siteHeader > * { pointer-events: auto; }

    .site-header {
      position: relative;
      z-index: 50;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .desktop-nav {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: clamp(22px, 2.15vw, 34px);
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.93);
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: color .28s ease, transform .38s var(--ease-premium);
    }
    .nav-link::after {
      content: "";
      position: absolute;
      left: 1px;
      right: 1px;
      bottom: -8px;
      height: 1px;
      background: white;
      transform: scaleX(0);
      transform-origin: center;
      opacity: .75;
      transition: transform .45s var(--ease-premium);
    }
    .nav-link:hover { color: white; transform: translateY(-1px); }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-chevron { transition: transform .42s var(--ease-premium); }
    .nav-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

    .site-brand {
      display: inline-flex;
      align-items: center;
      width: 132px;
    }
    .site-brand img {
      display: block;
      width: 100%;
      height: auto;
    }
    .primary-cta img {
      display: block;
      width: 25px;
      height: 25px;
      object-fit: contain;
    }

    /* Slightly larger, more confident desktop navigation scale. */
    .brand-mark { width:31px !important; height:31px !important; border-radius:8px !important; }
    .brand-word { font-size:18px !important; }
    .desktop-nav > a:first-child { padding:10px 18px !important; }
    .desktop-language { font-size:12px !important; gap:7px !important; }
    .desktop-quote { padding:10px 18px !important; font-size:12px !important; gap:13px !important; }
    .desktop-quote > span { width:30px !important; height:30px !important; }

    .desktop-dropdown {
      position: absolute;
      top: 64px;
      left: 50%;
      width: min(720px, calc(100vw - 48px));
      transform: translate(-50%, -14px) scale(.985);
      transform-origin: top center;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 18px;
      background: rgba(10,43,40,.78);
      backdrop-filter: blur(22px) saturate(1.2);
      -webkit-backdrop-filter: blur(22px) saturate(1.2);
      box-shadow: 0 28px 80px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      filter: blur(7px);
      transition:
        opacity .28s ease,
        transform .5s var(--ease-premium),
        filter .4s var(--ease-premium),
        visibility 0s linear .5s;
      overflow: hidden;
    }
    .desktop-dropdown.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
      filter: blur(0);
      transition-delay: 0s;
    }
    .desktop-dropdown::before {
      content: "";
      position: absolute;
      inset: -60% 58% 35% -12%;
      background: radial-gradient(circle, rgba(255,255,255,.1), transparent 62%);
      pointer-events: none;
    }
    .drop-grid {
      display: grid;
      grid-template-columns: 1.18fr .82fr;
      gap: 10px;
      padding: 10px;
    }
    .drop-primary {
      min-height: 174px;
      padding: 20px;
      border-radius: 13px;
      background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
      border: 1px solid rgba(255,255,255,.08);
    }
    .drop-items { display: grid; gap: 6px; }
    .drop-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 12px;
      font-family: Sora, sans-serif;
      font-size: 11px;
      color: rgba(255,255,255,.77);
      background: rgba(255,255,255,.025);
      transition: transform .38s var(--ease-premium), background .3s ease, color .3s ease;
    }
    .drop-item:hover { transform: translateX(4px); background: rgba(255,255,255,.08); color: white; }

    .mobile-menu-button {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 13px;
      background: rgba(20,63,59,.48);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      place-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    }
    .menu-lines { position: relative; width: 17px; height: 12px; }
    .menu-lines span {
      position: absolute;
      left: 0;
      width: 17px;
      height: 1.5px;
      border-radius: 99px;
      background: white;
      transition: transform .5s var(--ease-premium), top .5s var(--ease-premium), opacity .25s ease;
    }
    .menu-lines span:first-child { top: 2px; }
    .menu-lines span:last-child { top: 9px; width: 12px; right: 0; left: auto; }
    .mobile-menu-button[aria-expanded="true"] .menu-lines span:first-child { top: 5.5px; transform: rotate(45deg); }
    .mobile-menu-button[aria-expanded="true"] .menu-lines span:last-child { top: 5.5px; width: 17px; transform: rotate(-45deg); }

    .mobile-nav-panel {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 58px;
      max-height: 0;
      padding: 0;
      border: 1px solid transparent;
      border-radius: 20px;
      background: rgba(8,38,35,.82);
      backdrop-filter: blur(26px) saturate(1.25);
      -webkit-backdrop-filter: blur(26px) saturate(1.25);
      box-shadow: 0 30px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.07);
      overflow: hidden;
      opacity: 0;
      transform: translateY(-16px) scale(.985);
      filter: blur(7px);
      transform-origin: top center;
      transition:
        max-height .75s var(--ease-premium),
        padding .55s var(--ease-premium),
        opacity .28s ease,
        transform .58s var(--ease-premium),
        filter .45s var(--ease-premium),
        border-color .35s ease;
    }
    .mobile-nav-panel.is-open {
      max-height: 520px;
      padding: 10px;
      border-color: rgba(255,255,255,.14);
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 54px;
      padding: 0 14px;
      border-radius: 13px;
      color: rgba(255,255,255,.88);
      font-family: Sora, sans-serif;
      font-size: 13px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity .35s ease, transform .48s var(--ease-premium), background .3s ease;
    }
    .mobile-nav-panel.is-open .mobile-nav-link { opacity: 1; transform: translateY(0); }
    .mobile-nav-panel.is-open .mobile-nav-link:nth-child(1) { transition-delay: .07s; }
    .mobile-nav-panel.is-open .mobile-nav-link:nth-child(2) { transition-delay: .11s; }
    .mobile-nav-panel.is-open .mobile-nav-link:nth-child(3) { transition-delay: .15s; }
    .mobile-nav-panel.is-open .mobile-nav-link:nth-child(4) { transition-delay: .19s; }
    .mobile-nav-panel.is-open .mobile-nav-link:nth-child(5) { transition-delay: .23s; }
    .mobile-nav-link:hover { background: rgba(255,255,255,.07); }
    .mobile-nav-footer {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      margin-top: 6px;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,.09);
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity .35s .25s ease, transform .5s .25s var(--ease-premium);
    }
    .mobile-nav-panel.is-open .mobile-nav-footer { opacity: 1; transform: translateY(0); }

    /* Hero layout --------------------------------------------------------- */
    .main-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
      gap: clamp(28px, 4vw, 72px);
      min-height: 0;
      height: auto;
      padding-top: clamp(12px, 2vh, 22px);
      padding-bottom: clamp(16px, 2.3vh, 26px);
      align-items: center;
    }

    .left-column {
      position: relative;
      z-index: 20;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      align-self: center;
      transform: translateY(-1%);
    }

    .role-strip {
      position: relative;
      width: min(100%, 430px);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: start;
      column-gap: 0;
      padding: 10px 8px 4px;
      margin-left: 3px;
      isolation: isolate;
    }

    /* The decorative <i> exists only to draw the lower corner brackets.
       It must be removed from grid flow or it steals the first grid cell,
       pushing Delivery onto a second row. */
    .role-strip > i {
      position: absolute;
      inset: 0;
      display: block;
      pointer-events: none;
    }

    .role-strip::before,
    .role-strip::after,
    .role-strip > i::before,
    .role-strip > i::after {
      width: 16px;
      height: 16px;
      border-color: rgba(255,255,255,.82);
    }

    .role-item {
      position: relative;
      min-width: 0;
      width: 100%;
      padding: 0 15px 7px;
      outline: none;
      opacity: 0;
      transform: translateY(12px);
      animation: roleReveal .72s var(--ease-premium) forwards;
    }
    .role-item:nth-of-type(2) { animation-delay: .08s; }
    .role-item:nth-of-type(3) { animation-delay: .16s; }

    .role-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 17px;
      width: 1px;
      height: 54px;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,.72) 18%, rgba(255,255,255,.72) 82%, transparent);
      opacity: .72;
    }

    .role-image-shell {
      position: relative;
      width: 100%;
      aspect-ratio: 1.34 / 1;
      overflow: hidden;
      border-radius: 11px;
      background: rgba(255,255,255,.035);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 34px rgba(0,0,0,.12);
      transform: translateZ(0);
      transition: transform .6s var(--ease-premium), border-color .35s ease, box-shadow .6s var(--ease-premium);
    }

    .role-image-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4,31,29,.02) 35%, rgba(4,31,29,.62) 100%),
        linear-gradient(120deg, rgba(255,255,255,.12), transparent 34%);
      pointer-events: none;
      transition: opacity .4s ease;
    }

    .role-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(.78) contrast(1.03);
      transform: scale(1.035);
      transition: transform .8s var(--ease-premium), filter .55s ease;
    }


    .role-label {
      margin-top: 10px;
      text-align: center;
      font-family: Sora, sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .01em;
      color: rgba(255,255,255,.92);
      transition: color .3s ease, transform .45s var(--ease-premium);
    }

    .role-item:hover .role-image-shell {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,.43);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 44px rgba(0,0,0,.18);
    }
    .role-item:hover .role-image {
      transform: scale(1.095);
      filter: saturate(.98) contrast(1.04);
    }
    .role-item:hover .role-label {
      color: #fff;
      transform: translateY(1px);
    }

    @keyframes roleReveal {
      to { opacity: 1; transform: translateY(0); }
    }

    .left-copy-block {
      margin-top: clamp(24px, 3.4vh, 38px);
      padding-bottom: 18px;
    }
    .eyebrow {
      margin-bottom: 13px;
      font-family: Sora, sans-serif;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 1.25;
      letter-spacing: -.01em;
      color: rgba(255,255,255,.84);
    }
    .headline {
      font-family: Sora, sans-serif;
      font-size: clamp(58px, 5.55vw, 76px);
      font-weight: 600;
      text-transform: uppercase;
      line-height: .9;
      letter-spacing: -.065em;
      color: white;
      text-wrap: balance;
    }
    .cta-row {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 25px;
      flex-wrap: wrap;
    }

    /* Interactive diagonal feature system -------------------------------- */
    .right-card {
      --diag-start-x: 4%;
      --diag-start-y: 96%;
      --diag-end-x: 94%;
      --diag-end-y: 1%;
      position: relative;
      width: 100%;
      height: clamp(535px, 70vh, 650px);
      margin-top: 2px;
      border-radius: 30px;
      transition: border-color .4s ease, box-shadow .55s var(--ease-premium), transform .55s var(--ease-premium);
      touch-action: pan-y;
      isolation: isolate;
    }
    .right-card:hover {
      border-color: rgba(255,255,255,.39);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.11),
        0 34px 90px rgba(0,0,0,.17);
      transform: translateY(-2px);
    }
    .right-card:hover::before,
    .right-card:hover > i::before { transform: translate(-3px, -3px); }
    .right-card:hover::after,
    .right-card:hover > i::after { transform: translate(3px, -3px); }
    .drag-cursor { cursor: grab; }
    .drag-cursor:active { cursor: grabbing; }

    .commerce-panel {
      width: min(100%, 933px);
      height: 100%;
      justify-self: center;
      align-self: center;
      overflow: hidden;
      border-radius: 22px;
      background: transparent;
      display: grid;
      grid-template-columns: minmax(150px, .42fr) minmax(0, .58fr);
      align-items: center;
      gap: clamp(12px, 2vw, 28px);
      padding: clamp(18px, 2vw, 30px);
    }
    .commerce-panel > i {
      position: absolute;
      inset: 0;
      display: block;
      pointer-events: none;
    }
    .commerce-panel .role-strip {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 14px 16px;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, minmax(0, 1fr));
      align-items: center;
    }
    .commerce-panel .role-item { padding: 0; align-self: center; }
    .commerce-panel .role-item:not(:last-child)::after { display: none; }
    .commerce-panel .role-image-shell { max-width: 138px; margin-inline: auto; }
    .commerce-panel .role-label { font-size: 10px; }
    .commerce-panel-image {
      display: block;
      width: 100%;
      height: 100%;
      min-width: 0;
      object-fit: cover;
      object-position: center;
    }

    .feature-viewport {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 22px;
      background:
        linear-gradient(145deg, rgba(11,49,46,.96), rgba(11,39,37,.89)),
        #123c38;
      isolation: isolate;
    }
    .feature-viewport::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .image-stage {
      position: absolute;
      inset: 0;
      z-index: 2;
      overflow: hidden;
      clip-path: polygon(3.6% 95.5%, 93.8% 0, 100% 0, 100% 100%, 0 100%);
      background: #123b38;
    }
    .image-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 8;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(6,29,27,.03) 0%, rgba(6,29,27,.04) 52%, rgba(3,20,19,.20) 100%),
        linear-gradient(90deg, rgba(6,39,36,.13), transparent 35%);
    }

    .feature-image {
      position: absolute;
      inset: -2%;
      width: 104%;
      height: 104%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transform: scale(1.07) translate3d(4%, 2%, 0);
      filter: saturate(.88) contrast(.98) brightness(.88) blur(2px);
      will-change: transform, opacity, filter;
      z-index: 1;
    }
    .feature-image.is-current {
      opacity: 1;
      transform: scale(1.02) translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
      filter: saturate(.9) contrast(1.02) brightness(.9) blur(0);
      z-index: 2;
    }
    .feature-image.enter-next { animation: diagonalImageInNext 1.05s var(--ease-premium) both; z-index:4; }
    .feature-image.exit-next  { animation: diagonalImageOutNext 1.05s var(--ease-premium) both; z-index:3; }
    .feature-image.enter-prev { animation: diagonalImageInPrev 1.05s var(--ease-premium) both; z-index:4; }
    .feature-image.exit-prev  { animation: diagonalImageOutPrev 1.05s var(--ease-premium) both; z-index:3; }

    @keyframes diagonalImageInNext {
      0%   { opacity:0; transform:scale(1.12) translate3d(9%,5%,0); filter:saturate(.55) contrast(.9) brightness(.72) blur(12px); }
      42%  { opacity:.88; filter:saturate(.82) contrast(.98) brightness(.86) blur(3px); }
      100% { opacity:1; transform:scale(1.02) translate3d(0,0,0); filter:saturate(.9) contrast(1.02) brightness(.9) blur(0); }
    }
    @keyframes diagonalImageOutNext {
      0%   { opacity:1; transform:scale(1.02) translate3d(0,0,0); filter:saturate(.9) contrast(1.02) brightness(.9) blur(0); }
      100% { opacity:0; transform:scale(.98) translate3d(-7%,-4%,0); filter:saturate(.7) contrast(.92) brightness(.72) blur(9px); }
    }
    @keyframes diagonalImageInPrev {
      0%   { opacity:0; transform:scale(1.12) translate3d(-8%,-4%,0); filter:saturate(.55) contrast(.9) brightness(.72) blur(12px); }
      42%  { opacity:.88; filter:saturate(.82) contrast(.98) brightness(.86) blur(3px); }
      100% { opacity:1; transform:scale(1.02) translate3d(0,0,0); filter:saturate(.9) contrast(1.02) brightness(.9) blur(0); }
    }
    @keyframes diagonalImageOutPrev {
      0%   { opacity:1; transform:scale(1.02) translate3d(0,0,0); filter:saturate(.9) contrast(1.02) brightness(.9) blur(0); }
      100% { opacity:0; transform:scale(.98) translate3d(7%,4%,0); filter:saturate(.7) contrast(.92) brightness(.72) blur(9px); }
    }

    .diagonal-overlay {
      position: absolute;
      inset: 0;
      z-index: 13;
      width: 100%;
      height: 100%;
      overflow: visible;
      pointer-events: none;
    }
    .diagonal-stroke {
      stroke: rgba(238,252,249,.78);
      stroke-width: .42;
      vector-effect: non-scaling-stroke;
      filter: drop-shadow(0 0 7px rgba(204,255,246,.12));
      transition: stroke .4s ease, opacity .4s ease;
    }
    .diagonal-ghost {
      stroke: rgba(255,255,255,.10);
      stroke-width: 1.5;
      vector-effect: non-scaling-stroke;
    }
    .right-card:hover .diagonal-stroke { stroke: rgba(255,255,255,.94); }

    .diagonal-sweep {
      position: absolute;
      left: -14%;
      bottom: 0;
      z-index: 14;
      width: 124%;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 35%, rgba(236,255,251,.98) 52%, rgba(255,255,255,.1) 70%, transparent 100%);
      box-shadow: 0 0 20px rgba(220,255,249,.26);
      opacity: 0;
      transform-origin: left center;
      transform: rotate(-46.3deg) translateX(-16%);
      pointer-events: none;
    }
    .right-card.is-transitioning .diagonal-sweep { animation: diagonalSweep 1.05s var(--ease-premium) both; }
    @keyframes diagonalSweep {
      0%   { opacity:0; transform:rotate(-46.3deg) translateX(-18%) scaleX(.25); }
      24%  { opacity:.95; }
      70%  { opacity:.38; }
      100% { opacity:0; transform:rotate(-46.3deg) translateX(65%) scaleX(.88); }
    }

    .feature-copy-wrap {
      position: absolute;
      z-index: 11;
      left: clamp(28px, 5vw, 54px);
      top: clamp(48px, 8vh, 78px);
      width: min(48%, 300px);
      pointer-events: none;
    }
    .feature-copy {
      will-change: transform, opacity, filter;
    }
    .feature-copy.copy-out-next { animation: copyBladeOutNext .42s cubic-bezier(.4,0,1,1) both; }
    .feature-copy.copy-in-next  { animation: copyBladeInNext .72s .12s var(--ease-premium) both; }
    .feature-copy.copy-out-prev { animation: copyBladeOutPrev .42s cubic-bezier(.4,0,1,1) both; }
    .feature-copy.copy-in-prev  { animation: copyBladeInPrev .72s .12s var(--ease-premium) both; }
    @keyframes copyBladeOutNext { to { opacity:0; transform:translate3d(-22px,-14px,0) scale(.98); filter:blur(8px); } }
    @keyframes copyBladeInNext  { 0%{opacity:0;transform:translate3d(28px,20px,0) scale(.97);filter:blur(10px)} 100%{opacity:1;transform:translate3d(0,0,0) scale(1);filter:blur(0)} }
    @keyframes copyBladeOutPrev { to { opacity:0; transform:translate3d(22px,14px,0) scale(.98); filter:blur(8px); } }
    @keyframes copyBladeInPrev  { 0%{opacity:0;transform:translate3d(-28px,-20px,0) scale(.97);filter:blur(10px)} 100%{opacity:1;transform:translate3d(0,0,0) scale(1);filter:blur(0)} }

    .feature-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: Sora, sans-serif;
      font-size: 10px;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: .035em;
      text-transform: uppercase;
      color: rgba(255,255,255,.74);
    }
    .feature-kicker-dot {
      width: 7px;
      height: 7px;
      flex: 0 0 7px;
      border-radius: 50%;
      background: #ff6047;
      box-shadow: 0 0 0 6px rgba(255,96,71,.09), 0 0 18px rgba(255,96,71,.2);
    }
    .feature-title {
      margin-top: 18px;
      font-family: Sora, sans-serif;
      font-size: clamp(24px, 2.15vw, 34px);
      font-weight: 600;
      line-height: 1.02;
      letter-spacing: -.055em;
      text-transform: uppercase;
      color: white;
    }
    .feature-description {
      margin-top: 16px;
      max-width: 280px;
      font-family: Inter, sans-serif;
      font-size: 11.5px;
      line-height: 1.68;
      color: rgba(255,255,255,.61);
    }
    .feature-mini-label {
      margin-top: 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: Sora, sans-serif;
      font-size: 9px;
      font-weight: 500;
      color: rgba(255,255,255,.47);
    }
    .feature-mini-label::before {
      content: "";
      width: 22px;
      height: 1px;
      background: rgba(255,255,255,.32);
    }

    .carousel-nav {
      position: absolute;
      z-index: 18;
      right: 22px;
      bottom: 56px;
      display: flex;
      gap: 8px;
      opacity: .28;
      transform: translateY(4px);
      transition: opacity .32s ease, transform .42s var(--ease-premium);
    }
    .right-card:hover .carousel-nav,
    .right-card:focus-within .carousel-nav { opacity:1; transform:translateY(0); }
    .carousel-nav button {
      position: relative;
      display: grid;
      width: 35px;
      height: 35px;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      background: rgba(9,38,35,.48);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      color: white;
      transition: transform .28s var(--ease-premium), background .3s ease, border-color .3s ease;
    }
    .carousel-nav button:last-child { background:white; color:#102421; border-color:white; }
    .carousel-nav button:hover { transform:translateY(-2px) scale(1.045); }
    .carousel-nav button:active { transform:scale(.92); }
    .carousel-nav svg { transition:transform .4s var(--ease-premium); }
    .carousel-nav button:first-child:hover svg { transform:translateX(-2px); }
    .carousel-nav button:last-child:hover svg { transform:translateX(2px); }

    .carousel-footer {
      position: absolute;
      z-index: 17;
      left: 0;
      right: 0;
      bottom: 19px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 24px;
      padding-inline: clamp(28px, 4vw, 45px);
      pointer-events: none;
    }
    .slide-progress {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      pointer-events: auto;
    }
    .progress-segment {
      position: relative;
      height: 3px;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.20);
      cursor: pointer;
    }
    .progress-segment::after {
      content: "";
      position: absolute;
      inset: -8px 0;
    }
    .progress-segment > span {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: inherit;
      background: rgba(255,255,255,.94);
      transform: scaleX(0);
      transform-origin: left center;
    }
    .progress-segment.is-complete > span { transform: scaleX(1); }
    .progress-segment.is-active > span { animation: activeProgress 6.4s linear forwards; }
    .right-card:hover .progress-segment.is-active > span,
    .right-card:focus-within .progress-segment.is-active > span { animation-play-state: paused; }
    @keyframes activeProgress { from { transform:scaleX(0); } to { transform:scaleX(1); } }
    .carousel-counter {
      min-width: 42px;
      text-align: right;
      font-family: Sora, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      color: rgba(255,255,255,.92);
      font-variant-numeric: tabular-nums;
    }
    .counter-pop { animation: counterPop .5s var(--ease-snap) both; }
    @keyframes counterPop { 0%{opacity:0;transform:translateY(10px) rotate(4deg)} 100%{opacity:1;transform:translateY(0) rotate(0)} }

    .corner-status {
      position: absolute;
      right: 24px;
      top: 22px;
      z-index: 17;
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: Sora, sans-serif;
      font-size: 8.5px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255,255,255,.48);
      opacity: 0;
      transform: translateY(-5px);
      transition: opacity .35s ease, transform .45s var(--ease-premium);
    }
    .right-card:hover .corner-status { opacity:1; transform:translateY(0); }
    .corner-status span:first-child {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #ff6047;
      box-shadow: 0 0 0 4px rgba(255,96,71,.08);
    }


    /* Trusted-by infinite rail — integrated into hero -------------------- */
    .trusted-section {
      position: relative;
      min-width: 0;
      overflow: hidden;
      color: white;
      background: transparent;
      isolation: isolate;
    }
    .trusted-section::before { display: none; }
    .trusted-shell {
      width: 100%;
      min-height: 104px;
      margin-inline: auto;
      padding: 14px 0 18px;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      gap: 22px;
    }
    .trusted-heading {
      display: flex;
      align-items: center;
      gap: 18px;
      flex: 0 0 auto;
      white-space: nowrap;
      font-family: Sora, sans-serif;
      font-size: clamp(13px, 1.05vw, 16px);
      font-weight: 600;
      letter-spacing: -.025em;
      color: rgba(255,255,255,.92);
    }
    .trusted-heading::after {
      content: "";
      display: block;
      width: 1px;
      height: 46px;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,.40) 16%, rgba(255,255,255,.40) 84%, transparent);
    }
    .trusted-marquee {
      position: relative;
      min-width: 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0, black 2.5%, black 97.5%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, black 2.5%, black 97.5%, transparent 100%);
    }
    .trusted-track {
      --marquee-gap: 30px;
      display: flex;
      width: max-content;
      gap: var(--marquee-gap);
      will-change: transform;
      animation: trustedMarquee 30s linear infinite;
      transform: translate3d(0,0,0);
    }
    .trusted-group {
      display: flex;
      flex: none;
      gap: var(--marquee-gap);
      padding-right: var(--marquee-gap);
    }
    @keyframes trustedMarquee {
      from { transform: translate3d(0,0,0); }
      to { transform: translate3d(-50%,0,0); }
    }
    .trusted-card {
      position: relative;
      flex: 0 0 auto;
      width: clamp(205px, 14.7vw, 235px);
      min-height: 62px;
      display: grid;
      grid-template-columns: 88px minmax(0,1fr);
      align-items: center;
      gap: 13px;
      padding: 0;
      overflow: visible;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .trusted-card::after { display:none; }
    .trusted-card:hover { transform:none; background:transparent; }
    .trusted-logo {
      position: relative;
      z-index: 1;
      width: 88px;
      height: 58px;
      border-radius: 12px;
      display: block;
      overflow: hidden;
      border: 0;
      background: rgba(255,255,255,.04);
      box-shadow: 0 10px 28px rgba(0,0,0,.12);
      transform: translateZ(0);
    }
    .trusted-logo::after {
      content: "";
      position:absolute;
      inset:0;
      pointer-events:none;
      background: linear-gradient(135deg, rgba(255,255,255,.10), transparent 35%, rgba(3,27,25,.10));
    }
    .trusted-logo img {
      width:100%;
      height:100%;
      display:block;
      object-fit:cover;
      filter:saturate(.72) contrast(1.03) brightness(.88);
      transform:scale(1.035);
      transition:transform .75s var(--ease-premium), filter .55s ease;
    }
    .trusted-card:hover .trusted-logo img {
      transform:scale(1.11);
      filter:saturate(.96) contrast(1.04) brightness(.94);
    }
    .trusted-name {
      position: relative;
      z-index: 1;
      min-width: 0;
      font-family: Sora, sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: -.025em;
      color: rgba(255,255,255,.88);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .trusted-meta {
      margin-top: 4px;
      font-size: 8.5px;
      line-height: 1.2;
      color: rgba(255,255,255,.40);
      text-transform: uppercase;
      letter-spacing: .09em;
    }

    /* Responsive ---------------------------------------------------------- */
    @media (max-width: 1120px) {
      .desktop-nav { gap: 17px; }
      .main-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); gap: 40px; }
      .headline { font-size: clamp(56px, 6vw, 73px); }
      .role-strip { width:min(100%, 400px); }
      .role-item { padding-inline:12px; }
      .left-copy-block { margin-top: clamp(22px, 3.2vh, 34px); }
      .right-card { height: clamp(510px, 66vh, 610px); }
    }

    @media (max-width: 920px) {
      .hero { height:auto; max-height:none; min-height:100svh; overflow:hidden; }
      .hero-shell {
        padding-top: 20px;
        padding-bottom: 44px;
        padding-left: max(30px, env(safe-area-inset-left));
        padding-right: max(30px, env(safe-area-inset-right));
      }
      .desktop-nav, .desktop-language, .desktop-quote { display:none !important; }
      .mobile-menu-button, .mobile-nav-panel { display:grid; }
      .mobile-nav-panel { display:block; }
      .site-header { height:54px; }
      .brand-mark { width:30px !important; height:30px !important; border-radius:8px !important; }
      .brand-word { font-size:17px !important; }
      .mobile-menu-button { width:44px; height:44px; border-radius:13px; }
      .mobile-nav-panel { top:66px; }

      .main-grid {
        display:grid;
        grid-template-columns:1fr;
        gap: 42px;
        height:auto;
        padding-top: 34px;
        padding-bottom: 10px;
        align-items:start;
      }
      .left-column { display:block; transform:none; align-self:auto; }
      .role-strip { width:min(100%, 520px); margin-left:0; }
      .role-item { padding-inline:14px; }
      .left-copy-block { margin-top:30px; padding-bottom:0; }
      .eyebrow { margin-bottom:14px; }
      .headline {
        max-width:100%;
        font-size:clamp(42px, 8.5vw, 68px);
        line-height:.96;
        letter-spacing:-.045em;
        text-wrap:initial;
        overflow-wrap:anywhere;
      }
      .cta-row { margin-top:28px; gap:24px; }
      .right-card { width:min(100%, 690px); height:620px; margin:4px auto 0; }
      .feature-copy-wrap { width:min(45%, 285px); left:38px; top:62px; }
    }

    @media (max-width: 640px) {
      .hero-shell {
        padding-top: 18px;
        padding-bottom: 38px;
        padding-left: max(22px, env(safe-area-inset-left));
        padding-right: max(22px, env(safe-area-inset-right));
      }
      .grid-dots { width:100%; height:46%; opacity:.22; }
      .site-header { height:52px; }
      .brand-word { font-size:17px !important; }
      .brand-mark { width:30px !important; height:30px !important; }
      .mobile-menu-button { width:44px; height:44px; border-radius:13px; }
      .mobile-nav-panel { top:64px; border-radius:18px; }
      .mobile-nav-panel.is-open { padding:12px; }
      .mobile-nav-link { min-height:58px; padding-inline:16px; font-size:14px; }

      .main-grid { gap:38px; padding-top:32px; padding-bottom:8px; }
      .main-grid.py-\[80px\] { padding-top:32px !important; padding-bottom:8px !important; }
      .role-strip { width:100%; margin-left:0; padding:10px 4px 6px; }
      .role-item { padding-inline:8px; }
      .role-item:not(:last-child)::after { top:13px; height:43px; }
      .role-image-shell { border-radius:9px; }
      .role-label { margin-top:9px; font-size:10px; }
      .left-copy-block { margin-top:16px; }
      .left-copy-block.py-\[50px\] { padding-top:18px !important; padding-bottom:0 !important; }
      .eyebrow { font-size:10.5px; margin-bottom:12px; line-height:1.32; }
      .headline { font-size:clamp(45px, 13.6vw, 68px); line-height:.96; letter-spacing:-.045em; text-wrap:initial; overflow-wrap:normal; word-break:normal; }
      .cta-row {
        display:grid;
        grid-template-columns:max-content minmax(0, 1fr);
        align-items:start;
        gap:12px;
        margin-top:26px;
      }
      .primary-cta { width:max-content; height:52px !important; }
      .trust-block { margin-left:0; width:auto; gap:6px; }

      .right-card { height:clamp(510px, 122vw, 620px); padding:8px; border-radius:23px; margin-top:2px; }
      .feature-viewport { border-radius:17px; }
      .feature-copy-wrap { left:24px; top:44px; width:46%; }
      .feature-title { margin-top:13px; font-size:clamp(21px, 6vw, 29px); }
      .feature-description { margin-top:12px; font-size:10.5px; line-height:1.58; }
      .feature-mini-label { margin-top:12px; font-size:8px; }
      .carousel-footer { bottom:17px; padding-inline:24px; gap:17px; }
      .slide-progress { gap:9px; }
      .carousel-counter { font-size:13px; }
      .carousel-nav { right:18px; bottom:47px; opacity:.72; }
      .carousel-nav button { width:32px; height:32px; }
      .corner-status { display:none; }
    }

    @media (max-width: 430px) {
      .hero-shell {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
      }
      .main-grid { gap:34px; padding-top:28px; }
      .role-strip { padding-top:8px; }
      .role-item { padding-inline:6px; }
      .role-item:not(:last-child)::after { top:11px; height:38px; }
      .role-label { font-size:9.5px; }
      .left-copy-block { margin-top:26px; }
      .headline { font-size:clamp(40px, 12.3vw, 48px); line-height:.95; overflow-wrap:normal; word-break:normal; }
      .cta-row { gap:10px; margin-top:25px; }
      .primary-cta { width:max-content; }
      .trust-block { margin-left:0; width:auto; gap:5px; }
      .right-card { height:550px; }
      .feature-copy-wrap { left:21px; top:39px; width:48%; }
      .feature-kicker { font-size:8px; gap:7px; }
      .feature-kicker-dot { width:5px; height:5px; flex-basis:5px; box-shadow:0 0 0 4px rgba(255,96,71,.08); }
      .feature-title { font-size:20px; }
      .feature-description { font-size:9.8px; line-height:1.55; }
      .carousel-footer { padding-inline:20px; }
    }

    @media (max-width: 360px) {
      .hero-shell {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
      }
      .role-item { padding-inline:5px; }
      .role-label { font-size:9px; }
      .headline { font-size:42px; }
      .right-card { height:500px; }
      .feature-copy-wrap { left:18px; top:34px; width:49%; }
      .feature-title { font-size:18px; }
      .feature-description { font-size:9.2px; }
      .carousel-footer { padding-inline:18px; gap:13px; }
      .slide-progress { gap:7px; }
    }

    @media (max-height: 760px) and (min-width: 921px) {
      .hero { min-height:680px; }
      .main-grid { padding-top:10px; }
      .left-column { transform:none; }
      .left-copy-block { margin-top:26px; }
      .right-card { height:550px; }
      .headline { font-size:68px; }
    }



    @media (max-width: 920px) {
      .trusted-shell {
        min-height: 98px;
        padding: 14px 0 18px;
        grid-template-columns: auto minmax(0,1fr);
        gap: 18px;
      }
      .trusted-card { width: 210px; grid-template-columns: 82px minmax(0,1fr); }
      .trusted-logo { width:82px; height:54px; }
      .trusted-heading::after { height: 42px; }
      .trusted-track { --marquee-gap: 24px; animation-duration: 27s; }
    }

    @media (max-width: 640px) {
      .trusted-shell {
        min-height: 0;
        padding: 8px 0 22px;
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .trusted-heading { gap: 12px; }
      .trusted-heading::after { width: 42px; height: 1px; }
      .trusted-marquee {
        width: 100%;
        margin-left: 0;
        mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
      }
      .trusted-track { --marquee-gap: 20px; animation-duration: 24s; }
      .trusted-card { width: 190px; grid-template-columns: 74px minmax(0,1fr); gap:11px; }
      .trusted-logo { width:74px; height:50px; border-radius:10px; }
      .trusted-name { font-size:11px; }
      .trusted-meta { font-size:8px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior:auto !important;
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
      }
      .feature-image { transform:none !important; }
      .trusted-track { animation: none !important; transform: none !important; }
    }

    /* Conversation-led growth section ----------------------------------- */
    .growth-section {
      position: relative;
      overflow: hidden;
      background: #050706;
      color: #fff;
      isolation: isolate;
    }
    .growth-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 76% 42%, rgba(57,119,255,.11), transparent 31%),
        radial-gradient(circle at 19% 30%, rgba(255,91,62,.055), transparent 25%);
      z-index: -1;
    }
    .growth-shell {
      width: min(100% - 48px, 1320px);
      margin-inline: auto;
      padding: clamp(92px, 9vw, 150px) 0;
      display: grid;
      grid-template-columns: minmax(0, .96fr) minmax(460px, .82fr);
      align-items: center;
      gap: clamp(60px, 7.2vw, 118px);
    }
    .growth-copy { max-width: 680px; }
    .growth-title {
      margin: 0;
      max-width: 650px;
      font-family: Sora, sans-serif;
      font-size: clamp(34px, 3.1vw, 50px);
      line-height: 1.12;
      letter-spacing: -.045em;
      font-weight: 600;
      text-wrap: balance;
    }
    .growth-intro {
      margin: 22px 0 0;
      max-width: 650px;
      color: rgba(255,255,255,.72);
      font-size: clamp(16px, 1.35vw, 20px);
      line-height: 1.55;
    }
    .growth-steps {
      position: relative;
      margin-top: 36px;
      padding-left: 34px;
    }
    .growth-rail {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      overflow: hidden;
    }
    .growth-rail-fill {
      position: absolute;
      inset: 0 0 auto;
      height: 33.333%;
      border-radius: inherit;
      background: linear-gradient(180deg, #ff583f, #ff583f);
      box-shadow: 0 0 22px rgba(58,124,255,.42);
      transform: translateY(calc(var(--step, 0) * 100%));
      transition: transform .7s var(--ease-premium);
    }
    .growth-step {
      appearance: none;
      display: block;
      width: 100%;
      padding: 17px 0 18px;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,.29);
      text-align: left;
      cursor: pointer;
      transition: color .42s ease, transform .5s var(--ease-premium);
    }
    .growth-step:hover { color: rgba(255,255,255,.62); }
    .growth-step.is-active { color: #fff; }
    .growth-step-title {
      display: block;
      font-family: Sora, sans-serif;
      font-size: clamp(18px, 1.45vw, 23px);
      line-height: 1.35;
      letter-spacing: -.026em;
      font-weight: 600;
    }
    .growth-step-body {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transform: translateY(-7px);
      transition:
        grid-template-rows .58s var(--ease-premium),
        opacity .34s ease,
        transform .55s var(--ease-premium);
    }
    .growth-step-body > div { overflow: hidden; }
    .growth-step-body p {
      margin: 18px 0 0;
      max-width: 650px;
      color: rgba(255,255,255,.69);
      font-size: clamp(15px, 1.22vw, 18px);
      line-height: 1.58;
    }
    .growth-step-body strong { color: rgba(255,255,255,.94); font-weight: 600; }
    .growth-step.is-active .growth-step-body {
      grid-template-rows: 1fr;
      opacity: 1;
      transform: translateY(0);
    }

    .growth-visual-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1.02;
      min-height: 520px;
    }
    .growth-visual {
      position: absolute;
      inset: 0;
      border-radius: 25px;
      overflow: hidden;
      opacity: 0;
      transform: translate3d(30px, 0, 0) scale(.975);
      filter: blur(12px);
      pointer-events: none;
      transition:
        opacity .46s ease,
        transform .78s var(--ease-premium),
        filter .55s var(--ease-premium);
    }
    .growth-visual.is-active {
      opacity: 1;
      transform: translate3d(0,0,0) scale(1);
      filter: blur(0);
      pointer-events: auto;
      z-index: 2;
    }
    .visual-blue {
      background:
        radial-gradient(circle at 13% 8%, rgba(255,255,255,.98), rgba(244,248,255,.78) 18%, transparent 43%),
        radial-gradient(circle at 60% 46%, #082e2b, transparent 46%),
        linear-gradient(135deg, #eaf1ff 4%, #082e2b 45%, #082e2b 76%, #082e2b 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.48), 0 30px 90px rgba(0,0,0,.28);
    }
    .visual-violet {
      background:
        radial-gradient(circle at 13% 8%, rgba(255,255,255,.94), rgba(245,241,255,.74) 18%, transparent 42%),
        radial-gradient(circle at 65% 42%, rgba(133,91,255,.82), transparent 44%),
        linear-gradient(135deg, #f1ecff 0%, #9d82ff 42%, #4930bb 70%, #18152d 100%);
    }
    .visual-teal {
      background:
        radial-gradient(circle at 12% 8%, rgba(255,255,255,.94), rgba(231,255,250,.72) 18%, transparent 42%),
        radial-gradient(circle at 66% 48%, rgba(26,183,160,.82), transparent 46%),
        linear-gradient(135deg, #e8fff9 0%, #69d5c3 42%, #13786e 72%, #102a29 100%);
    }
    .visual-grid {
      position: absolute;
      inset: 0;
      opacity: .22;
      background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 74%, transparent);
      -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 74%, transparent);
    }
    .ui-window {
      position: absolute;
      left: 9%;
      right: 14%;
      top: 9%;
      height: 64%;
      border-radius: 24px;
      padding: 22px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: 0 20px 55px rgba(34,59,103,.18), inset 0 1px 0 rgba(255,255,255,.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .chat-stack { display: grid; gap: 13px; }
    .chat-row { display: flex; align-items: center; gap: 9px; }
    .chat-row.is-right { justify-content: flex-end; }
    .avatar-mini {
      width: 29px;
      height: 29px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: linear-gradient(140deg, #9d7969, #ecd2bf 46%, #7c4f3c);
      border: 2px solid rgba(255,255,255,.88);
      box-shadow: 0 3px 10px rgba(0,0,0,.12);
    }
    .avatar-mini.alt { background: linear-gradient(140deg, #182b47, #6a8ba3 45%, #d6a682); }
    .chat-bubble {
      max-width: 81%;
      padding: 9px 13px;
      border-radius: 10px;
      background: rgba(223,223,223,.92);
      color: #27303b;
      font-size: clamp(12px, 1.02vw, 15px);
      line-height: 1.25;
      box-shadow: 0 5px 18px rgba(14,40,81,.055);
    }
    .chat-row.is-right .chat-bubble { background: rgba(220,233,255,.96); }
    .call-card {
      position: absolute;
      right: 6%;
      bottom: 10%;
      width: 53%;
      min-width: 260px;
      padding: 11px 13px 14px;
      border-radius: 15px;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 24px 55px rgba(18,55,126,.29), inset 0 1px 0 #fff;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      color: #33404e;
    }
    .call-top { display:flex; align-items:center; justify-content:space-between; gap:12px; color:#738090; font-size:14px; font-weight:600; }
    .call-chip { padding:5px 9px; border-radius:8px; background:#e7f1ff; color:#2879e7; }
    .call-person { display:flex; gap:11px; align-items:center; padding:15px 8px; }
    .call-icon {
      width: 27px; height: 27px; border-radius: 9px; display:grid; place-items:center;
      background:#def8e4; color:#1cab4c; font-weight:700;
    }
    .call-name { font-size:16px; line-height:1.15; font-weight:600; }
    .call-number { margin-top:4px; color:#7d8792; font-size:14px; }
    .call-end { height:34px; border-radius:9px; background:linear-gradient(90deg,#ff2222,#ff2d35 46%,#7250c4); color:white; display:grid; place-items:center; font-weight:500; }

    /* Convert visual */
    .dashboard-card {
      position:absolute;
      left:9%; right:9%; top:10%; bottom:10%;
      border-radius:24px;
      padding:20px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(255,255,255,.76);
      box-shadow:0 28px 60px rgba(55,30,127,.24);
      color:#22263a;
      backdrop-filter:blur(15px);
      -webkit-backdrop-filter:blur(15px);
    }
    .dash-header { display:flex; align-items:center; justify-content:space-between; gap:16px; }
    .dash-eyebrow { color:#777b92; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; }
    .dash-title { margin-top:4px; font:600 19px/1.2 Sora,sans-serif; }
    .ai-pill { padding:7px 10px; border-radius:999px; background:#f0ebff; color:#6d4be4; font-size:11px; font-weight:700; }
    .metric-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-top:18px; }
    .metric { padding:14px; border-radius:13px; background:#f6f5fb; }
    .metric small { color:#85879a; font-size:10px; }
    .metric strong { display:block; margin-top:6px; font:600 20px/1 Sora,sans-serif; }
    .lead-card { margin-top:13px; padding:15px; border-radius:15px; background:#fff; box-shadow:0 8px 28px rgba(44,35,84,.08); }
    .lead-head { display:flex; justify-content:space-between; gap:12px; align-items:center; }
    .lead-person { display:flex; gap:10px; align-items:center; }
    .lead-avatar { width:34px; height:34px; border-radius:50%; background:linear-gradient(145deg,#ffd0bd,#875146); }
    .lead-score { padding:6px 9px; border-radius:9px; background:#e9fff0; color:#17944a; font-size:11px; font-weight:700; }
    .lead-row { margin-top:12px; display:flex; align-items:center; justify-content:space-between; gap:10px; padding-top:12px; border-top:1px solid #eceaf3; color:#72768a; font-size:11px; }
    .floating-deal { position:absolute; right:5%; bottom:6%; width:49%; padding:15px; border-radius:16px; background:#20194b; color:white; box-shadow:0 22px 45px rgba(27,17,81,.35); }
    .floating-deal small { color:rgba(255,255,255,.58); }
    .floating-deal strong { display:block; margin-top:6px; font:600 22px/1.15 Sora,sans-serif; }
    .deal-line { height:5px; margin-top:13px; border-radius:999px; background:rgba(255,255,255,.14); overflow:hidden; }
    .deal-line span { display:block; width:74%; height:100%; border-radius:inherit; background:linear-gradient(90deg,#a993ff,#fff); }

    /* Retain visual */
    .retention-card {
      position:absolute;
      inset:10% 9%;
      border-radius:24px;
      padding:20px;
      background:rgba(255,255,255,.84);
      color:#20322f;
      border:1px solid rgba(255,255,255,.8);
      box-shadow:0 26px 60px rgba(18,88,76,.22);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
    }
    .retention-top { display:flex; justify-content:space-between; gap:12px; align-items:start; }
    .retention-value { margin-top:5px; font:600 28px/1 Sora,sans-serif; }
    .trend-chip { padding:7px 10px; border-radius:999px; background:#e6fbf4; color:#118c73; font-size:11px; font-weight:700; }
    .timeline { display:grid; gap:10px; margin-top:21px; }
    .timeline-item { display:grid; grid-template-columns:36px 1fr auto; gap:10px; align-items:center; padding:11px; border-radius:13px; background:#f3f8f6; }
    .timeline-icon { width:36px; height:36px; border-radius:10px; display:grid; place-items:center; background:#dff4ee; color:#167e69; font-weight:700; }
    .timeline-item strong { font-size:12px; }
    .timeline-item small { display:block; margin-top:3px; color:#85918e; font-size:10px; }
    .timeline-price { font-size:11px; font-weight:700; }
    .loyalty-float { position:absolute; left:5%; bottom:5%; width:48%; padding:15px; border-radius:16px; color:white; background:#123a35; box-shadow:0 20px 48px rgba(7,73,62,.3); }
    .loyalty-float small { color:rgba(255,255,255,.58); }
    .loyalty-row { display:flex; justify-content:space-between; align-items:end; gap:10px; margin-top:5px; }
    .loyalty-row strong { font:600 20px/1.1 Sora,sans-serif; }
    .loyalty-ring { width:39px; height:39px; border-radius:50%; display:grid; place-items:center; background:conic-gradient(#55d4b9 0 78%,rgba(255,255,255,.15) 78%); position:relative; }
    .loyalty-ring::after { content:""; position:absolute; inset:5px; border-radius:50%; background:#123a35; }
    .loyalty-ring span { position:relative; z-index:1; font-size:8px; font-weight:700; }

    @media (max-width: 1040px) {
      .growth-shell {
        grid-template-columns: minmax(0,1fr) minmax(400px,.9fr);
        gap: 48px;
      }
      .growth-visual-wrap { min-height: 460px; }
      .ui-window { left:7%; right:10%; }
      .call-card { width:58%; }
    }
    @media (max-width: 860px) {
      .growth-shell {
        width: min(100% - 40px, 720px);
        grid-template-columns: 1fr;
        gap: 54px;
        padding: 88px 0 92px;
      }
      .growth-copy { max-width: none; }
      .growth-title, .growth-intro { max-width: 680px; }
      .growth-visual-wrap { min-height: 0; aspect-ratio: 1.06 / 1; }
    }
    @media (max-width: 560px) {
      .growth-shell {
        width: calc(100% - 32px);
        padding: 72px 0 76px;
        gap: 42px;
      }
      .growth-title { font-size: clamp(30px, 9vw, 39px); }
      .growth-intro { margin-top: 17px; font-size:15px; line-height:1.6; }
      .growth-steps { margin-top: 25px; padding-left: 24px; }
      .growth-step { padding: 14px 0 15px; }
      .growth-step-title { font-size:17px; }
      .growth-step-body p { margin-top:12px; font-size:14px; }
      .growth-visual-wrap { aspect-ratio: .91 / 1; }
      .growth-visual { border-radius:20px; }
      .ui-window { left:5%; right:5%; top:6%; height:67%; border-radius:17px; padding:14px; }
      .chat-stack { gap:8px; }
      .avatar-mini { width:22px; height:22px; }
      .chat-bubble { max-width:85%; padding:7px 9px; border-radius:8px; font-size:11px; }
      .call-card { right:4%; bottom:6%; width:70%; min-width:0; padding:8px 9px 10px; border-radius:12px; }
      .call-top { font-size:10px; }
      .call-chip { padding:4px 6px; }
      .call-person { padding:10px 5px; gap:7px; }
      .call-icon { width:22px; height:22px; }
      .call-name { font-size:12px; }
      .call-number { font-size:10px; }
      .call-end { height:28px; font-size:11px; }
      .dashboard-card, .retention-card { inset:6% 5%; padding:14px; border-radius:18px; }
      .metric-grid { gap:6px; margin-top:12px; }
      .metric { padding:10px 7px; }
      .metric strong { font-size:16px; }
      .floating-deal { right:4%; bottom:5%; width:62%; padding:12px; }
      .retention-value { font-size:22px; }
      .timeline { gap:7px; margin-top:14px; }
      .timeline-item { grid-template-columns:30px 1fr auto; padding:8px; gap:8px; }
      .timeline-icon { width:30px; height:30px; }
      .loyalty-float { left:4%; bottom:4%; width:60%; }
    }


    /* Omnichannel feature ------------------------------------------------ */
    .omni-section {
      position: relative;
      overflow: hidden;
      background: #050505;
      color: #f7f7f7;
      border-top: 1px solid rgba(255,255,255,.025);
    }
    .omni-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 67% 28%, rgba(36,104,255,.08), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.012), transparent 28%);
    }
    .omni-shell {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 64px), 1320px);
      margin: 0 auto;
      padding: 112px 0 124px;
    }
    .omni-card {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr);
      min-height: 590px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 28px;
      background: #101010;
      box-shadow: 0 30px 100px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.025);
      transform: translateZ(0);
    }
    .omni-media {
      position: relative;
      min-width: 0;
      overflow: hidden;
      background: #171717;
      isolation: isolate;
    }
    .omni-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transform: none;
      transition: transform 900ms cubic-bezier(.16,1,.3,1), filter 600ms ease;
      will-change: transform;
    }
    .omni-media::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, transparent 72%, rgba(16,16,16,.18)),
        linear-gradient(180deg, transparent 68%, rgba(7,7,7,.12));
      z-index: 1;
    }
    .omni-card:hover .omni-media img { transform: none; }

    .omni-content {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      padding: clamp(48px, 5vw, 80px) clamp(44px, 5vw, 82px);
      background:
        radial-gradient(circle at 24% 4%, #082e2b, transparent 29%),
        radial-gradient(circle at 82% 2%, #082e2b, transparent 32%),
        linear-gradient(155deg, #121416 0%, #121212 62%, #101010 100%);
    }
    .omni-content::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 30%);
    }
    .omni-badge {
      position: relative;
      z-index: 1;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-height: 48px;
      padding: 0 18px;
      border: 1px solid #ff573e;
      border-radius: 15px;
      background: #ff573e;
      color: #f5f8ff;
      font-family: Sora, sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -.025em;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .omni-badge-icon {
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 9px;
      color: #f4f7f2;
    }
    .omni-badge-icon svg { width: 26px; height: 26px; }
    .omni-title {
      position: relative;
      z-index: 1;
      max-width: 570px;
      margin-top: 32px;
      font-family: Sora, sans-serif;
      font-size: clamp(38px, 3.65vw, 56px);
      line-height: 1.06;
      letter-spacing: -.052em;
      font-weight: 600;
      color: #f8f8f8;
    }
    .omni-copy {
      position: relative;
      z-index: 1;
      max-width: 590px;
      margin-top: 25px;
      font-size: clamp(16px, 1.5vw, 20px);
      line-height: 1.55;
      color: rgba(255,255,255,.86);
    }
    .omni-copy + .omni-copy { margin-top: 29px; }
    .omni-copy strong { color: #fff; font-weight: 700; }

    .omni-card.will-reveal {
      opacity: 0;
      transform: translateY(28px) scale(.994);
    }
    .omni-card.will-reveal.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      transition: opacity 780ms cubic-bezier(.16,1,.3,1), transform 780ms cubic-bezier(.16,1,.3,1);
    }
    .omni-card.will-reveal .omni-content > * {
      opacity: 0;
      transform: translateY(14px);
    }
    .omni-card.will-reveal.is-visible .omni-content > * {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 650ms ease, transform 650ms cubic-bezier(.16,1,.3,1);
    }
    .omni-card.will-reveal.is-visible .omni-badge { transition-delay: 120ms; }
    .omni-card.will-reveal.is-visible .omni-title { transition-delay: 190ms; }
    .omni-card.will-reveal.is-visible .omni-copy:nth-of-type(1) { transition-delay: 260ms; }
    .omni-card.will-reveal.is-visible .omni-copy:nth-of-type(2) { transition-delay: 330ms; }

    @media (max-width: 1040px) {
      .omni-shell { width: min(calc(100% - 48px), 1040px); padding: 96px 0 104px; }
      .omni-card { min-height: 520px; }
      .omni-content { padding: 52px 44px; }
      .omni-title { font-size: clamp(36px, 4.5vw, 48px); }
      .omni-copy { font-size: 16px; }
    }
    @media (max-width: 820px) {
      .omni-shell { width: min(calc(100% - 40px), 720px); padding: 86px 0 94px; }
      .omni-card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 24px;
      }
      .omni-media { aspect-ratio: 1.18 / 1; }
      .omni-content { padding: 50px 40px 58px; }
      .omni-title { max-width: 620px; margin-top: 26px; }
      .omni-copy { max-width: 620px; }
    }
    @media (max-width: 560px) {
      .omni-shell {
        width: calc(100% - 32px);
        padding: 72px 0 78px;
      }
      .omni-card { border-radius: 20px; }
      .omni-media { aspect-ratio: 1.04 / 1; }
      .omni-media img { transform: none; }
      .omni-card:hover .omni-media img { transform: none; }
      .omni-content { padding: 38px 24px 44px; }
      .omni-badge {
        min-height: 42px;
        padding: 0 14px;
        gap: 8px;
        border-radius: 12px;
        font-size: 13px;
      }
      .omni-badge-icon, .omni-badge-icon svg { width: 23px; height: 23px; }
      .omni-title {
        margin-top: 23px;
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.08;
      }
      .omni-copy { margin-top: 20px; font-size: 15px; line-height: 1.58; }
      .omni-copy + .omni-copy { margin-top: 23px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .omni-media img,
      .omni-card.will-reveal,
      .omni-card.will-reveal .omni-content > * { transition: none !important; transform: none !important; }
      .omni-card.will-reveal,
      .omni-card.will-reveal .omni-content > * { opacity: 1 !important; }
    }


    /* AI Agents section -------------------------------------------------- */
    .agents-section {
      position: relative;
      background: #020606;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }
    .agents-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(255,91,62,.10), transparent 22%),
        radial-gradient(circle at 84% 14%, rgba(18,144,130,.22), transparent 28%),
        radial-gradient(circle at 50% 110%, rgba(13,44,41,.48), transparent 34%);
      pointer-events: none;
    }
    .agents-shell {
      position: relative;
      width: min(calc(100% - 64px), 1320px);
      margin: 0 auto;
      padding: 44px 0 126px;
    }
    .agents-card {
      position: relative;
      padding: 44px;
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(9,18,18,.97), rgba(6,13,13,.99)),
        linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 30px 90px rgba(0,0,0,.35);
      overflow: hidden;
    }
    .agents-card::before {
      content: "";
      position: absolute;
      inset: -18% 28% auto -6%;
      height: 270px;
      background: radial-gradient(circle, rgba(255,91,62,.09), transparent 62%);
      pointer-events: none;
    }
    .agents-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 26%);
      pointer-events: none;
    }
    .agents-header {
      position: relative;
      z-index: 1;
      max-width: 880px;
      margin: 0 auto 34px;
      text-align: center;
    }
    .agents-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 32px rgba(0,0,0,.15);
      font-family: Sora, sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,.92);
    }
    .agents-badge-icon {
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255,91,62,.18), rgba(255,91,62,.10));
      color: #ff6e53;
    }
    .agents-badge-icon svg { width: 16px; height: 16px; }
    .agents-title {
      margin-top: 18px;
      font-family: Sora, sans-serif;
      font-size: clamp(36px, 4.2vw, 60px);
      line-height: 1.04;
      letter-spacing: -.055em;
      font-weight: 600;
      color: #fbfbfb;
      text-wrap: balance;
    }
    .agents-copy {
      max-width: 760px;
      margin: 18px auto 0;
      font-size: clamp(16px, 1.45vw, 19px);
      line-height: 1.7;
      color: rgba(255,255,255,.75);
    }
    .agents-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }
    .agents-primary,
    .agents-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-family: Sora, sans-serif;
      font-size: 14px;
      font-weight: 600;
      transition: transform .32s var(--ease-premium), background .28s ease, border-color .28s ease;
    }
    .agents-primary {
      color: #081211;
      background: #fff;
      box-shadow: 0 16px 34px rgba(0,0,0,.18);
    }
    .agents-secondary {
      color: rgba(255,255,255,.9);
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    .agents-primary:hover,
    .agents-secondary:hover { transform: translateY(-2px); }
    .agents-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(320px, .88fr);
      gap: 24px;
      align-items: stretch;
      margin-top: 34px;
    }
    .agents-media {
      position: relative;
      min-height: 560px;
      border-radius: 26px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(13,44,41,.65) 0%, rgba(10,22,22,.35) 54%, rgba(7,12,12,.82) 100%),
        radial-gradient(circle at 78% 18%, rgba(255,91,62,.14), transparent 24%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 56px rgba(0,0,0,.28);
      isolation: isolate;
    }
    .agents-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('./ai-agents-ref.png');
      background-size: cover;
      background-position: center 46%;
      filter: saturate(.84) contrast(1.03) brightness(.74);
      transform: scale(1.03);
      opacity: .72;
    }
    .agents-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,10,10,.18) 0%, rgba(3,10,10,.28) 38%, rgba(3,10,10,.70) 100%),
        linear-gradient(90deg, rgba(6,17,16,.14) 0%, rgba(6,17,16,.10) 42%, rgba(6,17,16,.44) 100%);
      pointer-events: none;
    }
    .agents-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #020606;
    }
    .agents-video-ui {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 28px;
      gap: 18px;
    }
    .agents-play {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 3;
      display: grid;
      width: 102px;
      height: 102px;
      place-items: center;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 32px;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 22px 56px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
      transform: translate(-50%, -50%);
      transition: transform .35s var(--ease-premium), background .3s ease;
    }
    .agents-play::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 8px;
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
      border-left: 28px solid white;
    }
    .agents-play.is-playing::before {
      width: 24px;
      height: 30px;
      margin-left: 0;
      border: 0;
      background: linear-gradient(90deg, white 0 8px, transparent 8px 16px, white 16px);
    }
    .agents-media:hover .agents-play { transform: translate(-50%, -50%) scale(1.04); background: rgba(255,255,255,.16); }
    .agents-floating-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 14px;
      background: rgba(8,21,21,.58);
      border: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 12px 28px rgba(0,0,0,.18);
      font-size: 13px;
      font-weight: 600;
    }
    .agents-pill-stack {
      display: grid;
      gap: 10px;
      align-self: flex-start;
      max-width: 250px;
    }
    .agents-pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #23c785;
      box-shadow: 0 0 0 5px rgba(35,199,133,.12);
      flex: 0 0 8px;
    }
    .agents-call-card {
      width: min(290px, 100%);
      margin-left: auto;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 18px 44px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
    }
    .agents-call-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      color: rgba(255,255,255,.88);
    }
    .agents-call-badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 10px;
      background: rgba(255,255,255,.90);
      color: #0e3b33;
      font-weight: 700;
      font-size: 12px;
    }
    .agents-call-person {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
      color: #fff;
    }
    .agents-call-avatar {
      display: grid;
      width: 50px;
      height: 50px;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(255,91,62,.22), rgba(255,255,255,.10));
      font-family: Sora, sans-serif;
      font-size: 18px;
      font-weight: 600;
    }
    .agents-call-name { font-family: Sora, sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -.03em; }
    .agents-call-number { margin-top: 4px; font-size: 14px; color: rgba(255,255,255,.76); }
    .agents-call-end {
      width: 100%;
      min-height: 46px;
      margin-top: 16px;
      border: 0;
      border-radius: 14px;
      background: linear-gradient(90deg, #ff5335 0%, #ff7b47 100%);
      color: #fff;
      font-family: Sora, sans-serif;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 18px 30px rgba(255,91,62,.22);
    }
    .agents-side {
      display: grid;
      gap: 16px;
      align-content: stretch;
    }
    .agents-stat-card,
    .agent-feature-card {
      position: relative;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
      overflow: hidden;
    }
    .agents-stat-card {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      background: rgba(255,255,255,.06);
    }
    .agents-stat-card > div {
      padding: 18px 16px 16px;
      background: linear-gradient(180deg, rgba(8,19,18,.98), rgba(6,14,13,.98));
    }
    .agents-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.45); }
    .agents-stat-value { margin-top: 12px; font-family: Sora, sans-serif; font-size: 28px; font-weight: 600; letter-spacing: -.04em; color: #fff; }
    .agents-stat-note { margin-top: 6px; font-size: 13px; color: rgba(255,255,255,.62); }
    .agent-feature-card { padding: 20px 20px 18px; }
    .agent-feature-icon {
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(255,91,62,.18), rgba(255,91,62,.08));
      color: #ff6d52;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    }
    .agent-feature-icon svg { width: 22px; height: 22px; }
    .agent-feature-title {
      margin-top: 16px;
      font-family: Sora, sans-serif;
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: -.035em;
      font-weight: 600;
      color: #fbfbfb;
    }
    .agent-feature-copy {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.68;
      color: rgba(255,255,255,.70);
    }
    .agents-reveal {
      opacity: 0;
      transform: translateY(24px) scale(.992);
      transition: opacity 820ms cubic-bezier(.16,1,.3,1), transform 820ms cubic-bezier(.16,1,.3,1);
    }
    .agents-reveal.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .agents-reveal-seq > * {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 620ms ease, transform 620ms cubic-bezier(.16,1,.3,1);
    }
    .agents-reveal.is-visible .agents-reveal-seq > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: .08s; }
    .agents-reveal.is-visible .agents-reveal-seq > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: .15s; }
    .agents-reveal.is-visible .agents-reveal-seq > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: .22s; }
    .agents-reveal.is-visible .agents-reveal-seq > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: .29s; }
    .agents-reveal.is-visible .agents-reveal-seq > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: .36s; }
    .agents-reveal.is-visible .agents-reveal-seq > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: .43s; }
    @media (max-width: 1100px) {
      .agents-shell { width: min(calc(100% - 44px), 1160px); padding: 30px 0 108px; }
      .agents-card { padding: 34px; }
      .agents-grid { grid-template-columns: 1fr; }
      .agents-side { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
      .agents-stat-card { grid-column: 1 / -1; }
    }
    @media (max-width: 760px) {
      .agents-shell { width: calc(100% - 32px); padding: 24px 0 92px; }
      .agents-card { padding: 24px; border-radius: 24px; }
      .agents-header { margin-bottom: 26px; }
      .agents-title { font-size: clamp(31px, 9vw, 42px); }
      .agents-copy { font-size: 15px; line-height: 1.62; }
      .agents-grid { margin-top: 28px; gap: 18px; }
      .agents-media { min-height: 470px; border-radius: 22px; }
      .agents-video-ui { padding: 18px; flex-direction: column; align-items: stretch; justify-content: flex-end; }
      .agents-pill-stack { max-width: none; }
      .agents-call-card { width: 100%; }
      .agents-play { width: 88px; height: 88px; border-radius: 28px; }
      .agents-play::before { border-top-width: 15px; border-bottom-width: 15px; border-left-width: 24px; }
      .agents-side { grid-template-columns: 1fr; }
      .agents-stat-card { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .agents-card { padding: 20px; }
      .agents-badge { min-height: 38px; font-size: 12px; }
      .agents-actions { flex-direction: column; }
      .agents-primary, .agents-secondary { width: 100%; }
      .agents-media { min-height: 425px; }
      .agents-floating-pill { min-height: 40px; padding-inline: 12px; font-size: 12px; }
      .agents-call-name { font-size: 18px; }
      .agent-feature-card { padding: 18px 16px 16px; }
      .agent-feature-title { font-size: 18px; }
      .agent-feature-copy { font-size: 14px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .agents-reveal,
      .agents-reveal-seq > *,
      .agents-media:hover .agents-play,
      .agents-primary,
      .agents-secondary { transition: none !important; transform: none !important; }
      .agents-reveal,
      .agents-reveal-seq > * { opacity: 1 !important; }
    }


    /* Results / customer proof section ---------------------------------- */
    .results-section {
      position: relative;
      overflow: hidden;
      background: #020606;
      color: #fff;
      isolation: isolate;
    }
    .results-section::before {
      content: "";
      position: absolute;
      inset: -20% 0 auto 0;
      height: 420px;
      background:
        radial-gradient(circle at 35% 20%, rgba(255,91,62,.08), transparent 28%),
        radial-gradient(circle at 68% 12%, rgba(24,112,101,.16), transparent 30%);
      pointer-events: none;
    }
    .results-shell {
      position: relative;
      width: min(calc(100% - 56px), 1240px);
      margin: 0 auto;
      padding: 108px 0 120px;
    }
    .results-topbar {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 24px;
      margin-bottom: 40px;
    }
    .results-heading-wrap { max-width: 760px; }
    .results-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: Sora, sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.48);
    }
    .results-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ff6548;
      box-shadow: 0 0 0 6px rgba(255,101,72,.08);
    }
    .results-title {
      margin-top: 14px;
      font-family: Sora, sans-serif;
      font-size: clamp(38px, 4.4vw, 62px);
      line-height: 1.04;
      letter-spacing: -.055em;
      font-weight: 600;
      color: #fbfbfb;
      text-wrap: balance;
    }
    .results-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-bottom: 4px;
    }
    .results-arrow {
      display: grid;
      width: 50px;
      height: 50px;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.035);
      color: #fff;
      transition: transform .3s var(--ease-premium), background .3s ease, border-color .3s ease;
    }
    .results-arrow:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.18);
    }
    .results-arrow:active { transform: scale(.94); }
    .results-arrow svg { width: 19px; height: 19px; }
    .results-rail-layout {
      display: grid;
      grid-template-columns: 286px minmax(0, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .results-stats {
      display: grid;
      align-content: center;
      gap: 28px;
      min-height: 400px;
      padding: 34px 30px;
      border-radius: 26px;
    }
    .result-stat { position: relative; }
    .result-stat:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 34%;
      bottom: -15px;
      height: 1px;
      background: linear-gradient(90deg, rgba(255,255,255,.10), transparent);
    }
    .result-stat strong {
      display: block;
      font-family: Sora, sans-serif;
      font-size: clamp(44px, 4.1vw, 42px);
      line-height: 1;
      letter-spacing: -.06em;
      font-weight: 500;
      color: #f8f8f8;
      font-variant-numeric: tabular-nums;
    }
    .result-stat span {
      display: block;
      margin-top: 7px;
      font-size: 14px;
      line-height: 1.45;
      color: rgba(255,255,255,.56);
    }
    .results-viewport {
      position: relative;
      min-width: 0;
      overflow: hidden;
      border-radius: 26px;
      mask-image: linear-gradient(90deg, #000 0%, #000 91%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 91%, transparent 100%);
    }
    .results-track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      overscroll-behavior-inline: contain;
      padding-right: 120px;
    }
    .results-track::-webkit-scrollbar { display: none; }
    .result-case {
      position: relative;
      flex: 0 0 clamp(300px, 31vw, 360px);
      height: 400px;
      overflow: hidden;
      scroll-snap-align: start;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.08);
      background: #0c1110;
      box-shadow: 0 24px 60px rgba(0,0,0,.26);
      isolation: isolate;
      cursor: pointer;
      transition: transform .5s var(--ease-premium), border-color .35s ease, box-shadow .5s var(--ease-premium);
    }
    .result-case:hover,
    .result-case.is-active {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 30px 80px rgba(0,0,0,.34);
    }
    .result-case img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.78) contrast(1.02) brightness(.64);
      transform: scale(1.03);
      transition: transform .75s var(--ease-premium), filter .55s ease;
    }
    .result-case:hover img,
    .result-case.is-active img {
      transform: scale(1.075);
      filter: saturate(.92) contrast(1.04) brightness(.69);
    }
    .result-case::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(3,8,8,.08) 0%, rgba(3,8,8,.08) 35%, rgba(3,8,8,.92) 100%),
        linear-gradient(110deg, rgba(3,15,14,.06), rgba(3,15,14,.20));
    }
    .result-case-top {
      position: absolute;
      z-index: 2;
      top: 22px;
      left: 22px;
      right: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .case-logo {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(4,14,13,.48);
      border: 1px solid rgba(255,255,255,.10);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      font-family: Sora, sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.94);
    }
    .case-index {
      font-family: Sora, sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.48);
    }
    .result-case-copy {
      position: absolute;
      z-index: 2;
      left: 22px;
      right: 22px;
      bottom: 22px;
    }
    .result-case-copy h3 {
      font-family: Sora, sans-serif;
      font-size: 21px;
      line-height: 1.22;
      letter-spacing: -.035em;
      font-weight: 600;
      color: #fff;
    }
    .result-case-copy p {
      margin-top: 10px;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(255,255,255,.66);
    }
    .case-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 17px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.94);
      color: #091310;
      font-family: Sora, sans-serif;
      font-size: 12px;
      font-weight: 600;
      transform: translateY(8px);
      opacity: 0;
      transition: opacity .35s ease, transform .45s var(--ease-premium);
    }
    .result-case:hover .case-cta,
    .result-case.is-active .case-cta {
      opacity: 1;
      transform: translateY(0);
    }
    .results-testimonial {
      position: relative;
      margin-top: 64px;
      padding: 38px 76px 0;
      text-align: center;
    }
    .results-testimonial::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      width: min(680px, 70%);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
    }
    .testimonial-quote {
      max-width: 980px;
      margin: 0 auto;
      font-family: Sora, sans-serif;
      font-size: clamp(22px, 2.35vw, 32px);
      line-height: 1.35;
      letter-spacing: -.035em;
      font-weight: 500;
      color: rgba(255,255,255,.95);
      text-wrap: balance;
      transition: opacity .26s ease, transform .36s var(--ease-premium), filter .36s ease;
    }
    .testimonial-quote.is-changing {
      opacity: 0;
      transform: translateY(8px);
      filter: blur(4px);
    }
    .results-reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }
    .results-reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1080px) {
      .results-shell { width: min(calc(100% - 44px), 1120px); padding: 96px 0 106px; }
      .results-rail-layout { grid-template-columns: 250px minmax(0,1fr); gap: 18px; }
      .results-stats { min-height: 380px; padding: 30px 24px; }
      .result-case { flex-basis: 320px; height: 380px; }
    }
    @media (max-width: 820px) {
      .results-shell { width: calc(100% - 36px); padding: 84px 0 94px; }
      .results-topbar { grid-template-columns: 1fr; align-items: start; }
      .results-controls { justify-self: end; margin-top: -8px; }
      .results-rail-layout { grid-template-columns: 1fr; }
      .results-stats {
        min-height: 0;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 1px;
        padding: 0;
        overflow: hidden;
        background: rgba(255,255,255,.06);
      }
      .result-stat { padding: 24px 18px 22px; background: #091211; }
      .result-stat:not(:last-child)::after { display: none; }
      .result-stat strong { font-size: clamp(36px, 9vw, 48px); }
      .result-stat span { font-size: 12px; }
      .results-viewport { mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%); }
      .results-track { padding-right: 72px; }
      .result-case { flex-basis: min(82vw, 340px); height: 380px; }
      .results-testimonial { margin-top: 52px; padding: 34px 54px 0; }
    }
    @media (max-width: 560px) {
      .results-shell { width: calc(100% - 32px); padding: 72px 0 82px; }
      .results-topbar { gap: 16px; margin-bottom: 28px; }
      .results-title { font-size: clamp(34px, 10.3vw, 44px); }
      .results-controls { justify-self: start; margin-top: 0; }
      .results-arrow { width: 44px; height: 44px; }
      .results-stats { grid-template-columns: 1fr; border-radius: 22px; }
      .result-stat { padding: 20px 18px; }
      .result-stat strong { font-size: 38px; }
      .result-case { flex-basis: min(88vw, 320px); height: 360px; border-radius: 22px; }
      .result-case-copy h3 { font-size: 19px; }
      .results-testimonial { padding: 32px 0 0; }
      .testimonial-side-arrow { display: none; }
      .testimonial-quote { font-size: 21px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .result-case,
      .result-case img,
      .case-cta,
      .results-reveal,
      .testimonial-quote { transition: none !important; transform: none !important; }
      .results-reveal { opacity: 1 !important; }
    }


    /* FAQ --------------------------------------------------------------- */
    .faq-section {
      position: relative;
      overflow: hidden;
      background: #020606;
      color: #fff;
      isolation: isolate;
    }
    .faq-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 22%, rgba(255,91,62,.09), transparent 23%),
        radial-gradient(circle at 83% 74%, rgba(21,113,103,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.012), transparent 22%);
      pointer-events: none;
      z-index: -2;
    }
    .faq-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.08) .7px, transparent .8px);
      background-size: 12px 12px;
      opacity: .08;
      mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 42%, transparent 66%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 42%, transparent 66%);
      pointer-events: none;
      z-index: -1;
    }
    .faq-shell {
      width: min(calc(100% - 56px), 1240px);
      margin: 0 auto;
      padding: 112px 0 128px;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(280px, .78fr) minmax(0, 1.42fr);
      gap: clamp(56px, 7vw, 108px);
      align-items: start;
    }
    .faq-intro {
      position: sticky;
      top: 110px;
      min-width: 0;
    }
    .faq-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: Sora, sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(255,255,255,.52);
    }
    .faq-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(255,91,62,.08);
    }
    .faq-title {
      max-width: 520px;
      margin-top: 20px;
      font-family: Sora, sans-serif;
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.01;
      letter-spacing: -.06em;
      font-weight: 600;
      text-wrap: balance;
      color: #fbfbfb;
    }
    .faq-lede {
      max-width: 440px;
      margin-top: 22px;
      font-size: 16px;
      line-height: 1.75;
      color: rgba(255,255,255,.62);
    }
    .faq-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.08);
      max-width: 420px;
    }
    .faq-meta-count {
      display: grid;
      min-width: 60px;
      height: 60px;
      place-items: center;
      border-radius: 18px;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.08);
      font-family: Sora, sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,.88);
    }
    .faq-meta-copy strong {
      display: block;
      font-family: Sora, sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,.94);
    }
    .faq-meta-copy span {
      display: block;
      margin-top: 5px;
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255,255,255,.46);
    }
    .faq-contact {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 26px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.90);
      font-family: Sora, sans-serif;
      font-size: 13px;
      font-weight: 600;
      transition: transform .35s var(--ease-premium), border-color .3s ease, background .3s ease;
    }
    .faq-contact svg { width: 17px; height: 17px; transition: transform .35s var(--ease-premium); }
    .faq-contact:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.18);
    }
    .faq-contact:hover svg { transform: translate(2px,-2px); }

    .faq-list {
      position: relative;
      min-width: 0;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .faq-list::before {
      content: "";
      position: absolute;
      left: -30px;
      top: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,.07) 10%, rgba(255,255,255,.07) 90%, transparent);
    }
    .faq-item {
      --faq-x: 50%;
      --faq-y: 50%;
      position: relative;
      border-bottom: 1px solid rgba(255,255,255,.10);
      overflow: hidden;
      transition: border-color .3s ease;
      isolation: isolate;
    }
    .faq-item::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 220px;
      left: var(--faq-x);
      top: var(--faq-y);
      transform: translate(-50%,-50%);
      background: radial-gradient(circle, rgba(255,255,255,.055), transparent 68%);
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s ease;
      z-index: -1;
    }
    .faq-item:hover::before,
    .faq-item.is-open::before { opacity: 1; }
    .faq-item.is-open { border-color: rgba(255,255,255,.18); }
    .faq-question {
      width: 100%;
      display: grid;
      grid-template-columns: 48px minmax(0,1fr) 48px;
      gap: 18px;
      align-items: center;
      padding: 29px 0;
      border: 0;
      background: transparent;
      color: #fff;
      text-align: left;
      cursor: pointer;
    }
    .faq-number {
      align-self: start;
      padding-top: 6px;
      font-family: Sora, sans-serif;
      font-size: 10px;
      letter-spacing: .12em;
      color: rgba(255,255,255,.28);
      transition: color .3s ease, transform .45s var(--ease-premium);
    }
    .faq-question-text {
      font-family: Sora, sans-serif;
      font-size: clamp(20px, 2vw, 28px);
      line-height: 1.25;
      letter-spacing: -.035em;
      font-weight: 500;
      color: rgba(255,255,255,.90);
      transition: color .3s ease, transform .45s var(--ease-premium);
    }
    .faq-toggle {
      position: relative;
      justify-self: end;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.025);
      transition: transform .5s var(--ease-premium), background .3s ease, border-color .3s ease;
    }
    .faq-toggle::before,
    .faq-toggle::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 1.5px;
      border-radius: 999px;
      background: rgba(255,255,255,.78);
      transform: translate(-50%,-50%);
      transition: transform .5s var(--ease-premium), background .3s ease;
    }
    .faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
    .faq-item:hover .faq-question-text { color: #fff; transform: translateX(3px); }
    .faq-item:hover .faq-number { color: rgba(255,255,255,.54); transform: translateX(2px); }
    .faq-item:hover .faq-toggle { border-color: rgba(255,255,255,.19); background: rgba(255,255,255,.055); }
    .faq-item.is-open .faq-number { color: var(--orange); }
    .faq-item.is-open .faq-question-text { color: #fff; }
    .faq-item.is-open .faq-toggle {
      transform: rotate(45deg);
      background: rgba(255,91,62,.11);
      border-color: rgba(255,91,62,.24);
    }
    .faq-item.is-open .faq-toggle::before,
    .faq-item.is-open .faq-toggle::after { background: #ff8069; }
    .faq-answer-wrap {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .62s var(--ease-premium);
    }
    .faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
    .faq-answer-inner {
      min-height: 0;
      overflow: hidden;
    }
    .faq-answer {
      max-width: 690px;
      margin: -3px 66px 0 66px;
      padding-bottom: 30px;
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,.58);
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity .38s ease, transform .55s var(--ease-premium);
    }
    .faq-item.is-open .faq-answer {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .10s;
    }
    .faq-answer strong { color: rgba(255,255,255,.86); font-weight: 600; }
    .faq-active-line {
      position: absolute;
      left: -31px;
      top: 0;
      width: 3px;
      height: 72px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ff6b4e, #ff9a70);
      box-shadow: 0 0 20px rgba(255,91,62,.24);
      opacity: 0;
      transform: translateY(0);
      transition: transform .58s var(--ease-premium), height .45s var(--ease-premium), opacity .3s ease;
      pointer-events: none;
    }
    .faq-list.has-open .faq-active-line { opacity: 1; }
    .faq-reveal {
      opacity: 0;
      transform: translateY(28px);
    }
    .faq-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .8s ease, transform .8s var(--ease-premium);
    }
    .faq-reveal .faq-item {
      opacity: 0;
      transform: translateY(14px);
    }
    .faq-reveal.is-visible .faq-item {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .55s ease, transform .65s var(--ease-premium);
    }
    .faq-reveal.is-visible .faq-item:nth-child(2) { transition-delay: .05s; }
    .faq-reveal.is-visible .faq-item:nth-child(3) { transition-delay: .09s; }
    .faq-reveal.is-visible .faq-item:nth-child(4) { transition-delay: .13s; }
    .faq-reveal.is-visible .faq-item:nth-child(5) { transition-delay: .17s; }
    .faq-reveal.is-visible .faq-item:nth-child(6) { transition-delay: .21s; }
    .faq-reveal.is-visible .faq-item:nth-child(7) { transition-delay: .25s; }

    @media (max-width: 980px) {
      .faq-shell { width: min(calc(100% - 44px), 980px); padding: 96px 0 110px; }
      .faq-layout { grid-template-columns: 1fr; gap: 54px; }
      .faq-intro { position: relative; top: auto; max-width: 720px; }
      .faq-title { max-width: 680px; }
      .faq-lede { max-width: 600px; }
      .faq-list::before,
      .faq-active-line { display: none; }
    }
    @media (max-width: 620px) {
      .faq-shell { width: calc(100% - 32px); padding: 78px 0 90px; }
      .faq-layout { gap: 42px; }
      .faq-title { font-size: clamp(36px, 11vw, 48px); }
      .faq-lede { margin-top: 18px; font-size: 15px; line-height: 1.68; }
      .faq-meta { margin-top: 28px; }
      .faq-question {
        grid-template-columns: 30px minmax(0,1fr) 40px;
        gap: 12px;
        padding: 24px 0;
      }
      .faq-number { padding-top: 5px; font-size: 9px; }
      .faq-question-text { font-size: clamp(18px, 5.8vw, 23px); line-height: 1.3; }
      .faq-toggle { width: 38px; height: 38px; }
      .faq-answer { margin: -2px 52px 0 42px; padding-bottom: 26px; font-size: 14px; line-height: 1.72; }
    }
    @media (prefers-reduced-motion: reduce) {
      .faq-item,
      .faq-question-text,
      .faq-number,
      .faq-toggle,
      .faq-answer-wrap,
      .faq-answer,
      .faq-active-line,
      .faq-reveal,
      .faq-reveal .faq-item,
      .faq-contact,
      .faq-contact svg { transition: none !important; transform: none !important; }
      .faq-reveal,
      .faq-reveal .faq-item { opacity: 1 !important; }
    }


    /* Advanced footer ---------------------------------------------------- */
    .site-footer {
      position: relative;
      overflow: hidden;
      color: #fff;
      background: #061311;
      border-top: 1px solid rgba(255,255,255,.06);
      isolation: isolate;
    }
    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 14% 6%, rgba(255,91,62,.07), transparent 24%),
        radial-gradient(circle at 86% 16%, rgba(42,121,110,.10), transparent 28%);
      z-index: -1;
    }
    .footer-shell {
      width: min(calc(100% - 56px), 1380px);
      margin-inline: auto;
      padding: 28px 0 24px;
    }
    .footer-cta {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) auto;
      align-items: end;
      gap: 32px;
      padding: clamp(34px, 4vw, 58px);
      border-radius: 30px;
      background: rgba(255,255,255,.025);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 30px 80px rgba(0,0,0,.18);
      overflow: hidden;
    }
    .footer-cta::before {
      content: "";
      position: absolute;
      width: 380px;
      height: 380px;
      left: var(--footer-x, 75%);
      top: var(--footer-y, 25%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,.025) 36%, transparent 68%);
      opacity: .45;
      transition: opacity .35s ease;
      pointer-events: none;
    }
    .footer-cta:hover::before { opacity: .85; }
    .footer-cta-copy,
    .footer-cta-actions { position: relative; z-index: 1; }
    .footer-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: Sora, sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.54);
    }
    .footer-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(255,91,62,.09);
    }
    .footer-cta-title {
      max-width: 860px;
      margin-top: 18px;
      font-family: Sora, sans-serif;
      font-size: clamp(38px, 5vw, 72px);
      line-height: .98;
      letter-spacing: -.06em;
      font-weight: 600;
      color: #fff;
      text-wrap: balance;
    }
    .footer-cta-copytext {
      max-width: 680px;
      margin-top: 20px;
      font-size: clamp(15px, 1.35vw, 18px);
      line-height: 1.7;
      color: rgba(255,255,255,.60);
    }
    .footer-cta-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      flex-wrap: wrap;
      padding-bottom: 4px;
    }
    .footer-primary,
    .footer-secondary {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 20px;
      border-radius: 16px;
      font-family: Sora, sans-serif;
      font-size: 13px;
      font-weight: 600;
      transition: transform .35s var(--ease-premium), background .3s ease, border-color .3s ease, color .3s ease;
    }
    .footer-primary {
      background: #fff;
      color: #07110f;
      box-shadow: 0 16px 32px rgba(0,0,0,.16);
    }
    .footer-secondary {
      border: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.86);
      background: rgba(255,255,255,.025);
    }
    .footer-primary svg,
    .footer-secondary svg { width: 16px; height: 16px; transition: transform .38s var(--ease-premium); }
    .footer-primary:hover,
    .footer-secondary:hover { transform: translateY(-3px); }
    .footer-primary:hover svg,
    .footer-secondary:hover svg { transform: translate(2px,-2px); }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(250px, 1.2fr) repeat(4, minmax(120px, .65fr));
      gap: clamp(32px, 4vw, 72px);
      padding: 70px 8px 58px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand {
      max-width: 330px;
    }
    .footer-brand-row {
      display: inline-flex;
      align-items: center;
      width: 160px;
    }
    .footer-brand-row img { display: block; width: 100%; height: auto; }
    .footer-brand-copy {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.72;
      color: rgba(255,255,255,.52);
    }
    .footer-status {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 24px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.025);
      font-size: 11px;
      color: rgba(255,255,255,.66);
    }
    .footer-status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #38d890;
      box-shadow: 0 0 0 5px rgba(56,216,144,.08);
      animation: footerStatus 2.4s ease-in-out infinite;
    }
    @keyframes footerStatus {
      0%,100% { box-shadow: 0 0 0 5px rgba(56,216,144,.07); }
      50% { box-shadow: 0 0 0 9px rgba(56,216,144,0); }
    }
    .footer-col h3 {
      margin: 4px 0 18px;
      font-family: Sora, sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.38);
    }
    .footer-links {
      display: grid;
      gap: 13px;
    }
    .footer-link {
      position: relative;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255,255,255,.72);
      transition: color .28s ease, transform .38s var(--ease-premium);
    }
    .footer-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 1px;
      background: rgba(255,255,255,.8);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .38s var(--ease-premium);
    }
    .footer-link:hover { color: #fff; transform: translateX(3px); }
    .footer-link:hover::after { transform: scaleX(1); }
    .footer-link .new-pill {
      display: inline-flex;
      align-items: center;
      min-height: 19px;
      padding: 0 7px;
      border-radius: 999px;
      background: rgba(255,91,62,.13);
      color: #ff8f7b;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .footer-bottom {
      min-height: 74px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
      padding: 0 8px;
      color: rgba(255,255,255,.38);
      font-size: 11px;
    }
    .footer-legal {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .footer-legal a { transition: color .25s ease; }
    .footer-legal a:hover { color: rgba(255,255,255,.78); }
    .footer-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .footer-social {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.07);
      color: rgba(255,255,255,.60);
      background: rgba(255,255,255,.018);
      transition: transform .32s var(--ease-premium), color .3s ease, border-color .3s ease, background .3s ease;
    }
    .footer-social:hover {
      transform: translateY(-3px) rotate(-2deg);
      color: #fff;
      border-color: rgba(255,255,255,.15);
      background: rgba(255,255,255,.045);
    }
    .footer-social svg { width: 16px; height: 16px; }
    .footer-backtop {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: rgba(255,255,255,.60);
      font-size: 11px;
      transition: color .25s ease, transform .35s var(--ease-premium);
    }
    .footer-backtop span {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 11px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.02);
      transition: transform .38s var(--ease-premium), background .28s ease;
    }
    .footer-backtop:hover { color: #fff; transform: translateY(-1px); }
    .footer-backtop:hover span { transform: translateY(-3px); background: rgba(255,255,255,.05); }

    .footer-wordmark {
      position: relative;
      overflow: hidden;
      margin-top: 2px;
      border-top: 1px solid rgba(255,255,255,.045);
    }
    .footer-wordmark span {
      display: block;
      margin-bottom: -4.5vw;
      padding-top: 18px;
      text-align: center;
      font-family: Sora, sans-serif;
      font-size: clamp(92px, 17vw, 250px);
      font-weight: 700;
      line-height: .78;
      letter-spacing: -.09em;
      color: rgba(255,255,255,.025);
      user-select: none;
      transition: letter-spacing 1s var(--ease-premium), color .65s ease;
    }
    .site-footer:hover .footer-wordmark span {
      letter-spacing: -.075em;
      color: rgba(255,255,255,.035);
    }

    .footer-reveal {
      opacity: 0;
      transform: translateY(28px);
    }
    .footer-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .85s ease, transform .85s var(--ease-premium);
    }
    .footer-reveal .footer-main > *,
    .footer-reveal .footer-bottom > * {
      opacity: 0;
      transform: translateY(12px);
    }
    .footer-reveal.is-visible .footer-main > *,
    .footer-reveal.is-visible .footer-bottom > * {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .6s ease, transform .7s var(--ease-premium);
    }
    .footer-reveal.is-visible .footer-main > *:nth-child(1) { transition-delay: .08s; }
    .footer-reveal.is-visible .footer-main > *:nth-child(2) { transition-delay: .12s; }
    .footer-reveal.is-visible .footer-main > *:nth-child(3) { transition-delay: .16s; }
    .footer-reveal.is-visible .footer-main > *:nth-child(4) { transition-delay: .20s; }
    .footer-reveal.is-visible .footer-main > *:nth-child(5) { transition-delay: .24s; }
    .footer-reveal.is-visible .footer-bottom > *:nth-child(1) { transition-delay: .22s; }
    .footer-reveal.is-visible .footer-bottom > *:nth-child(2) { transition-delay: .27s; }
    .footer-reveal.is-visible .footer-bottom > *:nth-child(3) { transition-delay: .32s; }

    @media (max-width: 1080px) {
      .footer-shell { width: min(calc(100% - 44px), 1080px); }
      .footer-cta { grid-template-columns: 1fr; align-items: start; }
      .footer-cta-actions { justify-content: flex-start; }
      .footer-main { grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(140px, .7fr)); }
    }
    @media (max-width: 760px) {
      .footer-shell { width: calc(100% - 32px); padding-top: 20px; }
      .footer-cta { padding: 30px 24px; border-radius: 24px; }
      .footer-cta-title { font-size: clamp(38px, 12vw, 54px); }
      .footer-cta-copytext { font-size: 15px; }
      .footer-cta-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
      .footer-primary, .footer-secondary { width: 100%; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 24px; padding: 54px 4px 48px; }
      .footer-brand { grid-column: 1 / -1; max-width: 520px; }
      .footer-bottom { grid-template-columns: 1fr auto; gap: 20px; padding: 18px 4px 22px; }
      .footer-socials { justify-content: flex-start; grid-row: 2; }
      .footer-backtop { grid-column: 2; grid-row: 1 / span 2; }
    }
    @media (max-width: 480px) {
      .footer-cta { padding: 28px 20px; }
      .footer-cta-actions { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
      .footer-col h3 { margin-bottom: 15px; }
      .footer-link { font-size: 13px; }
      .footer-bottom { grid-template-columns: 1fr; }
      .footer-legal { gap: 12px 16px; }
      .footer-socials { grid-row: auto; }
      .footer-backtop { grid-column: auto; grid-row: auto; justify-self: start; }
      .footer-wordmark span { margin-bottom: -3vw; font-size: clamp(78px, 25vw, 120px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .footer-cta::before,
      .footer-primary,
      .footer-secondary,
      .footer-primary svg,
      .footer-secondary svg,
      .footer-link,
      .footer-link::after,
      .footer-social,
      .footer-backtop,
      .footer-backtop span,
      .footer-wordmark span,
      .footer-reveal,
      .footer-reveal .footer-main > *,
      .footer-reveal .footer-bottom > * { transition: none !important; transform: none !important; }
      .footer-reveal,
      .footer-reveal .footer-main > *,
      .footer-reveal .footer-bottom > * { opacity: 1 !important; }
      .footer-status-dot { animation: none !important; }
    }

    .feature-image--left { object-position: left center; }
    .growth-steps { --step: 0; }
    .lead-name { font-size: 12px; }
    .lead-intent { margin-top: 3px; color: #898ba0; font-size: 10px; }
    .lead-row-status { color: #52566d; }
    .lead-avatar--daniel { background: linear-gradient(145deg, #9fc0ff, #534c92); }
    .lead-score--warm { background: #fff5e9; color: #bd7213; }

