    /* ============================================================
       CSS PROPERTIES & VARIABLES
    ============================================================ */
    @property --angle {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
    }

    :root {
      --bg: #0c0a09;
      --surface: rgba(31, 27, 24, 0.6);
      --surface-solid: #1f1b18;
      --brand-from: #f6bf95;
      --brand-to: #bb5f2a;
      --brand-mid: #e08f5a;
      --teal: #165d5f;
      --teal-light: #4dd9dd;
      --teal-glow: rgba(22, 93, 95, 0.3);
      --text: #f5ede3;
      --heading: #fffaf4;
      --muted: #baa996;
      --border: rgba(246, 191, 149, 0.12);
      --border-hover: rgba(246, 191, 149, 0.25);
      --radius: 16px;
      --radius-sm: 10px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(246, 191, 149, 0.09) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Space Grotesk', sans-serif;
      color: var(--heading);
      line-height: 1.2;
    }

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

    img { max-width: 100%; }

    /* ============================================================
       GRADIENT UTILITIES
    ============================================================ */
    .gradient-text {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .gradient-text-teal {
      background: linear-gradient(135deg, #4dd9dd, #165d5f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ============================================================
       BACKGROUND DECORATIONS
    ============================================================ */
    .bg-glow {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }

    .bg-glow-1 {
      width: 600px;
      height: 600px;
      top: -200px;
      right: -100px;
      background: radial-gradient(circle, rgba(187, 95, 42, 0.12) 0%, transparent 70%);
    }

    .bg-glow-2 {
      width: 500px;
      height: 500px;
      bottom: 20%;
      left: -150px;
      background: radial-gradient(circle, rgba(22, 93, 95, 0.1) 0%, transparent 70%);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(12, 10, 9, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .nav-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--heading); }

    /* Nav dropdown */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a i {
      font-size: 12px;
      vertical-align: middle;
      transition: transform 0.2s;
    }
    .nav-dropdown:hover > a i {
      transform: rotate(180deg);
    }
    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      min-width: 220px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 8px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-50%) translateY(8px);
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      font-size: 13px;
      font-weight: 500;
      color: var(--muted) !important;
      border-radius: 6px;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-menu a:hover {
      background: rgba(246, 191, 149, 0.08);
      color: var(--heading) !important;
    }
    .nav-dropdown-menu a i {
      font-size: 16px;
      color: var(--brand-mid);
      width: 20px;
      text-align: center;
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #1a0f08 !important;
      font-weight: 700 !important;
      font-size: 14px;
      padding: 9px 22px;
      border-radius: 10px;
      transition: opacity 0.2s, transform 0.2s !important;
      box-shadow: 0 0 20px rgba(187, 95, 42, 0.25);
    }

    .nav-cta:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .nav-cta-outline {
      background: rgba(246, 191, 149, 0.06) !important;
      border: 1.5px solid rgba(246, 191, 149, 0.35) !important;
      color: #f6bf95 !important;
      box-shadow: none;
      font-weight: 600 !important;
    }

    .nav-cta-outline:hover {
      background: rgba(246, 191, 149, 0.12) !important;
      border-color: rgba(246, 191, 149, 0.5) !important;
      color: #fffaf4 !important;
    }

    /* Mobile hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: rgba(12, 10, 9, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 20px 40px;
      z-index: 99;
      flex-direction: column;
      gap: 16px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu a:last-child { border: none; }

    .mobile-menu .mobile-menu-login {
      color: #f6bf95;
      border-top: 1px solid rgba(246, 191, 149, 0.15);
      padding-top: 16px;
      margin-top: 8px;
    }

    .mobile-menu .mobile-menu-buy {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 12px;
      padding: 14px 18px;
      border: none;
      border-radius: 16px;
      background: linear-gradient(135deg, #f6bf95, #cd7738);
      color: #1a120d;
      font-weight: 800;
      box-shadow: 0 18px 44px rgba(205, 119, 56, 0.28);
    }

    .mobile-menu .mobile-menu-buy:hover {
      color: #120c08;
      transform: translateY(-1px);
    }

    .mobile-menu-sub {
      display: flex;
      flex-direction: column;
      padding: 4px 0 8px 16px;
      gap: 0;
    }
    .mobile-menu-sub a {
      font-size: 13px !important;
      color: var(--muted) !important;
      padding: 6px 0 !important;
      border: none !important;
    }
    .mobile-menu-sub a:hover {
      color: var(--heading) !important;
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    main { position: relative; z-index: 1; }

    section {
      padding: 100px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    #kb-preview {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 72px;
      padding-bottom: 0;
      max-width: 100%;
      overflow: hidden;
      position: relative;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      opacity: 0.6;
      animation: hero-bounce 2s ease-in-out infinite;
      transition: opacity 0.3s;
    }

    .hero-scroll-hint:hover {
      opacity: 1;
    }

    .hero-scroll-hint i {
      font-size: 32px;
    }

    @keyframes hero-bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero-split {
      display: grid;
      grid-template-columns: 520px 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-text {
      text-align: left;
    }

    .hero-visual {
      position: relative;
      margin-right: -80px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--brand-mid);
      background: rgba(187, 95, 42, 0.1);
      border: 1px solid rgba(187, 95, 42, 0.25);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
    }

    .hero-kicker::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-mid);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    /* Version badge — social proof: product is alive */
    .hero-version {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px 7px 12px;
      margin-bottom: 20px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(16, 185, 129, 0.06));
      border: 1px solid rgba(74, 222, 128, 0.3);
      border-radius: 999px;
      color: #86efac;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(34, 197, 94, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .hero-version:hover {
      transform: translateY(-1px);
      border-color: rgba(74, 222, 128, 0.5);
      box-shadow: 0 10px 26px rgba(34, 197, 94, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .hero-version strong {
      color: #bbf7d0;
      font-weight: 800;
    }

    .hero-version__dot {
      position: relative;
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
      animation: heroVersionPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    .hero-version__sep {
      color: rgba(134, 239, 172, 0.45);
      font-weight: 400;
    }

    @keyframes heroVersionPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
      50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    }

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

    .hero-title {
      font-size: clamp(32px, 3.2vw, 44px);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      line-height: 1.15;
    }

    .hero-subtitle {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .hero-benefits {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px;
    }

    .hero-benefit {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-benefit-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(187, 95, 42, 0.12);
      border: 1px solid rgba(187, 95, 42, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-benefit-icon i {
      font-size: 18px;
      color: var(--brand-mid);
    }

    .hero-benefit-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--heading);
      line-height: 1.3;
    }

    .hero-benefit-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.4;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--muted);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .hero-badge i {
      font-size: 13px;
      color: var(--brand-mid);
    }

    .hero-badges .hero-badge + .hero-badge::before {
      content: '·';
      margin-right: 6px;
      color: var(--border-hover);
      font-weight: 700;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #1a0f08;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 32px;
      border-radius: var(--radius-sm);
      box-shadow: 0 0 40px rgba(187, 95, 42, 0.35), 0 0 80px rgba(187, 95, 42, 0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 60px rgba(187, 95, 42, 0.5), 0 0 100px rgba(187, 95, 42, 0.2);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 15px;
      padding: 13px 30px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-hover);
      background: var(--surface);
      backdrop-filter: blur(10px);
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .btn-outline:hover {
      border-color: rgba(246, 191, 149, 0.5);
      background: rgba(31, 27, 24, 0.9);
      transform: translateY(-2px);
    }

    .btn-channel {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #c4b5fd;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: 12px;
      border: 1px solid rgba(139, 92, 246, 0.25);
      background: rgba(139, 92, 246, 0.08);
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .btn-channel:hover {
      border-color: rgba(139, 92, 246, 0.5);
      background: rgba(139, 92, 246, 0.15);
      transform: translateY(-2px);
    }

    .btn-channel i {
      font-size: 18px;
    }

    /* Channel banner */
    .channel-banner {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 28px;
      border-radius: 16px;
      background: var(--surface);
      border: 1px solid var(--border);
    }

    .channel-banner-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(42, 171, 238, 0.1);
      border: 1px solid rgba(42, 171, 238, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .channel-banner-icon i {
      font-size: 22px;
      color: #2AABEE;
    }

    .channel-banner-text {
      flex: 1;
      min-width: 0;
    }

    .channel-banner-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--heading);
      margin-bottom: 2px;
    }

    .channel-banner-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.4;
    }

    .channel-banner-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: 10px;
      background: rgba(42, 171, 238, 0.1);
      border: 1px solid rgba(42, 171, 238, 0.25);
      color: #2AABEE;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 13px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: transform 0.2s, background 0.2s, border-color 0.2s;
    }

    .channel-banner-btn:hover {
      transform: translateY(-2px);
      background: rgba(42, 171, 238, 0.18);
      border-color: rgba(42, 171, 238, 0.4);
    }

    /* Hero mockup */
    .hero-mockup {
      position: relative;
      max-width: 980px;
      margin: 0 auto;
      padding: 22px 10px 52px;
      overflow: visible;
      isolation: isolate;
      transform: perspective(1800px) rotateY(-8deg) rotateX(4deg);
      transform-origin: center center;
    }

    .hero-mockup::before {
      content: '';
      position: absolute;
      inset: 12% 10% 17%;
      border-radius: 40px;
      background: radial-gradient(circle at 50% 0%, rgba(246, 191, 149, 0.12), transparent 56%);
      filter: blur(28px);
      z-index: -2;
      opacity: 0.95;
    }

    .hero-mockup::after {
      content: '';
      position: absolute;
      left: 13%;
      right: 13%;
      bottom: 8px;
      height: 36px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.22) 52%, transparent 78%);
      pointer-events: none;
      z-index: -1;
      filter: blur(10px);
    }

    .mockup-glow {
      position: absolute;
      inset: 0;
      border-radius: 60px;
      background:
        radial-gradient(circle at 50% 14%, rgba(246, 191, 149, 0.22), transparent 30%),
        radial-gradient(circle at 50% 74%, rgba(22, 93, 95, 0.12), transparent 34%);
      filter: blur(34px);
      pointer-events: none;
      z-index: -2;
    }

    .hero-laptop {
      position: relative;
      width: min(100%, 920px);
      margin: 0 auto;
    }

    .hero-laptop-screen {
      position: relative;
      padding: 14px;
      border-radius: 28px 28px 18px 18px;
      background:
        linear-gradient(180deg, #625042 0%, #231a15 8%, #120f0d 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    }

    .hero-laptop-screen::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      width: 52px;
      height: 8px;
      margin-left: -26px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 50% 50%, rgba(18, 18, 20, 0.95) 0 1.2px, transparent 1.4px),
        linear-gradient(180deg, rgba(124, 102, 83, 0.7), rgba(18, 15, 12, 0.9));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      z-index: 3;
    }

    .hero-laptop-screen::after {
      content: '';
      position: absolute;
      inset: 12px;
      border-radius: 20px 20px 12px 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      pointer-events: none;
      z-index: 1;
    }

    .hero-laptop-display {
      position: relative;
      overflow: hidden;
      border-radius: 18px 18px 10px 10px;
      background: #0e0c0b;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 30px 60px rgba(0, 0, 0, 0.12);
    }

    .hero-laptop-display::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 18%, transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%);
      pointer-events: none;
      z-index: 2;
      mix-blend-mode: screen;
    }

    .hero-laptop-display img,
    .hero-laptop-display video {
      width: 100%;
      display: block;
      aspect-ratio: 58 / 30;
      object-fit: cover;
      filter: brightness(1.04) contrast(1.05) saturate(1.04);
    }

    .hero-ui-poster {
      position: relative;
      z-index: 1;
      transition: opacity .6s ease;
    }

    .hero-ui-poster.is-hidden {
      opacity: 0;
      pointer-events: none;
    }

    .hero-ui-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    /* Video progress bar */
    .hero-progress {
      position: absolute;
      z-index: 3;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      cursor: pointer;
      transition: height .2s;
    }

    .hero-laptop-display:hover .hero-progress {
      height: 5px;
    }

    .hero-progress-fill {
      height: 100%;
      width: 0%;
      background: var(--brand-mid);
      border-radius: 0 1px 1px 0;
      transition: width .15s linear;
    }

    .hero-laptop-display {
      cursor: pointer;
    }

    /* Video lightbox */
    .video-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.88);
      backdrop-filter: blur(12px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s, visibility .35s;
    }

    .video-lightbox.open {
      opacity: 1;
      visibility: visible;
    }

    .video-lightbox-player {
      width: 90%;
      max-width: 1200px;
      max-height: 85vh;
      border-radius: 12px;
      outline: none;
      box-shadow: 0 8px 60px rgba(0,0,0,.6);
    }

    .video-lightbox-close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .video-lightbox-close:hover {
      background: rgba(255,255,255,.2);
    }

    .hero-laptop-base {
      position: relative;
      width: 112%;
      height: 30px;
      margin: -2px 0 0 -6%;
      border-radius: 0 0 120px 120px;
      background:
        linear-gradient(180deg, #7b6655 0%, #625042 18%, #1c1512 64%, #120f0d 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 3px rgba(0, 0, 0, 0.24);
    }

    .hero-laptop-base::before {
      content: '';
      position: absolute;
      left: 7%;
      right: 7%;
      top: -4px;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(124, 102, 83, 0.9), rgba(44, 34, 28, 0.9));
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    }

    .hero-laptop-base::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 5px;
      width: 18%;
      height: 6px;
      margin-left: -9%;
      border-radius: 0 0 999px 999px;
      background: linear-gradient(180deg, rgba(23, 19, 17, 0.9), rgba(78, 63, 52, 0.6));
      opacity: 0.7;
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    #stats {
      padding: 0;
      max-width: 100%;
    }

    .stats-bar {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 80px;
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .stat-item {
      position: relative;
      border-radius: var(--radius);
      padding: 2px;
      background: conic-gradient(from var(--angle), transparent 0deg, rgba(246, 191, 149, 0.35) 60deg, rgba(187, 95, 42, 0.2) 120deg, transparent 180deg, transparent 360deg);
      animation: rotate-border var(--stat-speed, 8s) linear infinite;
      transition: transform 0.2s;
    }

    .stat-item:nth-child(1) { --stat-speed: 7s; animation-delay: -1s; }
    .stat-item:nth-child(2) { --stat-speed: 9s; animation-delay: -3.5s; }
    .stat-item:nth-child(3) { --stat-speed: 8s; animation-delay: -5s; }
    .stat-item:nth-child(4) { --stat-speed: 10s; animation-delay: -2s; }

    .stat-item:hover {
      transform: translateY(-2px);
    }

    .stat-item-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      padding: 28px 20px;
      border-radius: calc(var(--radius) - 2px);
      background: rgba(18, 15, 12, 0.95);
      height: 100%;
      transition: background 0.2s;
    }

    .stat-item:hover .stat-item-inner {
      background: rgba(27, 22, 19, 0.98);
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(187, 95, 42, 0.15), rgba(187, 95, 42, 0.05));
      border: 1px solid rgba(187, 95, 42, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-mid);
      font-size: 22px;
      flex-shrink: 0;
      margin-bottom: 4px;
    }

    .stat-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 32px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
    }

    /* ============================================================
       SOCIAL PROOF
    ============================================================ */
    .social-proof {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 80px;
    }

    .social-proof-title {
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 40px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testimonial-card {
      background: var(--surface);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: border-color 0.3s, transform 0.2s;
    }

    .testimonial-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-3px);
    }

    .testimonial-stars {
      display: flex;
      gap: 2px;
      color: var(--brand-mid);
      font-size: 14px;
    }

    .testimonial-text {
      font-size: 14px;
      color: var(--text);
      line-height: 1.7;
      flex: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.2), rgba(187, 95, 42, 0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--brand-mid);
      flex-shrink: 0;
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--heading);
    }

    .testimonial-role {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
    }

    @media (max-width: 1200px) {
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
    }

    @media (max-width: 768px) {
      .social-proof { padding: 0 20px 60px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonials-grid .testimonial-card:last-child { max-width: 100%; }
    }

    /* ============================================================
       FEATURES GRID
    ============================================================ */
    #features {
      padding-top: 40px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 100px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.15);
      color: var(--brand-mid);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 56px;
      line-height: 1.7;
    }

    /* Right-aligned section headers */
    .section-right .section-label,
    .section-right .section-title,
    .section-right .section-subtitle {
      margin-left: auto;
      text-align: right;
    }

    /* ── Bento Grid ── */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }

    .bento-card {
      position: relative;
      border-radius: var(--radius);
      padding: 2px;
      background: conic-gradient(from var(--angle), transparent 0deg, rgba(246, 191, 149, 0.6) 60deg, rgba(187, 95, 42, 0.4) 120deg, transparent 180deg, transparent 360deg);
      animation: rotate-border 6s linear infinite;
    }

    .bento-card:nth-child(2) { animation-delay: -3s; }
    .bento-card:nth-child(3) { animation-delay: -1s; }
    .bento-card:nth-child(4) { animation-delay: -2s; }
    .bento-card:nth-child(5) { animation-delay: -4s; }
    .bento-card:nth-child(6) { animation-delay: -5s; }

    @keyframes rotate-border {
      to { --angle: 360deg; }
    }

    .bento-card-inner {
      background: rgba(18, 15, 12, 0.95);
      border-radius: calc(var(--radius) - 2px);
      padding: 28px;
      height: 100%;
      transition: background 0.3s;
    }

    .bento-card:hover .bento-card-inner {
      background: rgba(27, 22, 19, 0.98);
    }

    /* Large cards — top row, 1 per column */
    .bento-lg {
      grid-column: span 1;
    }

    /* Small cards — bottom row, 4 across */
    .bento-sm {
      grid-column: span 1;
    }

    /* Make bottom row 4 columns via subgrid workaround */
    .bento-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .bento-lg {
      grid-column: span 2;
    }

    .feat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(187, 95, 42, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }

    .feat-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.15), rgba(187, 95, 42, 0.08));
    }

    .feat-icon i {
      font-size: 20px;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .bento-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--heading);
    }

    .bento-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* Visual elements inside large cards */
    .bento-visual {
      margin-top: 20px;
    }

    .bento-tasks {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .bento-task {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
    }

    .bento-task-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .bento-task-status {
      margin-left: auto;
      color: var(--muted);
      font-size: 12px;
      font-weight: 400;
    }

    .bento-privacy {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .bento-privacy-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      font-size: 13px;
      color: var(--text);
    }

    /* Timeline visual */
    .bento-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      padding-left: 20px;
    }

    .bento-timeline::before {
      content: '';
      position: absolute;
      left: 5px;
      top: 14px;
      bottom: 14px;
      width: 1px;
      background: linear-gradient(180deg, var(--border-hover), rgba(74, 222, 128, 0.3));
    }

    .bento-timeline-step {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      position: relative;
    }

    .bento-timeline-dot {
      position: absolute;
      left: -20px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--brand-mid);
      border: 2px solid rgba(18, 15, 12, 0.95);
      flex-shrink: 0;
      z-index: 1;
    }

    .bento-timeline-dot--result {
      background: #4ade80;
      box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
    }

    .bento-pipeline-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--heading);
      line-height: 1.3;
    }

    .bento-pipeline-sub {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.3;
    }

    /* AI list visual */
    .bento-ai-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .bento-ai-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 0;
      font-size: 13px;
      color: var(--text);
      border-bottom: 1px solid var(--border);
    }

    .bento-ai-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .bento-ai-item--more {
      color: var(--muted);
    }

    .bento-ai-item--more i {
      opacity: 0.5;
    }

    .bento-ai-item i {
      font-size: 16px;
      color: var(--brand-mid);
      flex-shrink: 0;
    }

    .bento-ai-item span:first-of-type {
      flex: 1;
    }

    .bento-ai-tag {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      background: rgba(246, 191, 149, 0.08);
      padding: 2px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    /* ============================================================
       SPLIT SECTIONS
    ============================================================ */
    .split-section {
      padding: 100px 0;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    .split-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .split-inner.split-reverse {
      direction: rtl;
    }

    .split-inner.split-reverse > * {
      direction: ltr;
    }

    .split-visual {
      position: relative;
      min-height: 560px;
      padding: 28px;
      border-radius: 34px;
      border: 1px solid rgba(246, 191, 149, 0.1);
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(23, 19, 17, 0.72), rgba(10, 9, 8, 0.28));
      box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
      isolation: isolate;
    }

    .split-visual::before {
      content: '';
      position: absolute;
      inset: 18px;
      border-radius: 26px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
        radial-gradient(circle at bottom left, rgba(22, 93, 95, 0.08), transparent 34%);
      pointer-events: none;
      z-index: -1;
    }

    .split-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 100px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.15);
      color: var(--brand-mid);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }

    .split-desc {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 480px;
    }

    .split-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .split-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .split-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-mid);
      font-size: 18px;
      flex-shrink: 0;
    }

    .split-feature-item strong {
      display: block;
      color: var(--heading);
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .split-feature-item span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .split-img-wrap {
      --shot-transform: translate3d(0, 0, 0);
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--surface);
      border: 1px solid rgba(246, 191, 149, 0.16);
      border-radius: var(--radius);
      padding: 24px 12px 12px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(44, 34, 28, 0.96), rgba(22, 18, 16, 0.96));
      box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(246, 191, 149, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
      transform: var(--shot-transform);
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    }

    .split-img-wrap::before,
    .module-screenshot::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 12px;
      right: 12px;
      height: 14px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 9px 7px, rgba(227, 116, 97, 0.96) 0 2.8px, rgba(255, 255, 255, 0.1) 3px 3.8px, transparent 4px),
        radial-gradient(circle at 27px 7px, rgba(223, 181, 92, 0.96) 0 2.8px, rgba(255, 255, 255, 0.1) 3px 3.8px, transparent 4px),
        radial-gradient(circle at 45px 7px, rgba(96, 181, 116, 0.96) 0 2.8px, rgba(255, 255, 255, 0.1) 3px 3.8px, transparent 4px),
        linear-gradient(90deg, transparent 0 60px, rgba(255, 255, 255, 0.05) 60px calc(100% - 54px), transparent calc(100% - 54px) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 1px 0 rgba(0, 0, 0, 0.12);
      opacity: 0.98;
      z-index: 2;
    }

    .split-img-wrap::after,
    .module-screenshot::after {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 72%, rgba(255, 255, 255, 0.03));
      pointer-events: none;
      mix-blend-mode: screen;
      z-index: 1;
    }

    .split-img-wrap:hover {
      border-color: rgba(246, 191, 149, 0.26);
      box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.52),
        0 0 28px rgba(187, 95, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      transform: var(--shot-transform) translateY(-6px) scale(1.01);
    }

    .split-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(246, 191, 149, 0.1);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
      filter: brightness(1.03) contrast(1.05) saturate(1.04);
      position: relative;
      z-index: 0;
    }

    .split-visual .split-img-wrap:first-child {
      --shot-transform: perspective(1600px) rotateY(-10deg) rotateX(2deg) translateX(-6px);
    }

    .split-visual .split-img-wrap:last-child {
      --shot-transform: perspective(1600px) rotateY(8deg) rotateX(1deg) translateX(18px);
    }

    .split-visual > .split-img-wrap:only-child {
      --shot-transform: perspective(1600px) rotateY(-6deg) rotateX(2deg) translateX(0);
      max-width: 560px;
      margin: 22px auto 0;
    }

    /* ── Device grid (fingerprint section) ── */
    .split-visual:has(.device-grid) {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .device-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding: 16px 0;
      width: 100%;
    }

    .device-tile {
      position: relative;
      padding: 28px 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(40, 31, 27, 0.6), rgba(18, 15, 12, 0.7));
      border: 1px solid rgba(246, 191, 149, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      text-align: center;
      overflow: hidden;
    }

    .device-tile::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .device-tile--android::before { background: radial-gradient(circle at 50% 30%, rgba(61, 220, 132, 0.12), transparent 70%); }
    .device-tile--ios::before { background: radial-gradient(circle at 50% 30%, rgba(180, 180, 220, 0.12), transparent 70%); }
    .device-tile--web::before { background: radial-gradient(circle at 50% 30%, rgba(77, 217, 221, 0.12), transparent 70%); }
    .device-tile--desktop::before { background: radial-gradient(circle at 50% 30%, rgba(246, 191, 149, 0.12), transparent 70%); }

    .device-tile:hover {
      transform: translateY(-4px);
      border-color: rgba(246, 191, 149, 0.22);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
    }

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

    .device-tile-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      font-size: 26px;
      background: rgba(246, 191, 149, 0.06);
      border: 1px solid rgba(246, 191, 149, 0.1);
    }

    .device-tile--android .device-tile-icon { color: #3ddc84; border-color: rgba(61, 220, 132, 0.18); background: rgba(61, 220, 132, 0.06); }
    .device-tile--ios .device-tile-icon { color: #b4b4dc; border-color: rgba(180, 180, 220, 0.18); background: rgba(180, 180, 220, 0.06); }
    .device-tile--web .device-tile-icon { color: #4dd9dd; border-color: rgba(77, 217, 221, 0.18); background: rgba(77, 217, 221, 0.06); }
    .device-tile--desktop .device-tile-icon { color: var(--brand-mid); border-color: rgba(246, 191, 149, 0.18); background: rgba(246, 191, 149, 0.06); }

    .device-tile-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--heading);
      margin-bottom: 0;
    }

    .device-tile-detail {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.4;
    }

    .device-grid-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(40, 31, 27, 0.98), rgba(18, 15, 12, 0.98));
      border: 1px solid rgba(246, 191, 149, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(187, 95, 42, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }

    .device-grid-center-icon {
      font-size: 22px;
      color: var(--brand-mid);
      line-height: 1;
    }

    .device-grid-center-label {
      font-size: 9px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    @media (max-width: 768px) {
      .split-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .split-inner.split-reverse {
        direction: ltr;
      }
      .split-section {
        padding: 60px 0;
      }

      .split-visual {
        min-height: auto;
        padding: 18px;
        border-radius: 26px;
      }

      .split-section .section-title {
        text-align: center !important;
      }
      .split-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
      }
      .split-text {
        display: flex;
        flex-direction: column;
      }
      .split-desc {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ============================================================
       MODULES SHOWCASE
    ============================================================ */
    #modules {
      padding-top: 100px;
    }

    #modules .section-title {
      font-size: 54px;
      line-height: 1.08;
      letter-spacing: -1.5px;
    }

    #modules .section-subtitle {
      max-width: 640px;
    }

    .modules-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 24px;
      align-items: start;
    }

    .modules-list {
      background: var(--surface);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      position: sticky;
      top: 88px;
    }

    .module-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      cursor: pointer;
      border-left: 2px solid transparent;
      transition: all 0.2s;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }

    .module-item:last-child { border-bottom: none; }

    .module-item i {
      font-size: 16px;
      width: 20px;
      text-align: center;
      flex-shrink: 0;
      transition: color 0.2s;
    }

    .module-item:hover {
      background: rgba(246, 191, 149, 0.04);
      color: var(--text);
    }

    .module-item.active {
      background: rgba(187, 95, 42, 0.08);
      border-left-color: var(--brand-mid);
      color: var(--heading);
    }

    .module-item.active i {
      color: var(--brand-mid);
    }

    .modules-panel {
      position: relative;
      background: var(--surface);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
      min-height: 500px;
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(27, 22, 19, 0.9), rgba(18, 15, 12, 0.94));
      box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
      isolation: isolate;
    }

    .modules-panel[hidden] {
      display: none !important;
    }

    .modules-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at 82% 86%, rgba(22, 93, 95, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%);
      pointer-events: none;
    }

    .module-content { display: none; }
    .module-content.active { display: block; }

    .module-content h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .module-content p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .module-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }

    .module-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text);
    }

    .module-features li::before {
      content: '';
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(187, 95, 42, 0.15);
      border: 1px solid rgba(187, 95, 42, 0.3);
      flex-shrink: 0;
      margin-top: 2px;
      position: relative;
    }

    .module-features li::after {
      display: none;
    }

    .module-feature-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .module-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text);
    }

    .module-feature-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(187, 95, 42, 0.12);
      border: 1px solid rgba(187, 95, 42, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .module-feature-check i {
      font-size: 10px;
      color: var(--brand-mid);
    }

    /* Module detail link */
    .module-detail-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 14px;
      font-weight: 600;
      color: var(--brand-mid);
      transition: color 0.2s, gap 0.2s;
    }
    .module-detail-link:hover {
      color: var(--brand-from);
      gap: 8px;
    }
    .module-detail-link i { font-size: 15px; }

    /* Module screenshot */
    .module-screenshot {
      --shot-transform: translate3d(0, 0, 0);
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(246, 191, 149, 0.16);
      border-radius: 18px;
      padding: 22px 10px 10px;
      overflow: hidden;
      margin-top: auto;
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(44, 34, 28, 0.98), rgba(18, 15, 12, 0.98));
      box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(246, 191, 149, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
      transform: var(--shot-transform);
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    }

    .module-screenshot:hover {
      border-color: rgba(246, 191, 149, 0.26);
      box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(187, 95, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      transform: var(--shot-transform) translateY(-4px) scale(1.008);
    }

    .module-content.active .module-screenshot {
      border-color: rgba(246, 191, 149, 0.22);
      box-shadow:
        0 26px 58px rgba(0, 0, 0, 0.48),
        0 0 34px rgba(187, 95, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      transform: translateY(-3px) scale(1.01);
    }

    .module-screenshot img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      border: 1px solid rgba(246, 191, 149, 0.1);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
      filter: brightness(1.03) contrast(1.05) saturate(1.04);
      position: relative;
      z-index: 0;
    }

    /* Compact modules grid (remaining modules) */
    .modules-more {
      padding-top: 8px;
    }

    .modules-compact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .module-compact {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px;
      background: var(--surface);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      transition: border-color 0.2s, transform 0.2s;
    }

    .module-compact:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .module-compact i {
      font-size: 18px;
      color: var(--brand-mid);
    }

    @media (max-width: 768px) {
      .modules-compact-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .modules-compact-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       MODULES BENTO GRID (6 флагманов)
    ============================================================ */
    .mbento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 22px;
      margin-bottom: 32px;
    }

    .mbento-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(27, 22, 19, 0.9), rgba(18, 15, 12, 0.94));
      backdrop-filter: blur(18px);
      box-shadow:
        0 16px 44px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
      cursor: pointer;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
      color: inherit;
      text-decoration: none;
    }

    .mbento-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 85% 92%, rgba(187, 95, 42, 0.1), transparent 45%);
      opacity: 0.7;
      pointer-events: none;
      z-index: 0;
      transition: opacity 0.3s ease;
    }

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

    .mbento-card:hover {
      transform: translateY(-6px);
      border-color: rgba(246, 191, 149, 0.32);
      box-shadow:
        0 34px 72px rgba(0, 0, 0, 0.48),
        0 0 36px rgba(187, 95, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .mbento-card:hover::before { opacity: 1; }

    /* Shine-эффект на hero при hover */
    .mbento-card--hero::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 60%;
      height: 200%;
      background: linear-gradient(
        115deg,
        transparent 25%,
        rgba(255, 255, 255, 0.05) 48%,
        rgba(255, 255, 255, 0.09) 50%,
        rgba(255, 255, 255, 0.05) 52%,
        transparent 75%
      );
      transform: translateX(-100%) skewX(-18deg);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 2;
    }

    .mbento-card--hero:hover::after {
      opacity: 1;
      animation: mbento-shine 1.2s ease-out;
    }

    @keyframes mbento-shine {
      0% { transform: translateX(-100%) skewX(-18deg); }
      100% { transform: translateX(360%) skewX(-18deg); }
    }

    .mbento-card:focus-visible {
      outline: 2px solid var(--brand-mid);
      outline-offset: 3px;
    }

    /* Размеры */
    .mbento-card--hero {
      grid-column: span 12;
      display: grid;
      grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
      gap: 36px;
      align-items: stretch;
      padding: 44px;
    }

    .mbento-card--hero-lg { min-height: 500px; }
    .mbento-card--hero-sm { min-height: 420px; }

    .mbento-card--hero.mbento-card--reverse {
      grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    }
    .mbento-card--hero.mbento-card--reverse .mbento-card__text { order: 2; }
    .mbento-card--hero.mbento-card--reverse .mbento-card__shot { order: 1; }

    .mbento-card--sm {
      grid-column: span 3;
      min-height: 280px;
      padding: 28px;
    }

    /* Arrow-индикатор в правом верхнем углу */
    .mbento-card__arrow {
      position: absolute;
      top: 22px;
      right: 22px;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(246, 191, 149, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 18px;
      z-index: 3;
      transition: all 0.3s ease;
      backdrop-filter: blur(8px);
    }


    .mbento-card__arrow i {
      transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
      display: block;
    }

    .mbento-card:hover .mbento-card__arrow {
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.22), rgba(187, 95, 42, 0.12));
      border-color: rgba(246, 191, 149, 0.42);
      color: var(--heading);
      transform: translate(4px, -4px);
      box-shadow: 0 10px 22px rgba(187, 95, 42, 0.22);
    }

    .mbento-card:hover .mbento-card__arrow i {
      transform: translate(2px, -2px);
    }

    .mbento-card--ai:hover .mbento-card__arrow {
      background: linear-gradient(135deg, rgba(165, 148, 249, 0.22), rgba(124, 108, 227, 0.12));
      border-color: rgba(165, 148, 249, 0.42);
      box-shadow: 0 8px 18px rgba(124, 108, 227, 0.22);
    }

    .mbento-card--accent:hover .mbento-card__arrow {
      background: linear-gradient(135deg, rgba(77, 217, 221, 0.2), rgba(77, 217, 221, 0.08));
      border-color: rgba(77, 217, 221, 0.42);
      box-shadow: 0 8px 18px rgba(77, 217, 221, 0.2);
    }

    /* AI accent — фиолетовый для Нейродиалога */
    .mbento-card--ai {
      background:
        radial-gradient(circle at 100% 0%, rgba(124, 108, 227, 0.14), transparent 45%),
        radial-gradient(circle at top right, rgba(165, 148, 249, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(27, 22, 19, 0.92), rgba(18, 15, 12, 0.96));
      border-color: rgba(165, 148, 249, 0.2);
    }

    .mbento-card--ai::before {
      background:
        radial-gradient(circle at 90% 95%, rgba(124, 108, 227, 0.14), transparent 42%),
        radial-gradient(circle at 10% 10%, rgba(165, 148, 249, 0.08), transparent 30%);
      opacity: 0.9;
    }

    .mbento-card--ai:hover {
      border-color: rgba(165, 148, 249, 0.42);
      box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(124, 108, 227, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .mbento-card--ai .mbento-card__icon {
      background: linear-gradient(135deg, rgba(165, 148, 249, 0.22), rgba(124, 108, 227, 0.12));
      border-color: rgba(165, 148, 249, 0.3);
      color: #b5a5ff;
    }

    .mbento-card__text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    /* Top row (icon + eyebrow) */
    .mbento-card__top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .mbento-card__icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.16), rgba(187, 95, 42, 0.08));
      border: 1px solid rgba(246, 191, 149, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--brand-mid);
      flex-shrink: 0;
    }

    .mbento-card--hero .mbento-card__icon {
      width: 58px;
      height: 58px;
      font-size: 28px;
    }

    .mbento-card--sm .mbento-card__icon {
      width: 52px;
      height: 52px;
      font-size: 24px;
      margin-bottom: 16px;
    }

    /* Декоративная фоновая иконка в small карточках */
    .mbento-card__decor {
      position: absolute;
      right: -32px;
      bottom: -48px;
      font-size: 240px;
      line-height: 1;
      color: rgba(246, 191, 149, 0.075);
      pointer-events: none;
      z-index: 0;
      transition: color 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
    }

    .mbento-card:hover .mbento-card__decor {
      color: rgba(246, 191, 149, 0.14);
      transform: scale(1.05) rotate(-4deg) translate(-4px, -6px);
    }

    .mbento-card--accent .mbento-card__decor {
      color: rgba(77, 217, 221, 0.08);
    }

    .mbento-card--accent:hover .mbento-card__decor {
      color: rgba(77, 217, 221, 0.15);
    }

    .mbento-card__eyebrow {
      display: inline-block;
      padding: 5px 11px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.18);
      border-radius: 999px;
      color: var(--brand-mid);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .mbento-card__eyebrow--ai {
      background: linear-gradient(135deg, rgba(165, 148, 249, 0.18), rgba(124, 108, 227, 0.08));
      border-color: rgba(165, 148, 249, 0.34);
      color: #c4b8ff;
    }


    .mbento-card__title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: var(--heading);
      margin: 0 0 10px;
    }

    .mbento-card--hero-lg .mbento-card__title {
      font-size: 40px;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .mbento-card--hero-sm .mbento-card__title {
      font-size: 34px;
      line-height: 1.12;
      margin-bottom: 14px;
      letter-spacing: -0.6px;
    }

    .mbento-card--sm .mbento-card__title {
      font-size: 20px;
      letter-spacing: -0.3px;
    }

    /* AI gradient на заголовке Нейродиалога */
    .mbento-card--ai .mbento-card__title {
      background: linear-gradient(110deg, #fffaf4 0%, #fffaf4 35%, #d4c6ff 70%, #a594f9 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .mbento-card__desc {
      font-size: 14px;
      line-height: 1.6;
      color: var(--muted);
      margin: 0 0 18px;
    }

    .mbento-card--hero .mbento-card__desc {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .mbento-card--sm .mbento-card__desc {
      font-size: 13.5px;
      line-height: 1.55;
      margin-bottom: 14px;
    }

    .mbento-card__bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .mbento-card__bullets li {
      position: relative;
      padding-left: 24px;
      font-size: 14px;
      line-height: 1.55;
      color: var(--text);
    }

    .mbento-card__bullets li strong {
      color: var(--brand-mid);
      font-weight: 800;
      font-family: 'Space Grotesk', sans-serif;
    }

    .mbento-card--ai .mbento-card__bullets li strong {
      color: #c4b8ff;
    }

    .mbento-card__bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(187, 95, 42, 0.18);
      border: 1px solid rgba(187, 95, 42, 0.4);
    }

    .mbento-card--ai .mbento-card__bullets li::before {
      background: rgba(124, 108, 227, 0.22);
      border-color: rgba(165, 148, 249, 0.5);
    }

    .mbento-card__bullets li::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 10px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-mid);
    }

    .mbento-card--ai .mbento-card__bullets li::after {
      background: #b5a5ff;
    }

    /* Stats-строка в small карточках */
    .mbento-card__stats {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 14px;
    }

    .mbento-card__stats span {
      display: inline-flex;
      align-items: center;
      padding: 6px 11px;
      border-radius: 8px;
      background: rgba(246, 191, 149, 0.05);
      border: 1px solid rgba(246, 191, 149, 0.14);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--muted);
      white-space: nowrap;
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
    }

    .mbento-card:hover .mbento-card__stats span {
      background: rgba(246, 191, 149, 0.1);
      border-color: rgba(246, 191, 149, 0.26);
      color: var(--text);
    }

    .mbento-card--accent:hover .mbento-card__stats span {
      background: rgba(77, 217, 221, 0.1);
      border-color: rgba(77, 217, 221, 0.3);
    }

    .mbento-card__stats strong {
      color: var(--brand-mid);
      font-weight: 800;
      margin-right: 4px;
    }

    .mbento-card--accent .mbento-card__stats strong {
      color: #4dd9dd;
    }

    .mbento-card--accent .mbento-card__stats span {
      background: rgba(77, 217, 221, 0.05);
      border-color: rgba(77, 217, 221, 0.16);
    }

    /* Screenshot — только в hero карточках, теперь большой и читаемый */
    .mbento-card__shot {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(246, 191, 149, 0.16);
      box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
      background: rgba(0, 0, 0, 0.4);
      align-self: stretch;
      min-height: 360px;
    }

    .mbento-card__shot--hero img,
    .mbento-card__shot--hero video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top left;
      display: block;
      filter: brightness(1.04) contrast(1.06) saturate(1.06);
      transform: scale(1.04);
      transform-origin: center;
      transition: filter 0.3s ease;
      will-change: transform;
    }

    .mbento-card:hover .mbento-card__shot--hero img,
    .mbento-card:hover .mbento-card__shot--hero video {
      filter: brightness(1.1) contrast(1.08) saturate(1.08);
    }

    /* Финальный блок: легковесная группа мини-карт без тяжёлой обёртки */
    .mbento-finale {
      margin-top: 48px;
      position: relative;
    }

    .mbento-finale__head {
      text-align: center;
      margin-bottom: 24px;
    }

    .mbento-finale__title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--heading);
      letter-spacing: -0.4px;
      margin: 0;
    }

    /* Сетка мини-карт 4×3 */
    .mfin-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 28px;
    }

    /* Мини-карта: младший брат mbento-card */
    .mfin-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      padding: 22px 22px 20px;
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.06), transparent 38%),
        linear-gradient(180deg, rgba(27, 22, 19, 0.88), rgba(18, 15, 12, 0.94));
      border: 1px solid var(--border);
      border-radius: 16px;
      cursor: pointer;
      overflow: hidden;
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
      font-family: 'Manrope', sans-serif;
      color: var(--text);
      text-decoration: none;
    }

    .mfin-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 85% 92%, rgba(187, 95, 42, 0.08), transparent 50%);
      opacity: 0.6;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

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

    .mfin-card:hover {
      transform: translateY(-4px);
      border-color: rgba(246, 191, 149, 0.3);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(246, 191, 149, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .mfin-card:hover::before { opacity: 1; }

    .mfin-card__icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.16), rgba(187, 95, 42, 0.08));
      border: 1px solid rgba(246, 191, 149, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--brand-mid);
      margin-bottom: 14px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .mfin-card:hover .mfin-card__icon {
      transform: scale(1.06);
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.24), rgba(187, 95, 42, 0.14));
    }

    .mfin-card__title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--heading);
      margin: 0 0 6px;
      letter-spacing: -0.2px;
    }

    .mfin-card__desc {
      font-size: 13px;
      line-height: 1.5;
      color: var(--muted);
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .mfin-card__arrow {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(246, 191, 149, 0.06);
      border: 1px solid rgba(246, 191, 149, 0.12);
      color: var(--brand-from);
      font-size: 14px;
      opacity: 0;
      transform: translate(-4px, 4px);
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    }

    .mfin-card:hover .mfin-card__arrow {
      opacity: 1;
      transform: translate(0, 0);
      background: rgba(246, 191, 149, 0.14);
    }

    .mbento-finale__cta {
      display: flex;
      justify-content: center;
    }

    .mbento-finale__btn {
      white-space: nowrap;
    }

    /* Tablet */
    @media (max-width: 1100px) {
      #modules .section-title { font-size: 44px; }
      .mbento-grid { gap: 18px; }
      .mbento-card--hero { padding: 34px; gap: 28px; }
      .mbento-card--hero-lg .mbento-card__title { font-size: 32px; }
      .mbento-card--hero-sm .mbento-card__title { font-size: 28px; }
      .mbento-card--sm { grid-column: span 6; min-height: 260px; }

      .mfin-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    }

    /* Hero stacks text-over-screenshot на среднем экране */
    @media (max-width: 900px) {
      .mbento-card--hero,
      .mbento-card--hero-lg,
      .mbento-card--hero-sm {
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .mbento-card--hero.mbento-card--reverse {
        grid-template-columns: 1fr;
      }
      .mbento-card--hero.mbento-card--reverse .mbento-card__text { order: 1; }
      .mbento-card--hero.mbento-card--reverse .mbento-card__shot { order: 2; }
      .mbento-card__shot {
        min-height: 0;
        aspect-ratio: 16 / 9;
      }

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

    /* Mobile */
    @media (max-width: 640px) {
      #modules .section-title { font-size: 32px; letter-spacing: -0.8px; }
      .mbento-grid { grid-template-columns: 1fr; gap: 16px; }
      .mbento-card--hero,
      .mbento-card--sm {
        grid-column: span 1;
        min-height: 0;
      }
      .mbento-card { padding: 24px; }
      .mbento-card--hero { padding: 26px; gap: 22px; }
      .mbento-card--hero-lg .mbento-card__title { font-size: 24px; }
      .mbento-card--hero-sm .mbento-card__title { font-size: 22px; }
      .mbento-card--hero .mbento-card__desc { font-size: 14px; }
      .mbento-card__icon { width: 48px; height: 48px; font-size: 22px; }
      .mbento-card--hero .mbento-card__icon { width: 50px; height: 50px; font-size: 24px; }
      .mbento-card__arrow { width: 36px; height: 36px; top: 18px; right: 18px; font-size: 16px; }
      .mbento-card__decor { font-size: 180px; right: -24px; bottom: -36px; }

      .mbento-finale { margin-top: 36px; }
      .mbento-finale__title { font-size: 20px; }
      .mfin-grid { grid-template-columns: 1fr; gap: 12px; }
      .mfin-card { padding: 18px 18px 16px; }
      .mfin-card__icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; }
      .mfin-card__title { font-size: 16px; }
      .mfin-card__desc { font-size: 12.5px; }
      .mbento-finale__btn { width: 100%; justify-content: center; }
    }

    /* ============================================================
       LANDING SCREENSHOTS GALLERY
    ============================================================ */
    .landing-shot-gallery {
      position: relative;
      overflow: hidden;
    }

    .landing-shot-gallery::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 120px;
      width: min(780px, 72vw);
      height: 360px;
      transform: translateX(-50%);
      background:
        radial-gradient(ellipse at 25% 35%, rgba(77, 217, 221, 0.12), transparent 62%),
        radial-gradient(ellipse at 75% 45%, rgba(246, 191, 149, 0.14), transparent 64%);
      filter: blur(30px);
      opacity: 0.9;
      pointer-events: none;
    }

    .lsg-shell {
      position: relative;
      z-index: 1;
      max-width: 980px;
      margin: 42px auto 0;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 26px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        rgba(18, 15, 12, 0.78);
      box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(16px);
    }

    .lsg-stage-wrap {
      position: relative;
      min-width: 0;
    }

    .lsg-stage {
      display: block;
      width: 100%;
      padding: 0;
      border: 1px solid rgba(246, 191, 149, 0.18);
      border-radius: 18px;
      overflow: hidden;
      background:
        radial-gradient(ellipse at top, rgba(246, 191, 149, 0.08), transparent 70%),
        #120f0c;
      cursor: zoom-in;
      aspect-ratio: 16 / 9;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .lsg-stage img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.2s ease, transform 0.45s ease;
    }

    .lsg-stage:hover img {
      transform: scale(1.012);
    }

    .lsg-stage img.is-fading {
      opacity: 0;
    }

    .lsg-zoom {
      position: absolute;
      right: 16px;
      top: 16px;
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(0, 0, 0, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      pointer-events: none;
    }

    .lsg-stage:hover .lsg-zoom {
      opacity: 1;
      transform: translateY(0);
    }

    .lsg-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      color: #fff;
      background: rgba(0, 0, 0, 0.54);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transform: translateY(-50%);
      transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
      opacity: 0;
    }

    .lsg-stage-wrap:hover .lsg-nav,
    .lsg-nav:focus-visible {
      opacity: 1;
    }

    .lsg-nav:hover {
      background: rgba(0, 0, 0, 0.78);
      transform: translateY(-50%) scale(1.06);
    }

    .lsg-nav--prev { left: 16px; }
    .lsg-nav--next { right: 16px; }

    .lsg-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 54px 22px 18px;
      border-radius: 0 0 18px 18px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.22s ease, transform 0.22s ease;
      pointer-events: none;
    }

    .lsg-stage-wrap:hover .lsg-info {
      opacity: 1;
      transform: translateY(0);
    }

    .lsg-count {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 2;
      min-width: 68px;
      padding: 7px 10px;
      border-radius: 999px;
      text-align: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--brand-from);
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.18);
      backdrop-filter: blur(8px);
    }

    .lsg-info h3 {
      margin: 0;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
    }

    .lsg-info p {
      margin: 4px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 13.5px;
      line-height: 1.55;
    }

    .lsg-rail {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      margin-top: 14px;
      padding: 2px 2px 8px;
      scroll-snap-type: x proximity;
      scrollbar-width: thin;
      scrollbar-color: rgba(246, 191, 149, 0.28) rgba(255, 255, 255, 0.04);
    }

    .lsg-thumb {
      flex: 0 0 98px;
      padding: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.025);
      cursor: pointer;
      overflow: hidden;
      opacity: 0.58;
      scroll-snap-align: start;
      transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    }

    .lsg-thumb img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      background: #100b09;
    }

    .lsg-thumb span {
      display: none;
    }

    .lsg-thumb:hover {
      opacity: 1;
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .lsg-thumb.is-active {
      opacity: 1;
      border-color: rgba(246, 191, 149, 0.44);
      box-shadow:
        0 0 0 1px rgba(246, 191, 149, 0.32),
        0 10px 24px rgba(187, 95, 42, 0.18);
    }

    .lsg-lb-nav {
      position: fixed;
      top: 50%;
      z-index: 10002;
      width: 52px;
      height: 52px;
      display: none;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      color: #fff;
      background: rgba(0, 0, 0, 0.54);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transform: translateY(-50%);
      font-size: 24px;
    }
    .lightbox.open.is-gallery .lsg-lb-nav { display: inline-flex; }
    .lsg-lb-nav:hover { background: rgba(0, 0, 0, 0.78); }
    .lsg-lb-nav--prev { left: 28px; }
    .lsg-lb-nav--next { right: 28px; }

    .lsg-lb-count {
      position: fixed;
      left: 28px;
      top: 24px;
      z-index: 10002;
      display: none;
      padding: 7px 12px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.86);
      background: rgba(0, 0, 0, 0.52);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(8px);
      font-size: 12px;
      font-weight: 800;
    }
    .lightbox.open.is-gallery .lsg-lb-count { display: block; }

    @media (max-width: 640px) {
      .lsg-shell {
        margin-top: 28px;
        padding: 10px;
        border-radius: 18px;
      }
      .lsg-stage {
        border-radius: 12px;
      }
      .lsg-info {
        display: none;
      }
      .lsg-thumb {
        flex-basis: 82px;
      }
      .lsg-nav {
        width: 38px;
        height: 38px;
        opacity: 1;
      }
      .lsg-nav--prev { left: 10px; }
      .lsg-nav--next { right: 10px; }
      .lsg-lb-nav { width: 42px; height: 42px; font-size: 20px; }
      .lsg-lb-nav--prev { left: 12px; }
      .lsg-lb-nav--next { right: 12px; }
      .lsg-lb-count { left: 12px; top: 12px; }
    }

    /* ============================================================
       ALL MODULES MODAL
    ============================================================ */
    .amod-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
    }
    .amod-overlay.is-open {
      display: flex;
      animation: kb-fade-in 0.25s ease;
    }

    .amod-modal {
      width: min(1280px, calc(100vw - 2rem));
      height: calc(100vh - 3rem);
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .amod-modal__header {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
    }

    .amod-modal__header h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--heading);
      margin: 0;
      display: flex;
      align-items: center;
    }

    .amod-modal__close {
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.8rem;
      cursor: pointer;
      line-height: 1;
      padding: 0 0.3rem;
      transition: color 0.2s;
    }
    .amod-modal__close:hover { color: var(--heading); }

    .amod-modal__body {
      display: grid;
      grid-template-columns: 280px 1fr;
      flex: 1;
      min-height: 0;
      overflow: hidden;
    }

    .amod-sidebar {
      border-right: 1px solid var(--border);
      padding: 1rem;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .amod-search {
      width: 100%;
      padding: 0.7rem 0.9rem;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      font-size: 0.88rem;
      outline: none;
      margin-bottom: 0.75rem;
      font-family: inherit;
    }
    .amod-search:focus { border-color: var(--border-hover); }

    .amod-nav-group {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      margin-bottom: 0.75rem;
    }

    .amod-nav-group__title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      opacity: 0.65;
      padding: 0.5rem 0.85rem 0.35rem;
    }

    .amod-nav-btn {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.65rem 0.85rem;
      border: 1px solid transparent;
      border-radius: 12px;
      background: transparent;
      color: var(--muted);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.18s;
      text-align: left;
      width: 100%;
    }

    .amod-nav-btn:hover {
      background: rgba(246, 191, 149, 0.06);
      border-color: var(--border);
      color: var(--text);
    }

    .amod-nav-btn.is-active {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #fff;
      border-color: transparent;
    }

    .amod-nav-btn i { font-size: 1rem; opacity: 0.7; }
    .amod-nav-btn.is-active i { opacity: 1; }

    .amod-content {
      overflow-y: auto;
      padding: 2rem 2.2rem;
      position: relative;
    }

    /* Внутри модалки module-content блоки отображаются по одному */
    .amod-content .module-content {
      display: none;
    }
    .amod-content .module-content.is-active {
      display: block;
    }

    /* Стили module-content внутри модалки */
    .amod-content .module-content h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--heading);
      margin: 0 0 0.75rem;
      letter-spacing: -0.5px;
    }

    .amod-content .module-content p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .amod-content .module-feature-list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 1.6rem;
    }

    .amod-content .module-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.5;
    }

    .amod-content .module-feature-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(187, 95, 42, 0.14);
      border: 1px solid rgba(187, 95, 42, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .amod-content .module-feature-check i {
      font-size: 11px;
      color: var(--brand-mid);
    }

    .amod-content .module-screenshot {
      position: relative;
      border: 1px solid rgba(246, 191, 149, 0.14);
      border-radius: 16px;
      padding: 18px 10px 10px;
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(44, 34, 28, 0.98), rgba(18, 15, 12, 0.98));
      box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .amod-content .module-screenshot img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      border: 1px solid rgba(246, 191, 149, 0.1);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
      filter: brightness(1.03) contrast(1.05) saturate(1.04);
    }

    .amod-back-top {
      position: sticky;
      bottom: 12px;
      left: 100%;
      margin-top: -46px;
      z-index: 5;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(246, 191, 149, 0.22);
      background: rgba(31, 27, 24, 0.9);
      color: var(--brand-mid);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s;
    }

    .amod-back-top.is-visible {
      opacity: 1;
      pointer-events: auto;
    }

    .amod-back-top:hover {
      color: var(--heading);
      border-color: rgba(246, 191, 149, 0.45);
    }

    @media (max-width: 900px) {
      .amod-modal__body { grid-template-columns: 1fr; }
      .amod-sidebar {
        max-height: 40vh;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
      .amod-content { padding: 1.4rem 1.2rem; }
      .amod-content .module-content h3 { font-size: 1.4rem; }
    }

    @media (max-width: 480px) {
      .amod-modal {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        border: none;
      }
      .amod-modal__header { padding: 0.75rem 1rem; }
      .amod-modal__header h3 { font-size: 1rem; }
    }

    /* ============================================================
       AI SECTION
    ============================================================ */
    #ai {
      padding: 100px 40px 60px;
      max-width: 100%;
      position: relative;
    }

    #ai::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(22, 93, 95, 0.04) 50%, transparent 100%);
      pointer-events: none;
    }

    .ai-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .ai-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .ai-card {
      position: relative;
      border-radius: var(--radius);
      padding: 2px;
      background: conic-gradient(from var(--angle), transparent 0deg, rgba(77, 217, 221, 0.2) 60deg, rgba(22, 93, 95, 0.15) 120deg, transparent 180deg, transparent 360deg);
      animation: rotate-border var(--ai-speed) linear infinite;
      transition: transform 0.2s, box-shadow 0.3s;
      --ai-speed: 8s;
    }

    .ai-card:nth-child(1) { --ai-speed: 7s;  animation-delay: -0.5s; }
    .ai-card:nth-child(2) { --ai-speed: 9s;  animation-delay: -3s; }
    .ai-card:nth-child(3) { --ai-speed: 8s;  animation-delay: -6s; }
    .ai-card:nth-child(4) { --ai-speed: 10s; animation-delay: -1.5s; }
    .ai-card:nth-child(5) { --ai-speed: 7.5s; animation-delay: -4.5s; }
    .ai-card:nth-child(6) { --ai-speed: 9.5s; animation-delay: -2s; }

    .ai-card-inner {
      background: rgba(18, 15, 12, 0.95);
      border-radius: calc(var(--radius) - 2px);
      padding: 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .ai-card-inner::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle at top right, rgba(22, 93, 95, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .ai-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(22, 93, 95, 0.15);
    }

    .ai-card:hover .ai-card-inner {
      background: rgba(27, 22, 19, 0.98);
    }

    .ai-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(22, 93, 95, 0.2), rgba(77, 217, 221, 0.1));
      border: 1px solid rgba(77, 217, 221, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 24px;
      color: #4dd9dd;
      position: relative;
      animation: ai-icon-glow 3s ease-in-out infinite;
    }

    .ai-card:nth-child(2) .ai-card-icon { animation-delay: 0.5s; }
    .ai-card:nth-child(3) .ai-card-icon { animation-delay: 1s; }
    .ai-card:nth-child(4) .ai-card-icon { animation-delay: 1.5s; }
    .ai-card:nth-child(5) .ai-card-icon { animation-delay: 2s; }
    .ai-card:nth-child(6) .ai-card-icon { animation-delay: 2.5s; }

    @keyframes ai-icon-glow {
      0%, 100% {
        box-shadow: 0 0 0 rgba(77, 217, 221, 0);
      }
      50% {
        box-shadow: 0 0 18px rgba(77, 217, 221, 0.25), 0 0 6px rgba(77, 217, 221, 0.15);
      }
    }


    .ai-card-inner h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--heading);
    }

    .ai-card-inner p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ============================================================
       HOW IT WORKS
    ============================================================ */
    #download {
      padding: 100px 40px;
    }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }

    .steps-container::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(33.33% / 2);
      right: calc(33.33% / 2);
      height: 1px;
      background: repeating-linear-gradient(
        90deg,
        var(--border) 0px,
        var(--border) 6px,
        transparent 6px,
        transparent 14px
      );
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 32px;
      position: relative;
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #1a0f08;
      margin-bottom: 24px;
      box-shadow: 0 0 30px rgba(187, 95, 42, 0.3);
      position: relative;
      z-index: 1;
    }

    .step h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .step p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    #cta {
      padding: 100px 40px;
      text-align: center;
      position: relative;
    }

    #cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(187, 95, 42, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner { position: relative; }

    #cta h2 {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -1.5px;
      max-width: 700px;
      margin: 0 auto 36px;
    }

    .cta-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin-top: 20px;
      letter-spacing: 0.5px;
    }

    /* ============================================================
       PRICING
    ============================================================ */
    #pricing {
      padding-top: 40px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .pricing-grid--3 {
      grid-template-columns: repeat(3, 1fr);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Trust bar под тарифами — тихий footer-текст, не конкурирует с CTA */
    .pricing-trust {
      list-style: none;
      padding: 0;
      margin: 28px auto 0;
      max-width: 900px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px 22px;
    }

    .pricing-trust li {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--muted);
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 500;
    }

    .pricing-trust li i {
      font-size: 15px;
      color: rgba(246, 191, 149, 0.55);
    }

    .pricing-card {
      background: var(--surface);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: border-color 0.3s, transform 0.2s;
    }

    .pricing-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
    }

    .pricing-popular {
      border-color: rgba(187, 95, 42, 0.4);
      background: rgba(31, 27, 24, 0.8);
    }

    .pricing-popular:hover {
      border-color: rgba(187, 95, 42, 0.7);
    }

    .pricing-popular-tag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #1a0f08;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 100px;
      letter-spacing: 0.5px;
    }

    .pricing-tier {
      font-size: 11px;
      font-weight: 700;
      color: var(--brand-mid);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 4px;
      opacity: 0.7;
    }

    .pricing-badge {
      font-size: 13px;
      font-weight: 700;
      color: var(--brand-mid);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .pricing-price {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: var(--heading);
      letter-spacing: -1px;
      margin-bottom: 4px;
    }

    .pricing-permonth {
      display: inline-block;
      vertical-align: middle;
      font-family: 'Manrope', sans-serif;
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      opacity: 0.75;
      letter-spacing: 0;
      text-transform: none;
      margin-left: 8px;
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      white-space: nowrap;
    }

    .pricing-period {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .pricing-save {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 20px;
      background: rgba(61, 220, 132, 0.1);
      border: 1px solid rgba(61, 220, 132, 0.2);
      color: #3ddc84;
      font-size: 12px;
      font-weight: 700;
      margin-left: 6px;
      vertical-align: middle;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
      flex: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text);
    }

    .pricing-features li i {
      color: var(--brand-mid);
      font-size: 14px;
      flex-shrink: 0;
    }

    .pricing-feature-highlight {
      color: var(--heading) !important;
    }

    .pricing-btn {
      display: block;
      text-align: center;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid var(--border-hover);
      color: var(--text);
      background: var(--surface);
      transition: all 0.2s;
      margin-top: auto;
    }

    .pricing-btn:hover {
      border-color: rgba(246, 191, 149, 0.5);
      background: rgba(246, 191, 149, 0.08);
      color: var(--brand-mid);
      transform: translateY(-1px);
    }

    .pricing-btn-outlined {
      border-color: rgba(246, 191, 149, 0.4);
      color: var(--brand-from);
      background: rgba(246, 191, 149, 0.05);
    }

    .pricing-btn-outlined:hover {
      border-color: rgba(246, 191, 149, 0.6);
      background: rgba(246, 191, 149, 0.12);
      color: var(--brand-from);
    }

    .pricing-btn-primary {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #1a0f08;
      border: none;
      box-shadow: 0 0 30px rgba(187, 95, 42, 0.25);
    }

    .pricing-btn-primary:hover {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #1a0f08;
      border: none;
      opacity: 0.9;
      box-shadow: 0 0 40px rgba(187, 95, 42, 0.4);
    }

    @media (max-width: 1200px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }

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

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      border-top: 1px solid var(--border);
      padding: 60px 40px 0;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.95fr 0.95fr 0.95fr 1.1fr;
      gap: 40px;
      padding-bottom: 40px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .footer-social-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: rgba(246, 191, 149, 0.04);
      color: var(--muted);
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      text-decoration: none;
    }

    .footer-social-btn:hover {
      border-color: rgba(246, 191, 149, 0.3);
      color: var(--brand-mid);
      background: rgba(246, 191, 149, 0.08);
    }

    .footer-col-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--heading);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
    }

    .footer-col-title--secondary {
      margin-top: 28px;
    }

    .footer-col-title--spacer {
      visibility: hidden;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--muted);
      transition: color 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-links a i {
      font-size: 15px;
      color: var(--brand-mid);
      opacity: 0.7;
    }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 12px;
      color: var(--muted);
    }

    .footer-version {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.02em;
    }

    .footer-bottom-right {
      display: flex;
      gap: 20px;
      font-size: 12px;
      color: rgba(255,255,255,0.25);
    }

    .footer-bottom-right span {
      position: relative;
    }

    .footer-bottom-right span:not(:last-child)::after {
      content: '·';
      position: absolute;
      right: -12px;
      color: rgba(255,255,255,0.15);
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px 24px;
      }
      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      /* На мобильнике в футере оставляем только brand + Документы/Контакты */
      .footer-col--secondary { display: none; }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-brand .footer-desc { font-size: 13px; }
      .footer-col-title { margin-bottom: 12px; font-size: 12px; }
      .footer-col-title--secondary { margin-top: 22px; }
      .footer-links a {
        font-size: 13.5px;
        word-break: break-word;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

    /* ============================================================
       SCROLL REVEAL ANIMATION
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       RESPONSIVE — 1200px
    ============================================================ */
    @media (max-width: 1200px) {
      .bento-grid { grid-template-columns: repeat(2, 1fr); }
      .bento-lg { grid-column: span 1; }

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

    /* ============================================================
       RESPONSIVE — 768px
    ============================================================ */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }

      .nav-links { display: none; }

      .nav-hamburger { display: flex; }

      .mobile-menu { padding: 20px; }

      section { padding: 60px 20px; }

      #hero { padding-top: 120px; padding-bottom: 40px; }

      .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .hero-text { text-align: center; }

      /* Стабильное выравнивание benefit-карточек:
         все строки начинаются с одной вертикальной линии, текст слева, центрируем сам блок */
      .hero-benefits {
        align-items: stretch;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
      }
      .hero-benefit {
        align-items: flex-start;
        text-align: left;
      }
      .hero-benefit > div:last-child { flex: 1; min-width: 0; }
      .hero-benefit-title,
      .hero-benefit-desc { word-break: break-word; }

      .hero-buttons { justify-content: center; }

      .hero-badges { justify-content: center; }

      /* Скрываем визуал с ноутбуком — на мобиле он жрёт место и дёргается */
      .hero-visual { display: none; }

      .hero-inner { padding: 0 20px; }

      .hero-mockup {
        transform: none;
      }

      .stats-bar { padding: 0 20px 60px; }

      .stats-inner { grid-template-columns: repeat(2, 1fr); }

      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
      .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

      .bento-grid { grid-template-columns: 1fr; }
      .bento-lg { grid-column: span 1; }

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

      .modules-list { position: static; }

      .ai-grid { grid-template-columns: 1fr; }

      .steps-container { grid-template-columns: 1fr; gap: 32px; }

      .steps-container::before { display: none; }

      #ai { padding: 60px 20px; }
      #download { padding: 60px 20px; }
      #cta { padding: 60px 20px; }

      footer {
        padding: 40px 20px 0;
      }
    }

    /* ============================================================
       RESPONSIVE — 480px
    ============================================================ */
    @media (max-width: 480px) {
      .hero-buttons { flex-direction: column; align-items: stretch; text-align: center; }

      .hero-badge { font-size: 11px; padding: 4px 9px; }

      .btn-primary, .btn-outline, .btn-channel { justify-content: center; }

      .channel-banner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 20px;
      }

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

      .stat-item { border-right: none !important; border-top: 1px solid var(--border); }
      .stat-item:first-child { border-top: none; }

      .module-content h3 { font-size: 20px; }

      .modules-panel { padding: 20px; }
    }

    /* ============================================================
       LIGHTBOX
    ============================================================ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 10001;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
      cursor: zoom-out;
    }

    .lightbox.open {
      opacity: 1;
      visibility: visible;
    }

    .lightbox img {
      max-width: 92vw;
      max-height: 90vh;
      border-radius: 12px;
      box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
      transform: scale(0.92);
      transition: transform 0.3s;
    }

    .lightbox.open img {
      transform: scale(1);
    }

    .module-screenshot img,
    .split-img-wrap img,
    .hero-mockup img {
      cursor: zoom-in;
    }

    @media (max-width: 768px) {
      .hero-mockup {
        padding: 10px 0 34px;
        transform: none !important;
      }

      .hero-mockup::after {
        left: 8%;
        right: 8%;
        bottom: 0;
        height: 24px;
      }

      .hero-laptop-screen {
        padding: 10px;
        border-radius: 22px 22px 14px 14px;
      }

      .hero-laptop-display {
        border-radius: 14px 14px 8px 8px;
      }

      .hero-laptop-base {
        width: 118%;
        height: 22px;
        margin-left: -9%;
      }

      .split-visual .split-img-wrap:first-child,
      .split-visual .split-img-wrap:last-child {
        --shot-transform: translate3d(0, 0, 0);
      }

      .device-grid {
        gap: 12px;
        padding: 16px 0;
      }

      .device-tile {
        padding: 20px 14px;
      }

      .device-grid-center {
        width: 58px;
        height: 58px;
      }

      .device-grid-center-icon {
        font-size: 18px;
      }

      .split-img-wrap,
      .module-screenshot {
        padding: 16px 8px 8px;
      }
    }

    /* ============================================================
       KB MODAL
    ============================================================ */
    .kb-overlay {
      position: fixed; inset: 0; z-index: 10000;
      background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
      display: none; align-items: center; justify-content: center;
    }
    .kb-overlay.is-open { display: flex; animation: kb-fade-in 0.25s ease; }

    .kb-modal {
      width: min(1280px, calc(100vw - 2rem)); height: calc(100vh - 3rem);
      background: var(--surface-solid); border: 1px solid var(--border);
      border-radius: 20px; display: flex; flex-direction: column; overflow: hidden;
    }

    .kb-modal__header {
      padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
    }
    .kb-modal__header h3 {
      font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem;
      font-weight: 700; color: var(--heading); margin: 0;
    }
    .kb-modal__close {
      background: none; border: none; color: var(--muted);
      font-size: 1.8rem; cursor: pointer; line-height: 1; padding: 0;
    }
    .kb-modal__close:hover { color: var(--heading); }

    .kb-modal__hint {
      margin-left: auto; margin-right: 14px;
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 500; color: var(--muted);
      letter-spacing: 0.01em;
    }
    .kb-modal__hint i { font-size: 14px; color: #f6bf95; opacity: 0.85; }
    @media (max-width: 600px) { .kb-modal__hint { display: none; } }

    .kb-modal__body {
      display: grid; grid-template-columns: 280px 1fr;
      flex: 1; min-height: 0; overflow: hidden;
    }

    .kb-sidebar {
      border-right: 1px solid var(--border); padding: 1rem;
      overflow-y: auto; display: flex; flex-direction: column; gap: 0.25rem;
    }
    .kb-search {
      width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
      border-radius: 12px; background: rgba(255,255,255,0.04); color: var(--text);
      font-size: 0.88rem; outline: none; margin-bottom: 0.75rem;
    }
    .kb-search:focus { border-color: var(--border-hover); }
    .kb-nav-btn {
      display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.85rem;
      border: 1px solid transparent; border-radius: 12px; background: transparent;
      color: var(--muted); font-family: 'Space Grotesk', sans-serif;
      font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: all 0.18s;
      text-align: left; width: 100%;
    }
    .kb-nav-btn:hover { background: rgba(246,191,149,0.06); border-color: var(--border); color: var(--text); }
    .kb-nav-btn.is-active {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #fff; border-color: transparent;
    }
    .kb-nav-btn i { font-size: 1rem; opacity: 0.7; }
    .kb-nav-btn.is-active i { opacity: 1; }
    .kb-content { overflow-y: auto; padding: 1.8rem 2rem; }

    .kb-section { display: none; padding: 0; max-width: none; margin: 0; }
    .kb-section.is-active { display: block; }

    .kb-section__header { margin-bottom: 1.2rem; }
    .kb-section__title {
      font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem;
      font-weight: 800; color: var(--heading); margin-bottom: 0.3rem;
    }
    .kb-section__desc { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

    .kb-step {
      padding: 1.2rem 1.3rem; border-radius: 16px;
      background: rgba(255,255,255,0.03); border: 1px solid var(--border);
      margin-bottom: 0.9rem; transition: transform 0.18s, border-color 0.18s;
    }
    .kb-step:hover { transform: translateY(-1px); border-color: var(--border-hover); }
    .kb-step__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.65rem; }
    .kb-step__number {
      width: 1.9rem; height: 1.9rem; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #0c0a09; display: flex; align-items: center; justify-content: center;
      font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 800; flex-shrink: 0;
    }
    .kb-step__title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--heading); }
    .kb-step__body { color: var(--text); font-size: 0.88rem; line-height: 1.7; }
    .kb-step__body ul, .kb-step__body ol { margin: 0.4rem 0; padding-left: 1.2rem; }
    .kb-step__body li { margin-bottom: 0.25rem; }
    .kb-step__body li::marker { color: var(--brand-mid); }
    .kb-step__body code {
      font-size: 0.8rem; padding: 0.1rem 0.35rem; border-radius: 5px;
      background: rgba(246,191,149,0.1); color: var(--brand-from);
    }
    .kb-step__body strong { color: var(--heading); }

    .kb-img {
      display: block; max-width: 100%; border-radius: 12px;
      border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      margin: 1rem 0; cursor: zoom-in; transition: opacity 0.15s;
    }
    .kb-img:hover { opacity: 0.85; }

    .kb-tip, .kb-warning {
      padding: 1rem; border-radius: 14px; font-size: 0.86rem; line-height: 1.6;
      margin: 0.75rem 0; display: grid; grid-template-columns: 2rem 1fr;
      align-items: start; column-gap: 0.75rem; row-gap: 0.15rem;
    }
    .kb-tip { background: rgba(246,191,149,0.06); border: 1px solid rgba(246,191,149,0.12); color: var(--text); }
    .kb-warning { background: rgba(220,53,69,0.06); border: 1px solid rgba(220,53,69,0.14); color: var(--text); }
    .kb-tip > i, .kb-warning > i {
      width: 2rem; height: 2rem; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; grid-row: 1 / span 2;
    }
    .kb-tip > i { background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); color: #0c0a09; }
    .kb-warning > i { background: linear-gradient(135deg, #dc3545, #c82333); color: #fff; }
    .kb-tip > strong, .kb-tip > span,
    .kb-warning > strong, .kb-warning > span { grid-column: 2; }
    .kb-tip strong, .kb-warning strong { font-size: 0.82rem; color: var(--heading); }

    .kb-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
    .kb-summary-card {
      padding: 0.85rem 0.95rem; border-radius: 14px;
      background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    }
    .kb-summary-card strong { font-size: 0.88rem; color: var(--heading); display: block; margin-bottom: 0.3rem; }
    .kb-summary-card span { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

    .kb-qa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin-bottom: 1rem; }
    .kb-qa-summary { margin-bottom: 1rem; }
    .kb-qa-item { padding: 0.85rem 0.9rem; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
    .kb-qa-item__question { margin: 0 0 0.3rem; font-size: 0.88rem; font-weight: 700; color: var(--heading); }
    .kb-qa-item__answer { font-size: 0.85rem; color: var(--text); line-height: 1.6; }
    .kb-qa-list { display: grid; gap: 0.65rem; }

    .kb-back-top {
      position: sticky; bottom: 1rem; float: right; width: 2.4rem; height: 2.4rem;
      border-radius: 50%; border: 1px solid var(--border); background: var(--surface-solid);
      color: var(--muted); font-size: 1rem; display: none; align-items: center;
      justify-content: center; cursor: pointer; z-index: 5; transition: color 0.15s, transform 0.15s;
    }
    .kb-back-top.is-visible { display: inline-flex; }
    .kb-back-top:hover { color: var(--brand-from); transform: translateY(-2px); }

    /* ── KB Teaser ── */
    .kb-teaser {
      max-width: 700px;
      margin: 0 auto;
      padding: 44px 52px;
      border-radius: 20px;
      border: 1px solid var(--border);
      text-align: center;
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.06), transparent 32%),
        linear-gradient(180deg, rgba(27, 22, 19, 0.92), rgba(18, 15, 12, 0.96));
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .kb-teaser-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--heading);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .kb-teaser-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .kb-teaser-bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
    }

    .kb-teaser-stats {
      display: flex;
      gap: 28px;
    }

    .kb-teaser-stat {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .kb-teaser-stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: var(--brand-mid);
      line-height: 1;
    }

    .kb-teaser-stat-label {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px;
    }

    .kb-teaser-btn {
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .kb-modal__body { grid-template-columns: 1fr; }
      .kb-sidebar { max-height: 200px; border-right: none; border-bottom: 1px solid var(--border); }
      .kb-content { padding: 1rem; }
      .kb-qa-grid, .kb-summary-grid { grid-template-columns: 1fr; }
      .kb-teaser { padding: 32px 24px; }
      .kb-teaser-bottom { flex-direction: column; gap: 20px; }
    }

    /* ── FAQ Accordion ── */
    .faq-accordion {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }
    .faq-row {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--surface);
      backdrop-filter: blur(16px);
      overflow: hidden;
      transition: border-color 0.2s;
      align-self: start;
    }
    .faq-row:hover { border-color: var(--border-hover); }
    .faq-row__head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 1.1rem;
      cursor: pointer;
      user-select: none;
    }
    .faq-row__icon {
      width: 2rem;
      height: 2rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
      background: rgba(246, 191, 149, 0.08);
      color: var(--brand-mid);
      transition: all 0.2s;
    }
    .faq-row.is-open .faq-row__icon {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #0c0a09;
    }
    .faq-row__question {
      flex: 1;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--heading);
    }
    .faq-row__arrow {
      font-size: 1rem;
      color: var(--muted);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-row.is-open .faq-row__arrow { transform: rotate(180deg); color: var(--brand-mid); }
    .faq-row__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-row.is-open .faq-row__body { max-height: 400px; }
    .faq-row__answer {
      padding: 0 1.1rem 1.1rem 3.85rem;
      color: var(--text);
      font-size: 0.85rem;
      line-height: 1.7;
    }
    .faq-row__answer strong { color: var(--heading); }

    @media (max-width: 768px) {
      .faq-accordion { grid-template-columns: 1fr; }
    }

    /* ── Bot Modal ── */
    .bot-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(8, 5, 3, 0.82);
      backdrop-filter: blur(14px) saturate(1.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s, visibility .35s;
    }

    .bot-modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* Modal card */
    .bot-modal {
      position: relative;
      width: 420px;
      max-width: 92vw;
      padding: 52px 40px 40px;
      border-radius: 28px;
      /* layered background: dark base + subtle warm top glow */
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42, 171, 238, 0.06) 0%, transparent 70%),
        linear-gradient(175deg, rgba(44, 34, 28, 0.98) 0%, rgba(14, 11, 10, 0.99) 100%);
      border: 1px solid rgba(246, 191, 149, 0.14);
      /* top edge catches brand warmth */
      box-shadow:
        0 0 0 1px rgba(42, 171, 238, 0.06) inset,
        0 1px 0 rgba(246, 191, 149, 0.12) inset,
        0 32px 96px rgba(0, 0, 0, 0.65),
        0 8px 32px rgba(0, 0, 0, 0.4);
      text-align: center;
      transform: scale(0.9) translateY(24px);
      transition: transform .38s cubic-bezier(0.34, 1.42, 0.64, 1);
      /* decorative noise-like texture via pseudo */
      overflow: hidden;
    }

    /* Subtle top-left noise / grain overlay */
    .bot-modal::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.6;
      mix-blend-mode: overlay;
    }

    /* Decorative warm streak across the top */
    .bot-modal::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(246, 191, 149, 0.4), transparent);
      pointer-events: none;
    }

    .bot-modal-overlay.open .bot-modal {
      transform: scale(1) translateY(0);
    }

    /* Close button */
    .bot-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      font-size: 17px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s, border-color .2s;
      z-index: 1;
    }

    .bot-modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--heading);
    }

    /* Icon area with glow halo */
    .bot-modal-icon {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      border-radius: 50%;
      /* warm inner ring */
      background: linear-gradient(145deg, #2AABEE 0%, #1a8fc7 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: #fff;
      box-shadow:
        0 0 0 8px rgba(42, 171, 238, 0.08),
        0 0 0 16px rgba(42, 171, 238, 0.04),
        0 12px 40px rgba(42, 171, 238, 0.35);
      animation: bot-icon-pulse 3s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes bot-icon-pulse {
      0%, 100% { box-shadow: 0 0 0 8px rgba(42, 171, 238, 0.08), 0 0 0 16px rgba(42, 171, 238, 0.04), 0 12px 40px rgba(42, 171, 238, 0.35); }
      50%       { box-shadow: 0 0 0 10px rgba(42, 171, 238, 0.12), 0 0 0 20px rgba(42, 171, 238, 0.06), 0 16px 48px rgba(42, 171, 238, 0.45); }
    }

    .bot-modal-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--heading);
      margin-bottom: 8px;
      letter-spacing: -0.2px;
      position: relative;
      z-index: 1;
    }

    .bot-modal-desc {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* Username chip row */
    .bot-modal-username-row {
      display: flex;
      align-items: stretch;
      margin-bottom: 28px;
      border: 1.5px dashed rgba(246, 191, 149, 0.25);
      border-radius: 12px;
      background: rgba(246, 191, 149, 0.04);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .bot-modal-username {
      flex: 1;
      font-family: 'Space Grotesk', monospace;
      font-size: 18px;
      font-weight: 700;
      color: var(--brand-from);
      letter-spacing: 0.3px;
      padding: 10px 16px;
      text-align: center;
    }

    .bot-modal-copy {
      flex-shrink: 0;
      width: 46px;
      border: none;
      border-left: 1.5px dashed rgba(246, 191, 149, 0.25);
      border-radius: 0;
      background: rgba(246, 191, 149, 0.04);
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
    }

    .bot-modal-copy:hover {
      background: rgba(246, 191, 149, 0.1);
      color: var(--brand-from);
    }

    .bot-modal-copy.copied {
      color: #3ddc84;
      background: rgba(61, 220, 132, 0.06);
    }

    /* CTA button — Telegram blue with warm shimmer */
    .bot-modal-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 15px 40px;
      border-radius: 14px;
      background: linear-gradient(135deg, #2AABEE 0%, #1b91cc 100%);
      color: #fff;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.1px;
      transition: transform .22s cubic-bezier(0.34, 1.42, 0.64, 1), box-shadow .22s;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 6px 24px rgba(42, 171, 238, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
    }

    .bot-modal-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 12px 36px rgba(42, 171, 238, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
      color: #fff;
    }

    .bot-modal-btn:active {
      transform: translateY(-1px) scale(1);
    }

    .contact-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 16px 0;
      color: var(--muted);
      font-size: 12px;
    }

    .contact-divider::before,
    .contact-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .contact-web-link:hover {
      border-color: var(--border-hover) !important;
      background: rgba(255,255,255,0.07) !important;
    }

    @keyframes kb-fade-in { from { opacity: 0; } to { opacity: 1; } }


@keyframes spin { to { transform: rotate(360deg); } }

    /* ── Floating Telegram button ── */
    .floating-stack {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .floating-tg {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 24px 0 0;
      border-radius: 50px;
      background: linear-gradient(135deg, #2AABEE 0%, #1a8fd4 100%);
      color: #fff;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3px;
      text-decoration: none;
      box-shadow:
        0 4px 16px rgba(42, 171, 238, 0.3),
        0 12px 40px rgba(42, 171, 238, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: transform .3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .3s;
      overflow: hidden;
    }

    .floating-channel {
      background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
      box-shadow:
        0 4px 16px rgba(139, 92, 246, 0.3),
        0 12px 40px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .floating-channel:hover {
      box-shadow:
        0 8px 28px rgba(139, 92, 246, 0.45),
        0 20px 60px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .floating-channel::after {
      border-color: rgba(139, 92, 246, 0.4);
    }

    .floating-tg::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
      pointer-events: none;
    }

    .floating-tg:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow:
        0 8px 28px rgba(42, 171, 238, 0.45),
        0 20px 60px rgba(42, 171, 238, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .floating-tg i {
      font-size: 22px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .floating-tg-label {
      padding-right: 2px;
    }

    /* Pulse ring */
    .floating-tg::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50px;
      border: 2px solid rgba(42, 171, 238, 0.4);
      animation: float-pulse 2.5s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes float-pulse {
      0%, 100% { opacity: 0; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.06); }
    }

    /* ── Comparison Section ── */
    #compare {
      padding-top: 80px;
    }

    .compare-table {
      margin: 48px auto 0;
      max-width: 980px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: #15110e;
    }

    .compare-header {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      position: sticky;
      top: 68px;
      z-index: 5;
      background: #15110e;
      border-top-left-radius: 18px;
      border-top-right-radius: 18px;
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.65), 0 2px 0 rgba(246, 191, 149, 0.08);
    }

    .compare-header-label {
      border-bottom: 1px solid var(--border);
      padding: 24px 20px;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
    }

    .compare-col {
      padding: 24px 20px;
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .compare-col--max {
      background: rgba(187, 95, 42, 0.14);
      border-bottom: 1px solid rgba(187, 95, 42, 0.3);
    }

    .compare-col--max .compare-logo {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .compare-col--rival {
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid var(--border);
    }

    .compare-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 19px;
      font-weight: 800;
      color: var(--heading);
      letter-spacing: -0.5px;
    }

    .compare-col--rival .compare-logo {
      color: var(--muted);
      opacity: 0.7;
      font-size: 14px;
    }

    .compare-tagline {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    .compare-col--max .compare-tagline {
      color: var(--brand-mid);
    }

    .compare-winner-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      color: #1a0f08;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      border-bottom: 1px solid var(--border);
      align-items: center;
      transition: background 0.2s;
    }


    .compare-row:nth-of-type(even) {
      background: rgba(255, 255, 255, 0.015);
    }

    .compare-row:hover {
      background: rgba(246, 191, 149, 0.03);
    }

    .compare-feature {
      padding: 12px 20px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
    }

    .compare-val {
      padding: 12px 16px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
    }

    /* MaxPanel column = 2nd cell in row */
    .compare-row > :nth-child(2) {
      background: rgba(187, 95, 42, 0.06);
    }

    .compare-val--yes {
      color: #3ddc84;
    }

    .compare-val--yes i {
      font-size: 20px;
    }

    .compare-val--no {
      color: #ef4444;
      opacity: 0.45;
    }

    .compare-val--no i {
      font-size: 16px;
    }

    /* Partial / nuanced state (◐) — amber */
    .compare-val--partial {
      color: #e6a845;
      font-weight: 600;
    }

    .compare-val--partial i {
      font-size: 18px;
    }

    .compare-fifty {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .3px;
      padding: 2px 10px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .4);
    }

    /* Numeric values: strong = winner, dim = loser */
    .compare-val--num {
      font-size: 14px;
      font-weight: 700;
      color: var(--heading);
      line-height: 1.3;
    }

    .compare-val--num small {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--brand-mid);
      opacity: 0.85;
      margin-top: 2px;
    }

    .compare-val--num-dim {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      opacity: 0.8;
      line-height: 1.3;
    }

    .compare-val--num-dim small {
      display: block;
      font-size: 10px;
      font-weight: 500;
      opacity: 0.7;
      margin-top: 2px;
    }

    /* Neutral "not applicable" state */
    .compare-val--na {
      color: var(--muted);
      opacity: 0.4;
      font-size: 18px;
      font-weight: 400;
    }

    .compare-hint {
      font-size: 15px;
      color: var(--brand-mid);
      opacity: 0.7;
      cursor: help;
      margin-left: 6px;
      vertical-align: middle;
      transition: opacity .2s, color .2s, transform .2s;
      position: relative;
    }

    .compare-hint:hover {
      opacity: 1;
      color: var(--brand-mid);
    }

    .compare-hint::after {
      content: attr(data-tip);
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      width: 280px;
      padding: 12px 14px;
      border-radius: 10px;
      background: rgba(23, 19, 17, 0.97);
      border: 1px solid rgba(246, 191, 149, 0.15);
      box-shadow: 0 8px 32px rgba(0,0,0,.5);
      color: var(--text);
      font-family: 'Manrope', sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.6;
      white-space: normal;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s, visibility .2s;
      z-index: 10;
    }

    .compare-hint:hover::after {
      opacity: 1;
      visibility: visible;
    }

    /* Last 3 rows: show tooltip above */
    .compare-row:nth-last-of-type(-n+3) .compare-hint::after {
      top: auto;
      bottom: calc(100% + 10px);
    }

    .compare-divider {
      padding: 8px 20px;
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }

    /* Category group header inside compare-table */
    .compare-group {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 24px 26px 18px;
      border-top: 1px solid rgba(246, 191, 149, 0.12);
      border-bottom: 1px solid rgba(246, 191, 149, 0.15);
      background: linear-gradient(180deg, rgba(246, 191, 149, 0.08) 0%, rgba(246, 191, 149, 0.03) 100%);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #f6bf95;
    }

    .compare-group i {
      font-size: 18px;
      opacity: 1;
    }

    .compare-group-count {
      margin-left: auto;
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      opacity: 0.6;
      letter-spacing: 0.5px;
      text-transform: none;
    }

    /* First row after group header: remove double border from highlight */
    .compare-group + .compare-row--highlight {
      border-top: none;
    }

    .compare-row--highlight {
      background: rgba(187, 95, 42, 0.06);
      border-bottom: 1px solid rgba(187, 95, 42, 0.2);
      border-top: 1px solid rgba(187, 95, 42, 0.2);
    }

    .compare-row--highlight .compare-feature {
      font-weight: 700;
      color: var(--heading);
    }

    .compare-row--highlight .compare-val--yes {
      color: #3ddc84;
      font-weight: 700;
    }

    .compare-row--highlight .compare-val--no {
      color: #ef4444;
      font-weight: 700;
      opacity: 1;
    }

    .compare-row--highlight .compare-val--partial {
      color: #e6a845;
      font-weight: 700;
    }

    .compare-summary {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-top: 1px solid var(--border);
    }

    .compare-summary-label {
      padding: 16px 20px;
      font-size: 13px;
      font-weight: 700;
      color: var(--heading);
      display: flex;
      align-items: center;
      border-right: 1px solid var(--border);
    }

    .compare-summary-item {
      padding: 16px;
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .compare-summary-item:first-of-type {
      border-right: 1px solid var(--border);
    }

    .compare-summary--max {
      background: rgba(187, 95, 42, 0.06);
    }

    .compare-summary-score {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--heading);
      letter-spacing: -1px;
    }

    .compare-summary--max .compare-summary-score {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .compare-summary--rival .compare-summary-score {
      color: var(--muted);
    }

    .compare-footnote {
      margin: 20px auto 0;
      max-width: 980px;
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      opacity: 0.55;
      font-style: italic;
      letter-spacing: 0.2px;
    }

    .compare-callout {
      margin: 24px auto 0;
      max-width: 800px;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 20px 24px;
      border-radius: 14px;
      border: 1px solid rgba(187, 95, 42, 0.25);
      background: rgba(187, 95, 42, 0.06);
    }

    .compare-callout-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #1a0f08;
    }

    .compare-callout-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .compare-callout-text strong {
      font-size: 15px;
      color: var(--heading);
    }

    .compare-callout-text span {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .compare-row,
      .compare-header,
      .compare-summary {
        grid-template-columns: 1.2fr 70px 70px 70px;
      }

      .compare-header {
        top: 68px;
      }

      .compare-feature {
        padding: 12px 12px;
        font-size: 12px;
      }

      .compare-val {
        padding: 12px 4px;
        font-size: 11px;
      }

      .compare-col {
        padding: 16px 6px;
      }

      .compare-logo {
        font-size: 13px;
        line-height: 1.2;
      }

      .compare-group {
        padding: 14px 14px 10px;
        font-size: 10px;
        letter-spacing: 1.2px;
      }

      .compare-group i { font-size: 14px; }
      .compare-group-count { display: none; }

      .compare-tagline {
        font-size: 11px;
      }

      .compare-callout {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
      }

      .compare-summary-score {
        font-size: 22px;
      }

      .compare-summary-label {
        padding: 16px 12px;
        font-size: 12px;
      }
    }

    @media (max-width: 768px) {
      .floating-stack {
        bottom: 20px;
        right: 20px;
      }
      .floating-tg {
        padding: 0;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
      }
      .floating-tg i {
        background: none;
        width: auto;
        height: auto;
      }
      .floating-tg-label {
        display: none;
      }
    }

    /* ============================================================
       CASES / USE SCENARIOS
    ============================================================ */
    #cases {
      padding-top: 60px;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .case-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
      overflow: hidden;
      cursor: pointer;
    }

    .case-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 28px;
      right: 28px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--brand-mid), transparent);
      opacity: 0.4;
      transition: opacity 0.35s ease, left 0.35s ease, right 0.35s ease;
    }

    .case-card::after {
      content: 'Подробнее';
      position: absolute;
      top: 20px;
      right: 22px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px 5px 14px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      color: var(--brand-from);
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.2);
      border-radius: 100px;
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      pointer-events: none;
      z-index: 2;
    }

    .case-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
      background: rgba(31, 27, 24, 0.75);
      box-shadow:
        0 24px 60px -24px rgba(246, 191, 149, 0.18),
        0 0 0 1px rgba(246, 191, 149, 0.08);
    }

    .case-card:hover::before {
      opacity: 1;
      left: 0;
      right: 0;
    }

    .case-card:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    .case-card:hover .case-icon {
      transform: scale(1.08) rotate(-3deg);
      box-shadow: 0 0 0 4px rgba(246, 191, 149, 0.06);
    }

    .case-card:hover .case-funnel {
      background: rgba(246, 191, 149, 0.04);
      border-color: rgba(246, 191, 149, 0.18);
    }

    .case-card:hover .case-step-sep {
      opacity: 0.9;
      color: var(--brand-from);
    }

    .case-card:hover .case-tag {
      border-color: rgba(246, 191, 149, 0.22);
      background: rgba(246, 191, 149, 0.04);
    }

    .case-card:hover .case-quote {
      background: rgba(246, 191, 149, 0.05);
    }

    .case-icon {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .case-funnel {
      transition: background 0.35s ease, border-color 0.35s ease;
    }

    .case-step-sep {
      transition: color 0.35s ease, opacity 0.35s ease;
    }

    .case-tag,
    .case-quote {
      transition: background 0.35s ease, border-color 0.35s ease;
    }

    .case-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .case-icon {
      flex: 0 0 46px;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--brand-from);
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.14), rgba(187, 95, 42, 0.08));
      border: 1px solid var(--border);
    }

    .case-icon--invite { color: #f6bf95; }

    .case-icon--lead {
      color: #7ed7d8;
      background: linear-gradient(135deg, rgba(126, 215, 216, 0.14), rgba(22, 93, 95, 0.08));
      border-color: rgba(126, 215, 216, 0.22);
    }

    .case-icon--media {
      color: #c9a4ff;
      background: linear-gradient(135deg, rgba(201, 164, 255, 0.14), rgba(120, 60, 180, 0.08));
      border-color: rgba(201, 164, 255, 0.22);
    }

    .case-icon--audit {
      color: #86efac;
      background: linear-gradient(135deg, rgba(134, 239, 172, 0.14), rgba(60, 140, 80, 0.08));
      border-color: rgba(134, 239, 172, 0.22);
    }

    .case-head-info {
      flex: 1;
      min-width: 0;
    }

    .case-role {
      font-size: 15px;
      font-weight: 600;
      color: var(--heading);
      line-height: 1.2;
    }

    .case-plan {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
      letter-spacing: 0.1px;
    }

    .case-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--heading);
      line-height: 1.3;
      margin: 0 0 20px;
      letter-spacing: -0.3px;
    }

    .case-funnel {
      display: flex;
      align-items: stretch;
      gap: 10px;
      padding: 18px 12px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 20px;
    }

    .case-step {
      flex: 1;
      min-width: 0;
      text-align: center;
    }

    .case-step-val {
      font-size: 22px;
      font-weight: 700;
      color: var(--heading);
      line-height: 1.1;
      letter-spacing: -0.5px;
      font-variant-numeric: tabular-nums;
    }

    .case-step-val--accent {
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .case-step-lbl {
      font-size: 11px;
      color: var(--muted);
      margin-top: 6px;
      line-height: 1.3;
    }

    .case-step-sep {
      align-self: center;
      font-size: 18px;
      color: var(--brand-mid);
      opacity: 0.45;
    }

    .case-quote {
      flex: 1;
      position: relative;
      margin: 0 0 20px;
      padding: 14px 16px 14px 44px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--text);
      font-style: italic;
      background: rgba(246, 191, 149, 0.035);
      border-left: 2px solid var(--brand-mid);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }

    .case-quote::before {
      content: '\201C';
      position: absolute;
      top: 2px;
      left: 14px;
      font-size: 44px;
      font-family: Georgia, 'Times New Roman', serif;
      font-style: normal;
      line-height: 1;
      color: var(--brand-mid);
      opacity: 0.55;
    }

    .case-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 16px;
      border-top: 1px dashed var(--border);
    }

    .case-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 11px;
      font-size: 12px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid var(--border);
      border-radius: 100px;
    }

    .case-tag i {
      font-size: 13px;
      color: var(--brand-from);
      opacity: 0.85;
    }

    .cases-footnote {
      margin: 32px auto 0;
      max-width: 720px;
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      opacity: 0.6;
      font-style: italic;
      letter-spacing: 0.2px;
      line-height: 1.6;
    }

    /* ============================================================
       CASE DETAIL MODAL
    ============================================================ */
    .case-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(8, 5, 3, 0.82);
      backdrop-filter: blur(14px) saturate(1.4);
      -webkit-backdrop-filter: blur(14px) saturate(1.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s, visibility 0.35s;
      overflow-y: auto;
    }

    .case-modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .case-modal {
      position: relative;
      width: 720px;
      max-width: 100%;
      max-height: calc(100vh - 48px);
      padding: 40px 44px 28px;
      border-radius: 24px;
      background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(246, 191, 149, 0.08) 0%, transparent 70%),
        linear-gradient(175deg, rgba(44, 34, 28, 0.98) 0%, rgba(14, 11, 10, 0.99) 100%);
      border: 1px solid rgba(246, 191, 149, 0.14);
      box-shadow:
        0 1px 0 rgba(246, 191, 149, 0.12) inset,
        0 32px 96px rgba(0, 0, 0, 0.65),
        0 8px 32px rgba(0, 0, 0, 0.4);
      transform: scale(0.94) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.34, 1.42, 0.64, 1);
      overflow-y: auto;
      overflow-x: hidden;
      scrollbar-width: thin;
      scrollbar-color: rgba(246, 191, 149, 0.2) transparent;
    }

    .case-modal::-webkit-scrollbar { width: 8px; }
    .case-modal::-webkit-scrollbar-track { background: transparent; }
    .case-modal::-webkit-scrollbar-thumb {
      background: rgba(246, 191, 149, 0.18);
      border-radius: 4px;
    }

    .case-modal::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(246, 191, 149, 0.4), transparent);
      pointer-events: none;
    }

    .case-modal-overlay.open .case-modal {
      transform: scale(1) translateY(0);
    }

    .case-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      z-index: 2;
    }

    .case-modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--heading);
    }

    .case-modal-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      padding-right: 40px;
    }

    .case-modal-icon {
      flex: 0 0 56px;
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: var(--brand-from);
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.14), rgba(187, 95, 42, 0.08));
      border: 1px solid var(--border);
    }

    .case-modal-icon.case-icon--lead {
      color: #7ed7d8;
      background: linear-gradient(135deg, rgba(126, 215, 216, 0.14), rgba(22, 93, 95, 0.08));
      border-color: rgba(126, 215, 216, 0.22);
    }
    .case-modal-icon.case-icon--media {
      color: #c9a4ff;
      background: linear-gradient(135deg, rgba(201, 164, 255, 0.14), rgba(120, 60, 180, 0.08));
      border-color: rgba(201, 164, 255, 0.22);
    }
    .case-modal-icon.case-icon--audit {
      color: #86efac;
      background: linear-gradient(135deg, rgba(134, 239, 172, 0.14), rgba(60, 140, 80, 0.08));
      border-color: rgba(134, 239, 172, 0.22);
    }

    .case-modal-head-info {
      flex: 1;
      min-width: 0;
    }

    .case-modal-role {
      font-size: 16px;
      font-weight: 600;
      color: var(--heading);
      line-height: 1.2;
    }

    .case-modal-plan {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    .case-modal-title {
      font-size: 26px;
      font-weight: 700;
      color: var(--heading);
      line-height: 1.25;
      margin: 0 0 24px;
      letter-spacing: -0.5px;
    }

    .case-modal-funnel {
      display: flex;
      align-items: stretch;
      gap: 12px;
      padding: 22px 16px;
      background: rgba(0, 0, 0, 0.25);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 28px;
    }

    .case-modal-funnel .case-step-val { font-size: 26px; }
    .case-modal-funnel .case-step-lbl { font-size: 12px; }
    .case-modal-funnel .case-step-sep { font-size: 20px; color: var(--brand-mid); opacity: 0.55; }

    .case-modal-body {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .case-modal-block {
      padding: 0;
      margin: 0;
      max-width: 100%;
      width: 100%;
    }

    .case-modal-block-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-from);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 12px;
    }

    .case-modal-block-title i {
      font-size: 16px;
    }

    .case-modal-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      counter-reset: step-counter;
    }

    .case-modal-steps li {
      position: relative;
      padding: 10px 14px 10px 44px;
      margin-bottom: 8px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 14px;
      line-height: 1.55;
      color: var(--text);
      counter-increment: step-counter;
    }

    .case-modal-steps li::before {
      content: counter(step-counter);
      position: absolute;
      left: 12px;
      top: 10px;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--bg);
      background: linear-gradient(135deg, var(--brand-from), var(--brand-mid));
      border-radius: 50%;
    }

    .case-modal-modules {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .case-modal-module {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 14px;
      background: rgba(246, 191, 149, 0.05);
      border: 1px solid rgba(246, 191, 149, 0.18);
      border-radius: 100px;
      font-size: 13px;
      color: var(--text);
    }

    .case-modal-module i {
      font-size: 15px;
      color: var(--brand-from);
    }

    .case-modal-text {
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
      color: var(--text);
    }

    .case-modal-warnings {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .case-modal-warnings li {
      position: relative;
      padding: 8px 14px 8px 30px;
      font-size: 13px;
      line-height: 1.55;
      color: var(--muted);
    }

    .case-modal-warnings li::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 14px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #e6b86a;
      box-shadow: 0 0 0 3px rgba(230, 184, 106, 0.15);
    }

    .case-modal-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid var(--border);
    }

    .case-modal-foot-hint {
      font-size: 13px;
      color: var(--muted);
    }

    .case-modal-foot-hint strong {
      color: var(--heading);
      font-weight: 600;
    }

    .case-modal-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      font-size: 14px;
      font-weight: 600;
      color: var(--bg);
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      border-radius: 100px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .case-modal-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px -12px rgba(246, 191, 149, 0.45);
    }

    .case-modal-cta i {
      transition: transform 0.2s ease;
    }

    .case-modal-cta:hover i {
      transform: translateX(3px);
    }

    body.case-modal-open { overflow: hidden; }

    /* ============================================================
       RESPONSIVE — TABLET / NAV COMPAT / MOBILE POLISH
       (дополнительные правки для 1100px, 1024px, 768px, 480px)
    ============================================================ */

    /* — Блокировка скролла body при открытом мобильном меню — */
    body.menu-open { overflow: hidden; }

    /* — Nav: сжимаем пункты когда их много (1100-768) — */
    @media (max-width: 1100px) {
      .nav-links { gap: 22px; }
      .nav-links a { font-size: 13px; }
      .nav-cta { padding: 8px 18px; font-size: 13px; }
      nav { padding: 0 28px; }
    }

    /* — Планшетный брейкпоинт — */
    @media (max-width: 1024px) {
      section { padding: 80px 32px; }
      .hero-inner { padding: 0 32px; }

      /* Hero: более компактная сетка, убираем вылет картинки */
      .hero-split {
        grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
        gap: 28px;
      }
      .hero-visual { margin-right: 0; min-width: 0; }
      .hero-mockup {
        max-width: 100%;
        padding: 18px 6px 44px;
        transform: perspective(1800px) rotateY(-4deg) rotateX(2deg);
      }

      /* Stats: 4→2 на планшете */
      .stats-bar { padding: 0 32px 60px; }

      /* Modules: sidebar уже */
      .modules-layout { grid-template-columns: 240px 1fr; gap: 20px; }
      .modules-panel { padding: 28px; }
      #modules { padding-top: 80px; }

      /* Split sections: уменьшаем промежутки */
      .split-section { padding: 80px 24px; }
      .split-inner { gap: 40px; }
      .split-visual { min-height: auto; padding: 22px; }

      /* AI / Pricing / Footer контейнеры */
      #ai { padding: 80px 32px 50px; }
      footer { padding: 60px 32px 0; }

      /* KB teaser чуть плотнее */
      .kb-teaser { padding: 36px 32px; }
      .kb-teaser-bottom { gap: 24px; }

      /* Модули-компакт на планшете — 3 в ряд уже может быть впритык */
      .modules-compact-grid { gap: 10px; }
    }

    /* — Мобильные улучшения (усиление существующего 768 блока) — */
    @media (max-width: 768px) {
      /* bg-glow — сильно уменьшаем на мобиле (дорогой filter blur) */
      .bg-glow-1, .bg-glow-2 {
        width: 300px;
        height: 300px;
        filter: blur(80px);
      }
      .bg-glow-1 { top: -120px; right: -80px; }
      .bg-glow-2 { left: -100px; }

      /* Hero: аккуратнее с перспективой и вылетами */
      .hero-split { gap: 28px; }
      #hero {
        padding-top: 96px;
        padding-bottom: 32px;
        min-height: auto;
      }
      .hero-title { letter-spacing: -1px; }
      .hero-version { font-size: 11px; padding: 6px 12px 6px 10px; margin-bottom: 16px; }
      .hero-version__text { display: none; }
      .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
      .hero-benefits { gap: 12px; margin-bottom: 24px; }
      .hero-scroll-hint { display: none; }

      /* Modules: панель компактнее */
      .modules-panel { padding: 24px 18px; }
      .modules-list { top: 72px; }
      .module-content h3 { font-size: 22px; }
      .module-content p { font-size: 14px; }

      /* Split: картинки без 3D-перспективы на мобиле */
      .split-visual .split-img-wrap:first-child,
      .split-visual .split-img-wrap:last-child,
      .split-visual > .split-img-wrap:only-child {
        --shot-transform: translate3d(0, 0, 0);
        max-width: 100%;
        margin: 12px 0 0;
      }

      /* Compare tooltip: не вылезает за край экрана */
      .compare-hint::after {
        width: min(260px, calc(100vw - 32px));
        left: auto;
        right: 0;
        font-size: 11px;
        padding: 10px 12px;
      }
      /* На узких экранах нет смысла держать «ячейку» для иконки */
      .compare-feature { padding-right: 8px; }

      /* Cases: одна колонка + компактнее */
      .cases-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
      .case-card { padding: 22px 20px; }
      .case-card::before { left: 20px; right: 20px; }
      .case-card::after { top: 16px; right: 18px; padding: 4px 10px 4px 12px; font-size: 10px; opacity: 1; transform: none; }
      .case-title { font-size: 17px; margin-bottom: 18px; padding-right: 90px; }
      .case-funnel { padding: 14px 8px; gap: 6px; }
      .case-step-val { font-size: 18px; }
      .case-step-lbl { font-size: 10px; }
      .case-step-sep { font-size: 14px; }
      .case-quote { font-size: 13px; padding: 12px 14px 12px 38px; }
      .case-quote::before { font-size: 38px; left: 10px; }
      .case-tag { font-size: 11px; padding: 4px 10px; }
      #cases { padding-top: 40px; }

      /* Case modal: адаптив */
      .case-modal-overlay { padding: 12px; }
      .case-modal { padding: 32px 22px 22px; border-radius: 20px; }
      .case-modal-head { gap: 12px; margin-bottom: 16px; }
      .case-modal-icon { flex: 0 0 46px; width: 46px; height: 46px; font-size: 22px; }
      .case-modal-role { font-size: 15px; }
      .case-modal-plan { font-size: 12px; }
      .case-modal-title { font-size: 20px; margin-bottom: 18px; }
      .case-modal-funnel { padding: 14px 8px; gap: 6px; margin-bottom: 22px; }
      .case-modal-funnel .case-step-val { font-size: 18px; }
      .case-modal-funnel .case-step-lbl { font-size: 10px; }
      .case-modal-body { gap: 20px; }
      .case-modal-block-title { font-size: 12px; }
      .case-modal-steps li { padding: 9px 12px 9px 38px; font-size: 13px; }
      .case-modal-steps li::before { left: 10px; width: 20px; height: 20px; font-size: 10px; }
      .case-modal-module { font-size: 12px; padding: 7px 12px; }
      .case-modal-text { font-size: 13px; }
      .case-modal-foot { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
      .case-modal-cta { justify-content: center; padding: 12px 20px; }

      /* KB modal: dvh для корректной высоты в iOS Safari */
      .kb-modal {
        width: calc(100vw - 1rem);
        height: calc(100dvh - 1.5rem);
        border-radius: 16px;
      }
      .kb-modal__header { padding: 0.75rem 1rem; }
      .kb-sidebar { max-height: 160px; padding: 0.75rem; }
      .kb-content { padding: 0.85rem; }

      /* Pricing: меньше внутренних отступов */
      .pricing-card { padding: 26px 20px; }
      .pricing-trust { margin-top: 22px; gap: 6px 16px; }
      .pricing-trust li { font-size: 12px; }
      .pricing-trust li i { font-size: 13px; }
      #pricing { padding-top: 24px; }

      /* AI grid padding */
      #ai { padding: 60px 20px 40px; }

      /* Footer чуть плотнее */
      footer { padding: 40px 20px 0; }
    }

    /* — Очень узкие экраны — */
    @media (max-width: 420px) {
      nav { padding: 0 14px; height: 60px; }
      .nav-logo { font-size: 19px; }
      .mobile-menu { top: 60px; padding: 16px; }
      #hero { padding-top: 84px; }
      .hero-title { font-size: 28px; }
      .hero-benefit-icon { width: 36px; height: 36px; }
      .hero-benefit-title { font-size: 14px; }
      .hero-benefit-desc { font-size: 12px; }
      .section-title { font-size: 24px; }
      .compare-row,
      .compare-header,
      .compare-summary {
        grid-template-columns: 1fr 56px 56px 56px;
      }
      .compare-header { top: 60px; }
      .compare-feature { font-size: 11px; padding: 10px 8px; }
      .compare-val { padding: 10px 2px; font-size: 10px; }
      .compare-val--yes i,
      .compare-val--no i { font-size: 14px; }
      .compare-col { padding: 14px 4px; }
      .compare-logo { font-size: 11px; }
    }

/* ============================================================
   Free demo modal (бесплатная выдача демо — login/password+key)
   ============================================================ */
.fdm-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  padding: 20px;
}
.fdm-overlay.open { opacity: 1; pointer-events: auto; }
.fdm-card {
  position: relative;
  background: #1c1512;
  border: 1px solid rgba(246,191,149,.28);
  border-radius: 16px;
  padding: 34px 28px 26px;
  max-width: 460px; width: 100%;
  color: #f5ede3;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
.fdm-overlay.open .fdm-card { transform: translateY(0) scale(1); opacity: 1; }
.fdm-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: rgba(245,237,227,.5);
  font-size: 28px; line-height: 1; cursor: pointer; padding: 4px 8px;
}
.fdm-close:hover { color: #f5ede3; }
.fdm-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246,191,149,.22), rgba(246,191,149,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #e08f5a;
  border: 1px solid rgba(246,191,149,.35);
}
.fdm-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: 10px;
  color: #f5ede3; text-align: center;
}
.fdm-subtitle {
  font-size: .92rem; line-height: 1.55;
  color: rgba(245,237,227,.78);
  margin-bottom: 18px; text-align: center;
}
.fdm-features {
  display: flex; justify-content: center; gap: 14px 18px; flex-wrap: wrap;
  padding: 12px 0 14px; margin-bottom: 16px;
  border-top: 1px solid rgba(245,237,227,.08);
  border-bottom: 1px solid rgba(245,237,227,.08);
  font-size: .86rem; color: rgba(245,237,227,.82);
}
.fdm-features span { display: inline-flex; align-items: center; gap: 6px; }
.fdm-features i { color: #e08f5a; font-size: 1.05rem; }
.fdm-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px 20px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, #e08f5a, #bb5f2a);
  color: #1c1512; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: filter .2s, transform .2s;
  text-decoration: none;
}
.fdm-btn:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.fdm-btn:disabled { opacity: .6; cursor: not-allowed; }
.fdm-error {
  margin-top: 14px; padding: 10px 14px; border-radius: 8px;
  background: rgba(220,53,69,.12); border: 1px solid rgba(220,53,69,.35);
  color: #ff8a95; font-size: .85rem;
  display: none;
}
.fdm-error.visible { display: block; }
.fdm-creds {
  display: none;
  background: rgba(245,237,227,.04);
  border: 1px solid rgba(245,237,227,.08);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.fdm-creds.visible { display: block; }
.fdm-creds-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: .85rem;
}
.fdm-creds-row + .fdm-creds-row { border-top: 1px solid rgba(245,237,227,.06); }
.fdm-creds-label {
  min-width: 84px;
  color: rgba(245,237,227,.5);
}
.fdm-creds-value {
  flex: 1; font-family: ui-monospace, 'Space Grotesk', monospace;
  color: #f5ede3; word-break: break-all; font-size: .82rem;
}
.fdm-creds-copy {
  background: rgba(245,237,227,.08); border: none;
  color: #e08f5a; cursor: pointer;
  padding: 4px 8px; border-radius: 6px; font-size: .85rem;
  transition: background .15s, color .15s;
}
.fdm-creds-copy:hover { background: rgba(246,191,149,.18); }
.fdm-creds-copy.copied { color: #7ec97e; }
.fdm-link-row {
  text-align: center; margin-top: 14px; font-size: .82rem;
  color: rgba(245,237,227,.6);
}
.fdm-link-row a { color: #e08f5a; text-decoration: none; font-weight: 600; }
.fdm-link-row a:hover { text-decoration: underline; }

.fdm-legal-note {
  margin-top: 12px;
  font-size: .76rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(245,237,227,.55);
}
.fdm-legal-note a {
  color: rgba(245,237,227,.75);
  text-decoration: underline;
  text-decoration-color: rgba(246,191,149,.35);
  text-underline-offset: 2px;
}
.fdm-legal-note a:hover { color: #f6bf95; text-decoration-color: #f6bf95; }

/* Disabled pricing card (Demo off) */
.pricing-card--disabled {
  position: relative;
  opacity: .55;
}
.pricing-card--disabled .pricing-badge,
.pricing-card--disabled .pricing-price,
.pricing-card--disabled .pricing-period,
.pricing-card--disabled .pricing-features {
  text-decoration: line-through;
  text-decoration-color: rgba(245,237,227,.45);
  text-decoration-thickness: 2px;
}
.pricing-card--disabled::before {
  content: 'Временно отключено';
  position: absolute; top: 14px; right: 14px;
  background: rgba(220,53,69,.15);
  border: 1px solid rgba(220,53,69,.45);
  color: #ff8a95;
  padding: 3px 10px; border-radius: 999px;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  pointer-events: none;
}
.pricing-btn-disabled {
  display: block; text-align: center;
  padding: 12px 20px; border-radius: 10px;
  background: rgba(245,237,227,.06);
  color: rgba(245,237,227,.45);
  font-weight: 700; font-size: .9rem;
  cursor: not-allowed;
  border: 1px solid rgba(245,237,227,.1);
  text-decoration: none !important;
}

/* Telegram confirmation block */
.fdm-telegram-block {
  display: flex; flex-direction: column; gap: 14px;
}
.fdm-tg-hint {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(51,144,236,.08);
  border: 1px solid rgba(51,144,236,.22);
  color: rgba(245,237,227,.78);
  font-size: .82rem; line-height: 1.5;
}
.fdm-tg-hint i { color: #3390ec; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.fdm-tg-waiting {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 8px 0 2px;
  font-size: .85rem; color: rgba(245,237,227,.55);
}
.fdm-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(246,191,149,.25);
  border-top-color: #e08f5a;
  border-radius: 50%;
  animation: fdm-spin 0.9s linear infinite;
}
@keyframes fdm-spin { to { transform: rotate(360deg); } }

/* ============================================================
   VIDEO GUIDES SECTION (#video-guides)
============================================================ */
#video-guides {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Плеер */
.vg-player-wrap {
  position: relative;
  margin: 0 auto 40px;
  max-width: 960px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
  background: #000;
}
.vg-player-wrap video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
}

/* Карточки-табы */
.vg-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
}
.vg-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
}
.vg-tab:hover {
  border-color: var(--border-hover);
  background: rgba(246, 191, 149, 0.06);
  transform: translateY(-2px);
}
.vg-tab.is-active {
  border-color: var(--brand-mid);
  background: rgba(224, 143, 90, 0.1);
  box-shadow: 0 0 0 1px rgba(224, 143, 90, 0.25), 0 4px 20px rgba(224, 143, 90, 0.12);
}
.vg-tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(246, 191, 149, 0.1);
  color: var(--brand-mid);
  transition: background 0.2s, color 0.2s;
}
.vg-tab.is-active .vg-tab-icon {
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #fff;
}
.vg-tab-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.vg-tab.is-active .vg-tab-label {
  color: var(--heading);
}

/* Responsive */
@media (max-width: 768px) {
  #video-guides {
    padding: 64px 16px;
  }
  .vg-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .vg-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   TUTORIAL VIDEO — кнопка в модалке + секция #tutorials
   ============================================================ */

/* Кнопка «Смотреть урок» — рядом с «Подробнее о модуле» */
.module-tutorial-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-top: 14px;
  margin-right: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(246, 191, 149, 0.16), rgba(187, 95, 42, 0.14));
  border: 1px solid rgba(246, 191, 149, 0.32);
  color: #fffaf4;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.module-tutorial-btn i {
  font-size: 17px;
  color: var(--brand-from);
}
.module-tutorial-btn:hover {
  background: linear-gradient(135deg, rgba(246, 191, 149, 0.26), rgba(187, 95, 42, 0.22));
  border-color: rgba(246, 191, 149, 0.55);
  transform: translateY(-1px);
}
.module-tutorial-btn .tutorial-btn-duration {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid rgba(246, 191, 149, 0.25);
}

/* ── Секция #tutorials ───────────────────────────────────────── */
#tutorials {
  position: relative;
  padding: 110px 0 90px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
#tutorials .section-label {
  background: rgba(246, 191, 149, 0.08);
  border: 1px solid rgba(246, 191, 149, 0.22);
  color: var(--brand-from);
}

/* Сводные счётчики под подзаголовком */
.vt-meta {
  list-style: none;
  padding: 0;
  margin: 18px 0 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.vt-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.vt-meta li i {
  font-size: 17px;
  color: var(--brand-from);
}
.vt-meta li strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--heading);
  font-weight: 700;
  margin-right: 2px;
}

/* Информационная плашка над сеткой видео */
.vt-notice {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 0%, rgba(246, 191, 149, 0.12), transparent 60%),
    rgba(246, 191, 149, 0.04);
  border: 1px solid rgba(246, 191, 149, 0.22);
}
.vt-notice__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(246, 191, 149, 0.14);
  color: #f6bf95;
  font-size: 18px;
  border: 1px solid rgba(246, 191, 149, 0.28);
}
.vt-notice__text {
  min-height: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.vt-notice__text strong {
  color: var(--heading);
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 640px) {
  .vt-notice {
    margin-bottom: 20px;
    padding: 14px 16px;
    gap: 12px;
    border-radius: 12px;
  }
  .vt-notice__text { font-size: 13px; }
}

/* Сетка карточек */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .vt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .vt-grid { grid-template-columns: 1fr; gap: 16px; } }

.vt-card {
  position: relative;
  display: block;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s,
              box-shadow 0.35s;
  outline: none;
}
.vt-card:hover,
.vt-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(246, 191, 149, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(246, 191, 149, 0.12) inset;
}

/* Cover (16:9) — динамический градиент per-card через --vt-from / --vt-to */
.vt-card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, color-mix(in srgb, var(--vt-from, #f6bf95) 38%, transparent) 0%, transparent 65%),
    radial-gradient(ellipse at 100% 100%, color-mix(in srgb, var(--vt-to, #bb5f2a) 32%, transparent) 0%, transparent 70%),
    linear-gradient(135deg, #15110e 0%, #1f1b18 70%);
  border-bottom: 1px solid var(--border);
}

/* Постер (реальный кадр из видео) */
.vt-card-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.4s ease;
  filter: brightness(0.92) saturate(1.05);
}
.vt-card.has-poster:hover .vt-card-poster,
.vt-card.has-poster:focus-visible .vt-card-poster {
  transform: scale(1.06);
  filter: brightness(0.78) saturate(1.1);
}

/* Shade — мощный нижний gradient для читаемости заголовка поверх постера */
.vt-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.85) 100%);
}
/* На карточках без постера shade не нужен — оставляем только декор */
.vt-card:not(.has-poster) .vt-card-shade { display: none; }
/* На карточках с постером — glow только лёгкая цветная вуаль по краям */
.vt-card.has-poster .vt-card-glow {
  background: radial-gradient(circle at 50% 50%,
    transparent 50%,
    color-mix(in srgb, var(--vt-from, #f6bf95) 25%, transparent) 100%);
  mix-blend-mode: overlay;
}
/* Pattern на has-poster тоже скрываем (если бы он рендерился — JS его не даёт) */
.vt-card.has-poster .vt-card-pattern { display: none; }

/* Декоративная сетка-паттерн поверх обложки */
.vt-card-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}

/* Цветной радиальный glow, расширяется при hover */
.vt-card-glow {
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--vt-from, #f6bf95) 35%, transparent) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.vt-card:hover .vt-card-glow,
.vt-card:focus-visible .vt-card-glow { opacity: 1; }

/* Номер урока — в левом верхнем углу обложки */
.vt-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fffaf4;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Иконка модуля — крупная, по центру */
.vt-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--vt-from, #f6bf95) 100%, transparent) 0%,
    color-mix(in srgb, var(--vt-to, #bb5f2a) 100%, transparent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #14100c;
  box-shadow:
    0 18px 45px color-mix(in srgb, var(--vt-from, #f6bf95) 35%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.vt-card:hover .vt-card-icon,
.vt-card:focus-visible .vt-card-icon {
  transform: translate(-50%, -50%) scale(0.92) translateY(-6px);
}

/* Play-кнопка — всегда видна, на hover ярче и больше */
.vt-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #14100c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 3;
  opacity: 0.92;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5),
              0 0 0 5px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.vt-card-play i { margin-left: 3px; }
.vt-card:hover .vt-card-play,
.vt-card:focus-visible .vt-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6),
              0 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Длительность — YouTube-стиль: плотный чёрный пилл без иконки */
.vt-card-dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  line-height: 1.35;
}

/* Info-блок поверх постера в нижней части карточки */
.vt-card-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  pointer-events: none;
}
.vt-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin: 0;
}
.vt-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 4px 0 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* Footer секции — CTA + ссылка на БЗ */
.vt-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 44px 0 18px;
}
.vt-cta {
  font-size: 15px;
  padding: 14px 28px;
}
.vt-kb-link {
  cursor: pointer;
  font-size: 14px;
  padding: 13px 22px;
}
.vt-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* KB banner — hero-блок с мокапом окна БЗ */
.vt-kb-banner {
  position: relative;
  margin-top: 48px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
  background: rgba(15, 13, 11, 0.55);
  border: 1px solid rgba(246, 191, 149, 0.22);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}

/* Ambient gradient mesh + сетка-паттерн */
.vt-kb-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 191, 149, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(187, 95, 42, 0.15) 0%, transparent 55%);
}
.vt-kb-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 191, 149, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 191, 149, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
}

/* Левая колонка — текст */
.vt-kb-banner__left {
  position: relative;
}
.vt-kb-banner__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #14100c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 14px 32px rgba(246, 191, 149, 0.28);
}
.vt-kb-banner__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-from);
  margin-bottom: 10px;
}
.vt-kb-banner__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.vt-kb-banner__desc {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.55;
  max-width: 480px;
}
.vt-kb-banner__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}
.vt-kb-banner__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vt-kb-banner__stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vt-kb-banner__stat span {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.vt-kb-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #1a120d;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(187, 95, 42, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.vt-kb-banner__btn i { font-size: 17px; }
.vt-kb-banner__btn-arrow { font-size: 18px !important; transition: transform 0.25s ease; }
.vt-kb-banner__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 44px rgba(187, 95, 42, 0.42);
}
.vt-kb-banner__btn:hover .vt-kb-banner__btn-arrow { transform: translateX(3px); }

/* Правая колонка — мокап окна БЗ */
.vt-kb-banner__preview {
  position: relative;
}
.kb-mock {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #15110d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(246, 191, 149, 0.12) inset;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vt-kb-banner:hover .kb-mock { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }

.kb-mock__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #1f1812, #15110e);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.kb-mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.kb-mock__dot--r { background: #ff5f57; }
.kb-mock__dot--y { background: #febc2e; }
.kb-mock__dot--g { background: #28c840; }
.kb-mock__title {
  margin-left: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #d6c5b1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kb-mock__title i { color: var(--brand-from); font-size: 13px; }

.kb-mock__body { padding: 16px; }
.kb-mock__search {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.kb-mock__search i { color: var(--brand-from); font-size: 14px; }

.kb-mock__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kb-mock__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 13px;
  color: #d6c5b1;
  transition: background 0.2s, color 0.2s;
}
.kb-mock__item i:first-child {
  color: var(--brand-from);
  font-size: 15px;
  flex-shrink: 0;
}
.kb-mock__item span { flex: 1; min-width: 0; }
.kb-mock__item:hover { background: rgba(246, 191, 149, 0.06); }
.kb-mock__item--active {
  background: linear-gradient(135deg, rgba(246, 191, 149, 0.16), rgba(187, 95, 42, 0.1));
  color: #fffaf4;
  position: relative;
}
.kb-mock__item--active::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--brand-from), var(--brand-to));
}
.kb-mock__item-arrow { color: var(--brand-from) !important; font-size: 15px !important; }

/* Floating chips на превью */
.kb-mock-chip {
  position: absolute;
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(246, 191, 149, 0.32);
  border-radius: 11px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 500;
  color: #f5ede3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.kb-mock-chip i { color: var(--brand-from); font-size: 14px; }
.kb-mock-chip-1 { top: -14px; left: -16px; }
.kb-mock-chip-2 { bottom: -14px; right: -12px; }

@media (max-width: 1024px) {
  .vt-kb-banner { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .vt-kb-banner__desc { max-width: none; }
  .kb-mock { transform: none; }
  .vt-kb-banner:hover .kb-mock { transform: none; }
  .kb-mock-chip-1 { left: 8px; }
  .kb-mock-chip-2 { right: 8px; }
}
@media (max-width: 600px) {
  .vt-kb-banner { padding: 28px 22px; margin-top: 32px; border-radius: 18px; }
  .vt-kb-banner__stats { gap: 24px; }
  .vt-kb-banner__stat strong { font-size: 22px; }
  .vt-kb-banner__btn { width: 100%; justify-content: center; }
  .kb-mock-chip { font-size: 11px; padding: 7px 10px; }
}

@media (max-width: 768px) {
  #tutorials { padding: 80px 16px 60px; }
  .vt-meta { gap: 8px 18px; margin-bottom: 36px; }
  .vt-meta li { font-size: 12.5px; }
  .vt-card-icon { width: 70px; height: 70px; font-size: 32px; border-radius: 16px; }
  .vt-card-play { width: 44px; height: 44px; font-size: 18px; }
  .vt-card-info { left: 12px; right: 12px; bottom: 11px; }
  .vt-card-title { font-size: 18px; }
  .vt-card-desc { font-size: 12px; }
}

/* RuTube lightbox */
.tutorial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tutorial-lightbox.open {
  display: flex;
  opacity: 1;
}
.tutorial-lightbox-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.tutorial-lightbox-frame iframe,
.tutorial-lightbox-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  background: #000;
}
.tutorial-lightbox.mode-local .tutorial-lightbox-frame video { display: block; }
.tutorial-lightbox.mode-embed .tutorial-lightbox-frame iframe { display: block; }
.tutorial-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.tutorial-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}
    /* ============================================================
       CHANGELOG FAB + MODAL
    ============================================================ */
    .cl-fab {
      position: fixed;
      bottom: 28px;
      left: 24px;
      z-index: 8000;
      display: flex;
      align-items: center;
      gap: 9px;
      background: rgba(22, 17, 12, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: var(--text);
      font-family: 'Manrope', sans-serif;
      font-size: 12px;
      font-weight: 700;
      padding: 9px 16px 9px 12px;
      border-radius: 100px;
      border: 1px solid rgba(246, 191, 149, 0.2);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .cl-fab:hover {
      border-color: rgba(246, 191, 149, 0.38);
      box-shadow: 0 6px 32px rgba(0, 0, 0, 0.7);
    }
    .cl-fab--latest {
      bottom: 76px;
      border-color: rgba(77, 217, 221, 0.24);
      color: #f5ede3;
    }
    .cl-fab--latest .cl-fab-dot {
      background: #4dd9dd;
      box-shadow: 0 0 7px rgba(77, 217, 221, 0.75);
    }
    .cl-fab--latest:hover {
      border-color: rgba(77, 217, 221, 0.48);
    }
    .cl-fab--legacy {
      bottom: 28px;
      background: rgba(22, 17, 12, 0.72);
      border-color: rgba(246, 191, 149, 0.10);
      color: #f5ede3;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
      opacity: 0.5;
    }
    .cl-fab--legacy .cl-fab-dot {
      background: rgba(245, 237, 227, 0.35);
      box-shadow: none;
      animation: none;
    }
    .cl-fab--legacy:hover {
      border-color: rgba(246, 191, 149, 0.20);
      color: #f5ede3;
      box-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
      opacity: 0.75;
    }
    .cl-fab-dot {
      width: 8px;
      height: 8px;
      background: #e08f5a;
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(224, 143, 90, 0.7);
      flex-shrink: 0;
      animation: clPulse 2s infinite;
    }
    @keyframes clPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.75); }
    }

    .cl-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 0 0 76px 24px;
      pointer-events: none;
    }
    .cl-modal.open {
      display: flex;
      pointer-events: all;
    }
    .cl-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .cl-box {
      position: relative;
      z-index: 1;
      background: #1a1410;
      border: 1px solid rgba(246, 191, 149, 0.15);
      border-radius: 20px;
      width: 360px;
      max-height: 540px;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
      animation: clUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
      scrollbar-width: thin;
      scrollbar-color: rgba(246, 191, 149, 0.2) transparent;
    }
    .cl-box::-webkit-scrollbar { width: 4px; }
    .cl-box::-webkit-scrollbar-track { background: transparent; }
    .cl-box::-webkit-scrollbar-thumb { background: rgba(246, 191, 149, 0.2); border-radius: 10px; }
    .cl-box::-webkit-scrollbar-thumb:hover { background: rgba(246, 191, 149, 0.35); }
    @keyframes clUp {
      from { transform: translateY(18px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }

    .cl-head {
      padding: 18px 20px 14px;
      border-bottom: 1px solid rgba(246, 191, 149, 0.08);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      position: sticky;
      top: 0;
      background: #1a1410;
      z-index: 10;
    }
    .cl-head-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #e08f5a;
      margin-bottom: 4px;
    }
    .cl-head-title { font-size: 16px; font-weight: 800; color: #fffaf4; }
    .cl-head-date  { font-size: 11px; color: #7a6a5a; margin-top: 2px; }

    .cl-cta {
      padding: 12px 20px;
      background: #1a1410;
      position: relative;
      z-index: 9;
    }
    .cl-cta-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 10px;
      font-size: 12.5px;
      font-weight: 700;
      color: #f6bf95;
      text-decoration: none;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.22);
      transition: background .18s ease, border-color .18s ease, color .18s ease;
      white-space: nowrap;
    }
    .cl-cta-link:hover {
      background: rgba(246, 191, 149, 0.16);
      border-color: rgba(246, 191, 149, 0.4);
      color: #fcd5b1;
    }
    .cl-cta-link i { font-size: 13px; }
    .cl-cta-ext { opacity: 0.6; font-size: 11px !important; }

    .cl-close {
      width: 26px;
      height: 26px;
      background: rgba(255, 255, 255, 0.05);
      border: none;
      border-radius: 8px;
      color: #7a6a5a;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s, color 0.15s;
    }
    .cl-close:hover { background: rgba(255, 255, 255, 0.1); color: #f5ede3; }

    /* Timeline */
    .cl-list {
      padding: 16px 20px 20px;
      position: relative;
    }
    .cl-list::before {
      content: '';
      position: absolute;
      left: calc(20px + 2px);
      top: 22px;
      bottom: 24px;
      width: 1.5px;
      background: rgba(246, 191, 149, 0.18);
      border-radius: 1px;
    }
    .cl-item {
      display: flex;
      gap: 14px;
      position: relative;
      padding-bottom: 18px;
      align-items: flex-start;
    }
    .cl-item:last-child { padding-bottom: 0; }

    .cl-dot-wrap {
      flex-shrink: 0;
      width: 6px;
      margin-top: 5px;
      position: relative;
      z-index: 1;
    }
    .cl-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .cl-dot--new { background: #e08f5a; box-shadow: 0 0 5px rgba(224, 143, 90, 0.7); }
    .cl-dot--imp { background: #4dd9dd; box-shadow: 0 0 5px rgba(77, 217, 221, 0.6); }
    .cl-dot--fix { background: #68c87a; box-shadow: 0 0 5px rgba(104, 200, 122, 0.6); }

    .cl-item-title { font-size: 13px; font-weight: 700; color: #fffaf4; line-height: 1.3; margin-bottom: 3px; }
    .cl-item-desc  { font-size: 12px; color: #9a8372; line-height: 1.55; }

    @media (max-width: 480px) {
      .cl-fab { bottom: 20px; left: 16px; font-size: 11px; padding: 8px 14px 8px 10px; }
      .cl-fab--latest { bottom: 58px; }
      .cl-fab--legacy { bottom: 20px; }
      .cl-modal { padding: 0 0 68px 16px; }
      .cl-box { width: calc(100vw - 32px); }
    }

@media (max-width: 600px) {
  .tutorial-lightbox { padding: 12px; }
  .tutorial-lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 18px; }
  .module-screenshot.has-tutorial .tutorial-play { width: 56px; height: 56px; font-size: 24px; }
}
