/* ══════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════ */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;
      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;
      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;
      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;
      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    /* ══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ══════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════ */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    h4 {
      font-size: 0.9375rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .grad-text {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ══════════════════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════════════════ */
    /* ─── LAYOUT ─────────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
                margin-inline: auto;
                padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-family: var(--ff-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-dark);
    }

    .grid-bg {
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.038) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
    @keyframes floatA {

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

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

    @keyframes floatB {

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

      50% {
        transform: translateY(8px)
      }
    }

    @keyframes floatC {

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

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

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

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

    @keyframes spin-cw {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    @keyframes spin-ccw {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(-360deg)
      }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

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

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

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

    .reveal-d4 {
      transition-delay: 0.4s;
    }

    /* ══════════════════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════════════════ */
    /* Mockup frame */
    .mockup-frame {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(131, 39, 210, 0.04);
    }

    .mockup-bar {
      background: var(--ink-900);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mockup-bar-title {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      margin-left: 8px;
    }

    .dot-r {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #FF5F57;
    }

    .dot-y {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #FFBD2E;
    }

    .dot-g {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #28CA41;
    }

    .mockup-body {
      padding: 1.25rem;
      background: var(--canvas);
    }

    /* Float badge */
    .float-badge {
      position: absolute;
      z-index: 10;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 0.7rem 1rem;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .fb-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .fb-val {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .fb-sub {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--ink-400);
      margin-top: 2px;
    }

    /* Buttons */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9rem 2rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.38);
      border: none;
      cursor: pointer;
      transition: all 0.22s;
      text-decoration: none;
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9rem 2rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
      cursor: pointer;
      transition: all 0.22s;
      text-decoration: none;
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    /* Stat pill */
    .stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: var(--r-full);
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      box-shadow: var(--shadow-sm);
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--ink-700);
    }

    /* Feature bullet */
    .feat-bullet {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
    }

    .feat-bullet-icon {
      width: 26px;
      height: 26px;
      border-radius: var(--r-sm);
      background: var(--brand-pale);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .feat-bullet-text h4 {
      font-size: 0.9375rem;
      margin-bottom: 0.2rem;
    }

    .feat-bullet-text p {
      font-size: 0.875rem;
    }

    /* Feat link */
    .feat-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--ff-heading);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand);
      transition: gap 0.2s;
      text-decoration: none;
    }

    .feat-link:hover {
      gap: 10px;
      color: var(--brand-dark);
    }

    /* Mini components */
    .mini-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 2px 8px;
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
    }

    .badge-green {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .badge-orange {
      background: rgba(247, 144, 9, 0.1);
      color: var(--warning);
    }

    .badge-purple {
      background: var(--brand-pale);
      color: var(--brand);
    }

    .badge-red {
      background: rgba(240, 68, 56, 0.1);
      color: var(--danger);
    }

    .badge-blue {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .mini-row {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 8px 10px;
      margin-bottom: 6px;
    }

    .mini-row:last-child {
      margin-bottom: 0;
    }

    .mini-row-name {
      font-family: var(--ff-heading);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .mini-row-sub {
      font-size: 0.65rem;
      color: var(--ink-400);
    }

    .mini-flex {
      flex: 1;
    }

    .white-box {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.75rem;
    }

    .subject-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .subject-row:last-child {
      margin-bottom: 0;
    }

    .subject-label {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      color: var(--ink-500);
      width: 64px;
    }

    .subject-track {
      flex: 1;
      height: 6px;
      border-radius: var(--r-full);
      background: var(--border-soft);
      overflow: hidden;
    }

    .subject-fill {
      height: 100%;
      border-radius: var(--r-full);
    }

    .subject-score {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--ink-700);
    }

    .bar-col {
      flex: 1;
      border-radius: 3px 3px 0 0;
    }

    .bar-lo {
      background: var(--brand-soft);
    }

    .bar-hi {
      background: var(--brand);
    }

    /* Section header */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header .chip {
      margin-bottom: 1rem;
    }

    .section-header h2 {
      max-width: 600px;
      margin-inline: auto;
      margin-bottom: 1rem;
    }

    .section-header p {
      max-width: 520px;
      margin-inline: auto;
      font-size: 1.0625rem;
      line-height: 1.75;
    }

    /* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
    .k-hero {
      position: relative;
      overflow: hidden;
      padding: 7rem 0 5rem;
      background: linear-gradient(160deg, #F9F7FD 0%, #F0E8FC 50%, #F9F7FD 100%);
    }

    .k-hero-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.6;
      -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 0%, transparent 75%);
      mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 0%, transparent 75%);
    }

    .k-hero-orb {
      position: absolute;
      top: -160px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.10) 0%, transparent 65%);
    }

    .k-hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .k-hero-inner .chip {
      margin-bottom: 1.5rem;
    }

    .k-hero-h1 {
      font-family: var(--ff-heading);
      font-weight: 800;
      color: var(--ink-900);
      font-size: clamp(2.4rem, 5vw, 4rem);
      letter-spacing: -0.025em;
      max-width: 760px;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }

    .k-hero-desc {
      color: var(--ink-500);
      font-size: 1.0625rem;
      line-height: 1.8;
      max-width: 580px;
      margin-bottom: 2rem;
    }

    .k-hero-btns {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .k-hero-trust {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3.5rem;
    }

    .k-trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--ff-heading);
      font-weight: 600;
      color: var(--ink-400);
      font-size: 0.8125rem;
    }

    /* Hero mockup */
    .k-hero-mockup {
      position: relative;
      width: 100%;
      max-width: 900px;
    }

    .k-hero-mockup .mockup-frame {
      animation: floatA 7s ease-in-out infinite;
    }

    .k-stats-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .k-stat-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 16px;
      padding: 0.875rem 1rem;
    }

    .k-stat-card.accent {
      background: var(--brand-pale);
      border-color: var(--brand-soft);
    }

    .k-stat-lbl {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--ink-400);
      margin-bottom: 4px;
    }

    .k-stat-card.accent .k-stat-lbl {
      color: var(--brand);
    }

    .k-stat-val {
      font-family: var(--ff-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .k-stat-dlt {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--success);
      margin-top: 2px;
    }

    .k-stat-card.accent .k-stat-dlt {
      color: var(--warning);
    }

    .k-chart-activity {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 0.75rem;
    }

    .k-chart-box {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 16px;
      padding: 1rem;
    }

    .k-chart-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
    }

    .k-chart-title {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .k-chart-badge {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--r-full);
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .k-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 64px;
    }

    .k-bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
    }

    .k-month-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
    }

    .k-month-labels span {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--ink-300);
    }

    .k-activity-box {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 16px;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .k-act-title {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .k-act-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .k-act-av {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      color: #fff;
    }

    .k-act-info {
      flex: 1;
    }

    .k-act-name {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .k-act-sub {
      font-size: 0.625rem;
      color: var(--ink-400);
    }

    .k-act-time {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--ink-300);
    }

    /* Float badges on hero */
    .k-fb-tl {
      position: absolute;
      top: -1rem;
      left: -1.5rem;
      animation: floatB 5s ease-in-out infinite;
    }

    .k-fb-br {
      position: absolute;
      bottom: -1rem;
      right: -1.5rem;
      animation: floatA 6s ease-in-out infinite 1s;
    }

    @media (max-width: 1024px) {

      .k-fb-tl,
      .k-fb-br {
        display: none;
      }
    }

    /* ══════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════ */
    .k-marquee {
      padding: 2rem 0;
      overflow: hidden;
      background: var(--surface);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }

    .k-marquee-label {
      text-align: center;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-300);
      margin-bottom: 1rem;
    }

    .k-marquee-clip {
      position: relative;
      display: flex;
      overflow: hidden;
    }

    .k-marquee-track {
      display: flex;
      gap: 3rem;
      white-space: nowrap;
      min-width: max-content;
      animation: marquee 32s linear infinite;
    }

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

    .k-marquee-track-inner {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .k-marquee-item {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-300);
      transition: color 0.2s;
      cursor: default;
    }

    .k-marquee-item:hover {
      color: var(--brand);
    }

    /* ══════════════════════════════════════════════════════
   ORBIT SECTION
══════════════════════════════════════════════════════ */
    .k-orbit-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #F9F7FD 0%, #EDE8F6 50%, #F9F7FD 100%);
    }

    .k-orbit-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .k-orbit-wrap {
      position: relative;
      width: 360px;
      height: 360px;
      margin-inline: auto;
    }

    .k-ring-outer {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px dashed rgba(131, 39, 210, 0.2);
      animation: spin-cw 20s linear infinite;
      transform-origin: center;
    }

    .k-ring-inner {
      position: absolute;
      inset: 40px;
      border-radius: 50%;
      border: 1px dashed rgba(131, 39, 210, 0.14);
      animation: spin-ccw 15s linear infinite;
      transform-origin: center;
    }

    .k-orbit-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 112px;
      height: 112px;
      border-radius: 28px;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 16px 48px rgba(131, 39, 210, 0.38);
    }

    .k-orbit-center span {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      margin-top: 6px;
    }

    .k-orbit-icon {
      position: absolute;
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
    }

    .k-oi-top {
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
    }

    .k-oi-bottom {
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
    }

    .k-oi-left {
      left: -22px;
      top: 50%;
      transform: translateY(-50%);
    }

    .k-oi-right {
      right: -22px;
      top: 50%;
      transform: translateY(-50%);
    }

    .k-orbit-icon-sm {
      position: absolute;
      width: 36px;
      height: 36px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .k-ois-top {
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
    }

    .k-ois-bottom {
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* Pillars */
    .k-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .k-pillar {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
    }

    .k-pillar:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .k-pillar-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .k-pillar h4 {
      font-size: 0.9375rem;
    }

    .k-pillar p {
      font-size: 0.8125rem;
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════════════
   FEATURE SHOWCASE — Sticky Sidebar + Stacked Blocks
══════════════════════════════════════════════════════ */
    .k-showcase {
      background: var(--surface);
      padding: 5rem 0 0;
    }

    .k-showcase-layout {
      display: flex;
      gap: 3.5rem;
    }

    /* Sidebar */
    .k-sidebar {
      width: 200px;
      flex-shrink: 0;
    }

    .k-sidebar-sticky {
      position: sticky;
      top: 7rem;
    }

    .k-sidebar-label {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-300);
      padding: 0 1rem;
      margin-bottom: 0.75rem;
    }

    .k-sidebar-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ink-400);
      cursor: pointer;
      border-left: 2.5px solid transparent;
      transition: all 0.2s;
      margin-bottom: 2px;
      text-decoration: none;
    }

    .k-sidebar-link:hover {
      color: var(--brand);
      background: var(--brand-pale);
    }

    .k-sidebar-link.active {
      color: var(--brand);
      background: var(--brand-pale);
      border-left-color: var(--brand);
    }

    .k-sidebar-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ink-200);
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .k-sidebar-link.active .k-sidebar-dot {
      background: var(--brand);
    }

    /* Feature blocks */
    .k-blocks {
      flex: 1;
      min-width: 0;
    }

    .k-block {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-soft);
      scroll-margin-top: 7rem;
    }

    .k-block:last-child {
      border-bottom: none;
      padding-bottom: 7rem;
    }

    .k-block-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .k-block-inner.rev {
      direction: rtl;
    }

    .k-block-inner.rev>* {
      direction: ltr;
    }

    .k-feat-content .chip {
      margin-bottom: 1.25rem;
    }

    .k-feat-content h3 {
      margin-bottom: 1rem;
    }

    .k-feat-content>p {
      font-size: 1.0625rem;
      line-height: 1.75;
      margin-bottom: 1.75rem;
    }

    .k-bullets {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-bottom: 1.75rem;
    }

    /* Visual side */
    .k-visual {
      position: relative;
    }

    .k-panel-badge {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 8px 12px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .k-panel-badge.tr {
      top: -12px;
      right: -16px;
    }

    .k-panel-badge.bl {
      bottom: -12px;
      left: -16px;
    }

    .k-pb-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .k-pb-val {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .k-pb-sub {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--ink-400);
      margin-top: 2px;
    }

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

    /* ══════════════════════════════════════════════════════
   DARK STATS
══════════════════════════════════════════════════════ */
    .k-dark {
      background: var(--ink-900);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .k-dark-glow {
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
    }

    .k-dark-dots {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    .k-dark-inner {
      position: relative;
      z-index: 1;
    }

    .k-dark-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .k-dark-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(197, 152, 240, 0.25);
      background: rgba(131, 39, 210, 0.1);
      border-radius: var(--r-full);
      padding: 5px 16px;
      margin-bottom: 1rem;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-mid);
    }

    .k-dark-header h2 {
      color: #fff;
      max-width: 560px;
      margin-inline: auto;
    }

    .k-dark-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .k-dark-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 1.75rem;
      text-align: center;
      transition: background 0.25s, border-color 0.25s;
    }

    .k-dark-card:hover {
      background: rgba(131, 39, 210, 0.18);
      border-color: rgba(197, 152, 240, 0.35);
    }

    .k-dark-num {
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
    }

    .k-dark-num em {
      font-style: normal;
      color: var(--brand-mid);
    }

    .k-dark-lbl {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ══════════════════════════════════════════════════════
   MOBILE SECTION
══════════════════════════════════════════════════════ */
    .k-mobile {
      padding: 7rem 0;
      background: var(--canvas);
    }

    .k-mobile-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .k-mobile-header .chip {
      margin-bottom: 1rem;
    }

    .k-mobile-header h2 {
      max-width: 800px;
      margin-inline: auto;
      margin-bottom: 1rem;
    }

    .k-mobile-header p {
      max-width: 460px;
      margin-inline: auto;
      font-size: 1.0625rem;
      line-height: 1.75;
    }

    .k-phones {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1.25rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .k-phone {
      flex-shrink: 0;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      width: 145px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .k-phone:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .k-phone.feat {
      width: 170px;
      transform: translateY(-1.5rem);
      border: 2px solid var(--brand);
      box-shadow: 0 20px 60px rgba(131, 39, 210, 0.28);
    }

    .k-phone.feat:hover {
      transform: translateY(-2.5rem);
    }

    .k-phone-notch {
      height: 26px;
      background: var(--ink-900);
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 4px;
    }

    .k-phone-notch-dot {
      width: 8px;
      height: 6px;
      border-radius: var(--r-full);
      background: #1a1025;
    }

    .k-phone-screen {
      padding: 0;
      background: var(--canvas);
    }

    .k-phone-title {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .k-phone-sub {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--ink-400);
      margin-bottom: 6px;
    }

    .k-phone-stat {
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-sm);
      padding: 6px 8px;
      margin-bottom: 8px;
    }

    .k-phone-stat-val {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--ink-900);
    }

    .k-phone-stat-label {
      font-size: 0.6rem;
      color: var(--ink-400);
    }

    .k-phone-bars {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 40px;
      margin-bottom: 6px;
    }

    .k-phone-bar {
      flex: 1;
      border-radius: 2px 2px 0 0;
    }

    .k-phone-bar.lo {
      background: var(--brand-pale);
    }

    .k-phone-bar.hi {
      background: var(--brand);
    }

    .k-phone-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .k-phone-item {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--surface);
      border-radius: var(--r-sm);
      padding: 4px 6px;
      border: 1px solid var(--border-soft);
    }

    .k-phone-item.warn {
      background: rgba(255, 247, 237, 1);
      border-color: rgba(247, 144, 9, 0.2);
    }

    .k-phone-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .k-phone-text {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .k-phone-bottom {
      height: 4px;
      background: var(--border-soft);
    }

    .k-phone.feat .k-phone-bottom {
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      height: 5px;
    }

    /* Featured phone inner */
    .k-feat-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 4px;
    }

    .k-live-badge {
      font-family: var(--ff-heading);
      font-size: 0.55rem;
      font-weight: 700;
      background: var(--brand-pale);
      color: var(--brand);
      border-radius: var(--r-full);
      padding: 2px 6px;
    }

    .k-phone-present {
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-md);
      padding: 8px;
      margin-bottom: 8px;
      text-align: center;
    }

    .k-phone-present-val {
      font-family: var(--ff-heading);
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--brand);
    }

    .k-phone-present-time {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--brand);
    }

    .k-sched-label {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--ink-300);
      margin-bottom: 4px;
    }

    /* App download */
    .k-app-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .k-app-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1.5rem;
      background: var(--ink-900);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-md);
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }

    .k-app-btn:hover {
      background: #1a1025;
      transform: translateY(-2px);
    }

    .k-app-sm {
      display: block;
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: rgba(255, 255, 255, 0.5);
    }

    .k-app-lg {
      display: block;
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }

    /* ══════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════ */
    .k-faq {
      padding: 7rem 0;
      background: var(--canvas-alt);
    }

    .k-faq-layout {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 4.5rem;
      align-items: start;
    }

    .k-faq-left {
      position: sticky;
      top: 6.5rem;
    }

    .k-faq-left .chip {
      margin-bottom: 1rem;
    }

    .k-faq-left h2 {
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      margin-bottom: 1rem;
    }

    .k-faq-left>p {
      margin-bottom: 2rem;
    }

    .k-faq-contact {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: var(--shadow-sm);
    }

    .k-faq-contact-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: var(--brand-pale);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .k-faq-contact-title {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .k-faq-contact-link {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--brand);
      margin-top: 2px;
    }

    .k-faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .k-faq-item {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .k-faq-item.open {
      border-color: var(--brand-soft);
      box-shadow: var(--shadow-sm);
    }

    .k-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }

    .k-faq-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--brand);
      background: var(--brand-pale);
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .k-faq-text {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      flex: 1;
      transition: color 0.2s;
    }

    .k-faq-item.open .k-faq-text {
      color: var(--brand-dark);
    }

    .k-faq-chev {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--canvas) !important;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--ink-400) !important;
      transition: background 0.2s, color 0.2s, transform 0.35s ease;
    }

    .k-faq-item.open .k-faq-chev {
      background: var(--brand) !important;
      color: #fff !important;
      transform: rotate(180deg);
    }

    .k-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .k-faq-item.open .k-faq-answer {
      max-height: 400px;
    }

    .k-faq-answer-inner {
      padding: 0 1.5rem 1.5rem 1.5rem;
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--ink-500);
    }

    /* ══════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════ */
    .k-cta {
      background: var(--ink-900);
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
    }

    .k-cta-orb {
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.26) 0%, transparent 65%);
      transform: translate(30%, 30%);
    }

    .k-cta-dots {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .k-cta-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .k-cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(197, 152, 240, 0.25);
      background: rgba(131, 39, 210, 0.1);
      border-radius: var(--r-full);
      padding: 5px 16px;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-mid);
    }

    .k-cta-layout h2 {
      color: #fff;
      max-width: 480px;
      margin-bottom: 1.25rem;
    }

    .k-cta-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 1.0625rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .k-cta-btns {
      display: flex;
      gap: 0.875rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9375rem 2rem;
      border-radius: var(--r-md);
      background: #fff;
      color: var(--brand-deep);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      transition: all 0.22s;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
      text-decoration: none;
    }

    .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38);
    }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9375rem 2rem;
      border-radius: var(--r-md);
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.13);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: all 0.22s;
      text-decoration: none;
    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .k-cta-trust {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .k-cta-trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.4);
    }

    /* CTA device */
    .k-cta-visual {
      position: relative;
    }

    .k-cta-notif {
      position: absolute;
      top: -1rem;
      right: -1rem;
      z-index: 10;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 10px 14px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: floatB 5.5s ease-in-out infinite;
    }

    .k-notif-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--success);
      flex-shrink: 0;
    }

    .k-notif-name {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .k-notif-sub {
      font-size: 0.7rem;
      color: var(--ink-400);
      margin-top: 1px;
    }

    @media (max-width: 1024px) {
      .k-cta-notif {
        display: none !important;
      }
    }

    .k-cta-device {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    }

    .k-cta-dev-bar {
      background: rgba(255, 255, 255, 0.04);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .k-cta-dev-bar-title {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.3);
      margin-left: 8px;
    }

    .k-cta-dev-body {
      padding: 1.5rem;
    }

    .k-cta-welcome {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 4px;
    }

    .k-cta-name {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
    }

    .k-cta-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .k-cta-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--r-md);
      padding: 0.875rem;
      transition: background 0.2s;
    }

    .k-cta-card:hover {
      background: rgba(131, 39, 210, 0.18);
    }

    .k-cta-card-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      background: rgba(131, 39, 210, 0.25);
      color: var(--brand-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
    }

    .k-cta-card-val {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
    }

    .k-cta-card-label {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .k-stats-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      .k-chart-activity {
        grid-template-columns: 1fr;
      }

      .k-orbit-inner {
        grid-template-columns: 1fr;
      }

      .k-orbit-wrap {
        display: none;
      }

      .k-pillars {
        grid-template-columns: 1fr 1fr;
      }

      .k-showcase-layout {
        flex-direction: column;
      }

      .k-sidebar {
        display: none;
      }

      .k-block-inner,
      .k-block-inner.rev {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2.5rem;
      }

      .k-dark-cards {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .k-faq-left {
        position: static;
      }

      .k-cta-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 768px) {
      .k-phones {
        flex-wrap: wrap;
      }

      .k-phone.feat {
        transform: none;
      }
    }

    @media (max-width: 560px) {
      .k-pillars {
        grid-template-columns: 1fr;
      }

      .k-cta-cards {
        grid-template-columns: 1fr;
      }

      .k-cta-btns {
        flex-direction: column;
      }

      .k-cta-trust {
        grid-template-columns: 1fr;
      }

      .k-hero-btns {
        flex-direction: column;
        align-items: center;
      }

      .k-dark-cards {
        grid-template-columns: 1fr 1fr;
      }
    }