  /* ============================================================
     LÖYDYNKÖ-TESTI: polished AI analytics dashboard
     ============================================================ */
  .loydynko {
    position: relative;
    overflow: hidden;
  }
  .loydynko .container { position: relative; z-index: 1; }
  .loy-card {
    padding: 34px 30px;
    background: linear-gradient(180deg, #fbfbfe 0%, #eef0f8 100%);
    border: 1px solid rgba(45,58,125,0.1);
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 24px 48px -24px rgba(10,16,50,0.55),
      0 2px 6px rgba(10,16,50,0.06);
    color: #151524;
  }
  .loy-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 32px 64px -24px rgba(10,16,50,0.6),
      0 2px 6px rgba(10,16,50,0.06);
  }
  .loy-card::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(90% 60% at 50% 0%, rgba(233,30,133,0.06), transparent 65%);
    pointer-events: none;
    opacity: 0; transition: opacity 0.3s;
  }
  .loy-card:hover::after { opacity: 1; }
  .loy-bar {
    margin-top: 22px;
    height: 6px; border-radius: 999px;
    background: rgba(21,21,36,0.08);
    overflow: hidden; position: relative;
  }
  .loy-bar span {
    display: block; height: 100%;
    background: var(--grad); border-radius: 999px;
    width: 0;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
    box-shadow: 0 0 12px rgba(230,70,68,0.35);
  }
  .loy-bar span.in { width: var(--pct); }
  .loy-company {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.005em;
    display: inline-block;
    transition: opacity 0.36s ease-out, transform 0.36s ease-out;
  }
  .loy-company.is-out { opacity: 0; transform: translateY(-2px); }
  .loy-versus-bar {
    height: 10px;
    background: rgba(21, 21, 36, 0.07);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }
  .loy-versus-bar > span {
    display: block;
    height: 100%;
    border-radius: 999px;
    width: var(--pct, 0%);
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.36s ease-out;
  }
  .loy-versus-pct {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: right;
    font-feature-settings: "tnum" 1;
  }

  /* Numbers/mentions fade with rotation */
  .loy-card .loy-versus-pct,
  .loy-card .loy-versus-bar > span,
  .loy-card .loy-mentions {
    transition: opacity 0.36s ease-out, width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .loy-card.is-out .loy-versus-pct,
  .loy-card.is-out .loy-versus-bar > span,
  .loy-card.is-out .loy-mentions { opacity: 0; }

  /* ============================================================
     LABONA BRAIN™: reframed as agency method
     ============================================================ */
  .kt {
    background: var(--surface);
  }
  .kt-head { max-width: 760px; margin: 0 0 56px; }
  .kt-head .kicker { font-family: var(--sans); }
  .kt-lead { margin-top: 22px; max-width: 640px; }
  .kt-lead p {
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.7;
    color: var(--text-muted);
  }
  .kt-lead p + p { margin-top: 12px; }
  .kt-lead strong { color: var(--navy-dark); font-weight: 800; }

  .kt-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .kt-col { border-radius: 16px; overflow: hidden; }

  .kt-col--before {
    border: 1px solid var(--navy-100);
    opacity: 0.85;
  }
  .kt-col--after {
    border: 1px solid rgba(233,30,133,0.18);
    background: #fff;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.6) inset,
      0 24px 64px -20px rgba(233,30,133,0.13),
      0 4px 16px -4px rgba(26,36,82,0.08);
    position: relative;
  }
  .kt-col--after::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    z-index: 2;
  }

  .kt-colhead {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .kt-col--before .kt-colhead {
    background: var(--navy-50);
    color: var(--text-muted);
    border-bottom: 1px solid var(--navy-100);
  }
  .kt-col--after .kt-colhead {
    background: #fff;
    color: var(--navy-dark);
    border-bottom: 1px solid rgba(233,30,133,0.1);
  }
  .kt-headicon {
    width: 20px; height: 20px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 900;
  }
  .kt-col--before .kt-headicon { background: rgba(0,0,0,0.07); color: #a0aabf; }
  .kt-col--after .kt-headicon {
    background: var(--grad); color: #fff;
    box-shadow: 0 3px 10px -2px rgba(230,70,68,0.4);
  }

  .kt-list { list-style: none; padding: 0; margin: 0; }
  .kt-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
  }
  .kt-item + .kt-item { border-top: 1px solid rgba(0,0,0,0.05); }
  .kt-col--after .kt-item + .kt-item { border-top-color: rgba(233,30,133,0.06); }
  .kt-col--before .kt-item { background: #eceef7; }
  .kt-col--after  .kt-item { background: #fff; transition: background 0.18s; }
  .kt-col--after  .kt-item:hover { background: #fef6fb; }

  .kt-itemico {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .kt-col--before .kt-itemico { background: rgba(0,0,0,0.05); }
  .kt-col--after  .kt-itemico { background: rgba(35,46,102,0.08); }
  .kt-itemico svg { width: 14px; height: 14px; }
  .kt-col--before .kt-itemico svg { color: #b8c2d8; }
  .kt-col--after  .kt-itemico svg { color: var(--navy-dark); }

  .kt-itembody { flex: 1; min-width: 0; }
  .kt-itemtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .kt-col--before .kt-itemtitle {
    color: #b8c2d8;
    text-decoration: line-through;
    text-decoration-color: #cdd3e8;
    text-decoration-thickness: 1.5px;
  }
  .kt-col--after .kt-itemtitle { color: var(--navy-dark); }
  .kt-itemdesc {
    margin-top: 3px;
    font-size: 12.5px;
    line-height: 1.55;
  }
  .kt-col--before .kt-itemdesc { color: #c4cedf; }
  .kt-col--after  .kt-itemdesc { color: var(--text-muted); }
  .kt-itemtag {
    display: inline-block;
    margin-top: 7px;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(233,30,133,0.07);
    color: #a8105c;
    border: 1px solid rgba(233,30,133,0.14);
  }

  .kt-footer {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
  }
  .kt-footertext {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.6;
  }
  .kt-footertext strong { color: var(--navy-dark); font-weight: 700; }
