/*indexnew*/

    :root {
      --kk-dark: #07111f;
      --kk-dark-2: #0b1728;
      --kk-dark-3: #101d31;
      --kk-blue: #2563eb;
      --kk-cyan: #00c2ff;
      --kk-purple: #6d5dfc;
      --kk-green: #6ee7b7;
      --kk-text: #102033;
      --kk-muted: #64748b;
      --kk-soft: #f6f9ff;
      --kk-border: #e5edf8;
      --kk-white: #ffffff;
      --kk-shadow: 0 24px 80px rgba(15,23,42,0.08);
      --kk-shadow-strong: 0 35px 90px rgba(0,0,0,0.36);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--kk-text);
      background: #fff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    .kk-navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      padding: 26px 0;
    }

    .kk-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 900;
      font-size: 1.12rem;
      letter-spacing: -0.03em;
    }

    .kk-brand:hover {
      color: #fff;
    }

    .kk-brand-logo {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--kk-purple), var(--kk-cyan));
      color: #fff;
      font-weight: 900;
      box-shadow: 0 18px 35px rgba(109,93,252,0.35);
    }

    .kk-nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .kk-nav-links a {
      color: #dbeafe;
      font-size: 0.94rem;
      font-weight: 700;
      padding: 10px 13px;
      border-radius: 999px;
      transition: all .2s ease;
    }

    .kk-nav-links a:hover {
      color: #fff;
      background: rgba(255,255,255,0.08);
    }

    .kk-nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      padding: 11px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      transition: all .2s ease;
    }

    .kk-nav-cta:hover {
      color: #fff;
      background: rgba(255,255,255,0.13);
      transform: translateY(-1px);
    }

    .kk-hero {
      position: relative;
      overflow: hidden;
      padding: 155px 0 110px;
      background:
        radial-gradient(circle at 15% 20%, rgba(109, 93, 252, 0.20), transparent 28%),
        radial-gradient(circle at 85% 35%, rgba(0, 194, 255, 0.17), transparent 25%),
        radial-gradient(circle at 55% 92%, rgba(52,211,153,0.10), transparent 28%),
        linear-gradient(145deg, #07111f 0%, #0b1728 100%);
    }

    .kk-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: 0.65;
      mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
    }

    .kk-hero .container {
      position: relative;
      z-index: 2;
    }

    .kk-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(110,231,183,0.10);
      border: 1px solid rgba(110,231,183,0.22);
      color: var(--kk-green);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 26px;
    }

    .kk-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #34d399;
      box-shadow: 0 0 0 6px rgba(52,211,153,0.14);
      display: inline-block;
    }

    .kk-hero h1 {
      color: #fff;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 0.98;
      letter-spacing: -0.065em;
      font-weight: 900;
      margin-bottom: 26px;
    }

    .kk-hero h1 strong {
      background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 45%, #7dd3fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .kk-hero-text {
      color: #b8c4d8;
      font-size: 18px;
      line-height: 1.85;
      max-width: 780px;
      margin-bottom: 34px;
    }

    .kk-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .kk-btn-primary,
    .kk-btn-secondary,
    .kk-btn-light {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 25px;
      border-radius: 14px;
      font-weight: 900;
      transition: all .25s ease;
      border: none;
    }

    .kk-btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--kk-purple), var(--kk-cyan));
      box-shadow: 0 18px 38px rgba(0,194,255,0.22);
    }

    .kk-btn-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 24px 55px rgba(0,194,255,0.28);
    }

    .kk-btn-secondary {
      color: #fff;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.13);
    }

    .kk-btn-secondary:hover {
      color: #fff;
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    .kk-btn-light {
      color: var(--kk-text);
      background: #fff;
      border: 1px solid var(--kk-border);
      box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    }

    .kk-btn-light:hover {
      color: var(--kk-text);
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(15,23,42,0.12);
    }

    .kk-hero-note {
      color: #8293b2;
      font-size: 0.95rem;
      margin-top: 22px;
      margin-bottom: 0;
    }

    .kk-dashboard-card {
      background: rgba(255,255,255,0.075);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 28px;
      padding: 22px;
      backdrop-filter: blur(18px);
      box-shadow: var(--kk-shadow-strong);
      position: relative;
      overflow: hidden;
    }

    .kk-dashboard-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.07), transparent 35%, transparent 70%, rgba(255,255,255,0.04));
      pointer-events: none;
    }

    .kk-window-top {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.10);
      color: #94a3b8;
      font-size: 13px;
    }

    .kk-dots {
      display: flex;
      gap: 7px;
    }

    .kk-dots i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
    }

    .kk-panel-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 16px;
      margin-top: 18px;
    }

    .kk-mini-nav,
    .kk-mini-main,
    .kk-mini-bottom {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 20px;
      padding: 16px;
    }

    .kk-mini-nav div {
      padding: 11px 12px;
      border-radius: 12px;
      color: #cbd5e1;
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 7px;
    }

    .kk-mini-nav div.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(109,93,252,0.36), rgba(0,194,255,0.18));
    }

    .kk-mini-main h6,
    .kk-mini-bottom h6 {
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .kk-item {
      padding: 13px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .kk-item:last-child {
      border-bottom: 0;
    }

    .kk-item strong {
      display: block;
      color: #f8fafc;
      font-size: 14px;
      line-height: 1.35;
    }

    .kk-item span {
      color: #94a3b8;
      font-size: 12px;
    }

    .kk-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .kk-stat {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 12px;
    }

    .kk-stat strong {
      color: #fff;
      font-size: 18px;
      display: block;
      line-height: 1;
    }

    .kk-stat span {
      color: #94a3b8;
      font-size: 11px;
      font-weight: 700;
    }

    .kk-section {
      padding: 95px 0;
    }

    .kk-section-soft {
      background: var(--kk-soft);
    }

    .kk-label {
      color: var(--kk-blue);
      font-weight: 900;
      margin-bottom: 12px;
      display: block;
      letter-spacing: -0.01em;
    }

    .kk-title {
      color: var(--kk-text);
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 900;
      margin-bottom: 22px;
    }

    .kk-text {
      color: var(--kk-muted);
      font-size: 17px;
      line-height: 1.82;
    }

    .kk-card {
      height: 100%;
      background: #fff;
      border: 1px solid var(--kk-border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 18px 55px rgba(15,23,42,0.06);
      transition: all .25s ease;
    }

    .kk-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 70px rgba(15,23,42,0.10);
    }

    .kk-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(109,93,252,0.14), rgba(0,194,255,0.16));
      color: var(--kk-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .kk-card h5 {
      font-weight: 900;
      color: var(--kk-text);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .kk-card p {
      color: var(--kk-muted);
      line-height: 1.75;
      margin: 0;
    }

    .kk-institutional {
      background:
        radial-gradient(circle at 20% 20%, rgba(109,93,252,0.18), transparent 28%),
        radial-gradient(circle at 90% 70%, rgba(0,194,255,0.10), transparent 28%),
        linear-gradient(145deg, #081220 0%, #101d31 100%);
      color: #fff;
      border-radius: 34px;
      padding: 58px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 35px 85px rgba(15,23,42,0.20);
    }

    .kk-institutional h3 {
      color: #fff;
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.1;
      letter-spacing: -0.05em;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .kk-institutional p {
      color: #b8c4d8;
      font-size: 17px;
      line-height: 1.8;
    }

    .kk-list {
      list-style: none;
      padding: 0;
      margin: 26px 0 0;
    }

    .kk-list li {
      color: #dbeafe;
      margin-bottom: 14px;
      display: flex;
      gap: 12px;
      line-height: 1.6;
    }

    .kk-list li::before {
      content: "✓";
      width: 24px;
      height: 24px;
      min-width: 24px;
      border-radius: 50%;
      background: rgba(110,231,183,0.12);
      color: var(--kk-green);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .kk-process-card {
      background: #fff;
      border: 1px solid var(--kk-border);
      border-radius: 26px;
      padding: 30px;
      box-shadow: var(--kk-shadow);
      position: relative;
      height: 100%;
    }

    .kk-process-num {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--kk-purple), var(--kk-cyan));
      margin-bottom: 20px;
    }

    .kk-process-card h5 {
      font-weight: 900;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .kk-process-card p {
      color: var(--kk-muted);
      line-height: 1.75;
      margin: 0;
    }

    .kk-screens-preview {
      background: #fff;
      border: 1px solid var(--kk-border);
      border-radius: 32px;
      padding: 18px;
      box-shadow: var(--kk-shadow);
    }

    .kk-screen-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 14px 18px;
      color: #94a3b8;
      font-size: 13px;
      font-weight: 700;
    }

    .kk-screen-inner {
      border-radius: 24px;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 20%, rgba(109,93,252,0.12), transparent 28%),
        linear-gradient(145deg, #f8fbff 0%, #eef5ff 100%);
      border: 1px solid #e2eaf7;
      padding: 28px;
    }

    .kk-fake-table {
      background: #fff;
      border: 1px solid #e6edf7;
      border-radius: 20px;
      overflow: hidden;
    }

    .kk-fake-table-row {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 16px;
      padding: 16px 18px;
      border-bottom: 1px solid #edf2f8;
      color: #64748b;
      font-size: 14px;
      font-weight: 700;
    }

    .kk-fake-table-row:first-child {
      background: #f8fafc;
      color: #0f172a;
      font-weight: 900;
    }

    .kk-fake-table-row:last-child {
      border-bottom: 0;
    }

    .kk-pill {
      display: inline-flex;
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      background: #eff6ff;
      color: #2563eb;
      font-size: 12px;
      font-weight: 900;
    }

    .kk-accordion .accordion-item {
      border: 1px solid var(--kk-border);
      border-radius: 18px;
      margin-bottom: 14px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 12px 35px rgba(15,23,42,0.05);
    }

    .kk-accordion .accordion-button {
      background: #fff;
      color: var(--kk-text);
      font-weight: 900;
      padding: 19px 22px;
      box-shadow: none;
      border: none;
      letter-spacing: -0.02em;
    }

    .kk-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(109,93,252,0.08), rgba(0,194,255,0.06));
      color: var(--kk-text);
    }

    .kk-accordion .accordion-button:focus {
      box-shadow: none;
    }

    .kk-accordion .accordion-body {
      padding: 18px 22px 22px;
      color: var(--kk-muted);
      line-height: 1.75;
      font-size: 15px;
    }

    .kk-final {
      text-align: center;
      background: #fff;
      border: 1px solid var(--kk-border);
      border-radius: 34px;
      padding: 58px 35px;
      box-shadow: var(--kk-shadow);
    }

    .kk-final p {
      max-width: 760px;
      margin: 0 auto 30px;
    }

    .kk-footer {
      background: #07111f;
      color: #94a3b8;
      padding: 36px 0;
      font-size: 0.94rem;
    }

    .kk-footer strong {
      color: #fff;
    }

    @media(max-width: 991px) {
      .kk-navbar {
        position: relative;
        background: #07111f;
      }

      .kk-nav-links {
        display: none;
      }

      .kk-hero {
        padding: 85px 0 70px;
      }

      .kk-dashboard-card {
        margin-top: 40px;
      }

      .kk-panel-grid {
        grid-template-columns: 1fr;
      }

      .kk-institutional {
        padding: 38px 26px;
      }

      .kk-section {
        padding: 70px 0;
      }
    }

    @media(max-width: 575px) {
      .kk-actions a {
        width: 100%;
      }

      .kk-stat-row {
        grid-template-columns: 1fr;
      }

      .kk-fake-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }


/* FAQ acordeón premium */
.kk-accordion .accordion-item {
    border: 1px solid var(--kk-border);
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(15,23,42,0.05);
}

.kk-accordion .accordion-button {
    background: #fff;
    color: var(--kk-text);
    font-weight: 800;
    padding: 18px 22px;
    box-shadow: none;
    border: none;
}

.kk-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(109,93,252,0.08), rgba(0,194,255,0.06));
    color: var(--kk-text);
}

.kk-accordion .accordion-button:focus {
    box-shadow: none;
}

.kk-accordion .accordion-body {
    padding: 18px 22px 22px;
    color: var(--kk-muted);
    line-height: 1.7;
    font-size: 15px;
}
/* =========================================================
   PRODUCT PAGE
========================================================= */

.kk-product-hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 115px;
  background:
    radial-gradient(circle at 12% 22%, rgba(109, 93, 252, 0.22), transparent 28%),
    radial-gradient(circle at 84% 30%, rgba(0, 194, 255, 0.18), transparent 26%),
    radial-gradient(circle at 70% 88%, rgba(110, 231, 183, 0.12), transparent 28%),
    linear-gradient(145deg, #07111f 0%, #0b1728 100%);
}

.kk-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.65;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.kk-product-hero .container {
  position: relative;
  z-index: 2;
}

.kk-product-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
  margin-bottom: 26px;
}

.kk-product-hero p {
  color: #b8c4d8;
  font-size: 18px;
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 34px;
}

.kk-product-map {
  position: relative;
  min-height: 530px;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(109,93,252,0.22), transparent 35%),
    rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.36);
  overflow: hidden;
}

.kk-product-map::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 50%;
}

.kk-product-map::after {
  content: "";
  position: absolute;
  inset: 115px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
}

.kk-map-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(109,93,252,0.95), rgba(0,194,255,0.88));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  box-shadow: 0 25px 65px rgba(0,194,255,0.22);
  z-index: 3;
}

.kk-map-center span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.kk-map-center strong {
  font-size: 20px;
  font-weight: 900;
}

.kk-map-center small {
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
}

.kk-map-node {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  color: #eaf2ff;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.kk-map-node-1 { left: 50%; top: 42px; transform: translateX(-50%); }
.kk-map-node-2 { right: 48px; top: 112px; }
.kk-map-node-3 { right: 36px; bottom: 135px; }
.kk-map-node-4 { left: 50%; bottom: 42px; transform: translateX(-50%); }
.kk-map-node-5 { left: 38px; bottom: 135px; }
.kk-map-node-6 { left: 48px; top: 112px; }
.kk-map-node-7 { left: 60px; top: 250px; }
.kk-map-node-8 { right: 52px; top: 250px; }

.kk-product-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kk-principle {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-principle span {
  color: var(--kk-blue);
  font-weight: 900;
  display: block;
  margin-bottom: 18px;
}

.kk-principle h5 {
  font-weight: 900;
  color: var(--kk-text);
  margin-bottom: 10px;
}

.kk-principle p {
  color: var(--kk-muted);
  line-height: 1.75;
  margin: 0;
}

.kk-module-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kk-module-card {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
  min-height: 260px;
  transition: all .25s ease;
}

.kk-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 75px rgba(15,23,42,0.11);
}

.kk-module-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 538px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0,194,255,0.13), transparent 30%),
    linear-gradient(145deg, #081220 0%, #101d31 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.kk-module-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--kk-blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.kk-module-featured .kk-module-tag {
  background: rgba(125,211,252,0.12);
  color: #7dd3fc;
}

.kk-module-card h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
  color: var(--kk-text);
}

.kk-module-featured h3 {
  font-size: 42px;
  color: #fff;
}

.kk-module-card p {
  color: var(--kk-muted);
  line-height: 1.75;
  margin: 0;
}

.kk-module-featured p {
  color: #b8c4d8;
  font-size: 17px;
}

.kk-module-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.kk-module-card li {
  color: #dbeafe;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.kk-module-card li:last-child {
  border-bottom: 0;
}

.kk-product-flow-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(109,93,252,0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(0,194,255,0.12), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #101d31 100%);
}

.kk-flow-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.kk-flow-column {
  border-radius: 30px;
  padding: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.kk-flow-column.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(125,211,252,0.24);
  box-shadow: 0 24px 70px rgba(0,0,0,0.20);
}

.kk-flow-label {
  display: block;
  color: #7dd3fc;
  font-weight: 900;
  margin-bottom: 16px;
}

.kk-flow-item {
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(109,93,252,0.28), rgba(0,194,255,0.14));
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 12px;
  font-weight: 800;
}

.kk-flow-item.muted {
  color: #cbd5e1;
  background: rgba(255,255,255,0.055);
}

.kk-flow-arrow {
  color: #7dd3fc;
  font-size: 42px;
  font-weight: 900;
}

.kk-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.kk-capability {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-capability-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(109,93,252,0.14), rgba(0,194,255,0.16));
  color: var(--kk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.kk-capability h5 {
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.kk-capability p {
  color: var(--kk-muted);
  margin: 0;
  line-height: 1.7;
}

.kk-view-stack {
  display: grid;
  gap: 16px;
}

.kk-view-card {
  position: relative;
  border-radius: 26px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--kk-border);
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
  margin-left: 0;
}

.kk-view-card:nth-child(2) {
  margin-left: 40px;
}

.kk-view-card:nth-child(3) {
  margin-left: 80px;
}

.kk-view-card:nth-child(4) {
  margin-left: 120px;
}

.kk-view-card.active {
  background:
    radial-gradient(circle at 90% 20%, rgba(0,194,255,0.12), transparent 32%),
    linear-gradient(145deg, #081220 0%, #101d31 100%);
  border-color: rgba(255,255,255,0.12);
}

.kk-view-card span {
  color: var(--kk-blue);
  font-size: 12px;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.kk-view-card.active span {
  color: #7dd3fc;
}

.kk-view-card h5 {
  font-weight: 900;
  margin-bottom: 8px;
}

.kk-view-card.active h5 {
  color: #fff;
}

.kk-view-card p {
  color: var(--kk-muted);
  margin: 0;
  line-height: 1.7;
}

.kk-view-card.active p {
  color: #b8c4d8;
}

.kk-product-roadmap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--kk-shadow);
}

.kk-roadmap-list {
  display: grid;
  gap: 16px;
}

.kk-roadmap-list div {
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--kk-border);
  background: #f8fbff;
}

.kk-roadmap-list span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--kk-blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.kk-roadmap-list strong {
  display: block;
  color: var(--kk-text);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.kk-roadmap-list p {
  color: var(--kk-muted);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .kk-product-hero {
    padding: 85px 0 70px;
  }

  .kk-product-map {
    min-height: 480px;
  }

  .kk-product-principles,
  .kk-capability-grid,
  .kk-product-roadmap {
    grid-template-columns: 1fr;
  }

  .kk-module-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-module-featured {
    grid-column: span 2;
    min-height: auto;
  }

  .kk-flow-board {
    grid-template-columns: 1fr;
  }

  .kk-flow-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .kk-view-card,
  .kk-view-card:nth-child(2),
  .kk-view-card:nth-child(3),
  .kk-view-card:nth-child(4) {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .kk-module-layout {
    grid-template-columns: 1fr;
  }

  .kk-module-featured {
    grid-column: span 1;
  }

  .kk-product-map {
    min-height: 560px;
  }

  .kk-map-node {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: inline-flex;
    margin: 6px;
  }

  .kk-product-map {
    padding: 230px 18px 24px;
  }

  .kk-product-map::before,
  .kk-product-map::after {
    display: none;
  }

  .kk-map-center {
    top: 28px;
    transform: translateX(-50%);
  }

  .kk-capability {
    flex-direction: column;
  }

  .kk-product-roadmap {
    padding: 28px;
  }
}
/* =========================================================
   SECURITY PAGE
========================================================= */

.kk-security-hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 115px;
  background:
    radial-gradient(circle at 15% 20%, rgba(109,93,252,0.20), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(0,194,255,0.16), transparent 26%),
    linear-gradient(145deg, #07111f 0%, #0b1728 100%);
}

.kk-security-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.65;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.kk-security-hero .container {
  position: relative;
  z-index: 2;
}

.kk-security-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
  margin-bottom: 26px;
}

.kk-security-hero h1 strong {
  background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 45%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kk-security-hero p {
  color: #b8c4d8;
  font-size: 18px;
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 34px;
}

.kk-security-panel {
  border-radius: 34px;
  padding: 36px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.36);
}

.kk-security-lock {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109,93,252,0.45), rgba(0,194,255,0.28));
  font-size: 30px;
  margin-bottom: 22px;
}

.kk-security-panel h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.kk-security-panel p {
  color: #b8c4d8;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.kk-security-mini-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kk-security-mini-list div {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: #e2e8f0;
  font-weight: 800;
  font-size: 13px;
}

.kk-security-grid-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kk-security-grid-box div {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-security-grid-box strong {
  display: block;
  color: var(--kk-text);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.kk-security-grid-box span {
  color: var(--kk-muted);
  line-height: 1.6;
}

.kk-security-rgpd {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--kk-shadow);
}

.kk-rgpd-list {
  display: grid;
  gap: 16px;
}

.kk-rgpd-list div {
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--kk-border);
  background: #f8fbff;
}

.kk-rgpd-list span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--kk-blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.kk-rgpd-list strong {
  display: block;
  color: var(--kk-text);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.kk-rgpd-list p {
  color: var(--kk-muted);
  margin: 0;
  line-height: 1.7;
}

.kk-security-protect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kk-protect-card {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
  transition: all .25s ease;
}

.kk-protect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.10);
}

.kk-protect-card h5 {
  font-weight: 900;
  color: var(--kk-text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.kk-protect-card p {
  color: var(--kk-muted);
  line-height: 1.75;
  margin: 0;
}

.kk-security-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(109,93,252,0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(0,194,255,0.12), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #101d31 100%);
}

.kk-security-trust-card {
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 34px;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 75px rgba(0,0,0,0.24);
}

.kk-security-trust-card h3 {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .kk-security-hero {
    padding: 85px 0 70px;
  }

  .kk-security-panel {
    margin-top: 20px;
  }

  .kk-security-rgpd,
  .kk-security-protect-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .kk-security-grid-box,
  .kk-security-mini-list {
    grid-template-columns: 1fr;
  }

  .kk-security-rgpd {
    padding: 28px;
  }

  .kk-security-panel {
    padding: 28px;
  }
}
/* =========================================================
   ABOUT PAGE PREMIUM
========================================================= */

.kk-about-premium-hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 115px;
  background:
    radial-gradient(circle at 14% 18%, rgba(109,93,252,0.22), transparent 28%),
    radial-gradient(circle at 82% 36%, rgba(0,194,255,0.16), transparent 26%),
    radial-gradient(circle at 55% 92%, rgba(110,231,183,0.11), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #0b1728 100%);
}

.kk-about-premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.65;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.kk-about-premium-hero .container {
  position: relative;
  z-index: 2;
}

.kk-about-premium-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
  margin-bottom: 26px;
}

.kk-about-premium-hero p {
  color: #b8c4d8;
  font-size: 18px;
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 22px;
}

.kk-founder-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 38px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.36);
}

.kk-founder-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(0,194,255,0.28), transparent 68%);
}

.kk-founder-card > * {
  position: relative;
  z-index: 2;
}

.kk-founder-mark {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--kk-purple), var(--kk-cyan));
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 26px;
  box-shadow: 0 22px 50px rgba(0,194,255,0.22);
}

.kk-founder-card span {
  color: #7dd3fc;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.kk-founder-card h3 {
  color: #fff;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 16px;
}

.kk-founder-card p {
  color: #b8c4d8;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.kk-about-manifesto-section {
  padding: 90px 0;
  background: #fff;
}

.kk-manifesto-box {
  position: relative;
  border-radius: 38px;
  padding: 62px;
  background:
    radial-gradient(circle at 90% 20%, rgba(0,194,255,0.12), transparent 32%),
    linear-gradient(145deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid var(--kk-border);
  box-shadow: 0 28px 90px rgba(15,23,42,0.08);
  overflow: hidden;
}

.kk-manifesto-box::before {
  content: "“";
  position: absolute;
  right: 42px;
  top: 10px;
  font-size: 190px;
  line-height: 1;
  color: rgba(37,99,235,0.08);
  font-weight: 900;
}

.kk-manifesto-box h2 {
  position: relative;
  z-index: 2;
  color: var(--kk-text);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 900;
  max-width: 1000px;
  margin-bottom: 24px;
}

.kk-manifesto-box p {
  position: relative;
  z-index: 2;
  color: var(--kk-muted);
  font-size: 18px;
  line-height: 1.85;
  max-width: 860px;
  margin: 0;
}

.kk-why-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: stretch;
}

.kk-why-left {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 34px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(15,23,42,0.07);
}

.kk-why-left h2 {
  color: var(--kk-text);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin-bottom: 24px;
}

.kk-why-left p {
  color: var(--kk-muted);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.kk-why-right {
  display: flex;
}

.kk-why-quote {
  position: relative;
  width: 100%;
  border-radius: 34px;
  padding: 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(109,93,252,0.22), transparent 30%),
    linear-gradient(145deg, #081220 0%, #101d31 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  box-shadow: 0 30px 90px rgba(15,23,42,0.18);
}

.kk-why-quote span {
  position: absolute;
  top: 20px;
  left: 34px;
  color: rgba(125,211,252,0.18);
  font-size: 170px;
  line-height: 1;
  font-weight: 900;
}

.kk-why-quote p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 22px;
}

.kk-why-quote strong {
  position: relative;
  z-index: 2;
  color: #7dd3fc;
  font-weight: 900;
}

.kk-timeline-premium {
  display: grid;
  gap: 18px;
  position: relative;
}

.kk-timeline-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.055);
}

.kk-timeline-step:nth-child(even) {
  margin-left: 70px;
}

.kk-timeline-number {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109,93,252,0.16), rgba(0,194,255,0.18));
  color: var(--kk-blue);
  font-weight: 900;
  font-size: 18px;
}

.kk-timeline-step h4 {
  color: var(--kk-text);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.kk-timeline-step p {
  color: var(--kk-muted);
  line-height: 1.7;
  margin: 0;
}

.kk-about-principles-section {
  background:
    radial-gradient(circle at 12% 25%, rgba(109,93,252,0.17), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(0,194,255,0.13), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #101d31 100%);
}

.kk-principles-premium-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.kk-principle-premium {
  border-radius: 30px;
  padding: 34px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
}

.kk-principle-premium.featured {
  background: linear-gradient(135deg, rgba(109,93,252,0.34), rgba(0,194,255,0.18));
  border-color: rgba(125,211,252,0.28);
  transform: translateY(-18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
}

.kk-principle-premium span {
  color: #7dd3fc;
  font-weight: 900;
  display: block;
  margin-bottom: 20px;
}

.kk-principle-premium h3 {
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 16px;
}

.kk-principle-premium p {
  color: #b8c4d8;
  line-height: 1.8;
  margin: 0;
}

.kk-vision-premium {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: start;
}

.kk-vision-stages {
  display: grid;
  gap: 16px;
}

.kk-vision-stages div {
  position: relative;
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 26px;
  padding: 26px 26px 26px 34px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
  overflow: hidden;
}

.kk-vision-stages div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--kk-purple), var(--kk-cyan));
}

.kk-vision-stages span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--kk-blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.kk-vision-stages strong {
  display: block;
  color: var(--kk-text);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.kk-vision-stages p {
  color: var(--kk-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .kk-about-premium-hero {
    padding: 90px 0 75px;
  }

  .kk-why-split,
  .kk-principles-premium-grid,
  .kk-vision-premium {
    grid-template-columns: 1fr;
  }

  .kk-principle-premium.featured {
    transform: none;
  }

  .kk-timeline-step:nth-child(even) {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .kk-manifesto-box,
  .kk-why-left,
  .kk-why-quote,
  .kk-founder-card {
    padding: 30px;
  }

  .kk-timeline-step {
    grid-template-columns: 1fr;
  }

  .kk-why-quote {
    min-height: auto;
  }

  .kk-why-quote p {
    font-size: 23px;
  }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.kk-contact-hero,
.kk-groups-hero,
.kk-industry-hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 115px;
  background:
    radial-gradient(circle at 14% 18%, rgba(109,93,252,0.22), transparent 28%),
    radial-gradient(circle at 82% 36%, rgba(0,194,255,0.16), transparent 26%),
    radial-gradient(circle at 55% 92%, rgba(110,231,183,0.11), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #0b1728 100%);
}

.kk-contact-hero::before,
.kk-groups-hero::before,
.kk-industry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.65;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.kk-contact-hero .container,
.kk-groups-hero .container,
.kk-industry-hero .container {
  position: relative;
  z-index: 2;
}

.kk-contact-hero h1,
.kk-groups-hero h1,
.kk-industry-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
  margin-bottom: 26px;
}

.kk-contact-hero p,
.kk-groups-hero p,
.kk-industry-hero p {
  color: #b8c4d8;
  font-size: 18px;
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 34px;
}

.kk-contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 38px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.36);
}

.kk-contact-card span {
  color: #7dd3fc;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
}

.kk-contact-card h3 {
  color: #fff;
  font-size: 32px;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 16px;
}

.kk-contact-card p {
  color: #b8c4d8;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.kk-contact-mini {
  display: grid;
  gap: 12px;
}

.kk-contact-mini div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 14px;
}

.kk-contact-mini strong {
  display: block;
  color: #fff;
  font-weight: 900;
}

.kk-contact-mini small {
  color: #94a3b8;
  font-weight: 700;
}

.kk-contact-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kk-contact-reasons div {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-contact-reasons span {
  color: var(--kk-blue);
  font-weight: 900;
  display: block;
  margin-bottom: 18px;
}

.kk-contact-reasons h5 {
  font-weight: 900;
  margin-bottom: 10px;
}

.kk-contact-reasons p {
  color: var(--kk-muted);
  line-height: 1.7;
  margin: 0;
}

.kk-contact-email-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.kk-email-template {
  background:
    radial-gradient(circle at 90% 20%, rgba(0,194,255,0.10), transparent 32%),
    linear-gradient(145deg, #081220 0%, #101d31 100%);
  border-radius: 34px;
  padding: 38px;
  color: #dbeafe;
  box-shadow: 0 30px 80px rgba(15,23,42,0.18);
}

.kk-email-template p {
  line-height: 1.8;
  margin-bottom: 18px;
}


/* =========================================================
   GROUPS PAGE
========================================================= */

.kk-groups-board {
  border-radius: 34px;
  padding: 34px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.36);
}

.kk-groups-board-header {
  margin-bottom: 24px;
}

.kk-groups-board-header span {
  color: #7dd3fc;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.kk-groups-board-header strong {
  color: #fff;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.kk-groups-board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kk-groups-board-grid div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 16px;
  color: #e2e8f0;
  font-weight: 900;
}

.kk-groups-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kk-groups-use-card {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-groups-use-card.large {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 20%, rgba(0,194,255,0.12), transparent 30%),
    linear-gradient(145deg, #081220 0%, #101d31 100%);
  color: #fff;
}

.kk-groups-use-card span {
  color: var(--kk-blue);
  font-weight: 900;
  display: block;
  margin-bottom: 18px;
}

.kk-groups-use-card.large span {
  color: #7dd3fc;
}

.kk-groups-use-card h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.kk-groups-use-card.large h3 {
  font-size: 38px;
  color: #fff;
}

.kk-groups-use-card p {
  color: var(--kk-muted);
  line-height: 1.75;
  margin: 0;
}

.kk-groups-use-card.large p {
  color: #b8c4d8;
}

.kk-groups-connected {
  position: relative;
  min-height: 450px;
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(109,93,252,0.16), transparent 36%),
    linear-gradient(145deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid var(--kk-border);
  box-shadow: var(--kk-shadow);
}

.kk-connected-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--kk-purple), var(--kk-cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(0,194,255,0.22);
}

.kk-connected-item {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--kk-border);
  color: var(--kk-text);
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(15,23,42,0.08);
}

.kk-connected-item.item-1 { left: 50%; top: 42px; transform: translateX(-50%); }
.kk-connected-item.item-2 { right: 44px; top: 120px; }
.kk-connected-item.item-3 { right: 55px; bottom: 92px; }
.kk-connected-item.item-4 { left: 50%; bottom: 38px; transform: translateX(-50%); }
.kk-connected-item.item-5 { left: 42px; bottom: 110px; }
.kk-connected-item.item-6 { left: 48px; top: 125px; }


/* =========================================================
   INDUSTRY / I+D PAGE
========================================================= */

.kk-industry-stack {
  display: grid;
  gap: 16px;
}

.kk-industry-stack div {
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
}

.kk-industry-stack div:nth-child(2) {
  margin-left: 40px;
}

.kk-industry-stack div:nth-child(3) {
  margin-left: 80px;
}

.kk-industry-stack div:nth-child(4) {
  margin-left: 120px;
}

.kk-industry-stack span {
  color: #7dd3fc;
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.kk-industry-stack strong {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.kk-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kk-industry-grid div {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-industry-grid span {
  color: var(--kk-blue);
  font-weight: 900;
  display: block;
  margin-bottom: 18px;
}

.kk-industry-grid h5 {
  font-weight: 900;
  margin-bottom: 10px;
}

.kk-industry-grid p {
  color: var(--kk-muted);
  line-height: 1.7;
  margin: 0;
}

.kk-industry-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.kk-industry-comparison div {
  border-radius: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--kk-border);
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}

.kk-industry-comparison div.active {
  background:
    radial-gradient(circle at 90% 20%, rgba(0,194,255,0.14), transparent 32%),
    linear-gradient(145deg, #081220 0%, #101d31 100%);
  color: #fff;
}

.kk-industry-comparison h5 {
  font-weight: 900;
  margin-bottom: 18px;
}

.kk-industry-comparison p {
  color: var(--kk-muted);
  line-height: 1.7;
  border-top: 1px solid var(--kk-border);
  padding-top: 14px;
}

.kk-industry-comparison .active p {
  color: #b8c4d8;
  border-color: rgba(255,255,255,0.10);
}

@media (max-width: 991px) {
  .kk-contact-hero,
  .kk-groups-hero,
  .kk-industry-hero {
    padding: 90px 0 75px;
  }

  .kk-contact-reasons,
  .kk-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-contact-email-box,
  .kk-groups-use-grid,
  .kk-industry-comparison {
    grid-template-columns: 1fr;
  }

  .kk-groups-use-card.large {
    grid-column: span 1;
  }

  .kk-industry-stack div,
  .kk-industry-stack div:nth-child(2),
  .kk-industry-stack div:nth-child(3),
  .kk-industry-stack div:nth-child(4) {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .kk-contact-reasons,
  .kk-industry-grid,
  .kk-groups-board-grid {
    grid-template-columns: 1fr;
  }

  .kk-contact-card,
  .kk-groups-board {
    padding: 28px;
  }

  .kk-groups-connected {
    min-height: auto;
    padding: 24px;
  }

  .kk-connected-center,
  .kk-connected-item {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 8px 0;
    width: 100%;
  }

  .kk-connected-center {
    height: auto;
    padding: 24px;
  }
}
/* ================================
   KAIPERKIT PRICING PAGE
================================ */

.kk-pricing-page {
  background:
    radial-gradient(circle at top left, rgba(69, 92, 255, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(18, 185, 129, 0.08), transparent 30%),
    #f7f8fb;
  color: #0f172a;
}

.kk-pricing-hero {
  padding: 88px 0 36px;
}

.kk-pricing-hero-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    radial-gradient(circle at 20% 10%, rgba(80, 103, 255, 0.12), transparent 34%);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.kk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(80, 103, 255, 0.08);
  color: #4353d8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kk-pricing-title {
  max-width: 840px;
  margin: 0 auto 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #0b1020;
}

.kk-pricing-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #526070;
  font-size: 18px;
  line-height: 1.75;
}

.kk-pricing-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.kk-pricing-trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.kk-pricing-section {
  padding: 32px 0 70px;
}

.kk-pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.kk-pricing-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.kk-pricing-toggle-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: transparent;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.kk-pricing-toggle-btn span {
  margin-left: 6px;
  font-size: 12px;
  color: inherit;
  opacity: 0.75;
}

.kk-pricing-toggle-btn.active {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.kk-pricing-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.kk-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(80, 103, 255, 0.12), transparent 34%);
}

.kk-pricing-card-institutional::before {
  background: radial-gradient(circle at 20% 0%, rgba(15, 23, 42, 0.12), transparent 34%);
}

.kk-pricing-card > * {
  position: relative;
  z-index: 1;
}

.kk-pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.kk-pricing-plan-label {
  display: block;
  margin-bottom: 10px;
  color: #4353d8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kk-pricing-card-institutional .kk-pricing-plan-label {
  color: #0f172a;
}

.kk-pricing-card h2 {
  margin: 0;
  color: #0b1020;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.kk-pricing-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(80, 103, 255, 0.1);
  color: #4353d8;
  font-size: 12px;
  font-weight: 900;
}

.kk-pricing-badge-dark {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.kk-pricing-card-text {
  min-height: 88px;
  color: #526070;
  font-size: 16px;
  line-height: 1.7;
}

.kk-price-block {
  margin: 28px 0 24px;
  padding: 24px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.kk-price-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.kk-price-prefix {
  color: #64748b;
  font-size: 16px;
  font-weight: 800;
}

.kk-price-amount {
  color: #0b1020;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.kk-price-unit {
  color: #64748b;
  font-size: 15px;
  font-weight: 800;
}

.kk-price-note {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.kk-pricing-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kk-pricing-cta:hover {
  transform: translateY(-1px);
}

.kk-pricing-cta-primary {
  background: #4353d8;
  color: #fff;
  box-shadow: 0 16px 34px rgba(67, 83, 216, 0.26);
}

.kk-pricing-cta-primary:hover {
  color: #fff;
  box-shadow: 0 20px 44px rgba(67, 83, 216, 0.32);
}

.kk-pricing-cta-secondary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.kk-pricing-cta-secondary:hover {
  color: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.28);
}

.kk-pricing-cta-ghost {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.kk-pricing-cta-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.kk-pricing-includes {
  margin-top: 28px;
}

.kk-pricing-includes p {
  margin-bottom: 12px;
  color: #0f172a;
  font-weight: 900;
}

.kk-pricing-includes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kk-pricing-includes li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
}

.kk-pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: rgba(18, 185, 129, 0.12);
  color: #0f9f6e;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 19px;
}

.kk-pricing-trust-section,
.kk-pricing-comparison-section,
.kk-pricing-faq-section,
.kk-pricing-final-cta-section {
  padding: 54px 0;
}

.kk-pricing-trust-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
}

.kk-pricing-trust-card h2,
.kk-section-heading h2,
.kk-pricing-final-cta h2 {
  margin: 0;
  color: #0b1020;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.kk-pricing-trust-card p {
  margin: 0;
  color: #526070;
  font-size: 17px;
  line-height: 1.75;
}

.kk-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.kk-section-heading p {
  margin: 14px 0 0;
  color: #526070;
  font-size: 17px;
  line-height: 1.7;
}

.kk-pricing-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
}

.kk-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.kk-pricing-table th,
.kk-pricing-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  color: #334155;
  font-size: 15px;
}

.kk-pricing-table th {
  background: rgba(248, 250, 252, 0.9);
  color: #0f172a;
  font-weight: 900;
}

.kk-pricing-table tr:last-child td {
  border-bottom: 0;
}

.kk-pricing-table td:nth-child(2),
.kk-pricing-table td:nth-child(3),
.kk-pricing-table th:nth-child(2),
.kk-pricing-table th:nth-child(3) {
  text-align: center;
  font-weight: 800;
}

.kk-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kk-faq-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 14px 46px rgba(15, 23, 42, 0.055);
}

.kk-faq-item h3 {
  margin: 0 0 10px;
  color: #0b1020;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.kk-faq-item p {
  margin: 0;
  color: #526070;
  font-size: 15px;
  line-height: 1.7;
}

.kk-pricing-final-cta {
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(80, 103, 255, 0.32), transparent 36%),
    linear-gradient(135deg, #0b1020, #111827);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 90px rgba(15, 23, 42, 0.22);
}

.kk-pricing-final-cta .kk-eyebrow {
  background: rgba(255,255,255,0.11);
  color: #fff;
}

.kk-pricing-final-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #fff;
}

.kk-pricing-final-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.75;
}

.kk-final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.kk-final-cta-actions .kk-pricing-cta {
  width: auto;
  min-width: 180px;
}

/* Responsive */
@media (max-width: 991px) {
  .kk-pricing-hero {
    padding-top: 56px;
  }

  .kk-pricing-hero-card {
    padding: 38px 26px;
  }

  .kk-pricing-card-text {
    min-height: auto;
  }

  .kk-pricing-trust-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .kk-pricing-title {
    font-size: 38px;
  }

  .kk-pricing-subtitle {
    font-size: 16px;
  }

  .kk-pricing-toggle {
    width: 100%;
  }

  .kk-pricing-toggle-btn {
    flex: 1;
    padding: 11px 10px;
  }

  .kk-pricing-toggle-btn span {
    display: none;
  }

  .kk-pricing-card {
    padding: 26px;
  }

  .kk-pricing-card-header {
    flex-direction: column;
  }

  .kk-price-amount {
    font-size: 42px;
  }

  .kk-faq-grid {
    grid-template-columns: 1fr;
  }

  .kk-pricing-final-cta {
    padding: 38px 24px;
  }

  .kk-final-cta-actions .kk-pricing-cta {
    width: 100%;
  }
}
/* ================================
   PRICING - SINGLE PRO VERSION
================================ */

.kk-pricing-card-featured {
  padding: 42px;
}

.kk-pricing-card-featured .kk-pricing-card-text {
  min-height: auto;
  max-width: 680px;
}

.kk-pricing-institutional-callout-section {
  padding: 32px 0 54px;
}

.kk-pricing-institutional-callout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top left, rgba(80, 103, 255, 0.11), transparent 32%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
}

.kk-pricing-institutional-callout h2 {
  margin: 0;
  max-width: 760px;
  color: #0b1020;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.kk-pricing-institutional-callout p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #526070;
  font-size: 16px;
  line-height: 1.75;
}

.kk-pricing-institutional-actions {
  display: grid;
  gap: 12px;
}

.kk-pricing-cta-soft {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.kk-pricing-cta-soft:hover {
  color: #0f172a;
  background: #e8eef7;
}

.kk-pricing-table-single th:nth-child(2),
.kk-pricing-table-single td:nth-child(2) {
  text-align: center;
  font-weight: 900;
}

@media (max-width: 991px) {
  .kk-pricing-institutional-callout {
    grid-template-columns: 1fr;
  }

  .kk-pricing-institutional-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .kk-pricing-card-featured {
    padding: 28px;
  }
}
/* ================================
   INSTITUTIONAL PRICING BLOCK
================================ */

.kk-institutional-pricing-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at top right, rgba(80, 103, 255, 0.08), transparent 32%),
    #f7f8fb;
}

.kk-institutional-pricing-card {
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top left, rgba(80, 103, 255, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.kk-institutional-pricing-card h2 {
  max-width: 780px;
  margin: 0;
  color: #0b1020;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.kk-institutional-pricing-card p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #526070;
  font-size: 17px;
  line-height: 1.75;
}

.kk-institutional-pricing-list {
  margin-top: 24px;
}

.kk-institutional-pricing-list li {
  color: #0f172a;
  font-weight: 600;
}

.kk-institutional-price-box {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.92));
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.kk-price-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(80, 103, 255, 0.09);
  color: #4353d8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kk-institutional-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.kk-institutional-price .kk-price-prefix {
  color: #64748b;
  font-size: 16px;
  font-weight: 800;
}

.kk-institutional-price strong {
  color: #0b1020;
  font-size: clamp(54px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.kk-institutional-price span:last-child {
  color: #64748b;
  font-size: 15px;
  font-weight: 800;
}

.kk-institutional-price-box p {
  margin: 0 0 22px;
  color: #526070;
  font-size: 15px;
  line-height: 1.7;
}

.kk-institutional-price-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.kk-institutional-price-box small {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 991px) {
  .kk-institutional-pricing-card {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .kk-institutional-pricing-section {
    padding: 52px 0;
  }

  .kk-institutional-pricing-card {
    padding: 26px;
    border-radius: 26px;
  }

  .kk-institutional-price-box {
    padding: 24px;
  }
}