/* ========================================== 
   Extracted from HomeTemplate.php 
   ========================================== */


  /* ============================================================
     HERO SECTION
     ============================================================ */
  .kl-hero-section {
    width: 100%;
    padding: 96px 24px;
    background:
      radial-gradient(ellipse 55% 70% at 85% 18%, rgba(255, 188, 80, 0.08) 0%, transparent 55%),
      radial-gradient(ellipse 60% 80% at 15% 90%, rgba(124, 44, 204, 0.55) 0%, transparent 55%),
      linear-gradient(135deg, #2d0e54 0%, #1d0738 55%, #15042a 100%);
    font-family: "DM Sans", Arial, sans-serif;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .kl-hero-section,
  .kl-hero-section * {
    box-sizing: border-box;
  }

  .kl-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
  }

  .kl-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: 0;
  }

  .kl-net-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .kl-hero-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  .kl-hero-title {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 800;
  }

  .kl-mobile-br {
    display: none;
  }

  .kl-hero-title span {
    color: #d4a4f5;
  }

  .kl-hero-title em {
    color: #ffbc50;
    font-style: italic;
    font-weight: 700;
  }

  .kl-hero-copy {
    max-width: 560px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
  }

  .kl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .kl-hero-actions-mobile {
    display: none;
  }

  .kl-hero-btn-primary,
  .kl-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .kl-hero-btn-primary {
    background: #ffbc50;
    color: #1a0633;
    box-shadow: 0 14px 32px rgba(255, 188, 80, 0.35);
  }

  .kl-hero-btn-primary:hover {
    transform: translateY(-2px);
    background: #ffc870;
    box-shadow: 0 18px 38px rgba(255, 188, 80, 0.45);
  }

  .kl-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .kl-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
  }

  .kl-hero-card {
    position: relative;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(124, 44, 204, 0.35);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .kl-hero-card::before {
    content: "";
    position: absolute;
    inset: -80px -80px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 188, 80, 0.10);
    filter: blur(20px);
  }

  .kl-hero-card-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .kl-hero-card-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .kl-hero-card-badge {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(124, 44, 204, 0.25);
    color: #d4a4f5;
    border: 1px solid rgba(124, 44, 204, 0.45);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
  }

  .kl-hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 24px;
  }

  .kl-hero-stat {
    text-align: center;
    padding: 8px 4px;
    position: relative;
  }

  .kl-hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.10);
  }

  .kl-hero-stat-num {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
  }

  .kl-gold {
    color: #ffbc50;
  }

  .kl-hero-stat-lbl {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  .kl-hero-chart {
    position: relative;
    margin-bottom: 22px;
    padding: 16px 16px 10px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .kl-hero-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
  }

  .kl-hero-chart-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .kl-hero-chart-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #ffbc50;
    background: rgba(255, 188, 80, 0.14);
    padding: 3px 9px;
    border-radius: 999px;
  }

  .kl-hero-chart-svg {
    width: 100%;
    height: 88px;
    display: block;
    overflow: visible;
  }

  .kl-hero-chart-line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 2.2s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .kl-hero-chart-svg.animate .kl-hero-chart-line {
    stroke-dashoffset: 0;
  }

  .kl-hero-chart-area {
    opacity: 0;
    transition: opacity 1.2s 1.6s ease;
  }

  .kl-hero-chart-svg.animate .kl-hero-chart-area {
    opacity: 1;
  }

  .kl-hero-chart-dots {
    opacity: 0;
    transition: opacity 0.6s 2.2s ease;
  }

  .kl-hero-chart-svg.animate .kl-hero-chart-dots {
    opacity: 1;
  }

  .kl-hero-chart-halo {
    transform-origin: 320px 10px;
    transform-box: fill-box;
  }

  .kl-hero-chart-svg.animate .kl-hero-chart-halo {
    animation: klHaloPulse 2s 2.6s ease-out infinite;
  }

  @keyframes klHaloPulse {
    0% {
      r: 4;
      opacity: 0.85;
    }

    100% {
      r: 14;
      opacity: 0;
    }
  }

  .kl-hero-bars {
    position: relative;
    display: grid;
    gap: 14px;
  }

  .kl-hero-bar-row {
    display: grid;
    grid-template-columns: 96px 1fr 52px;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
  }

  .kl-hero-bar-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .kl-hero-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #c285f3, #ffbc50);
    width: 0%;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 12px rgba(255, 188, 80, 0.35);
  }

  .kl-hero-insight {
    position: relative;
    margin-top: 26px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(15, 3, 30, 0.65);
    border: 1px solid rgba(255, 188, 80, 0.22);
    color: #ffffff;
  }

  .kl-hero-insight strong {
    display: block;
    margin-bottom: 6px;
    color: #ffbc50;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .kl-hero-insight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
  }

  .kl-nvidia-badge {
    display: inline-block;
    margin-bottom: 28px;
    position: relative;
    top: -20px;
  }

  .kl-nvidia-badge img {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    border-radius: 10px;
  }

  @media (max-width: 1024px) {
    .kl-nvidia-badge {
      display: none !important;
    }
  }

  /* Hero responsive */
  @media (max-width: 900px) {
    .kl-hero-section {
      padding: 72px 20px;
    }

    .kl-hero-container {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .kl-hero-text {
      order: 1;
    }

    .kl-hero-card {
      order: 2;
    }

    .kl-hero-actions-desktop {
      display: none;
    }

    .kl-hero-actions-mobile {
      order: 3;
      display: flex;
      justify-content: flex-start;
      width: 100%;
      gap: 14px;
      margin-top: -10px;
      flex-wrap: nowrap;
    }

    .kl-hero-actions-mobile .kl-hero-btn-primary,
    .kl-hero-actions-mobile .kl-hero-btn-secondary {
      flex: 0 0 auto;
      width: auto;
    }

    .kl-hero-title {
      font-size: clamp(42px, 7vw, 60px);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .kl-mobile-br {
      display: inline;
    }

    .kl-hero-copy {
      max-width: 760px;
      margin-bottom: 0;
    }
  }

  @media (max-width: 520px) {
    .kl-hero-section {
      padding: 56px 18px;
    }

    .kl-hero-container {
      gap: 28px;
    }

    .kl-hero-title {
      font-size: clamp(32px, 10vw, 44px);
      line-height: 1.1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .kl-mobile-br {
      display: inline;
    }

    .kl-hero-copy {
      font-size: 16px;
      line-height: 1.6;
    }

    .kl-hero-card {
      padding: 20px;
      border-radius: 26px;
    }

    .kl-hero-card-header {
      gap: 12px;
      margin-bottom: 24px;
    }

    .kl-hero-card-label {
      font-size: 11px;
    }

    .kl-hero-card-badge {
      font-size: 11px;
      padding: 6px 10px;
    }

    .kl-hero-stat-num {
      font-size: clamp(22px, 7vw, 30px);
    }

    .kl-hero-stat-lbl {
      font-size: 9px;
    }

    .kl-hero-bar-row {
      grid-template-columns: 82px 1fr 42px;
      gap: 8px;
      font-size: 11px;
    }

    .kl-hero-actions-mobile {
      gap: 10px;
      margin-top: -6px;
    }

    .kl-hero-actions-mobile .kl-hero-btn-primary,
    .kl-hero-actions-mobile .kl-hero-btn-secondary {
      min-height: 46px;
      padding: 0 18px;
      font-size: 13.5px;
    }
  }

  @media (max-width: 360px) {
    .kl-hero-actions-mobile {
      gap: 8px;
    }

    .kl-hero-actions-mobile .kl-hero-btn-primary,
    .kl-hero-actions-mobile .kl-hero-btn-secondary {
      font-size: 12.5px;
      padding: 0 12px;
    }
  }

  /* Overlay: flex container that vertically centers the modal,
     and scrolls when the modal is taller than the viewport. */
  .kl-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    background: rgba(9, 3, 20, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overscroll-behavior: contain;
    font-family: "DM Sans", Arial, sans-serif;
  }

  .kl-modal-overlay.is-open {
    display: flex;
  }

  body.kl-modal-lock {
    overflow: hidden;
  }

  /* Modal: margin auto on all sides centers it inside the flex
     overlay when content fits, and lets it scroll naturally when
     content is taller than the viewport. */
  .kl-modal {
    width: min(900px, 100%);
    margin: auto;
    background: #fff;
    border: 1px solid rgba(124, 44, 204, 0.18);
    border-radius: 30px;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .kl-modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 999px;
    background: rgba(124, 44, 204, 0.07);
    color: #7c2ccc;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
    padding: 0;
  }

  .kl-modal-close:hover {
    background: rgba(124, 44, 204, 0.12);
  }

  .kl-modal-close svg {
    width: 17px;
    height: 17px;
  }

  .kl-modal-form {
    padding: 38px 54px 26px;
  }

  /* Header */
  .kl-modal .section-title {
    margin: 0 0 8px;
    color: #1a0d2e;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    text-align: left;
  }

  .kl-modal .section-title .accent {
    color: #7c2ccc;
    font-style: italic;
  }

  .kl-modal .section-lede {
    margin: 0 0 22px;
    color: #3d2e5a;
    font-size: 14px;
    line-height: 1.5;
    max-width: 680px;
    font-weight: 500;
    text-align: left;
  }

  /* Success banner */
  .kl-modal .form-success-banner {
    display: none;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    background: rgba(22, 128, 60, 0.08);
    color: #0d5c2e;
    border: 1px solid rgba(22, 128, 60, 0.25);
    align-items: flex-start;
    gap: 12px;
  }

  .kl-modal .form-success-banner.show {
    display: flex;
  }

  .kl-modal .form-success-banner svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #16803c;
    margin-top: 1px;
  }

  /* Fields */
  .kl-modal .field {
    margin-bottom: 0;
    position: relative;
  }

  .kl-modal #klm-f-name {
    margin-bottom: 22px;
  }

  .kl-modal .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .kl-modal .field-row .field {
    margin-bottom: 0;
  }

  .kl-modal .field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #1a0d2e;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }

  .kl-modal .field label .req {
    color: #7c2ccc;
    margin-left: 3px;
  }

  .kl-modal .field input[type="text"],
  .kl-modal .field input[type="email"],
  .kl-modal .field input[type="tel"] {
    width: 100%;
    min-height: 44px;
    padding: 11px 18px;
    border: 1.5px solid rgba(124, 44, 204, 0.16);
    border-radius: 999px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    color: #1a0d2e;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }

  .kl-modal .field input::placeholder {
    color: #a89db8;
    font-style: italic;
  }

  .kl-modal .field input:focus {
    border-color: #7c2ccc;
    box-shadow: 0 0 0 4px rgba(124, 44, 204, 0.08);
  }

  .kl-modal .field.error input {
    border-color: #d93025;
  }

  .kl-modal .field-msg {
    display: none;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    padding: 0 4px;
    line-height: 1.4;
  }

  .kl-modal .field.error .field-msg {
    display: block;
    color: #d93025;
  }

  .kl-modal .field-hint {
    display: none;
    font-size: 11px;
    color: #6b6280;
    margin-top: 4px;
    padding: 0 4px;
    line-height: 1.4;
  }

  .kl-modal .field.focused:not(.error):not(.valid) .field-hint {
    display: block;
  }

  /* Checkboxes */
  .kl-modal .check-group {
    margin-top: 0;
  }

  .kl-modal .check-group-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #1a0d2e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .kl-modal .two-col-checks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 18px;
  }

  .kl-modal .check-item {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    padding: 3px 0;
    font-size: 12px;
    color: #3d2e5a;
    line-height: 1.3;
    user-select: none;
    font-weight: 700;
  }

  .kl-modal .check-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .kl-modal .check-box {
    width: 17px;
    height: 17px;
    border: 1.5px solid rgba(124, 44, 204, 0.18);
    border-radius: 5px;
    background: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.15s;
  }

  .kl-modal .check-box svg {
    width: 10px;
    height: 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.15s;
  }

  .kl-modal .check-item:hover .check-box {
    border-color: #7c2ccc;
  }

  .kl-modal .check-item input:checked~.check-box {
    background: #7c2ccc;
    border-color: #7c2ccc;
  }

  .kl-modal .check-item input:checked~.check-box svg {
    opacity: 1;
  }

  .kl-modal .ital-suffix {
    font-style: italic;
    font-weight: inherit;
    margin-left: 1px;
  }

  /* Submit */
  .kl-modal .submit-row {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .kl-modal .btn-submit {
    padding: 12px 28px;
    min-height: 44px;
    background: #7c2ccc;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    font-family: "DM Sans", Arial, sans-serif;
    letter-spacing: -0.01em;
  }

  .kl-modal .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 44, 204, 0.3);
  }

  .kl-modal .btn-submit svg {
    width: 14px;
    height: 14px;
  }

  /* Modal responsive */
  @media (max-width: 900px) {
    .kl-modal {
      width: min(760px, 100%);
    }

    .kl-modal-form {
      padding: 34px 42px 28px;
    }

    .kl-modal .two-col-checks {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 560px) {
    .kl-modal-overlay {
      padding: 16px;
    }

    .kl-modal {
      border-radius: 24px;
    }

    .kl-modal-close {
      top: 14px;
      right: 14px;
      width: 28px;
      height: 28px;
    }

    .kl-modal-close svg {
      width: 15px;
      height: 15px;
    }

    .kl-modal-form {
      padding: 34px 24px 28px;
    }

    .kl-modal .section-title {
      font-size: clamp(28px, 7vw, 34px);
    }

    .kl-modal .section-lede {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .kl-modal .field-row {
      grid-template-columns: 1fr;
      gap: 0;
      margin-bottom: 0;
    }

    .kl-modal .field-row .field {
      margin-bottom: 14px;
    }

    .kl-modal #klm-f-name {
      margin-bottom: 14px;
    }

    .kl-modal .field input[type="text"],
    .kl-modal .field input[type="email"],
    .kl-modal .field input[type="tel"] {
      min-height: 48px;
      padding: 13px 18px;
      font-size: 14px;
    }

    .kl-modal .field label,
    .kl-modal .check-group-label {
      font-size: 13.5px;
    }

    .kl-modal .two-col-checks {
      grid-template-columns: 1fr;
      gap: 4px;
    }

    .kl-modal .check-item {
      font-size: 14px;
      padding: 6px 0;
    }

    .kl-modal .check-box {
      width: 20px;
      height: 20px;
    }

    .kl-modal .submit-row {
      margin-top: 20px;
    }

    .kl-modal .btn-submit {
      width: 100%;
      justify-content: center;
      font-size: 14px;
    }
  }



  .lm-section {
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
  }

  .lm-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 72px;
  }

  .lm-title-line {
    width: 40px;
    height: 2px;
    background: #c4b5c8;
    border-radius: 2px;
  }

  .lm-title-text {
    font-size: clamp(15px, 2.5vw, 20px);
    font-weight: 500;
    color: #333;
    letter-spacing: 0.01em;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .lm-band {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, #6a3fa0 0%, #b06ecb 30%, #e8a84c 65%, #d4854a 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  /* Fade edges */
  .lm-band::before,
  .lm-band::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }

  .lm-band::before {
    left: 0;
    background: linear-gradient(to right, rgba(106, 63, 160, 0.95), transparent);
  }

  .lm-band::after {
    right: 0;
    background: linear-gradient(to left, rgba(212, 133, 74, 0.95), transparent);
  }

  .lm-track-wrapper {
    overflow: hidden;
    padding: 28px 0;
  }

  .lm-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: lm-scroll 32s linear infinite;
    gap: 24px;
  }

  .lm-track:hover {
    animation-play-state: paused;
  }

  .lm-logo-slot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 14px 32px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .lm-logo-slot:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(255, 188, 80, 0.4);
    border-color: rgba(255, 188, 80, 0.6);
  }

  .lm-logo-slot img {
    height: clamp(52px, 6vw, 72px);
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: none !important;
    opacity: 1;
    display: block;
    transition: transform 0.3s ease;
  }

  /* Fallback text if no image yet */
  .lm-logo-slot .lm-logo-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-transform: uppercase;
  }

  @keyframes lm-scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .lm-section {
      padding: 64px 16px;
    }

    .lm-band {
      border-radius: 12px;
    }

    .lm-band::before,
    .lm-band::after {
      width: 40px;
    }

    .lm-logo-slot {
      padding: 0 28px;
    }

    .lm-track {
      animation-duration: 20s;
    }
  }

  @media (max-width: 480px) {
    .lm-logo-slot {
      padding: 0 20px;
    }

    .lm-track {
      animation-duration: 16s;
    }

    .lm-title-line {
      width: 24px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .lm-track {
      animation: none;
    }

    .lm-track-wrapper {
      overflow-x: auto;
    }
  }



  .ks-section {
    width: 100%;
    background: #f0eef8;
    padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 48px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
  }

  .ks-headline {
    max-width: 1150px;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    color: #3b1f6e;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin: 0 0 40px 0;
  }

  .ks-br-desktop {
    display: block;
  }

  @media (max-width: 768px) {
    .ks-br-desktop {
      display: none;
    }
  }

  .ks-headline em {
    font-style: italic;
    font-weight: 400;
  }

  .ks-btn {
    display: inline-block;
    background: #6b21c8;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 999px;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
  }

  .ks-btn:hover {
    background: #5a18a8;
    transform: translateY(-1px);
  }

  .ks-btn:active {
    transform: scale(0.97);
  }

  @media (max-width: 600px) {
    .ks-section {
      padding: 56px 20px;
    }

    .ks-headline {
      font-size: clamp(23px, 6vw, 32px);
    }
  }



  :root {
    --k-purple: #7c2ccc;
    --k-yellow: #ffbc50;
    --k-purple-soft: rgba(124, 44, 204, 0.08);
    --k-ink: #1a0d2e;
    --k-ink-soft: #3d2e5a;
    --k-grey: #6b6280;
    --k-bg-tint: rgba(124, 44, 204, 0.03);
    --k-line: rgba(124, 44, 204, 0.12);
  }

  .kollect-s9,
  .kollect-s9 * {
    box-sizing: border-box
  }

  .kollect-s9 {
    font-family: 'DM Sans', sans-serif;
    color: var(--k-ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  .kollect-s9 .stats-section {
    padding: clamp(42px, 5vw, 72px) clamp(20px, 5vw, 80px);
    background: linear-gradient(180deg, #fff 0%, var(--k-bg-tint) 100%);
  }

  .kollect-s9 .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .kollect-s9 .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 24px);
  }

  .kollect-s9 .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--k-line);
    border-radius: 22px;
    padding: 26px 24px;
    min-height: 150px;
    transition: all .35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
  }

  .kollect-s9 .stat-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--k-purple) 0%, var(--k-yellow) 100%);
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: center;
    transition: all .35s;
  }

  .kollect-s9 .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 44, 204, 0.25);
    box-shadow: 0 18px 40px rgba(124, 44, 204, 0.12);
  }

  .kollect-s9 .stat-card:hover::after {
    opacity: 1;
    transform: scaleY(1);
  }

  .kollect-s9 .stat-num {
    font-size: clamp(42px, 4.2vw, 58px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    background: linear-gradient(135deg, #7c2ccc 0%, #c44ce8 50%, #ffbc50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }

  .kollect-s9 .stat-label {
    font-size: clamp(14.5px, 1.15vw, 16.5px);
    line-height: 1.42;
    color: var(--k-ink-soft);
    font-weight: 500;
    min-height: 2.84em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .kollect-s9 .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .kollect-s9 .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  .kollect-s9 .stat-card.reveal:nth-child(1) {
    transition-delay: 0s
  }

  .kollect-s9 .stat-card.reveal:nth-child(2) {
    transition-delay: .1s
  }

  .kollect-s9 .stat-card.reveal:nth-child(3) {
    transition-delay: .2s
  }

  @media (max-width: 820px) {
    .kollect-s9 .stats-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .kollect-s9 .stat-card {
      padding: 28px 22px;
      min-height: auto;
    }

    .kollect-s9 .stat-num {
      font-size: clamp(48px, 11vw, 64px);
    }

    .kollect-s9 .stat-label {
      font-size: clamp(15px, 4vw, 18px);
      line-height: 1.5;
      min-height: auto;
    }

    .kollect-s9 .stat-label br {
      display: none;
    }
  }



  /* ============================================================
     AWARDS & RECOGNITION SECTION
     ============================================================ */
  :root {
    --purple: #7c2ccc;
    --gold: #ffbc50;
    --purple-soft: rgba(124, 44, 204, 0.08);
    --purple-mid: rgba(124, 44, 204, 0.15);
    --ink: #1a0d2e;
    --ink-soft: #3d2e5a;
    --grey: #6b6280;
    --border: rgba(124, 44, 204, 0.12);
    --yellow-soft: rgba(255, 188, 80, 0.10);
    --paper: #ffffff;
  }

  .recognition,
  .recognition * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .recognition {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    padding: 100px 24px 110px;
    position: relative;
    overflow: hidden;
  }

  .recognition::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(124, 44, 204, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    pointer-events: none;
  }

  .recognition .sol-glow-a {
    position: absolute;
    top: -160px;
    right: -140px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 44, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .recognition .sol-glow-b {
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 188, 80, 0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .recognition .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .recognition-head {
    text-align: center;
    margin-bottom: 64px;
  }

  .recognition-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 18px;
    padding: 5px 16px;
    background: var(--purple-soft);
    border: 1px solid rgba(124, 44, 204, 0.20);
    border-radius: 999px;
  }

  .recognition-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255, 188, 80, 0.6);
    flex-shrink: 0;
  }

  .recognition-title {
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--ink);
  }

  .recognition-title .accent {
    color: var(--purple);
    font-style: italic;
  }

  .recognition-sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto;
  }

  .recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .rec-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    height: 540px;
    text-decoration: none;
  }

  .rec-tile:hover {
    border-color: rgba(124, 44, 204, 0.30);
    box-shadow: 0 20px 56px rgba(124, 44, 204, 0.12);
    transform: translateY(-4px);
  }

  .rec-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--purple) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity .3s;
    z-index: 5;
  }

  .rec-tile:hover::before {
    opacity: 1;
  }

  .rec-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform .5s ease;
  }

  .rec-tile:hover img {
    transform: scale(1.04);
  }

  .rec-scrim {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 30px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 25%, rgba(0, 0, 0, 0.95) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .rec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: var(--gold);
    color: var(--ink);
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(255, 188, 80, 0.40);
  }

  .rec-source {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  }

  .rec-headline {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
  }

  .rec-desc {
    font-size: 14px;
    color: #e9e5f7;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 90%;
  }

  .rec-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--purple);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all .25s;
    align-self: flex-start;
    margin-top: auto;
    border: none;
    text-decoration: none;
  }

  .rec-tile:hover .rec-cta {
    background: #6620b0;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(124, 44, 204, 0.30);
    color: #fff;
  }

  .rec-cta svg {
    transition: transform .22s;
  }

  .rec-tile:hover .rec-cta svg {
    transform: translateX(3px);
  }

  .rec-tile-logo {
    background: #0d0d0d;
  }

  .rec-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 280px;
  }

  .rec-logo-img {
    position: static;
    width: 78%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transition: transform .5s ease;
  }

  .rec-tile-logo:hover .rec-logo-img {
    transform: scale(1.04);
  }

  .rec-tile-logo .rec-scrim {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.3) 40%, rgba(13, 13, 13, 0.92) 100%);
  }

  .recognition .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .78s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .recognition .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  .recognition .reveal[data-delay="1"] {
    transition-delay: .08s;
  }

  .recognition .reveal[data-delay="2"] {
    transition-delay: .16s;
  }

  .recognition .reveal[data-delay="3"] {
    transition-delay: .24s;
  }

  .recognition .reveal[data-delay="4"] {
    transition-delay: .32s;
  }

  .recognition .reveal[data-delay="5"] {
    transition-delay: .40s;
  }

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

    .rec-tile {
      height: 460px;
    }
  }

  @media(max-width:768px) {
    .recognition {
      padding: 70px 20px 80px;
    }

    .rec-tile {
      height: 460px;
    }

    .rec-tile:hover {
      transform: none;
      box-shadow: none;
    }

    .rec-tile::before {
      display: none;
    }

    .rec-tile img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
    }

    .rec-logo-wrap {
      position: absolute;
      inset: 0;
      padding: 20px 20px 230px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rec-logo-img {
      width: 74%;
      height: auto;
      max-height: 100%;
    }

    .rec-scrim {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 20px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 25%, rgba(0, 0, 0, 0.98) 100%);
    }

    .rec-tile-logo .rec-scrim {
      background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.8) 25%, rgba(13, 13, 13, 0.98) 100%);
    }

    .rec-badge {
      font-size: 8px;
      padding: 3px 8px;
      margin-bottom: 8px;
    }

    .rec-source {
      font-size: 9px;
      margin-bottom: 4px;
    }

    .rec-headline {
      font-size: 17px;
      margin-bottom: 6px;
      line-height: 1.25;
    }

    .rec-desc {
      font-size: 12px;
      line-height: 1.45;
      margin-bottom: 12px;
      max-width: 95%;
      color: #e2def5;
    }

    .rec-cta {
      padding: 8px 16px;
      font-size: 11px;
    }
  }

  @media(max-width:480px) {
    .rec-tile {
      height: 430px;
    }

    .rec-logo-wrap {
      padding-bottom: 220px;
    }

    .rec-scrim {
      padding: 16px 16px 18px;
    }

    .rec-desc {
      font-size: 11.5px;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }



  /* ── Brand tokens ── */
  :root {
    --k-purple: #7c2ccc;
    --k-yellow: #ffbc50;
    --k-purple-soft: rgba(124, 44, 204, 0.08);
    --k-purple-mid: rgba(124, 44, 204, 0.15);
    --k-ink: #1a0d2e;
    --k-ink-soft: #3d2e5a;
    --k-grey: #6b6280;
    --k-line: rgba(124, 44, 204, 0.12);
    --k-yellow-soft: rgba(255, 188, 80, 0.10);
  }

  .kollect-sol,
  .kollect-sol * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .kollect-sol {
    font-family: 'DM Sans', sans-serif;
    color: var(--k-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    padding: 100px 40px 110px;
    position: relative;
    overflow: hidden;
  }

  /* Background tint + borders — matches exec section */
  .kollect-sol::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(124, 44, 204, 0.03);
    border-top: 1px solid var(--k-line);
    border-bottom: 1px solid var(--k-line);
    pointer-events: none;
  }

  /* Decorative glow blobs */
  .kollect-sol .sol-glow-a {
    position: absolute;
    top: -160px;
    right: -140px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 44, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .kollect-sol .sol-glow-b {
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 188, 80, 0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .kollect-sol .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* ── HEADER ── */
  .kollect-sol .sol-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .kollect-sol .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--k-purple);
    font-weight: 700;
    margin-bottom: 18px;
    padding: 5px 16px;
    background: var(--k-purple-soft);
    border: 1px solid rgba(124, 44, 204, 0.20);
    border-radius: 999px;
  }

  .kollect-sol .section-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--k-yellow);
    box-shadow: 0 0 8px rgba(255, 188, 80, 0.6);
    flex-shrink: 0;
  }

  .kollect-sol .section-title {
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--k-ink);
  }

  .kollect-sol .section-title .accent {
    color: var(--k-purple);
    font-style: italic;
  }

  .kollect-sol .section-lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--k-ink-soft);
    max-width: 560px;
    margin: 0 auto;
  }

  /* ── GRID ── */
  .kollect-sol .sol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* ── CARD ── */
  .kollect-sol .sol-card {
    background: #fff;
    border: 1px solid var(--k-line);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
  }

  .kollect-sol .sol-card:hover {
    border-color: rgba(124, 44, 204, 0.30);
    box-shadow: 0 20px 56px rgba(124, 44, 204, 0.12);
    transform: translateY(-4px);
  }

  /* Yellow left-edge accent on hover */
  .kollect-sol .sol-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--k-purple) 0%, var(--k-yellow) 100%);
    opacity: 0;
    transition: opacity .3s;
    z-index: 2;
  }

  .kollect-sol .sol-card:hover::before {
    opacity: 1;
  }

  /* Image area */
  .kollect-sol .sol-img-wrap {
    background: var(--k-purple-soft);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  /* Subtle inner gradient overlay */
  .kollect-sol .sol-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(124, 44, 204, 0.08) 100%);
    pointer-events: none;
  }

  .kollect-sol .sol-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Placeholder shown when no image src is provided */
  .kollect-sol .sol-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    color: var(--k-purple);
    opacity: 0.45;
  }

  .kollect-sol .sol-img-placeholder svg {
    width: 56px;
    height: 56px;
  }

  .kollect-sol .sol-img-placeholder span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--k-grey);
  }

  /* Content area */
  .kollect-sol .sol-body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Product tag pill */
  .kollect-sol .sol-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    align-self: flex-start;
  }

  .kollect-sol .sol-tag .sol-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Title */
  .kollect-sol .sol-card-title {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 12px;
    color: var(--k-ink);
  }

  .kollect-sol .sol-new-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--k-ink);
    background: var(--k-yellow);
    padding: 2px 7px;
    border-radius: 999px;
    vertical-align: super;
    line-height: 1;
    font-style: normal;
    box-shadow: 0 2px 8px rgba(255, 188, 80, 0.40);
  }

  .kollect-sol .sol-card-title em {
    color: var(--k-purple);
    font-style: italic;
    font-weight: 700;
  }

  /* Description */
  .kollect-sol .sol-card-desc {
    font-size: 14px;
    color: var(--k-ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  /* Feature pills row */
  .kollect-sol .sol-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .kollect-sol .sol-feat {
    font-size: 11px;
    font-weight: 600;
    color: var(--k-ink-soft);
    background: var(--k-purple-soft);
    border: 1px solid var(--k-line);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
  }

  /* CTA button */
  .kollect-sol .sol-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--k-purple);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    align-self: flex-end;
    letter-spacing: 0.01em;
    margin-top: 24px;
  }

  .kollect-sol .sol-btn:hover {
    background: #6620b0;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(124, 44, 204, 0.30);
  }

  .kollect-sol .sol-btn svg {
    transition: transform .22s;
  }

  .kollect-sol .sol-btn:hover svg {
    transform: translateX(3px);
  }

  /* ── NEW: Bottom row with left image + right button (Voice Bots & AI Agenta only) ── */
  .kollect-sol .sol-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
  }

  .kollect-sol .sol-bottom .sol-btn {
    margin-top: 0;
    align-self: auto;
  }

  .kollect-sol .sol-bottom-img {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
  }

  /* ── REVEAL ANIMATION ── */
  .kollect-sol .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .78s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .kollect-sol .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  .kollect-sol .reveal[data-delay="1"] {
    transition-delay: .08s;
  }

  .kollect-sol .reveal[data-delay="2"] {
    transition-delay: .16s;
  }

  .kollect-sol .reveal[data-delay="3"] {
    transition-delay: .24s;
  }

  .kollect-sol .reveal[data-delay="4"] {
    transition-delay: .32s;
  }

  .kollect-sol .reveal[data-delay="5"] {
    transition-delay: .40s;
  }

  @media(max-width:900px) {
    .kollect-sol .sol-grid {
      grid-template-columns: 1fr;
    }

    .kollect-sol .sol-img-wrap {
      height: 220px;
    }
  }

  @media(max-width:600px) {
    .kollect-sol {
      padding: 70px 20px 80px;
    }

    .kollect-sol .sol-body {
      padding: 22px 20px 24px;
    }

    .kollect-sol .sol-bottom-img {
      height: 40px;
      max-width: 110px;
    }
  }



    :root {
      --k-purple: #7c2ccc;
      --k-purple-deep: #5a1ea3;
      --k-purple-light: #a168e5;
      --k-yellow: #ffbc50;
      --k-yellow-deep: #f5a623;
      --k-yellow-soft: rgba(255, 188, 80, 0.18);
      --k-purple-soft: rgba(124, 44, 204, 0.08);
      --k-purple-line: rgba(124, 44, 204, 0.18);
      --k-ink: #1a0d2e;
      --k-ink-soft: #3d2e5a;
      --k-grey: #6b6280;
      --k-bg: #fff;
      --k-bg-tint: rgba(124, 44, 204, 0.03);
      --k-line: rgba(124, 44, 204, 0.12);
    }

    .kollect-s5,
    .kollect-s5 * {
      box-sizing: border-box
    }

    .kollect-s5 {
      font-family: 'DM Sans', sans-serif;
      color: var(--k-ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased
    }

    .kollect-s5 h1,
    .kollect-s5 h2,
    .kollect-s5 h3,
    .kollect-s5 h4,
    .kollect-s5 p {
      margin: 0;
      padding: 0
    }

    .kollect-s5 button {
      font-family: inherit;
      cursor: pointer
    }

    /* ===== FULL-WIDTH SECTION ===== */
    .kollect-s5 .ks5-section {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 120px 40px 130px;
      position: relative;
      background:
        radial-gradient(ellipse 70% 60% at 15% 10%, rgba(124, 44, 204, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 90%, rgba(255, 188, 80, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, #fff 0%, #fbfaff 50%, var(--k-bg-tint) 100%);
      overflow: hidden;
      isolation: isolate;
    }

    /* ===== BACKGROUND ATMOSPHERE ===== */
    .kollect-s5 .bg-grid {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(124, 44, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 44, 204, 0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
    }

    .kollect-s5 .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
      pointer-events: none;
      animation: ks5orbDrift 18s ease-in-out infinite;
    }

    .kollect-s5 .bg-orb.o1 {
      width: 480px;
      height: 480px;
      background: rgba(124, 44, 204, 0.12);
      top: -120px;
      left: -80px;
    }

    .kollect-s5 .bg-orb.o2 {
      width: 380px;
      height: 380px;
      background: rgba(255, 188, 80, 0.12);
      bottom: -100px;
      right: -60px;
      animation-delay: -6s;
    }

    .kollect-s5 .bg-orb.o3 {
      width: 300px;
      height: 300px;
      background: rgba(124, 44, 204, 0.07);
      top: 40%;
      right: 20%;
      animation-delay: -12s;
    }

    @keyframes ks5orbDrift {

      0%,
      100% {
        transform: translate(0, 0) scale(1)
      }

      33% {
        transform: translate(40px, -30px) scale(1.08)
      }

      66% {
        transform: translate(-30px, 40px) scale(0.95)
      }
    }

    /* Floating sparkles */
    .kollect-s5 .sparkle {
      position: absolute;
      width: 6px;
      height: 6px;
      z-index: 1;
      pointer-events: none;
      animation: ks5sparkle 3s ease-in-out infinite;
    }

    .kollect-s5 .sparkle::before,
    .kollect-s5 .sparkle::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--k-yellow);
      border-radius: 1px;
    }

    .kollect-s5 .sparkle::before {
      transform: rotate(0deg) scale(1, 0.18)
    }

    .kollect-s5 .sparkle::after {
      transform: rotate(90deg) scale(1, 0.18)
    }

    .kollect-s5 .sparkle.s1 {
      top: 18%;
      left: 8%;
      animation-delay: 0s
    }

    .kollect-s5 .sparkle.s2 {
      top: 12%;
      right: 11%;
      animation-delay: 0.7s
    }

    .kollect-s5 .sparkle.s3 {
      top: 62%;
      left: 6%;
      animation-delay: 1.4s
    }

    .kollect-s5 .sparkle.s4 {
      top: 72%;
      right: 7%;
      animation-delay: 2.1s
    }

    .kollect-s5 .sparkle.s5 {
      top: 35%;
      right: 5%;
      animation-delay: 1s;
      width: 5px;
      height: 5px
    }

    .kollect-s5 .sparkle.s6 {
      top: 48%;
      left: 4%;
      animation-delay: 2.4s;
      width: 4px;
      height: 4px
    }

    .kollect-s5 .sparkle.purple::before,
    .kollect-s5 .sparkle.purple::after {
      background: var(--k-purple-light)
    }

    @keyframes ks5sparkle {

      0%,
      100% {
        opacity: 0;
        transform: scale(0) rotate(0deg)
      }

      50% {
        opacity: 1;
        transform: scale(1) rotate(180deg)
      }
    }

    .kollect-s5 .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      position: relative;
      z-index: 2
    }

    /* ===== HEADER ===== */
    .kollect-s5 .ks5-header {
      text-align: center;
      max-width: 1100px;
      margin: 0 auto 32px;
      position: relative
    }

    .kollect-s5 .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--k-purple);
      font-weight: 700;
      margin-bottom: 22px;
      padding: 7px 16px;
      background: #fff;
      border: 1px solid var(--k-purple-line);
      border-radius: 999px;
      box-shadow: 0 4px 16px rgba(124, 44, 204, 0.08);
    }

    .kollect-s5 .section-eyebrow .eb-pulse {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--k-purple);
      position: relative;
    }

    .kollect-s5 .section-eyebrow .eb-pulse::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: var(--k-purple);
      opacity: 0.4;
      animation: ks5pulseRing 2s ease-out infinite;
    }

    .kollect-s5 .section-eyebrow .eb-new {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: linear-gradient(135deg, var(--k-yellow) 0%, var(--k-yellow-deep) 100%);
      color: #5a3500;
      font-size: 9.5px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 6px;
      letter-spacing: 0.1em;
      margin-left: 4px;
      box-shadow: 0 2px 6px rgba(255, 188, 80, 0.4);
    }

    @keyframes ks5pulseRing {
      0% {
        transform: scale(0.8);
        opacity: 0.6
      }

      100% {
        transform: scale(2.4);
        opacity: 0
      }
    }

    .kollect-s5 .section-title {
      font-weight: 800;
      font-size: clamp(36px, 5.4vw, 68px);
      letter-spacing: -0.035em;
      line-height: 1.05;
      margin-bottom: 24px;
      color: var(--k-ink);
      overflow: visible;
      padding: 0 8px 8px;
    }

    /* === Gradient text accent (purple → yellow) === */
    .kollect-s5 .section-title .accent {
      display: block;
      position: relative;
      margin-top: 24px;
      font-style: italic;
      font-weight: 800;
      letter-spacing: -0.025em;
      padding: 0 0.08em;
      background: linear-gradient(100deg,
          var(--k-purple) 0%,
          var(--k-purple-light) 35%,
          var(--k-yellow) 65%,
          var(--k-yellow-deep) 100%);
      background-size: 200% 100%;
      background-position: 0% 50%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: ks5gradientShift 6s ease-in-out infinite;
    }

    @keyframes ks5gradientShift {

      0%,
      100% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }
    }

    .kollect-s5 .section-lede {
      font-size: 18px;
      line-height: 1.65;
      color: var(--k-ink-soft);
      max-width: 640px;
      margin: 0 auto;
    }

    /* ===== PROOF BAR ===== */
    .kollect-s5 .proof-bar {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 0;
      max-width: 980px;
      margin: 48px auto 0;
      background: #fff;
      border: 1px solid var(--k-purple-line);
      border-radius: 22px;
      padding: 8px;
      box-shadow:
        0 20px 50px rgba(124, 44, 204, 0.14),
        0 4px 12px rgba(124, 44, 204, 0.06);
      position: relative;
    }

    .kollect-s5 .proof-bar::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(124, 44, 204, 0.35) 0%, transparent 40%, rgba(255, 188, 80, 0.3) 100%);
      z-index: -1;
      opacity: 0.6;
      filter: blur(10px);
    }

    .kollect-s5 .proof-item {
      flex: 1;
      min-width: 160px;
      padding: 20px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 4px;
      position: relative;
      border-radius: 14px;
      transition: background .3s ease;
    }

    .kollect-s5 .proof-item:hover {
      background: var(--k-purple-soft)
    }

    .kollect-s5 .proof-item+.proof-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 25%;
      bottom: 25%;
      width: 1px;
      background: var(--k-line);
    }

    .kollect-s5 .proof-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--k-purple-soft), rgba(255, 188, 80, 0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
      border: 1px solid rgba(124, 44, 204, 0.10);
    }

    .kollect-s5 .proof-icon svg {
      width: 16px;
      height: 16px;
      color: var(--k-purple)
    }

    .kollect-s5 .proof-num {
      font-size: clamp(26px, 3.2vw, 36px);
      font-weight: 800;
      color: var(--k-ink);
      letter-spacing: -0.03em;
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 1px;
      font-variant-numeric: tabular-nums;
    }

    .kollect-s5 .proof-num .suffix {
      background: linear-gradient(135deg, var(--k-purple), var(--k-yellow-deep));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: 0.7em;
      font-weight: 800;
    }

    .kollect-s5 .proof-label {
      font-size: 11.5px;
      color: var(--k-grey);
      font-weight: 600;
      margin-top: 4px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    @media(max-width:720px) {
      .kollect-s5 .proof-item {
        flex: 1 1 45%;
        padding: 14px 10px
      }

      .kollect-s5 .proof-item+.proof-item::before {
        display: none
      }
    }

    /* ===== FILTER TABS ===== */
    .kollect-s5 .tabs-wrap {
      text-align: center;
      margin: 60px 0 50px
    }

    .kollect-s5 .filter-tabs {
      display: inline-flex;
      gap: 4px;
      padding: 6px;
      background: #fff;
      border: 1px solid var(--k-line);
      border-radius: 999px;
      box-shadow: 0 10px 30px rgba(124, 44, 204, 0.10);
      position: relative;
    }

    .kollect-s5 .filter-tab {
      padding: 11px 24px;
      border: none;
      background: transparent;
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--k-ink-soft);
      transition: color .35s ease;
      letter-spacing: -0.01em;
      white-space: nowrap;
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .kollect-s5 .filter-tab:hover {
      color: var(--k-purple)
    }

    .kollect-s5 .filter-tab.active {
      color: #fff
    }

    .kollect-s5 .filter-tab .tab-count {
      font-size: 10px;
      padding: 2px 7px;
      border-radius: 999px;
      background: var(--k-purple-soft);
      color: var(--k-purple);
      font-weight: 700;
      transition: all .35s ease;
    }

    .kollect-s5 .filter-tab.active .tab-count {
      background: rgba(255, 255, 255, 0.25);
      color: #fff;
    }

    .kollect-s5 .tab-indicator {
      position: absolute;
      top: 6px;
      bottom: 6px;
      background: linear-gradient(135deg, var(--k-purple) 0%, var(--k-purple-deep) 100%);
      border-radius: 999px;
      box-shadow: 0 6px 18px rgba(124, 44, 204, 0.40);
      transition: left .45s cubic-bezier(0.22, 1, 0.36, 1), width .45s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 1;
    }

    /* ===== WIDGETS STAGE ===== */
    .kollect-s5 .widgets-stage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: stretch;
      justify-items: center;
      transition: all .4s ease;
      min-height: 400px;
    }

    .kollect-s5 .widgets-stage.single {
      grid-template-columns: 1fr;
      max-width: 1140px;
      margin: 0 auto;
      align-items: start;
    }

    .kollect-s5 .widget-card {
      width: 100%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      transition: opacity .35s ease, transform .35s ease;
      opacity: 1;
      transform: scale(1);
      height: 100%;
    }

    .kollect-s5 .widget-card.is-hidden {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
      position: absolute;
      visibility: hidden;
    }

    .kollect-s5 .widget-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }

    .kollect-s5 .widgets-stage:not(.single) .widget-info {
      margin-top: auto;
    }

    .kollect-s5 .widgets-stage:not(.single) .widget-card {
      gap: 64px;
      padding-bottom: 8px;
    }

    .kollect-s5 .widget-caption {
      display: none;
      text-align: left
    }

    /* ----- Single mode: 2-col grid ----- */
    .kollect-s5 .widgets-stage.single .widget-card {
      display: grid;
      grid-template-columns: minmax(0, 460px) minmax(0, 560px);
      gap: 64px;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      width: 100%;
    }

    .kollect-s5 .widgets-stage.single .widget-info {
      align-items: flex-start;
      animation: ks5slideIn .55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .kollect-s5 .widgets-stage.single .widget-caption {
      display: block
    }

    .kollect-s5 .widget-caption .ws-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--k-purple);
      font-weight: 700;
      margin-bottom: 16px;
      padding: 6px 14px;
      background: var(--k-purple-soft);
      border-radius: 999px;
    }

    .kollect-s5 .widget-caption h3 {
      font-size: clamp(28px, 3.4vw, 42px);
      font-weight: 800;
      color: var(--k-ink);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .kollect-s5 .widget-caption h3 em {
      color: var(--k-purple);
      font-style: italic;
      font-weight: 800;
      position: relative;
    }

    .kollect-s5 .widget-caption h3 em::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0.1em;
      height: 0.16em;
      background: var(--k-yellow-soft);
      z-index: -1;
      border-radius: 4px;
    }

    .kollect-s5 .widget-caption p {
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--k-ink-soft);
      margin-bottom: 24px;
    }

    /* Feature list */
    .kollect-s5 .feature-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }

    .kollect-s5 .feature-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14.5px;
      color: var(--k-ink-soft);
      font-weight: 500;
      padding: 10px 14px;
      background: #fff;
      border: 1px solid var(--k-line);
      border-radius: 12px;
      transition: all .25s ease;
    }

    .kollect-s5 .feature-row:hover {
      border-color: var(--k-purple-line);
      transform: translateX(4px);
      box-shadow: 0 6px 16px rgba(124, 44, 204, 0.08);
    }

    .kollect-s5 .feature-row .fi-check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--k-purple), var(--k-purple-deep));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0;
      box-shadow: 0 4px 10px rgba(124, 44, 204, 0.30);
    }

    .kollect-s5 .feature-row .fi-check svg {
      width: 12px;
      height: 12px;
      color: #fff
    }

    .kollect-s5 .feature-row strong {
      color: var(--k-ink);
      font-weight: 700
    }

    /* CTA group */
    .kollect-s5 .cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .kollect-s5 .btn-learn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: linear-gradient(135deg, var(--k-purple) 0%, var(--k-purple-deep) 100%);
      color: #fff;
      border: none;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: -0.01em;
      transition: all .3s ease;
      box-shadow:
        0 8px 24px rgba(124, 44, 204, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .kollect-s5 .btn-learn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--k-purple-light), var(--k-purple));
      opacity: 0;
      transition: opacity .3s ease;
    }

    .kollect-s5 .btn-learn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
      transition: left .6s ease;
    }

    .kollect-s5 .btn-learn:hover::before {
      opacity: 1
    }

    .kollect-s5 .btn-learn:hover::after {
      left: 120%
    }

    .kollect-s5 .btn-learn>* {
      position: relative;
      z-index: 1
    }

    .kollect-s5 .btn-learn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(124, 44, 204, 0.46)
    }

    .kollect-s5 .btn-learn svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      transition: transform .3s ease
    }

    .kollect-s5 .btn-learn:hover svg {
      transform: translateX(4px)
    }

    @keyframes ks5slideIn {
      from {
        opacity: 0;
        transform: translateX(36px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    @media(max-width:980px) {
      .kollect-s5 .widgets-stage.single .widget-card {
        grid-template-columns: 1fr;
        gap: 36px;
        justify-items: center;
      }

      .kollect-s5 .widgets-stage.single .widget-info {
        align-items: center;
        text-align: center;
        max-width: 580px;
      }

      .kollect-s5 .widgets-stage.single .widget-caption {
        text-align: center
      }

      .kollect-s5 .feature-list {
        align-items: stretch;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        width: 100%
      }
    }

    @media(max-width:900px) {
      .kollect-s5 .widgets-stage {
        grid-template-columns: 1fr;
        gap: 56px
      }

      .kollect-s5 .ks5-section {
        padding: 80px 20px 90px
      }
    }

    /* ===== SCENE + CARDS ===== */
    .kollect-s5 .scene {
      position: relative;
      width: min(440px, 100%);
      height: 340px;
      margin: 0 auto;
      perspective: 1200px;
    }

    .kollect-s5 .gpt-widget .scene {
      height: 380px
    }

    .kollect-s5 .scene::before {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -24px;
      width: 78%;
      height: 44px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse, rgba(124, 44, 204, 0.28) 0%, transparent 70%);
      filter: blur(22px);
      z-index: 0;
    }

    .kollect-s5 .card {
      position: absolute;
      top: 24px;
      left: 36px;
      width: calc(100% - 44px);
      max-width: 400px;
      background: #fff;
      border-radius: 22px;
      padding: 18px 20px 16px;
      border: 1px solid rgba(124, 44, 204, 0.10);
      box-shadow:
        0 28px 70px rgba(124, 44, 204, 0.16),
        0 6px 16px rgba(124, 44, 204, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
      z-index: 1;
      transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s ease;
      animation: ks5cardFloat 6s ease-in-out infinite;
    }

    @keyframes ks5cardFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    .kollect-s5 .widget-card:hover .card {
      transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
      box-shadow:
        0 40px 80px rgba(124, 44, 204, 0.22),
        0 8px 20px rgba(124, 44, 204, 0.10);
      animation-play-state: paused;
    }

    .kollect-s5 .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px
    }

    .kollect-s5 .agent-info {
      display: flex;
      align-items: center;
      gap: 11px
    }

    .kollect-s5 .agent-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, #7c2ccc 0%, #9d4cef 50%, #7c5ff5 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #fff;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(124, 44, 204, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
    }

    .kollect-s5 .agent-icon::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--k-purple-light), transparent 60%);
      opacity: 0.4;
      z-index: -1;
      filter: blur(5px);
    }

    .kollect-s5 .agent-name {
      font-weight: 700;
      font-size: 14.5px;
      color: #1a1a2e;
      letter-spacing: -0.01em
    }

    .kollect-s5 .agent-status {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--k-purple);
      font-weight: 500;
      margin-top: 2px
    }

    .kollect-s5 .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--k-purple);
      animation: ks5pulse 1.5s ease-in-out infinite
    }

    @keyframes ks5pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.4;
        transform: scale(0.75)
      }
    }

    .kollect-s5 .stats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 7px;
      margin-top: 11px
    }

    .kollect-s5 .stat {
      background: linear-gradient(135deg, #faf7ff 0%, #f3eeff 100%);
      border: 1px solid #ede5ff;
      border-radius: 11px;
      padding: 8px 6px;
      text-align: center;
      transition: transform .25s ease;
    }

    .kollect-s5 .widget-card:hover .stat {
      transform: translateY(-1px)
    }

    .kollect-s5 .stat-icon {
      margin-bottom: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 16px;
      font-size: 12px
    }

    .kollect-s5 .stat-val {
      font-size: 13.5px;
      font-weight: 700;
      color: #1a1a2e;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums
    }

    .kollect-s5 .stat-label {
      font-size: 9px;
      color: #9a8eb8;
      margin-top: 1px;
      letter-spacing: 0.04em;
      font-weight: 500;
      text-transform: uppercase
    }

    /* ===== FLOATING BADGES ===== */
    .kollect-s5 .badge {
      position: absolute;
      border-radius: 30px;
      padding: 7px 13px;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 10;
      white-space: nowrap;
      font-family: 'DM Sans', sans-serif;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .kollect-s5 .badge-multi {
      top: 0px;
      left: 0px;
      background: rgba(255, 255, 255, 0.95);
      color: #1a1a2e;
      border: 1px solid rgba(124, 44, 204, 0.12);
      box-shadow: 0 8px 20px rgba(124, 44, 204, 0.14);
      animation: ks5floatA 3.2s ease-in-out infinite;
    }

    .kollect-s5 .badge-eff {
      top: 135px;
      right: -10px;
      background: linear-gradient(135deg, var(--k-purple) 0%, var(--k-purple-deep) 100%);
      color: #fff;
      box-shadow: 0 8px 22px rgba(124, 44, 204, 0.38);
      animation: ks5floatB 3.8s ease-in-out infinite;
    }

    .kollect-s5 .badge-rating {
      bottom: 0px;
      left: -8px;
      background: linear-gradient(135deg, var(--k-yellow) 0%, var(--k-yellow-deep) 100%);
      color: #5a3500;
      box-shadow: 0 8px 22px rgba(255, 188, 80, 0.42);
      animation: ks5floatA 4.2s ease-in-out infinite reverse;
    }

    @keyframes ks5floatA {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-7px)
      }
    }

    @keyframes ks5floatB {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-9px)
      }
    }

    .kollect-s5 .dot-dec {
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      animation: ks5floatDot 4s ease-in-out infinite
    }

    @keyframes ks5floatDot {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-7px)
      }
    }

    /* ===== VOICE WIDGET ===== */
    .kollect-s5 .voice-widget .live-badge {
      background: linear-gradient(135deg, #fff5e0, #ffe9c4);
      color: #8a5a00;
      border: 1px solid var(--k-yellow);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 0.08em;
      animation: ks5liveFlash 2s ease-in-out infinite;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .kollect-s5 .voice-widget .live-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #d94545;
      box-shadow: 0 0 0 0 rgba(217, 69, 69, 0.6);
      animation: ks5redPulse 1.4s ease-out infinite;
    }

    @keyframes ks5redPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(217, 69, 69, 0.6)
      }

      100% {
        box-shadow: 0 0 0 8px rgba(217, 69, 69, 0)
      }
    }

    @keyframes ks5liveFlash {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.7
      }
    }

    .kollect-s5 .voice-widget .call-box {
      background: linear-gradient(135deg, #faf7ff 0%, #f3eeff 100%);
      border: 1px solid #ede5ff;
      border-radius: 14px;
      padding: 12px 14px;
    }

    .kollect-s5 .voice-widget .call-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 9px
    }

    .kollect-s5 .voice-widget .call-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      color: var(--k-purple)
    }

    .kollect-s5 .voice-widget .call-time {
      font-size: 11px;
      color: var(--k-purple);
      font-weight: 600;
      background: #fff;
      padding: 2px 7px;
      border-radius: 6px;
      border: 1px solid #ede5ff;
      font-variant-numeric: tabular-nums;
    }

    .kollect-s5 .voice-widget .waveform {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5px;
      height: 36px;
      margin-bottom: 8px
    }

    .kollect-s5 .voice-widget .bar {
      width: 3px;
      border-radius: 3px;
      background: linear-gradient(to top, var(--k-purple), var(--k-purple-light), var(--k-yellow));
      animation: ks5wave 0.9s ease-in-out infinite;
    }

    .kollect-s5 .voice-widget .bar:nth-child(1) {
      height: 8px;
      animation-delay: 0s
    }

    .kollect-s5 .voice-widget .bar:nth-child(2) {
      height: 16px;
      animation-delay: 0.07s
    }

    .kollect-s5 .voice-widget .bar:nth-child(3) {
      height: 26px;
      animation-delay: 0.14s
    }

    .kollect-s5 .voice-widget .bar:nth-child(4) {
      height: 20px;
      animation-delay: 0.21s
    }

    .kollect-s5 .voice-widget .bar:nth-child(5) {
      height: 32px;
      animation-delay: 0.28s
    }

    .kollect-s5 .voice-widget .bar:nth-child(6) {
      height: 24px;
      animation-delay: 0.35s
    }

    .kollect-s5 .voice-widget .bar:nth-child(7) {
      height: 34px;
      animation-delay: 0.42s
    }

    .kollect-s5 .voice-widget .bar:nth-child(8) {
      height: 28px;
      animation-delay: 0.49s
    }

    .kollect-s5 .voice-widget .bar:nth-child(9) {
      height: 34px;
      animation-delay: 0.56s
    }

    .kollect-s5 .voice-widget .bar:nth-child(10) {
      height: 28px;
      animation-delay: 0.63s
    }

    .kollect-s5 .voice-widget .bar:nth-child(11) {
      height: 22px;
      animation-delay: 0.70s
    }

    .kollect-s5 .voice-widget .bar:nth-child(12) {
      height: 32px;
      animation-delay: 0.77s
    }

    .kollect-s5 .voice-widget .bar:nth-child(13) {
      height: 24px;
      animation-delay: 0.84s
    }

    .kollect-s5 .voice-widget .bar:nth-child(14) {
      height: 16px;
      animation-delay: 0.91s
    }

    .kollect-s5 .voice-widget .bar:nth-child(15) {
      height: 10px;
      animation-delay: 0.98s
    }

    .kollect-s5 .voice-widget .bar:nth-child(16) {
      height: 20px;
      animation-delay: 1.05s
    }

    .kollect-s5 .voice-widget .bar:nth-child(17) {
      height: 30px;
      animation-delay: 1.12s
    }

    .kollect-s5 .voice-widget .bar:nth-child(18) {
      height: 14px;
      animation-delay: 1.19s
    }

    .kollect-s5 .voice-widget .bar:nth-child(19) {
      height: 7px;
      animation-delay: 1.26s
    }

    @keyframes ks5wave {

      0%,
      100% {
        transform: scaleY(1);
        opacity: 1
      }

      50% {
        transform: scaleY(0.28);
        opacity: 0.35
      }
    }

    .kollect-s5 .voice-widget .call-text {
      font-size: 10.5px;
      color: #7a6f95;
      font-style: italic;
      overflow: hidden;
      white-space: nowrap;
      border-right: 1.5px solid var(--k-purple);
      animation: ks5typing 4s steps(45, end) infinite, ks5blink 0.75s step-end infinite;
      width: 0;
      max-width: 100%;
    }

    @keyframes ks5typing {

      0%,
      8% {
        width: 0
      }

      55%,
      85% {
        width: 100%
      }

      100% {
        width: 0
      }
    }

    @keyframes ks5blink {

      0%,
      100% {
        border-color: transparent
      }

      50% {
        border-color: var(--k-purple)
      }
    }

    /* ===== GPT WIDGET ===== */
    .kollect-s5 .gpt-widget .live-badge {
      background: linear-gradient(135deg, #f3eeff, #e8dcff);
      color: var(--k-purple);
      border: 1px solid #d4b3f5;
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 0.08em;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .kollect-s5 .gpt-widget .live-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--k-purple);
      animation: ks5pulse 1.5s ease-in-out infinite;
    }

    .kollect-s5 .gpt-widget .chat-box {
      background: linear-gradient(135deg, #faf7ff 0%, #f3eeff 100%);
      border: 1px solid #ede5ff;
      border-radius: 14px;
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .kollect-s5 .gpt-widget .msg {
      display: flex;
      gap: 8px;
      align-items: flex-end
    }

    .kollect-s5 .gpt-widget .msg.msg-user {
      flex-direction: row-reverse
    }

    .kollect-s5 .gpt-widget .msg-avatar {
      width: 23px;
      height: 23px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }

    .kollect-s5 .gpt-widget .msg-avatar.ai {
      background: linear-gradient(135deg, #7c2ccc, #9d4cef);
      color: #fff;
      box-shadow: 0 2px 6px rgba(124, 44, 204, 0.3);
    }

    .kollect-s5 .gpt-widget .msg-avatar.user {
      background: #fff;
      border: 1px solid #e0d4f5;
    }

    .kollect-s5 .gpt-widget .bubble {
      border-radius: 13px;
      padding: 8px 12px;
      font-size: 11.5px;
      line-height: 1.5;
      max-width: 240px;
      box-sizing: border-box;
    }

    .kollect-s5 .gpt-widget .bubble.ai {
      background: #fff;
      color: #1a1a2e;
      border: 1px solid #ede5ff;
      border-bottom-left-radius: 3px;
      box-shadow: 0 2px 6px rgba(124, 44, 204, 0.04);
    }

    .kollect-s5 .gpt-widget .bubble.user {
      background: linear-gradient(135deg, var(--k-purple), var(--k-purple-deep));
      color: #fff;
      border-bottom-right-radius: 3px;
      box-shadow: 0 2px 8px rgba(124, 44, 204, 0.22);
    }

    .kollect-s5 .gpt-widget .typing {
      display: flex;
      align-items: center;
      gap: 3.5px;
      padding: 11px 14px
    }

    .kollect-s5 .gpt-widget .typing span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--k-purple);
      animation: ks5typingDot 1.2s ease-in-out infinite;
      opacity: 0.3;
    }

    .kollect-s5 .gpt-widget .typing span:nth-child(2) {
      animation-delay: 0.2s
    }

    .kollect-s5 .gpt-widget .typing span:nth-child(3) {
      animation-delay: 0.4s
    }

    @keyframes ks5typingDot {

      0%,
      100% {
        transform: translateY(0);
        opacity: 0.3
      }

      50% {
        transform: translateY(-4px);
        opacity: 1
      }
    }

    .kollect-s5 .gpt-widget .msg-1 {
      animation: ks5msgFade 0.4s ease both;
      animation-delay: 0.2s;
      opacity: 0
    }

    .kollect-s5 .gpt-widget .msg-2 {
      animation: ks5msgFade 0.4s ease both;
      animation-delay: 1s;
      opacity: 0
    }

    .kollect-s5 .gpt-widget .msg-3 {
      animation: ks5msgFade 0.4s ease both;
      animation-delay: 2.2s;
      opacity: 0
    }

    .kollect-s5 .gpt-widget .typing-row {
      animation: ks5msgFade 0.3s ease both;
      animation-delay: 1.6s;
      opacity: 0
    }

    @keyframes ks5msgFade {
      from {
        opacity: 0;
        transform: translateY(6px)
      }

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

    /* ===== TRUST STRIP ===== */
    .kollect-s5 .trust-strip {
      margin-top: 80px;
      padding-top: 48px;
      border-top: 1px solid var(--k-line);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      text-align: center;
    }

    .kollect-s5 .trust-label {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--k-grey);
      font-weight: 600;
    }

    .kollect-s5 .trust-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }

    .kollect-s5 .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: #fff;
      border: 1px solid var(--k-line);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--k-ink-soft);
      transition: all .25s ease;
    }

    .kollect-s5 .trust-pill:hover {
      border-color: var(--k-purple-line);
      color: var(--k-purple);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(124, 44, 204, 0.12);
    }

    .kollect-s5 .trust-pill svg {
      width: 14px;
      height: 14px;
      color: var(--k-purple)
    }

    /* ===== MOBILE ===== */
    @media(max-width:520px) {
      .kollect-s5 .scene {
        height: 360px
      }

      .kollect-s5 .gpt-widget .scene {
        height: 400px
      }

      .kollect-s5 .card {
        left: 20px;
        width: calc(100% - 24px)
      }

      .kollect-s5 .badge-eff {
        right: 0
      }

      .kollect-s5 .badge-rating {
        left: 0
      }

      .kollect-s5 .gpt-widget .bubble {
        max-width: 185px
      }
    }

    @media(max-width:420px) {
      .kollect-s5 .scene {
        height: 370px
      }

      .kollect-s5 .gpt-widget .scene {
        height: 420px
      }

      .kollect-s5 .card {
        left: 10px;
        top: 18px;
        width: calc(100% - 12px);
        padding: 14px 14px 12px
      }

      .kollect-s5 .badge-eff {
        right: 0;
        top: 118px;
        font-size: 10px;
        padding: 6px 10px
      }

      .kollect-s5 .badge-rating {
        left: 0;
        font-size: 10px;
        padding: 6px 10px
      }

      .kollect-s5 .gpt-widget .bubble {
        max-width: 165px;
        font-size: 10.5px
      }

      .kollect-s5 .agent-name {
        font-size: 13px
      }

      .kollect-s5 .stat-val {
        font-size: 12.5px
      }

      .kollect-s5 .dot-dec {
        display: none
      }

      .kollect-s5 .filter-tab {
        padding: 9px 16px;
        font-size: 12.5px
      }

      .kollect-s5 .filter-tab .tab-count {
        display: none
      }
    }

    .kollect-s5 .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: all .9s cubic-bezier(0.22, 1, 0.36, 1)
    }

    .kollect-s5 .reveal.in {
      opacity: 1;
      transform: translateY(0)
    }

    .kollect-s5 .reveal.d1 {
      transition-delay: 0.1s
    }

    .kollect-s5 .reveal.d2 {
      transition-delay: 0.2s
    }

    .kollect-s5 .reveal.d3 {
      transition-delay: 0.3s
    }
  


    :root {
      --kc3-purple: #7c2ccc;
      --kc3-yellow: #ffbc50;
      --kc3-ink: #1a0d2e;
      --kc3-ink-soft: #3d2e5a;
      --kc3-grey: #8b8298;
      --kc3-purple-light: rgba(124, 44, 204, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .kvs {
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(180deg, #f3eaff 0%, #faf7ff 100%);
      padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 80px);
      position: relative;
      overflow: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      pointer-events: none;
      z-index: 0;
    }

    .b1 {
      top: -80px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(124, 44, 204, 0.15) 0%, transparent 65%);
    }

    .b2 {
      bottom: -60px;
      right: -80px;
      width: 440px;
      height: 440px;
      background: radial-gradient(circle, rgba(255, 188, 80, 0.18) 0%, transparent 65%);
    }

    .inner {
      position: relative;
      z-index: 2;
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--kc3-purple);
      background: var(--kc3-purple-light);
      border-radius: 999px;
      padding: 6px 16px;
      margin-bottom: 20px;
    }

    h2 {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 800;
      color: var(--kc3-ink);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    h2 em {
      display: inline-block;
      font-style: italic;
      color: var(--kc3-purple);
      line-height: 1.15;
      padding-right: 0.12em;
      padding-bottom: 0.04em;
    }

    .sub {
      font-size: 17px;
      line-height: 1.6;
      color: var(--kc3-ink-soft);
      max-width: 560px;
      margin: 0 auto 48px;
    }

    /* Video wrapper */
    .video-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: var(--kc3-ink);
      aspect-ratio: 16/9;
      box-shadow:
        0 4px 0 0 rgba(124, 44, 204, 0.35),
        0 24px 60px rgba(124, 44, 204, 0.18),
        0 2px 0 0 rgba(255, 255, 255, 0.06) inset;
      border: 1.5px solid rgba(124, 44, 204, 0.2);
    }

    /* Thumbnail overlay — hides when playing */
    .thumb-overlay {
      position: absolute;
      inset: 0;
      z-index: 4;
      cursor: pointer;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .4s ease;
    }

    .thumb-overlay.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .vblob {
      position: absolute;
      width: 45%;
      height: 70%;
      top: 15%;
      left: 28%;
      background: radial-gradient(ellipse, rgba(124, 44, 204, 0.45) 0%, transparent 70%);
      filter: blur(30px);
      pointer-events: none;
    }

    .ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .ring1 {
      width: 55%;
      padding-top: 55%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .ring2 {
      width: 38%;
      padding-top: 38%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .ring3 {
      width: 22%;
      padding-top: 22%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .play-btn {
      position: relative;
      z-index: 5;
      width: clamp(64px, 7vw, 88px);
      height: clamp(64px, 7vw, 88px);
      border-radius: 50%;
      background: linear-gradient(135deg, var(--kc3-purple) 0%, #a855f7 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 12px rgba(124, 44, 204, 0.18), 0 12px 32px rgba(124, 44, 204, 0.4);
      transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s;
    }

    .thumb-overlay:hover .play-btn {
      transform: scale(1.1);
      box-shadow: 0 0 0 18px rgba(124, 44, 204, 0.2), 0 18px 40px rgba(124, 44, 204, 0.5);
    }

    .play-btn svg {
      margin-left: 4px;
    }

    .vid-label {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 6;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 999px;
      padding: 6px 14px;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--kc3-yellow);
      animation: pulse 1.6s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    /* The actual iframe — sits behind overlay */
    .video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      z-index: 1;
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.d1 {
      transition-delay: .08s;
    }

    .reveal.d2 {
      transition-delay: .18s;
    }

    .reveal.d3 {
      transition-delay: .28s;
    }
  


    :root {
      --kc3-purple: #7c2ccc;
      --kc3-yellow: #ffbc50;
      --kc3-ink: #1a0d2e;
      --kc3-grey: #8b8298;
    }

    .kgp {
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(180deg, #f3eaff 0%, #faf7ff 100%);
      padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 80px) calc(clamp(70px, 8vw, 110px) - 20px);
      position: relative;
      overflow: hidden;
      -webkit-font-smoothing: antialiased;
      box-sizing: border-box;
    }

    .kgp * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .kgp .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      pointer-events: none;
      z-index: 0;
    }

    .kgp .b1 {
      top: -80px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(124, 44, 204, 0.15) 0%, transparent 65%);
    }

    .kgp .b2 {
      bottom: -60px;
      right: -80px;
      width: 440px;
      height: 440px;
      background: radial-gradient(circle, rgba(255, 188, 80, 0.18) 0%, transparent 65%);
    }

    .kgp .inner {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .kgp .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--kc3-purple);
      background: rgba(124, 44, 204, 0.08);
      border-radius: 999px;
      padding: 6px 16px;
      margin-bottom: 20px;
    }

    .kgp h2 {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 800;
      color: var(--kc3-ink);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 48px;
    }

    .kgp h2 em {
      font-style: italic;
      color: var(--kc3-purple);
    }

    .kgp .sub {
      font-size: clamp(14px, 1.6vw, 16.5px);
      color: var(--kc3-grey);
      font-weight: 500;
      line-height: 1.65;
      max-width: 690px;
      margin: 0 auto 48px;
    }

    .kgp .countries {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 28px;
      align-items: start;
      width: 90%;
      max-width: 900px;
      min-width: 0;
      margin: 0 auto;
    }

    .kgp .country-item {
      position: relative;
      text-align: center;
      cursor: default;
    }

    .kgp .flag {
      width: 100%;
      aspect-ratio: 4 / 3;
      margin: 0 auto;
      border-radius: 16px;
      overflow: hidden;
      display: block;
      border: 1px solid rgba(124, 44, 204, 0.12);
      box-shadow: 0 8px 22px rgba(124, 44, 204, 0.08);
      transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
      background: transparent;
      position: relative;
    }

    .kgp .flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: inherit;
    }

    /* Specific framing tweaks only */
    .kgp .flag img.flag-my {
      object-fit: cover;
      object-position: left center;
    }

    .kgp .flag img.flag-ae {
      object-fit: cover;
      object-position: left center;
    }

    .kgp .country-item:hover .flag {
      transform: translateY(-5px) scale(1.06);
      border-color: rgba(124, 44, 204, 0.22);
      box-shadow: 0 18px 38px rgba(124, 44, 204, 0.14);
    }

    .kgp .country-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--kc3-ink);
      letter-spacing: -0.01em;
      line-height: 1.25;
      margin-top: 12px;
      opacity: 0;
      transform: translateY(-4px);
      transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
      min-height: 36px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      text-align: center;
    }

    .kgp .country-item:hover .country-name {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .kgp .countries {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        width: 80%;
        max-width: 600px;
      }
    }

    @media (max-width: 700px) {
      .kgp .countries {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
        width: 80%;
        max-width: 380px;
      }
    }

    @media (max-width: 480px) {
      .kgp .countries {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
        width: 90%;
        max-width: 320px;
      }
    }

    .kgp .sub {
      max-width: 620px;
    }


    @media(max-width:480px) {
      .kgp {
        padding: 70px 20px 60px;
      }

      .kgp .countries {
        width: 78%;
        max-width: 280px;
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
      }

      .kgp .flag {
        border-radius: 14px;
        aspect-ratio: 4 / 3;
      }

      .kgp .country-name {
        font-size: 12px;
        margin-top: 9px;
        min-height: 32px;
      }
    }

    /* Text-only reveal animation */
    .kgp .text-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .75s cubic-bezier(0.22, 1, 0.36, 1), transform .75s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .kgp .text-reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    .kgp .text-reveal.delay-1 {
      transition-delay: .08s;
    }
  


  :root {
    --k-purple: #7c2ccc;
    --k-yellow: #ffbc50;
    --k-purple-soft: rgba(124, 44, 204, 0.08);
    --k-purple-line: rgba(124, 44, 204, 0.18);
    --k-ink: #1a0d2e;
    --k-ink-soft: #3d2e5a;
    --k-grey: #6b6280;
    --k-bg-tint: rgba(124, 44, 204, 0.03);
    --k-line: rgba(124, 44, 204, 0.12);
  }

  .kollect-s6,
  .kollect-s6 * {
    box-sizing: border-box
  }

  .kollect-s6 {
    font-family: 'DM Sans', sans-serif;
    color: var(--k-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
  }

  .kollect-s6 h2,
  .kollect-s6 h3,
  .kollect-s6 h4,
  .kollect-s6 p {
    margin: 0;
    padding: 0
  }

  .kollect-s6 .why-section {
    padding: 100px clamp(20px, 5vw, 80px);
    background: linear-gradient(180deg, #fff 0%, var(--k-bg-tint) 100%)
  }

  .kollect-s6 .container {
    max-width: 1200px;
    margin: 0 auto
  }

  /* HEADER */
  .kollect-s6 .why-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 64px
  }

  .kollect-s6 .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--k-purple);
    background: var(--k-purple-soft);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .kollect-s6 .title {
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--k-ink);
  }

  .kollect-s6 .gradient-accent {
    display: inline-block;
    color: var(--k-purple);
    font-style: italic;
    font-weight: 800;
    line-height: 1.15;
    padding-right: 0.12em;
    padding-bottom: 0.04em;
  }

  .kollect-s6 .lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--k-ink-soft);
    max-width: 560px;
    margin: 0 auto;
  }

  /* CARDS */
  .kollect-s6 .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
  }

  .kollect-s6 .why-card {
    background: #fff;
    border: 1px solid var(--k-line);
    border-radius: 22px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    transition: all .35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
  }

  .kollect-s6 .why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--k-purple) 0%, #5b1a9f 100%);
    opacity: 0;
    transition: opacity .35s;
    z-index: 0;
  }

  .kollect-s6 .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(124, 44, 204, 0.22);
    border-color: transparent;
  }

  .kollect-s6 .why-card:hover::before {
    opacity: 1
  }

  .kollect-s6 .card-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--k-ink-soft);
    margin-bottom: auto;
    padding-bottom: 24px;
    transition: color .35s;
  }

  .kollect-s6 .why-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.92)
  }

  .kollect-s6 .card-foot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--k-line);
    transition: border-color .35s;
  }

  .kollect-s6 .why-card:hover .card-foot {
    border-color: rgba(255, 255, 255, 0.18)
  }

  .kollect-s6 .card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--k-purple-soft);
    color: var(--k-purple);
    display: grid;
    place-items: center;
    transition: all .35s;
  }

  .kollect-s6 .card-icon svg {
    width: 24px;
    height: 24px
  }

  .kollect-s6 .why-card:hover .card-icon {
    background: var(--k-yellow);
    color: var(--k-purple);
    transform: scale(1.05);
  }

  .kollect-s6 .card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--k-ink);
    transition: color .35s;
  }

  .kollect-s6 .why-card:hover .card-title {
    color: var(--k-yellow)
  }

  /* Responsive */
  @media(max-width:1200px) {
    .kollect-s6 .cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px
    }

    .kollect-s6 .why-card {
      min-height: 280px
    }
  }

  @media(max-width:600px) {
    .kollect-s6 .cards-grid {
      grid-template-columns: 1fr
    }

    .kollect-s6 .why-card {
      min-height: 0
    }

    .kollect-s6 .why-section {
      padding: 70px 20px
    }

    .kollect-s6 .why-header {
      margin-bottom: 44px
    }
  }

  /* Reveal */
  .kollect-s6 .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .8s cubic-bezier(0.22, 1, 0.36, 1)
  }

  .kollect-s6 .reveal.in {
    opacity: 1;
    transform: translateY(0)
  }

  .kollect-s6 .why-card.reveal {
    transition-delay: 0s
  }

  .kollect-s6 .why-card.reveal:nth-child(2) {
    transition-delay: .08s
  }

  .kollect-s6 .why-card.reveal:nth-child(3) {
    transition-delay: .16s
  }

  .kollect-s6 .why-card.reveal:nth-child(4) {
    transition-delay: .24s
  }



  :root {
    --k-purple: #7c2ccc;
    --k-yellow: #ffbc50;
    --k-purple-soft: rgba(124, 44, 204, 0.08);
    --k-ink: #1a0d2e;
    --k-ink-soft: #3d2e5a;
    --k-grey: #6b6280;
    --k-bg-tint: rgba(124, 44, 204, 0.03);
    --k-line: rgba(124, 44, 204, 0.12);
  }

  .kollect-s7,
  .kollect-s7 * {
    box-sizing: border-box
  }

  .kollect-s7 {
    font-family: 'DM Sans', sans-serif;
    color: var(--k-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
  }

  .kollect-s7 h2,
  .kollect-s7 p {
    margin: 0;
    padding: 0
  }

  .kollect-s7 .sec {
    padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 80px) calc(clamp(70px, 8vw, 110px) - 60px);
    background: linear-gradient(180deg, #fff 0%, var(--k-bg-tint) 100%);
  }

  .kollect-s7 .security {
    text-align: center;
    max-width: 780px;
    margin: 0 auto
  }

  .kollect-s7 .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--k-purple);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--k-purple-soft);
    border-radius: 999px;
  }

  .kollect-s7 .title {
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--k-ink);
    margin-bottom: 18px;
  }

  .kollect-s7 .gradient-accent {
    display: inline-block;
    color: var(--k-purple);
    font-style: italic;
    font-weight: 800;
    line-height: 1.15;
    padding-right: 0.12em;
    padding-bottom: 0.04em;
  }

  .kollect-s7 .lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--k-ink-soft);
    max-width: 560px;
    margin: 0 auto 0;
  }

  /* NVIDIA NeMo trust seal — image version */
  .kollect-s7 .seal-img-wrap {
    display: inline-block;
    max-width: 250px;
    margin-top: 40px;
    margin-bottom: 60px;
    width: 100%;
    line-height: 0;
    transition: transform .3s ease;
  }

  .kollect-s7 .seal-img-wrap:hover {
    transform: translateY(-3px);
  }

  .kollect-s7 .seal-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    filter: drop-shadow(0 12px 30px rgba(118, 185, 0, 0.18));
  }

  .kollect-s7 .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all .8s cubic-bezier(0.22, 1, 0.36, 1)
  }

  .kollect-s7 .reveal.in {
    opacity: 1;
    transform: translateY(0)
  }

  @media (max-width: 700px) {
    .kollect-s7 .seal-img-wrap {
      max-width: 240px
    }
  }

  @media (max-width: 480px) {
    .kollect-s7 .sec {
      padding: 70px 20px 20px
    }

    .kollect-s7 .seal-img-wrap {
      max-width: 200px;
      margin-top: 28px;
      margin-bottom: 35px;
    }

    .kollect-s7 .lede {
      margin-bottom: 0
    }

    .kollect-s7 .eyebrow {
      font-size: 10px;
      letter-spacing: 0.16em
    }
  }