  :root {
    --bg: #0B0B0D;
    --bg-2: #131316;
    --bg-3: #1A1A1F;
    --ink: #F4F3EE;
    --ink-2: rgba(244, 243, 238, 0.72);
    --ink-3: rgba(244, 243, 238, 0.48);
    --ink-4: rgba(244, 243, 238, 0.22);
    --line: rgba(242, 241, 236, 0.10);
    --line-2: rgba(242, 241, 236, 0.18);
    --accent: #4D7CFF;
    --accent-2: #6EDFFF;
    --on-accent: #0A0B0D;
    --grad: linear-gradient(120deg, #4D7CFF, #6EDFFF);
    --sans: 'Manrope', system-ui, -apple-system, sans-serif;
    --max: 1240px;
    --gut: clamp(20px, 4vw, 56px);
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  *, *::before, *::after { box-sizing: border-box; }
  html {
    background: #0B0B0D;
    min-height: 100%;
  }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  body {
    margin: 0;
    background: #0B0B0D;
    background-color: #0B0B0D;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
    font-feature-settings: 'ss01';
    min-height: 100vh;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font: inherit; cursor: pointer; }
  ::selection { background: var(--accent-2); color: var(--bg); }

  /* Фокус: фірмовий cyan замість системного синього кільця.
     :focus-visible — показується при клавіатурі/кліку, не заважає мишці. */
  :focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 3px;
  }
  .case:focus-visible,
  .btn:focus-visible {
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(110, 223, 255, 0.12);
  }
  .case:focus-visible { border-color: var(--ink-3); }

  /* background radial glow */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background:
      radial-gradient(1100px 700px at 80% -10%, rgba(77,124,255,0.14), transparent 60%),
      radial-gradient(900px 600px at 0% 90%, rgba(110,223,255,0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  main, header, footer { position: relative; z-index: 1; }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }

  /* ---------- Editorial type ---------- */
  .display {
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.02;
  }
  .it {
    color: var(--accent-2);
    font-style: normal;
    font-weight: inherit;
    letter-spacing: inherit;
  }
  .small-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--sans);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-size: clamp(18px, 1.6vw, 22px);
  }
  .small-label .num {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
    margin-right: 0;
  }
  .small-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--line-2), transparent);
    max-width: 90px;
    margin-left: 4px;
  }

  /* ---------- Nav ---------- */
  nav.top {
    position: sticky; top: 0;
    z-index: 50;
    background: rgba(11, 11, 13, 0.78);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line);
  }
  .top-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; letter-spacing: -0.02em; font-size: 19px;
  }
  .brand-mark { width: 28px; height: 19px; }
  .top-links {
    display: flex; gap: 30px; list-style: none; padding: 0; margin: 0;
  }
  .top-links a {
    font-size: 14px; color: var(--ink-2);
  }
  .top-links a:hover { color: var(--ink); }
  .top-actions { display: flex; align-items: center; gap: 14px; }
  .lang { font-size: 12px; color: var(--ink-3); letter-spacing: 0.02em; }
  .lang a.on { color: var(--ink); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 14px; font-weight: 500;
    transition: transform 0.18s ease, background 0.18s, border-color 0.18s, box-shadow 0.18s;
    border: 1px solid transparent;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0A0B0F;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 0 20px -4px rgba(77,124,255,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
    pointer-events: none;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px -4px rgba(77,124,255,0.7), 0 8px 20px -8px rgba(110,223,255,0.4);
  }
  .btn-ghost {
    color: var(--ink); border-color: var(--line-2); background: transparent;
  }
  .btn-ghost:hover { border-color: var(--ink-3); }
  .btn-accent {
    background: var(--accent); color: var(--on-accent);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
  }
  .btn-accent:hover { background: #3D6CFF; transform: translateY(-1px); }
  @media (max-width: 880px) { .top-links { display: none; } .top-actions .btn-primary { display: none; } }

  /* ---------- Mobile nav (hamburger) ---------- */
  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    color: var(--ink);
    cursor: pointer;
  }
  .mobile-nav { display: none; }
  @media (max-width: 880px) {
    .nav-toggle { display: flex; }
    .mobile-nav {
      flex-direction: column;
      background: var(--bg-2);
      border-bottom: 1px solid var(--line);
    }
    .mobile-nav:not([hidden]) { display: flex; }
    .mobile-nav a {
      display: flex;
      align-items: center;
      min-height: 44px;
      padding: 12px var(--gut);
      color: var(--ink-2);
      font-size: 15px;
      border-top: 1px solid var(--line);
    }
    .mobile-nav a:hover { color: var(--ink); }
  }

  /* ---------- Skip link ---------- */
  .skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--accent); color: var(--on-accent);
    padding: 12px 20px; z-index: 10000; border-radius: 0 0 8px 0;
  }
  .skip-link:focus { left: 0; }

  /* ---------- Hero ---------- */
  .hero {
    padding: clamp(56px, 8vw, 110px) 0 clamp(60px, 8vw, 110px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  /* WebGL shader background */
  .hero-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* fade-to-black at bottom of hero so transition to stats is clean */
  .hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, rgba(11,11,13,0.85) 70%, #0B0B0D 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero .wrap { position: relative; z-index: 2; }
  .hero-grid {
    display: block;
  }
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--ink-3);
    font-size: 13px;
  }
  .hero-meta .hr {
    flex: 0 0 36px; height: 1px; background: var(--ink-3);
  }
  .hero-meta > span:nth-child(2) {
    color: var(--ink-2);
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .hero-meta .dot-sep { color: var(--ink-4); }
  .hero-meta > span:last-child {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--accent-2);
    letter-spacing: 0;
  }
  @media (max-width: 540px) {
    .hero-meta { gap: 10px; font-size: 12px; }
    .hero-meta .hr { display: none; }
    .hero-meta .dot-sep { display: none; }
    .hero-meta > span:last-child { font-size: 13px; }
  }
  h1.hero-title {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 0 0 28px;
    max-width: 16ch;
  }
  h1.hero-title .accent {
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--accent-2);
  }
  h1.hero-title .brand-accent {
    color: var(--accent-2);
  }
  .hero-sub {
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.5;
    color: var(--ink-2);
    max-width: 56ch;
    margin: 0 0 36px;
  }
  .hero-sub b { color: var(--ink); font-weight: 600; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 15px; }

  /* hero dashboard panel */
  .dash {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .dash::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(77,124,255,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .dash-label {
    font-size: 12px;
    color: var(--ink-3);
    letter-spacing: 0.02em;
  }
  .dash-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.6);
    animation: blink 2.4s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
  .dash-metrics {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
  }
  .dm {}
  .dm-v {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 5px;
  }
  .dm-v span {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-2);
    margin-left: 1px;
  }
  .dm-l {
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
  }
  .dm-bar {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
  }
  .dm-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 99px;
  }
  .dash-divider { height: 1px; background: var(--line); margin: 24px 0; }
  .dash-platforms {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
  }
  .dp {
    flex: 1;
    padding: 10px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 12px;
    color: var(--ink-2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: border-color 0.2s;
  }
  .dp:hover { border-color: var(--ink-3); }
  .dp .dp-ico {
    font-style: italic;
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink);
  }
  .dash-footer {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--ink-3);
  }

  /* stats */
  .hero-stats {
    margin-top: clamp(48px, 7vw, 96px);
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat .v {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .stat .v small {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-3);
    font-size: 0.55em;
    letter-spacing: 0;
    margin-left: 4px;
  }
  .stat .l {
    margin-top: 10px;
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.4;
    max-width: 22ch;
  }
  @media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .portrait { max-width: 360px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }

  /* ---------- Sections ---------- */
  section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
  .sec-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(48px, 6vw, 80px);
  }
  .sec-head h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 4.4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 600;
    max-width: 16ch;
  }
  .sec-head p {
    color: var(--ink-2);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.55;
    max-width: 56ch;
  }
  @media (max-width: 880px) {
    .sec-head { grid-template-columns: 1fr; gap: 18px; }
  }

  /* ----- AI Section: Lamp effect ----- */
  .ai-section { padding-top: 0; padding-bottom: clamp(72px, 9vw, 130px); }
  .lamp-container {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 50vh, 560px);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(40px, 6vw, 80px);
    background: #08080A;
  }
  .lamp-stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  /* Left cone — conic gradient from cyan, fading */
  .lamp-cone-left,
  .lamp-cone-right {
    position: absolute;
    top: 0;
    height: 14rem;
    width: 14rem;
    z-index: 1;
    opacity: 0.5;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease-out;
  }
  .lamp-cone-left {
    right: 50%;
    background: conic-gradient(from 70deg at top, var(--accent-2), transparent 30%, transparent);
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
  }
  .lamp-cone-right {
    left: 50%;
    background: conic-gradient(from 290deg at top, transparent, transparent 70%, var(--accent-2));
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
  }
  .lamp-container.in-view .lamp-cone-left,
  .lamp-container.in-view .lamp-cone-right {
    width: 30rem;
    opacity: 1;
  }
  /* Soft blur band at top */
  .lamp-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scaleX(1.5);
    height: 12rem;
    width: 100%;
    background: #08080A;
    filter: blur(40px);
    z-index: 2;
  }
  /* Bright cyan circular glow at top center */
  .lamp-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    height: 9rem;
    width: 28rem;
    border-radius: 50%;
    background: var(--accent-2);
    opacity: 0;
    filter: blur(80px);
    z-index: 3;
    transition: opacity 1s ease-out 0.2s;
  }
  .lamp-container.in-view .lamp-glow { opacity: 0.45; }
  /* Bright thin horizontal cyan line */
  .lamp-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -110px);
    height: 2px;
    width: 15rem;
    background: var(--accent-2);
    box-shadow: 0 0 18px var(--accent-2), 0 0 40px var(--accent-2);
    z-index: 5;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lamp-container.in-view .lamp-line { width: 30rem; }
  /* Top mask cover — hides the upper half of cones, leaving only the down-glow */
  .lamp-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(50% - 110px);
    background: #08080A;
    z-index: 4;
  }
  /* Content sits on top of the lamp glow */
  .lamp-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 clamp(20px, 4vw, 56px);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, opacity 1s ease-out 0.2s;
  }
  .lamp-container.in-view .lamp-content {
    transform: none;
    opacity: 1;
  }
  .lamp-label {
    display: inline-block;
    font-size: 12px;
    color: var(--accent-2);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
    font-family: var(--mono, var(--sans));
  }
  .lamp-title {
    font-size: clamp(32px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(180deg, #F4F3EE, rgba(244,243,238,0.55));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 18ch;
    margin: 0 auto;
  }
  .lamp-title .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(180deg, var(--accent-2), rgba(110,223,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @media (max-width: 720px) {
    .lamp-container { min-height: 380px; }
    .lamp-cone-left, .lamp-cone-right { height: 11rem; }
    .lamp-container.in-view .lamp-cone-left,
    .lamp-container.in-view .lamp-cone-right { width: 22rem; }
    .lamp-container.in-view .lamp-line { width: 22rem; }
    .lamp-glow { width: 20rem; }
  }

  /* ---------- AI services list ---------- */
  .ai-rows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .ai-row {
    background: var(--bg);
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  /* dot pattern background */
  .ai-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(244,243,238,0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    background-position: 0 0;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .ai-row:hover { background: var(--bg-2); }
  .ai-row:hover::before { opacity: 1; }
  /* gradient bar at bottom that fills on hover */
  .ai-row::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--accent-2);
  }
  .ai-row:hover::after { width: 100%; }
  .ai-row > * { position: relative; z-index: 1; }
  .ai-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .ai-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(77,124,255,0.12), rgba(110,223,255,0.06));
    border: 1px solid var(--line-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s, box-shadow 0.4s;
    animation: icoFloat 4s ease-in-out infinite;
    position: relative;
  }
  .ai-ico::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(110,223,255,0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(6px);
  }
  @keyframes icoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }
  .ai-row:nth-child(2) .ai-ico { animation-delay: -0.5s; }
  .ai-row:nth-child(3) .ai-ico { animation-delay: -1.0s; }
  .ai-row:nth-child(4) .ai-ico { animation-delay: -1.5s; }
  .ai-row:nth-child(5) .ai-ico { animation-delay: -2.0s; }
  .ai-row:nth-child(6) .ai-ico { animation-delay: -2.5s; }
  .ai-row:nth-child(7) .ai-ico { animation-delay: -3.0s; }
  .ai-row:nth-child(8) .ai-ico { animation-delay: -3.5s; }
  .ai-row:nth-child(9) .ai-ico { animation-delay: -0.8s; }
  .ai-ico svg {
    width: 26px; height: 26px;
    stroke: currentColor;
    stroke-width: 1.75;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.4s;
  }
  .ai-row:hover .ai-ico {
    transform: translateY(-3px) rotate(-3deg) scale(1.05);
    border-color: var(--accent-2);
    background: linear-gradient(135deg, rgba(77,124,255,0.28), rgba(110,223,255,0.16));
    box-shadow: 0 8px 24px -8px rgba(110,223,255,0.5);
    animation-play-state: paused;
  }
  .ai-row:hover .ai-ico::before { opacity: 1; }
  .ai-row:hover .ai-ico svg { transform: scale(1.08); }
  .ai-row h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0 0 12px;
  }
  .ai-row p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 980px) {
    .ai-rows { grid-template-columns: repeat(2, 1fr); }
    .ai-rows .ai-row:nth-child(9) { grid-column: 1 / -1; }
  }
  @media (max-width: 600px) {
    .ai-rows { grid-template-columns: 1fr; }
    .ai-rows .ai-row:nth-child(9) { grid-column: auto; }
  }

  /* ---------- Approach ---------- */
  .approach {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: start;
  }
  .approach-photo {
    position: sticky;
    top: 88px;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .approach-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
    filter: contrast(1.02) saturate(0.95);
  }
  .approach-cap {
    margin-top: 14px;
  }
  .approach-cap blockquote {
    margin: 0 0 12px;
    font-style: italic;
    font-size: 19px;
    line-height: 1.4;
    color: var(--ink);
  }
  .approach-cap .who {
    font-size: 13px; color: var(--ink-3);
  }
  .approach-cap .who b { color: var(--ink); font-weight: 600; }

  /* Manifesto strip */
  .manifesto-strip {
    margin: 48px 0 40px;
    padding: 32px;
    grid-column: 1 / -1;
    background: linear-gradient(180deg, rgba(77,124,255,0.05), rgba(110,223,255,0.02));
    border: 1px solid rgba(110,223,255,0.15);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }
  .manifesto-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border-radius: 3px 0 0 3px;
  }
  .manifesto-head { margin-bottom: 24px; }
  .manifesto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(110,223,255,0.06);
    border: 1px solid rgba(110,223,255,0.2);
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }
  .manifesto-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-2);
  }
  .manifesto-head h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
  }
  .manifesto-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 60ch;
  }
  .manifesto-head p b { color: var(--ink); }
  .manifesto-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
  }
  .manifesto-card {
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid var(--line);
  }
  .manifesto-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(244,243,238,0.06);
  }
  .manifesto-them {
    background: rgba(244,243,238,0.02);
    border-color: rgba(244,243,238,0.06);
  }
  .manifesto-them .manifesto-card-label { color: var(--ink-3); }
  .manifesto-us {
    background: rgba(110,223,255,0.04);
    border-color: rgba(110,223,255,0.2);
  }
  .manifesto-us .manifesto-card-label { color: var(--accent-2); }
  .manifesto-card ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .manifesto-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--ink-2);
  }
  .mx {
    flex-shrink: 0;
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244,243,238,0.05);
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 600;
  }
  .mc {
    flex-shrink: 0;
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(110,223,255,0.12);
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 600;
  }
  .manifesto-bottom {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    padding-top: 18px;
    border-top: 1px solid rgba(244,243,238,0.06);
    line-height: 1.55;
  }
  @media (max-width: 640px) {
    .manifesto-compare { grid-template-columns: 1fr; }
    .manifesto-strip { padding: 24px 20px; }
  }

  .approach-list {
    display: flex; flex-direction: column;
    grid-column: 1 / -1;
  }
  .approach-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    align-items: center;
  }
  .approach-row:last-child { border-bottom: 1px solid var(--line); }
  .approach-row .num {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: linear-gradient(135deg, rgba(77,124,255,0.08), rgba(110,223,255,0.04));
    font-family: var(--sans);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-2);
    letter-spacing: 0.02em;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s, box-shadow 0.4s;
  }
  .approach-row:hover .num {
    transform: scale(1.08) rotate(-4deg);
    border-color: var(--accent-2);
    background: linear-gradient(135deg, rgba(77,124,255,0.22), rgba(110,223,255,0.14));
    box-shadow: 0 0 18px -4px rgba(110,223,255,0.5);
  }
  .approach-row h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .approach-row p {
    margin: 0;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.5;
  }
  @media (max-width: 980px) {
    .approach { grid-template-columns: 1fr; }
    .approach-photo { position: relative; top: 0; max-width: 360px; }
  }

  /* ---------- Platforms ---------- */
  .plat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .plat {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .plat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 240px at 100% 0%, rgba(110,223,255,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .plat:hover { border-color: var(--accent-2); transform: translateY(-4px); }
  .plat:hover::before { opacity: 1; }
  .plat > * { position: relative; z-index: 1; }
  .plat-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  .plat-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .plat:hover .plat-logo { transform: scale(1.06) rotate(-3deg); }
  .plat-logo svg {
    width: 30px;
    height: 30px;
    display: block;
  }
  .plat[data-plat="tiktok"] .plat-logo { background: #000; }
  .plat-info { flex: 1; }
  .plat .pname {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .plat-sub {
    font-size: 12px;
    color: var(--ink-3);
    letter-spacing: 0.01em;
  }
  .plat p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 18px;
  }
  .plat-tags {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .plat-tags li {
    font-size: 12px;
    color: var(--ink-2);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
  }
  .plat-stat {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-3);
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .plat-stat-v {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
  }
  @media (max-width: 880px) { .plat-grid { grid-template-columns: 1fr; } }

  /* ---------- Why ---------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .why-card {
    background: var(--bg);
    padding: 32px 30px;
    transition: background 0.25s;
  }
  .why-card { position: relative; overflow: hidden; }
  .why-card:hover { background: var(--bg-2); }
  .why-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px var(--accent-2);
  }
  .why-card:hover::after { width: 100%; }
  .why-card .n {
    font-family: var(--sans);
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .why-card:hover .n { transform: scale(1.06) translateX(2px); }
  .why-card h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 10px;
  }
  .why-card p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }

  /* ---------- Pricing/budget strip ---------- */
  .budget-strip {
    margin-top: clamp(48px, 6vw, 80px);
    padding: clamp(36px, 5vw, 64px);
    background:
      radial-gradient(800px 400px at 100% 0%, rgba(77,124,255,0.12), transparent 60%),
      radial-gradient(600px 300px at 0% 100%, rgba(110,223,255,0.06), transparent 60%),
      var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
  }
  .budget-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(244,243,238,0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  }
  .budget-side { position: relative; z-index: 1; }
  .budget-side h3 {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 14px 0 22px;
  }
  .budget-side h3 .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .budget-side p {
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 50ch;
  }
  .budget-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
  }
  .bp-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(77,124,255,0.2), rgba(110,223,255,0.1));
    border: 1px solid rgba(110,223,255,0.3);
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .bp-ico svg { width: 12px; height: 12px; }

  .budget-card {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8,8,11,0.6), rgba(8,8,11,0.95));
    border: 1px solid var(--line-2);
    padding: 36px 32px 32px;
  }
  .budget-card-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(400px 200px at 50% 0%, rgba(110,223,255,0.25), transparent 70%),
      radial-gradient(300px 150px at 50% 100%, rgba(77,124,255,0.15), transparent 70%);
    pointer-events: none;
  }
  .budget-card-inner { position: relative; z-index: 1; }
  .budget-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-3);
    font-weight: 500;
    margin-bottom: 12px;
  }
  .budget-card-value {
    font-size: clamp(54px, 7vw, 80px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(180deg, #F4F3EE 0%, rgba(110,223,255,0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
  }
  .budget-card-value span {
    font-size: 0.32em;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: 0;
    -webkit-text-fill-color: var(--ink-3);
    margin-left: 4px;
  }
  .budget-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
    margin-bottom: 22px;
  }
  .budget-card-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
  }
  .budget-card-meta > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .budget-card-meta span {
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .budget-card-meta strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .budget-card-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 22px;
    font-size: 14px;
  }

  @media (max-width: 880px) {
    .budget-strip { grid-template-columns: 1fr; gap: 36px; }
    .budget-points { grid-template-columns: 1fr; }
  }

  /* ---------- Niches ---------- */
  .niches {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .niche {
    padding: 11px 18px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: 14px;
    color: var(--ink);
    transition: border-color 0.2s, color 0.2s;
  }
  .niche:hover { border-color: var(--accent-2); color: var(--accent-2); }

  /* ----- Marquee strips with niche icons ----- */
  .marquee-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }
  .marquee-wrap::before,
  .marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 12vw;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
  .marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
  }
  .marquee-track {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
    padding-right: 12px;
    animation: scroll-left 60s linear infinite;
    will-change: transform;
  }
  .marquee.reverse .marquee-track {
    animation: scroll-right 55s linear infinite;
  }
  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .m-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 18px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
  }
  .m-pill:hover { border-color: var(--accent-2); background: rgba(110,223,255,0.06); }
  .m-pill .ico {
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    flex-shrink: 0;
  }
  .m-pill .ico svg {
    width: 100%; height: 100%;
    stroke: currentColor;
    stroke-width: 1.75;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ---------- Workflow ---------- */
  .flow-wrap { position: relative; }
  .flow-track {
    position: absolute;
    top: 50px;
    left: 0; right: 0; height: 1px;
    background: var(--line);
    z-index: 0;
  }
  .flow-fill {
    position: absolute;
    top: 50px;
    left: 0; height: 1px;
    background: var(--accent-2);
    width: 0%;
    transition: width 0.5s ease-out;
    z-index: 1;
  }
  .flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 2;
  }
  .flow-step {
    padding: 0 18px 0 0;
    border-right: 1px solid var(--line);
  }
  .flow-step:last-child { border-right: none; }
  .flow-day {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(77,124,255,0.08), rgba(110,223,255,0.04));
    font-family: var(--sans);
    font-weight: 600;
    font-size: 11px;
    color: var(--accent-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .flow-step.on .flow-day {
    border-color: var(--accent-2);
    background: linear-gradient(135deg, rgba(77,124,255,0.2), rgba(110,223,255,0.12));
    box-shadow: 0 0 14px -4px rgba(110,223,255,0.5);
  }
  .flow-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--line-2);
    margin-bottom: 22px;
    margin-top: -5px;
    transition: all 0.3s;
  }
  .flow-step.on .flow-dot {
    background: var(--accent-2);
    border-color: var(--accent-2);
  }
  .flow-step h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .flow-step ul {
    list-style: none; padding: 0; margin: 0;
    color: var(--ink-2); font-size: 13.5px;
  }
  .flow-step ul li {
    padding-left: 12px; position: relative;
    margin-bottom: 5px; line-height: 1.45;
  }
  .flow-step ul li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--ink-3);
  }
  @media (max-width: 980px) {
    .flow-track, .flow-fill { display: none; }
    .flow { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .flow-step { border-right: none; padding: 0; }
    .flow-dot { display: none; }
  }
  @media (max-width: 540px) {
    .flow { grid-template-columns: 1fr; }
  }

  /* ---------- Cases ---------- */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .case {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-2);
    overflow: hidden;
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .case:hover { border-color: var(--ink-3); transform: translateY(-2px); }
  .case-chart {
    padding: 22px 24px 0;
    height: 90px;
  }
  .case-chart svg { width: 100%; height: 100%; overflow: visible; display: block; }
  .case-chart .axis { stroke: var(--line); stroke-width: 1; }
  .case-chart .grad-stroke { stroke: url(#cg); stroke-width: 2; fill: none; stroke-linecap: round; }
  .case-chart .grad-fill { fill: url(#cgf); opacity: 0.35; }
  .case-chart .bar { fill: url(#cg); rx: 1.5; }
  .case-chart .bar-low { fill: rgba(255,255,255,0.08); rx: 1.5; }
  .case-chart .dot { fill: var(--accent-2); }
  .case-chart .label { fill: var(--ink-3); font-family: var(--sans); font-size: 9px; }
  .case-meta {
    padding: 14px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-3);
    font-size: 12.5px;
  }
  .case h3 {
    margin: 12px 24px 18px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
  .case .results {
    padding: 0 24px 18px;
    display: flex; gap: 24px; flex-wrap: wrap;
  }
  .case .r .v {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .case .r .v .roas {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-2);
  }
  .case .r .l { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; }
  .case-body {
    padding: 16px 24px;
    color: var(--ink-2);
    font-size: 13.5px;
    line-height: 1.5;
    border-top: 1px solid var(--line);
    margin-top: auto;
  }
  .case-more {
    margin: 0 24px 22px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink-2);
    font-size: 13px;
    border-top: 1px solid var(--line);
  }
  .case:hover .case-more { color: var(--accent-2); }
  .case-more svg { transition: transform 0.2s; }
  .case:hover .case-more svg { transform: translateX(4px); }
  @media (max-width: 980px) { .cases-grid { grid-template-columns: 1fr; } }

  /* ---------- Modal ---------- */
  .ovl {
    position: fixed; inset: 0;
    background: rgba(8,8,11,0.75);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    z-index: 100;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s;
  }
  .ovl.on { opacity: 1; pointer-events: auto; }
  .modal {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 8px;
    max-width: 720px; width: 100%;
    max-height: 86vh; overflow-y: auto;
    padding: 40px;
    transform: translateY(16px) scale(0.99);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }
  .ovl.on .modal { transform: none; }
  .modal-x {
    position: absolute; top: 14px; right: 14px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--line-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); cursor: pointer;
  }
  .modal-x:hover { background: var(--bg-3); }
  .modal .m-tag {
    display: block;
    font-size: 12px; color: var(--ink-3);
    margin-bottom: 12px;
  }
  .modal h3 {
    font-size: 28px; font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 22px;
    max-width: 22ch;
  }
  .modal h3 .it { color: var(--accent-2); }
  .modal .m-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin: 0 0 28px;
    overflow: hidden;
  }
  .modal .m-stats .s {
    background: var(--bg-2);
    padding: 18px 16px;
  }
  .modal .m-stats .v {
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1;
    color: var(--ink);
  }
  .modal .m-stats .l {
    font-size: 12px; color: var(--ink-3); margin-top: 6px;
  }
  .modal h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-2);
    margin: 22px 0 10px;
    letter-spacing: 0.01em;
  }
  .modal h4:first-of-type { margin-top: 0; }
  .modal ul { padding-left: 18px; margin: 8px 0 14px; }
  .modal li { color: var(--ink-2); margin-bottom: 5px; line-height: 1.5; font-size: 14.5px; }
  .modal p { color: var(--ink-2); line-height: 1.6; font-size: 14.5px; }
  @media (max-width: 600px) {
    .modal { padding: 28px 22px; }
    .modal h3 { font-size: 22px; }
    .modal .m-stats { grid-template-columns: 1fr; }
  }

  /* ---------- Testimonials ---------- */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .review {
    position: relative;
    padding: 32px 28px 26px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-2);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
  }
  .review::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 200px at 100% 0%, rgba(110,223,255,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .review:hover {
    transform: translateY(-3px);
    border-color: var(--line-2);
  }
  .review:hover::before { opacity: 1; }

  .review-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 64px;
    line-height: 0.6;
    color: var(--accent-2);
    opacity: 0.5;
    margin-bottom: 4px;
    height: 28px;
    position: relative;
    z-index: 1;
  }
  .review-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
  }
  .review-ava {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .ava-1 { background: linear-gradient(135deg, #e74c8a, #b73f99); }
  .ava-2 { background: linear-gradient(135deg, #4d7cff, #6edfff); }
  .ava-3 { background: linear-gradient(135deg, #f7b733, #fc4a1a); }
  .ava-4 { background: linear-gradient(135deg, #11998e, #38ef7d); }
  .ava-5 { background: linear-gradient(135deg, #834d9b, #d04ed6); }
  .ava-6 { background: linear-gradient(135deg, #ff9966, #ff5e62); }
  .review-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .review-meta {
    font-size: 12px;
    color: var(--ink-3);
  }

  /* Stat-style review (numbers card) */
  .review-stat {
    background: linear-gradient(135deg, rgba(77,124,255,0.10), rgba(110,223,255,0.04));
    border-color: var(--line-2);
    text-align: left;
    justify-content: space-between;
  }
  .review-stat-v {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .review-stat-v span {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-3);
    -webkit-text-fill-color: var(--ink-3);
    letter-spacing: 0;
  }
  .review-stat-l {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
  }
  .review-stat-l strong {
    color: var(--accent-2);
    font-weight: 600;
  }

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

  /* ---------- Language modal ---------- */
  .lang-modal {
    position: fixed; inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .lang-modal.show { display: flex; animation: lang-fade 0.25s ease-out; }
  .lang-modal-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
  }
  .lang-modal-card {
    position: relative;
    max-width: 460px;
    width: 100%;
    padding: 36px 32px;
    background: linear-gradient(180deg, #131418, #0E0F12);
    border: 1px solid rgba(110,223,255,0.2);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 30px 80px -20px rgba(77,124,255,0.4);
  }
  .lang-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-2);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .lang-modal-close:hover { color: var(--ink); border-color: var(--accent-2); }
  .lang-modal-icon {
    font-size: 48px;
    margin-bottom: 18px;
  }
  .lang-modal-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--ink);
  }
  .lang-modal-card p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 20px;
  }
  .lang-modal-meta {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(244,243,238,0.08);
    font-size: 12.5px;
    color: var(--ink-3);
    line-height: 1.5;
  }
  @keyframes lang-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes lang-card-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
  }
  .lang-modal.show .lang-modal-card {
    animation: lang-card-up 0.3s ease-out;
  }

  /* ---------- FAQ ---------- */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    max-width: 920px;
  }
  .faq-item {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s;
  }
  .faq-item:hover { border-color: rgba(110,223,255,0.2); }
  .faq-item[open] {
    background: linear-gradient(180deg, rgba(77,124,255,0.05), var(--bg-2));
    border-color: rgba(110,223,255,0.25);
  }
  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    font-size: 16.5px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover span:first-child { color: var(--accent-2); }
  .faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(110,223,255,0.3);
    position: relative;
    transition: all 0.25s;
  }
  .faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-2);
    transition: transform 0.25s;
  }
  .faq-icon::before {
    left: 50%; top: 50%;
    width: 12px; height: 1.5px;
    transform: translate(-50%, -50%);
  }
  .faq-icon::after {
    left: 50%; top: 50%;
    width: 1.5px; height: 12px;
    transform: translate(-50%, -50%);
  }
  .faq-item[open] .faq-icon {
    background: rgba(110,223,255,0.1);
    border-color: var(--accent-2);
  }
  .faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
  }
  .faq-answer {
    padding: 0 26px 24px;
    animation: faq-fade 0.3s ease-out;
  }
  .faq-answer p {
    margin: 0;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.65;
    max-width: 70ch;
  }
  .faq-answer p b {
    color: var(--ink);
    font-weight: 600;
  }
  @keyframes faq-fade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
  }
  @media (max-width: 600px) {
    .faq-item summary { padding: 18px 20px; font-size: 15px; gap: 16px; }
    .faq-answer { padding: 0 20px 20px; }
    .faq-answer p { font-size: 14px; }
  }

  /* ---------- CTA banner ---------- */
  .cta {
    padding: clamp(48px, 6vw, 72px);
    border-radius: 8px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  /* ---------- Pro CTA banner with ROI ---------- */
  .cta-pro {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(180deg, #0F1116 0%, #0A0B0F 100%);
    border: 1px solid rgba(110,223,255,0.12);
    overflow: hidden;
    isolation: isolate;
  }
  .cta-pro-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(900px 500px at 0% 0%, rgba(77,124,255,0.28), transparent 55%),
      radial-gradient(700px 600px at 100% 100%, rgba(110,223,255,0.18), transparent 55%),
      radial-gradient(500px 300px at 50% 100%, rgba(77,124,255,0.12), transparent 60%);
    pointer-events: none;
    z-index: -1;
  }
  .cta-pro-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(110,223,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(110,223,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  }
  .cta-pro-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    padding: clamp(40px, 5vw, 64px);
    align-items: center;
  }
  .cta-pro-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(110,223,255,0.06);
    border: 1px solid rgba(110,223,255,0.2);
    color: var(--accent-2);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .cta-pro-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-2);
    animation: cta-dot-pulse 2s ease-in-out infinite;
  }
  @keyframes cta-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }
  .cta-pro h2 {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 0 0 22px;
    color: var(--ink);
  }
  .cta-pro h2 .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-2);
  }
  .cta-pro p {
    color: var(--ink-2);
    font-size: 16.5px;
    line-height: 1.55;
    margin: 0 0 32px;
    max-width: 48ch;
  }
  .cta-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 36px;
  }
  .btn-ghost-link {
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed rgba(244,243,238,0.3);
    padding-bottom: 2px;
    transition: all 0.2s;
  }
  .btn-ghost-link:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
  }
  .cta-pro-trust {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(244,243,238,0.08);
  }
  .cta-pro-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .cta-pro-trust-item b {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .cta-pro-trust-item span {
    font-size: 12px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ROI Calculator */
  .roi-calc {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(110,223,255,0.16);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px -20px rgba(77,124,255,0.3);
  }
  .roi-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(244,243,238,0.06);
  }
  .roi-label {
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-2);
  }
  .roi-pulse {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .roi-pulse span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00FF88;
    box-shadow: 0 0 12px #00FF88;
    animation: cta-dot-pulse 1.5s ease-in-out infinite;
  }
  .roi-pulse::after {
    content: 'live';
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .roi-input {
    margin-bottom: 18px;
  }
  .roi-input label {
    display: block;
    font-size: 13px;
    color: var(--ink-2);
    margin-bottom: 10px;
  }
  .roi-niches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .roi-niche {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244,243,238,0.08);
    border-radius: 8px;
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
  }
  .roi-niche:hover {
    color: var(--ink);
    border-color: rgba(110,223,255,0.3);
  }
  .roi-niche.on {
    background: rgba(110,223,255,0.1);
    border-color: rgba(110,223,255,0.4);
    color: var(--accent-2);
  }
  .roi-slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .roi-slider-wrap input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 4px;
    background: rgba(244,243,238,0.12);
    outline: none;
  }
  .roi-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(110,223,255,0.15), 0 4px 12px rgba(77,124,255,0.4);
    transition: all 0.15s;
  }
  .roi-slider-wrap input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
  }
  .roi-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(110,223,255,0.15);
  }
  .roi-value {
    min-width: 78px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    text-align: right;
  }
  .roi-result {
    margin-top: 20px;
    padding: 16px 18px;
    background: rgba(77,124,255,0.08);
    border: 1px solid rgba(77,124,255,0.16);
    border-radius: 10px;
  }
  .roi-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
  }
  .roi-result-row span {
    color: var(--ink-2);
    font-size: 13px;
  }
  .roi-result-row b {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  .roi-result-row.big {
    border-top: 1px solid rgba(110,223,255,0.16);
    margin-top: 6px;
    padding-top: 12px;
  }
  .roi-result-row.big b {
    font-size: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .roi-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0A0B0F;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
  }
  .roi-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(77,124,255,0.5);
  }
  .roi-disclaimer {
    margin-top: 12px;
    font-size: 11.5px;
    color: var(--ink-3);
    text-align: center;
    line-height: 1.4;
  }

  /* ROI AI Insight */
  .roi-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .roi-spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(10,11,15,0.3);
    border-top-color: #0A0B0F;
    border-radius: 50%;
    animation: roi-spin 0.6s linear infinite;
  }
  @keyframes roi-spin { to { transform: rotate(360deg); } }

  .roi-insight {
    margin-top: 16px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(110,223,255,0.06), rgba(77,124,255,0.04));
    border: 1px solid rgba(110,223,255,0.18);
    border-radius: 12px;
    animation: faq-fade 0.4s ease-out;
  }
  .roi-insight-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(244,243,238,0.06);
  }
  .roi-insight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(110,223,255,0.1);
    border: 1px solid rgba(110,223,255,0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .roi-insight-model {
    font-size: 10.5px;
    color: var(--ink-3);
    letter-spacing: 0.04em;
  }
  .roi-insight-text {
    color: var(--ink-2);
    font-size: 13.5px;
    line-height: 1.65;
    white-space: pre-wrap;
  }
  .roi-insight-text b,
  .roi-insight-text strong {
    color: var(--ink);
    font-weight: 600;
  }
  .roi-tg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #229ED9, #40C4FF);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .roi-tg-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px rgba(34,158,217,0.5);
  }
  .roi-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--accent-2);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: roi-blink 0.7s step-end infinite;
  }
  @keyframes roi-blink {
    50% { opacity: 0; }
  }

  @media (max-width: 900px) {
    .cta-pro-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-pro-trust { flex-wrap: wrap; gap: 18px; }
    .cta-pro-trust-item b { font-size: 19px; }
  }
  @media (max-width: 520px) {
    .cta-pro-actions { flex-direction: column; align-items: stretch; }
    .cta-pro-actions .btn { text-align: center; }
    .btn-ghost-link { text-align: center; }
  }
  .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(700px 400px at 0% 0%, rgba(77,124,255,0.22), transparent 55%),
      radial-gradient(700px 400px at 100% 100%, rgba(110,223,255,0.16), transparent 55%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 36ch; }
  .cta h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 18px;
  }
  .cta h2 .it { color: var(--accent-2); }
  .cta p {
    color: var(--ink-2);
    font-size: 16px;
    margin: 0 0 28px;
    max-width: 50ch;
  }

  /* ---------- Form ---------- */
  .form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
  }
  .form-side h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 14px 0 18px;
    max-width: 18ch;
  }
  .form-side h2 .it { color: var(--accent-2); }
  .form-side p { color: var(--ink-2); font-size: 16px; max-width: 44ch; margin: 0 0 26px; }
  .form-meta a {
    display: flex; justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
  }
  .form-meta a:last-child { border-bottom: 1px solid var(--line); }
  .form-meta a .lab { color: var(--ink-3); }
  form {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-2);
  }
  .frow { margin-bottom: 16px; }
  .frow label {
    display: block;
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 6px;
  }
  .frow label span { color: var(--accent-2); }
  .frow input, .frow textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid rgba(244, 243, 238, 0.4);
    border-radius: 6px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    transition: border-color 0.2s;
  }
  .frow input:focus, .frow textarea:focus { outline: none; border-color: var(--accent); }
  .frow textarea { min-height: 90px; resize: vertical; }
  form button {
    width: 100%;
    padding: 14px 22px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: var(--on-accent);
    font-weight: 600;
    font-size: 15px;
    margin-top: 6px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
  }
  form button:hover { opacity: 0.9; }
  form .legal { color: var(--ink-3); font-size: 12px; margin-top: 10px; text-align: center; }
  @media (max-width: 880px) { .form-wrap { grid-template-columns: 1fr; } }

  /* ---------- Footer ---------- */
  footer {
    padding: 56px 0 36px;
    border-top: 1px solid var(--line);
    margin-top: 56px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .foot-brand p { color: var(--ink-2); font-size: 14px; max-width: 36ch; margin: 14px 0 0; }
  .foot-col h3 {
    font-size: 13px;
    color: var(--ink-3);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; }
  .foot-col li { margin-bottom: 4px; }
  /* display:block — інакше багаторядкове посилання у вузькій колонці має «мертву зону»
     між рядками: тап у центр потрапляє в <li>, а не в <a> (баг на мобільних) */
  .foot-col a { color: var(--ink); font-size: 14px; display: block; padding: 2px 0; }
  .foot-col a:hover { color: var(--accent-2); }
  .foot-bot {
    display: flex; justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--ink-3);
    font-size: 12px;
  }
  @media (max-width: 880px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-bot { flex-direction: column; gap: 10px; }
  }

  /* ---------- Reveal ---------- */
  .rv { opacity: 0; transform: translateY(18px); transition: opacity 0.7s, transform 0.7s; }
  .rv.on { opacity: 1; transform: none; }

  /* Floating telegram */
  .float-tg {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 40;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: var(--on-accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px -6px rgba(77,124,255,0.5);
    transition: transform 0.18s;
  }
  .float-tg:hover { transform: scale(1.06); }
  .float-tg svg { width: 22px; height: 22px; fill: currentColor; }

  /* Mobile sticky CTA */
  .m-cta {
    display: none;
    position: fixed;
    bottom: 14px; left: 14px; right: 14px;
    z-index: 30;
    padding: 14px 18px;
    border-radius: 10px;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: var(--on-accent);
    font-weight: 600;
    font-size: 14.5px;
    text-align: center;
    box-shadow: 0 8px 24px -6px rgba(77,124,255,0.5);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .m-cta.visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  @media (max-width: 720px) {
    .m-cta { display: block; }
    .float-tg { bottom: 80px; }
  }

  /* ---------- Таблиці (порівняння) ---------- */
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin-top: 8px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }
  thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--line-2);
    white-space: nowrap;
  }
  tbody td {
    padding: 14px 18px;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    line-height: 1.55;
  }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover td { background: rgba(110, 223, 255, 0.035); }
  tbody td:first-child { color: var(--ink); font-weight: 600; }
  table b, table strong { color: var(--ink); }
  @media (max-width: 640px) {
    table { font-size: 13.5px; }
    thead th, tbody td { padding: 11px 12px; }
  }


/* ── 08.09.2026: конверсійний шар статей (форма в статті, mid-CTA, Telegram-кнопка) ── */
.mid-cta .mid-cta-box{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:28px 32px;border-radius:18px;border:1px solid rgba(110,223,255,.22);background:linear-gradient(135deg,rgba(77,124,255,.10),rgba(110,223,255,.06));}
.mid-cta h3{font-size:clamp(20px,2.4vw,26px);margin:8px 0 8px;line-height:1.2}
.mid-cta p{color:var(--ink-2);margin:0;max-width:56ch}
.mid-cta .btn{flex:0 0 auto;white-space:nowrap}
@media (max-width:760px){.mid-cta .mid-cta-box{flex-direction:column;align-items:flex-start}.mid-cta .btn{width:100%;text-align:center}}
.art-cta .art-cta-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:start;padding:24px 0}
@media (max-width:860px){.art-cta .art-cta-grid{grid-template-columns:1fr;gap:24px}}
.art-cta-links{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.art-form{padding:26px;border-radius:18px;border:1px solid rgba(244,243,238,.12);background:rgba(255,255,255,.03)}
.art-form input{width:100%;padding:13px 14px;border-radius:10px;border:1px solid rgba(244,243,238,.12);background:rgba(255,255,255,.03);color:var(--ink);font:inherit;margin-bottom:12px}
.art-form input:focus{outline:none;border-color:var(--accent-2)}
.art-form button{width:100%;justify-content:center}
.art-status{display:none;margin-top:12px;font-size:14px}
.art-status.ok{display:block;color:var(--accent-2)}
.art-status.err{display:block;color:#ff8a8a}
.art-note{margin-top:12px;font-size:12px;color:var(--ink-2);opacity:.8}
.cf-hp{position:absolute;left:-9999px}
.tg-fab{position:fixed;right:18px;bottom:18px;z-index:60;display:inline-flex;align-items:center;gap:8px;padding:12px 16px;border-radius:999px;background:linear-gradient(135deg,var(--accent),var(--accent-2));color:#0B0B0D;font-weight:700;font-size:14px;text-decoration:none;box-shadow:0 10px 30px rgba(77,124,255,.35);transition:transform .2s}
.tg-fab:hover{transform:translateY(-2px)}
.tg-fab svg{width:16px;height:16px}
@media (max-width:600px){.tg-fab span{display:none}.tg-fab{padding:14px}}
