    :root {
      color-scheme: dark;
      --bg: #070b14;
      --bg-elev: #0a1120;
      --surface: rgba(12, 18, 32, 0.72);
      --surface-strong: rgba(9, 14, 26, 0.92);
      --text: #f4f7ff;
      --muted: #a6b3ca;
      --line: rgba(173, 205, 255, 0.2);
      --accent: #39d9ff;
      --accent-alt: #79f7c5;
      --accent-soft: rgba(57, 217, 255, 0.18);
      --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --space-1: 0.5rem;
      --space-2: 0.75rem;
      --space-3: 1rem;
      --space-4: 1.5rem;
      --space-5: 2rem;
      --space-6: 3rem;
      --space-7: 5rem;
      --max-w: 1200px;
      --header-h: 76px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(1500px 700px at 20% -20%, rgba(57, 217, 255, 0.1), transparent 70%),
        radial-gradient(1200px 600px at 110% 0%, rgba(121, 247, 197, 0.07), transparent 70%),
        var(--bg);
      line-height: 1.55;
      min-height: 100vh;
      text-wrap: pretty;
    }

    body.is-locked {
      overflow: hidden;
    }

    a {
      color: inherit;
    }

    p {
      margin: 0 0 var(--space-3);
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: #fff;
      color: #000;
      padding: 0.5rem 0.75rem;
      border-radius: 0 0 8px 0;
      z-index: 9999;
    }

    .skip-link:focus {
      top: 0;
    }

    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--max-w), calc(100% - 2rem));
      margin-inline: auto;
    }

    @media (min-width: 768px) {
      .container {
        width: min(var(--max-w), calc(100% - 4rem));
      }

      .hero .container {
        width: min(var(--max-w), calc(100% - 6rem));
      }
    }

    .section {
      padding: var(--space-7) 0;
      position: relative;
    }

    .section-title {
      margin: 0 0 0.75rem;
      font-size: clamp(1.65rem, 1.15rem + 1.8vw, 2.6rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      margin: 0 0 var(--space-5);
      color: var(--muted);
      max-width: 66ch;
      font-size: clamp(1rem, 0.95rem + 0.35vw, 1.2rem);
    }

    .eyebrow {
      margin: 0 0 0.7rem;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .decor-layer {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.26;
      transform: translate3d(0, 0, 0);
      will-change: transform;
    }

    .blob-1 {
      width: 260px;
      height: 260px;
      top: 8%;
      left: -5%;
      background: radial-gradient(circle, rgba(57, 217, 255, 0.85), transparent 72%);
    }

    .blob-2 {
      width: 300px;
      height: 300px;
      top: 45%;
      right: -8%;
      background: radial-gradient(circle, rgba(121, 247, 197, 0.72), transparent 72%);
    }

    .blob-3 {
      width: 220px;
      height: 220px;
      bottom: 8%;
      left: 24%;
      background: radial-gradient(circle, rgba(92, 138, 255, 0.62), transparent 72%);
    }

    .cursor-follower {
      position: fixed;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57, 217, 255, 0.2), rgba(57, 217, 255, 0));
      filter: blur(6px);
      opacity: 0;
      pointer-events: none;
      z-index: 4;
      transform: translate3d(-9999px, -9999px, 0);
      transition: opacity 0.35s ease;
      will-change: transform;
    }

    .cursor-follower.is-visible {
      opacity: 1;
    }

    .cursor-follower.is-active {
      opacity: 0.75;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(7, 11, 20, 0.72);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: var(--space-2);
    }

    .brand {
      text-decoration: none;
      display: inline-grid;
      gap: 0.2rem;
      color: var(--text);
    }

    .brand-main {
      font-weight: 750;
      letter-spacing: -0.02em;
      font-size: 1.2rem;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 0.74rem;
    }

    .menu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      cursor: pointer;
    }

    .header-mobile-cta {
      justify-self: end;
      margin-left: auto;
    }

    .nav {
      grid-column: 1 / -1;
      position: relative;
    }

    .nav-list {
      margin-top: 0.6rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--surface-strong);
      padding: 0.5rem;
      display: grid;
      gap: 0.18rem;
      max-height: 0;
      opacity: 0;
      pointer-events: none;
      overflow: hidden;
      transform: translateY(-8px);
      transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease;
    }

    .nav.is-open .nav-list {
      max-height: 420px;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--muted);
      padding: 0.48rem 0.55rem;
      border-radius: 8px;
      font-size: 0.92rem;
      line-height: 1.2;
      white-space: nowrap;
      transition: color 0.22s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0.55rem;
      right: 0.55rem;
      bottom: 0.2rem;
      height: 1px;
      background: linear-gradient(to right, rgba(57, 217, 255, 0), rgba(57, 217, 255, 0.95), rgba(57, 217, 255, 0));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.24s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--text);
    }

    .nav-link:hover::after,
    .nav-link:focus-visible::after {
      transform: scaleX(1);
    }

    .header-tools {
      display: none;
      align-items: center;
      gap: var(--space-3);
      margin-left: auto;
    }

    .header-contact {
      display: none;
      align-items: center;
      gap: var(--space-3);
    }

    .header-contact a {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.86rem;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.34rem 0.62rem;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .header-contact a:hover,
    .header-contact a:focus-visible {
      color: var(--text);
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.04);
    }

    .icon {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }

    .btn {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--surface-strong);
      color: var(--text);
      text-decoration: none;
      border-radius: 999px;
      padding: 0.78rem 1.18rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      font-size: 0.95rem;
      font-weight: 640;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
      cursor: pointer;
      text-align: center;
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(57, 217, 255, 0.42);
    }

    .btn-primary {
      background:
        linear-gradient(120deg, rgba(57, 217, 255, 0.24), rgba(121, 247, 197, 0.2)),
        rgba(10, 19, 35, 0.9);
      border-color: rgba(57, 217, 255, 0.44);
      box-shadow: 0 0 0 0 rgba(57, 217, 255, 0.2);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      box-shadow: 0 0 0 4px rgba(57, 217, 255, 0.16), 0 10px 24px rgba(57, 217, 255, 0.2);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
    }

    .btn-small {
      padding: 0.62rem 0.95rem;
      font-size: 0.85rem;
    }

    .ripple {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      pointer-events: none;
      background: rgba(255, 255, 255, 0.55);
      animation: ripple 620ms linear forwards;
    }

    @keyframes ripple {
      to {
        transform: scale(3.3);
        opacity: 0;
      }
    }

    .hero {
      min-height: max(760px, 100svh);
      display: flex;
      align-items: center;
      padding: calc(var(--header-h) + 3.2rem) 0 5.2rem;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      --mx: 50%;
      --my: 35%;
    }

    .hero .container {
      width: min(var(--max-w), calc(100% - 3rem));
    }

    .hero-gradient {
      position: absolute;
      inset: -30% -20%;
      background:
        radial-gradient(circle at 10% 30%, rgba(57, 217, 255, 0.22), transparent 55%),
        radial-gradient(circle at 84% 28%, rgba(121, 247, 197, 0.18), transparent 56%),
        radial-gradient(circle at 56% 85%, rgba(68, 109, 245, 0.18), transparent 56%);
      animation: heroShift 18s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: -15%;
      pointer-events: none;
      background: radial-gradient(240px circle at var(--mx) var(--my), rgba(57, 217, 255, 0.2), rgba(57, 217, 255, 0) 72%);
      z-index: -1;
    }

    @keyframes heroShift {
      0% {
        transform: translate3d(-2%, 0, 0) scale(1);
      }

      100% {
        transform: translate3d(2%, -3%, 0) scale(1.05);
      }
    }

    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0.72;
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      gap: var(--space-5);
      width: 100%;
      align-items: center;
    }

    .hero h1 {
      margin: 0 0 var(--space-3);
      font-size: clamp(2rem, 1.25rem + 3.2vw, 3.6rem);
      line-height: 1.08;
      letter-spacing: -0.032em;
      max-width: 18ch;
    }

    .hero-sub {
      color: var(--muted);
      margin-bottom: var(--space-4);
      max-width: 60ch;
      font-size: clamp(1rem, 0.95rem + 0.5vw, 1.25rem);
    }

    .badge-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: var(--space-4);
    }

    .badge {
      padding: 0.42rem 0.78rem;
      border: 1px solid rgba(173, 205, 255, 0.24);
      border-radius: 999px;
      font-size: 0.84rem;
      color: #d4ddf0;
      background: rgba(255, 255, 255, 0.03);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
    }

    .hero-trust {
      margin-top: 0.9rem;
      color: #d0d9ed;
      font-size: 0.92rem;
    }

    .flow-panel {
      background: linear-gradient(160deg, rgba(20, 31, 55, 0.78), rgba(9, 13, 25, 0.86));
      border: 1px solid rgba(173, 205, 255, 0.24);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: clamp(1rem, 0.7rem + 1.1vw, 1.7rem);
      position: relative;
      overflow: hidden;
    }

    .flow-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(57, 217, 255, 0.11), transparent 45%, rgba(121, 247, 197, 0.08));
      pointer-events: none;
    }

    .flow-title {
      margin: 0 0 0.9rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
    }

    .flow-list {
      display: grid;
      gap: 0.7rem;
      position: relative;
      z-index: 1;
    }

    .flow-node {
      position: relative;
      border: 1px solid rgba(173, 205, 255, 0.2);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.02);
      padding: 0.75rem 0.85rem;
      transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    }

    .flow-node + .flow-node::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 0.7rem;
      left: 1.2rem;
      top: -0.72rem;
      background: rgba(173, 205, 255, 0.28);
    }

    .flow-node.is-active {
      border-color: rgba(57, 217, 255, 0.5);
      background: rgba(57, 217, 255, 0.08);
      transform: translateX(3px);
    }

    .flow-node h3 {
      margin: 0 0 0.25rem;
      font-size: 0.9rem;
      line-height: 1.2;
    }

    .flow-node p {
      margin: 0;
      color: #d5def2;
      font-size: 0.88rem;
    }

    .typing-line {
      min-height: 1.35rem;
      display: inline-flex;
      align-items: center;
      gap: 0.16rem;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    .caret {
      width: 0.45rem;
      height: 1rem;
      border-radius: 3px;
      background: rgba(57, 217, 255, 0.9);
      animation: blink 0.9s step-end infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    .solutions-grid,
    .cases-grid,
    .pricing-grid,
    .train-grid {
      display: grid;
      gap: var(--space-3);
    }

    .glass-card {
      background: linear-gradient(160deg, rgba(20, 30, 50, 0.6), rgba(10, 14, 25, 0.74));
      border: 1px solid rgba(173, 205, 255, 0.2);
      border-radius: var(--radius-md);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    }

    .tilt-card {
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      --lift: 0px;
      transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
      transition: transform 0.22s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
      will-change: transform;
    }

    .tilt-card:hover {
      --lift: -4px;
      border-color: rgba(57, 217, 255, 0.34);
      box-shadow: 0 20px 38px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(57, 217, 255, 0.08) inset;
    }

    .solution-card {
      padding: 1.1rem;
    }

    .solution-head {
      display: flex;
      align-items: center;
      gap: 0.72rem;
      margin-bottom: 0.72rem;
    }

    .solution-icon {
      width: 2.1rem;
      height: 2.1rem;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(57, 217, 255, 0.13);
      border: 1px solid rgba(57, 217, 255, 0.3);
    }

    .solution-icon svg {
      width: 1.1rem;
      height: 1.1rem;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .solution-card:hover .solution-icon svg path {
      stroke-dasharray: 30;
      animation: strokePulse 0.7s linear;
    }

    @keyframes strokePulse {
      from {
        stroke-dashoffset: 30;
      }

      to {
        stroke-dashoffset: 0;
      }
    }

    .solution-card h3 {
      margin: 0;
      font-size: 1.1rem;
      letter-spacing: -0.01em;
    }

    .solution-list {
      margin: 0 0 0.8rem;
      display: grid;
      gap: 0.33rem;
    }

    .solution-list li {
      color: #d5def1;
      font-size: 0.92rem;
      padding-left: 1.08rem;
      position: relative;
    }

    .solution-list li::before {
      content: "";
      width: 0.34rem;
      height: 0.34rem;
      border-radius: 50%;
      background: var(--accent);
      position: absolute;
      left: 0.2rem;
      top: 0.52rem;
    }

    .result-tag {
      display: inline-flex;
      border: 1px solid rgba(121, 247, 197, 0.35);
      color: #d8f5eb;
      background: rgba(121, 247, 197, 0.09);
      border-radius: 999px;
      padding: 0.3rem 0.58rem;
      font-size: 0.78rem;
    }

    .train-card {
      padding: 1.2rem;
    }

    .train-card h3 {
      margin: 0 0 0.5rem;
      font-size: 1.1rem;
    }

    .train-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .mini-plan {
      margin-top: var(--space-4);
      padding: 1rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(173, 205, 255, 0.2);
      background: rgba(12, 19, 33, 0.52);
    }

    .mini-plan h3 {
      margin: 0 0 0.65rem;
      font-size: 1.02rem;
    }

    .mini-plan ul {
      display: grid;
      gap: 0.56rem;
    }

    .mini-plan li {
      opacity: 0;
      transform: translateY(8px);
      transition: transform 0.42s ease, opacity 0.42s ease;
      transition-delay: calc(var(--i) * 95ms);
      border-left: 2px solid rgba(57, 217, 255, 0.5);
      padding-left: 0.62rem;
      color: #d5def1;
      font-size: 0.9rem;
    }

    .mini-plan.is-visible li {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-block {
      margin-top: var(--space-5);
    }

    .timeline-wrap {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: var(--space-3);
      align-items: start;
    }

    .timeline-line {
      width: 2px;
      height: clamp(360px, 55vh, 560px);
      background: rgba(173, 205, 255, 0.24);
      border-radius: 999px;
      position: sticky;
      top: calc(var(--header-h) + 20px);
      overflow: hidden;
      margin-inline: auto;
    }

    .timeline-progress {
      display: block;
      height: 100%;
      width: 100%;
      background: linear-gradient(to bottom, var(--accent), var(--accent-alt));
      transform: scaleY(0);
      transform-origin: top;
      will-change: transform;
    }

    .timeline-items {
      display: grid;
      gap: var(--space-3);
    }

    .timeline-item {
      position: relative;
      padding: 1rem 1rem 1rem 1.15rem;
      border: 1px solid rgba(173, 205, 255, 0.2);
      border-radius: var(--radius-md);
      background: rgba(11, 18, 32, 0.7);
    }

    .timeline-item::before {
      content: "";
      width: 0.65rem;
      height: 0.65rem;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(57, 217, 255, 0.15);
      position: absolute;
      left: -1.56rem;
      top: 1.16rem;
    }

    .timeline-item h3 {
      margin: 0 0 0.4rem;
      font-size: 1.05rem;
      letter-spacing: -0.01em;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .cases-grid .case-card {
      padding: 1rem;
    }

    .case-card h3 {
      margin: 0 0 0.4rem;
      font-size: 1.05rem;
    }

    .case-card p {
      margin: 0 0 0.75rem;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .case-card .tag {
      display: inline-flex;
      font-size: 0.77rem;
      color: #cfe8ff;
      border: 1px solid rgba(125, 204, 255, 0.35);
      border-radius: 999px;
      padding: 0.24rem 0.58rem;
      background: rgba(57, 217, 255, 0.08);
    }

    .before-after {
      margin-top: var(--space-5);
      display: grid;
      gap: var(--space-3);
    }

    .before-after .panel {
      min-height: 220px;
      padding: 1rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(173, 205, 255, 0.24);
      position: relative;
      overflow: hidden;
    }

    .panel h3 {
      margin: 0 0 0.7rem;
      font-size: 1rem;
    }

    .panel.before {
      background:
        linear-gradient(120deg, rgba(255, 140, 140, 0.13), rgba(255, 209, 120, 0.09)),
        rgba(18, 14, 20, 0.72);
    }

    .panel.before::before,
    .panel.before::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 80px;
      border-radius: 10px;
      background: rgba(255, 245, 206, 0.12);
      border: 1px solid rgba(255, 222, 160, 0.22);
      transform: rotate(-7deg);
    }

    .panel.before::before {
      right: 12%;
      top: 22%;
    }

    .panel.before::after {
      left: 16%;
      bottom: 14%;
      transform: rotate(6deg);
    }

    .panel.after {
      background:
        linear-gradient(130deg, rgba(57, 217, 255, 0.12), rgba(121, 247, 197, 0.07)),
        rgba(8, 14, 25, 0.82);
    }

    .panel-list {
      display: grid;
      gap: 0.55rem;
    }

    .panel-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #d9e2f5;
      font-size: 0.92rem;
    }

    .dot-ok {
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 50%;
      background: var(--accent-alt);
      box-shadow: 0 0 0 4px rgba(121, 247, 197, 0.16);
    }

    .pricing-card {
      padding: 1.1rem;
    }

    .pricing-card h3 {
      margin: 0 0 0.45rem;
      font-size: 1.15rem;
    }

    .pricing-card p {
      margin: 0 0 0.8rem;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .pricing-card ul {
      display: grid;
      gap: 0.42rem;
      margin: 0 0 1rem;
    }

    .pricing-card li {
      color: #d5def2;
      font-size: 0.92rem;
      padding-left: 1.08rem;
      position: relative;
    }

    .pricing-card li::before {
      content: "";
      width: 0.33rem;
      height: 0.33rem;
      border-radius: 50%;
      background: var(--accent);
      position: absolute;
      left: 0.2rem;
      top: 0.55rem;
    }

    .pricing-note {
      margin-top: 0.8rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .faq-list {
      display: grid;
      gap: 0.6rem;
    }

    .faq-item {
      border: 1px solid rgba(173, 205, 255, 0.2);
      background: rgba(11, 18, 32, 0.68);
      border-radius: 14px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: transparent;
      color: var(--text);
      border: 0;
      padding: 0.95rem 1rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .faq-question .sign {
      color: var(--accent);
      font-weight: 700;
      font-size: 1.1rem;
      flex: 0 0 auto;
    }

    .faq-answer {
      padding: 0 1rem 0.95rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .contact-wrap {
      display: grid;
      gap: var(--space-4);
    }

    .contact-form {
      padding: 1.15rem;
    }

    .field-grid {
      display: grid;
      gap: 0.9rem;
    }

    .field label {
      display: inline-block;
      margin-bottom: 0.36rem;
      font-size: 0.9rem;
      color: #dbe4f7;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(173, 205, 255, 0.28);
      border-radius: 11px;
      padding: 0.72rem 0.78rem;
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      font: inherit;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #90a0ba;
    }

    .field textarea {
      min-height: 140px;
      resize: vertical;
    }

    .field input[aria-invalid="true"],
    .field textarea[aria-invalid="true"] {
      border-color: rgba(255, 129, 129, 0.88);
      background: rgba(255, 129, 129, 0.06);
    }

    .error-text {
      margin-top: 0.28rem;
      color: #ffc2c2;
      font-size: 0.82rem;
      min-height: 1em;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.8rem;
    }

    .contact-direct {
      margin-top: 1rem;
      display: grid;
      gap: 0.45rem;
      color: var(--muted);
    }

    .contact-direct a {
      color: #d9e2f7;
      text-decoration-color: rgba(57, 217, 255, 0.44);
      text-underline-offset: 0.2em;
    }

    .form-success {
      margin-top: 0.75rem;
      color: #cef7e4;
      font-size: 0.9rem;
      padding: 0.56rem 0.68rem;
      border-radius: 10px;
      background: rgba(121, 247, 197, 0.12);
      border: 1px solid rgba(121, 247, 197, 0.32);
    }

    .diagnostic-cta {
      padding: 1.2rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(57, 217, 255, 0.34);
      background:
        linear-gradient(130deg, rgba(57, 217, 255, 0.15), rgba(121, 247, 197, 0.11)),
        rgba(9, 14, 25, 0.8);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
    }

    .diagnostic-cta h3 {
      margin: 0 0 0.35rem;
      font-size: 1.13rem;
    }

    .diagnostic-cta p {
      margin: 0 0 0.8rem;
      color: #d2ddef;
      font-size: 0.93rem;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      padding: 1.4rem 0 2rem;
      background: rgba(5, 8, 14, 0.65);
    }

    .footer-wrap {
      display: grid;
      gap: 0.82rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-links,
    .footer-contact {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .footer-links a,
    .footer-contact a {
      color: #d9e2f7;
      text-decoration: none;
    }

    .footer-link-btn {
      color: #d9e2f7;
      background: transparent;
      border: 0;
      padding: 0;
      font: inherit;
      cursor: pointer;
      text-decoration: none;
    }

    .footer-links a:hover,
    .footer-contact a:hover,
    .footer-links a:focus-visible,
    .footer-contact a:focus-visible {
      text-decoration: underline;
      text-decoration-color: rgba(57, 217, 255, 0.55);
      text-underline-offset: 0.18em;
    }

    .footer-link-btn:hover,
    .footer-link-btn:focus-visible {
      text-decoration: underline;
      text-decoration-color: rgba(57, 217, 255, 0.55);
      text-underline-offset: 0.18em;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 130;
      display: grid;
      place-items: center;
      padding: 1rem;
    }

    .modal[hidden] {
      display: none;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(3, 6, 12, 0.74);
      backdrop-filter: blur(4px);
    }

    .modal-card {
      position: relative;
      width: min(860px, 100%);
      max-height: calc(100svh - 2rem);
      overflow: auto;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(160deg, rgba(18, 29, 51, 0.9), rgba(9, 15, 27, 0.95));
      border: 1px solid rgba(173, 205, 255, 0.26);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    }

    .modal-head {
      position: sticky;
      top: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-2);
      padding: 0.95rem 1rem;
      border-bottom: 1px solid rgba(173, 205, 255, 0.2);
      background: rgba(9, 15, 27, 0.88);
      backdrop-filter: blur(8px);
    }

    .modal-title {
      margin: 0;
      font-size: clamp(1.1rem, 1rem + 0.8vw, 1.45rem);
      letter-spacing: -0.01em;
    }

    .modal-close {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(173, 205, 255, 0.3);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
    }

    .modal-close:hover,
    .modal-close:focus-visible {
      border-color: rgba(57, 217, 255, 0.55);
      background: rgba(57, 217, 255, 0.1);
    }

    .modal-body {
      padding: 1rem;
      color: #d5dff2;
      display: grid;
      gap: 0.75rem;
    }

    .modal-updated {
      margin: 0;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .modal-body h3 {
      margin: 0.4rem 0 0.15rem;
      font-size: 1rem;
      color: #edf2ff;
    }

    .modal-body p {
      margin: 0;
      color: #d5dff2;
      font-size: 0.94rem;
    }

    .modal-body ul {
      list-style: disc;
      margin: 0 0 0.1rem;
      padding-left: 1.2rem;
      display: grid;
      gap: 0.35rem;
    }

    .modal-body li {
      color: #d5dff2;
      font-size: 0.93rem;
    }

    .modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.2rem;
    }

    .cookie-inline-status {
      margin-top: 0.2rem;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .cookie-settings {
      display: grid;
      gap: 0.55rem;
    }

    .cookie-row {
      border: 1px solid rgba(173, 205, 255, 0.24);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      padding: 0.7rem 0.78rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.9rem;
    }

    .cookie-row-disabled {
      opacity: 0.75;
    }

    .cookie-row-text {
      display: grid;
      gap: 0.2rem;
      flex: 1;
    }

    .cookie-row-text strong {
      font-size: 0.95rem;
      color: #edf2ff;
      line-height: 1.2;
    }

    .cookie-row-text span {
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.3;
    }

    .cookie-switch {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .cookie-switch input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      pointer-events: none;
    }

    .cookie-switch-ui {
      width: 44px;
      height: 24px;
      border-radius: 999px;
      border: 1px solid rgba(173, 205, 255, 0.35);
      background: rgba(173, 205, 255, 0.17);
      position: relative;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .cookie-switch-ui::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #f4f7ff;
      transition: transform 0.2s ease;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    }

    .cookie-switch input:checked + .cookie-switch-ui {
      background: rgba(57, 217, 255, 0.28);
      border-color: rgba(57, 217, 255, 0.75);
    }

    .cookie-switch input:checked + .cookie-switch-ui::after {
      transform: translateX(20px);
    }

    .cookie-switch input:focus-visible + .cookie-switch-ui {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: 1rem;
      transform: translateX(-50%);
      width: min(920px, calc(100% - 1.25rem));
      z-index: 120;
      padding: 0.9rem;
      border-radius: 14px;
      border: 1px solid rgba(173, 205, 255, 0.24);
      background: rgba(9, 15, 27, 0.95);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
      display: grid;
      gap: 0.8rem;
    }

    .cookie-banner[hidden] {
      display: none;
    }

    .cookie-banner p {
      margin: 0;
      color: #d7e1f4;
      font-size: 0.91rem;
    }

    .cookie-banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.56rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px) scale(0.99);
      transition: opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1), transform 0.66s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    @media (min-width: 780px) {
      .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .train-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .before-after {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .field-span-2 {
        grid-column: 1 / -1;
      }
    }

    @media (min-width: 980px) {
      .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: var(--space-2);
      }

      .header-mobile-cta {
        display: none;
      }

      .menu-toggle {
        display: none;
      }

      .nav {
        grid-column: auto;
      }

      .nav-list {
        margin-top: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        padding: 0;
        max-height: none;
        opacity: 1;
        pointer-events: auto;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.45rem;
        flex-wrap: nowrap;
      }

      .header-tools {
        display: flex;
        gap: var(--space-2);
      }

      .hero-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: var(--space-6);
      }

      .hero .container {
        width: min(var(--max-w), calc(100% - 8rem));
      }

      .hero-copy {
        grid-column: span 7;
      }

      .hero-visual {
        grid-column: span 5;
      }

      .solutions-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .solution-card {
        grid-column: span 3;
      }

      .solution-card:nth-child(4),
      .solution-card:nth-child(5) {
        grid-column: span 3;
      }

      .cases-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .contact-wrap {
        grid-template-columns: 1.1fr 0.9fr;
      }
    }

    @media (min-width: 980px) and (max-width: 1139px) {
      .brand-sub {
        display: none;
      }

      .nav-link {
        padding: 0.45rem 0.46rem;
        font-size: 0.88rem;
      }
    }

    @media (min-width: 1140px) {
      .header-contact {
        display: flex;
      }
    }

    @media (min-width: 1180px) {
      .solution-card:nth-child(5) {
        grid-column: 2 / span 4;
      }
    }

    @media (max-width: 979px) {
      .header-tools .btn {
        display: none;
      }

      .hero {
        padding: calc(var(--header-h) + 2.1rem) 0 4.8rem;
      }

      .cursor-follower {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .hero-gradient,
      .caret {
        animation: none;
      }

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

      .tilt-card,
      .btn {
        transition: border-color 0.2s ease, background 0.2s ease;
      }

      .blob {
        transform: none !important;
      }
    }
