    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    :root {
      --black: #080808;
      --dark: #0f0f0f;
      --card: #141414;
      --border: rgba(255, 255, 255, 0.08);
      --accent: #b8ff00;
      --white: #f5f5f5;
      --gray: #888;
      --fh: 'Unbounded', sans-serif;
      --fb: 'Manrope', sans-serif;
      --r: 16px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--fb);
      overflow-x: hidden;
    }

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

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

    ::-webkit-scrollbar-thumb {
      background: var(--accent);
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(24px, 4vw, 48px);
      padding: 22px clamp(20px, 4vw, 48px);
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: box-shadow .3s, background .3s;
    }

    nav.scrolled {
      background: rgba(0, 0, 0, 0.65);
      box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: clamp(24px, 4vw, 48px);
    }

    .nav-social {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: background .2s, transform .2s, color .2s;
    }

    .nav-social a:hover {
      background: var(--accent);
      color: var(--black);
      transform: scale(1.08);
    }

    .nav-social a svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .logo {
      font-family: var(--fh);
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.02em;
      transition: opacity .2s, transform .2s;
    }
    .logo .logo-img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo:hover {
      opacity: .95;
      transform: scale(1.02);
    }

    .logo span {
      color: var(--accent);
      text-shadow: 0 0 20px rgba(184, 255, 0, .25);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(20px, 2.5vw, 32px);
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-family: var(--fb);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
    }

    .nav-links a:hover {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lang-switch button {
      font-family: var(--fb);
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
      background: none;
      border: none;
      padding: 8px 14px;
      border-radius: 16px;
      cursor: pointer;
      transition: color .2s, background .2s;
    }

    .lang-switch button:hover {
      color: var(--white);
    }

    .lang-switch button.active {
      color: var(--black);
      background: var(--accent);
    }

    .nav-cta {
      background: rgba(184, 255, 0, 0.05);
      color: var(--accent);
      border: 1px solid rgba(184, 255, 0, 0.3);
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 11px 25px;
      border-radius: 24px;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--accent);
      color: var(--black);
      opacity: 1;
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(184, 255, 0, 0.35);
    }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }

    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all .3s;
    }

    /* ─── MOBILE MENU ─── */
    .mob-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 300;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 80px var(--r) 40px;
      gap: 0;
      overflow-y: auto;
    }

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

    .mob-menu-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--fh);
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 40px;
    }

    .mob-menu-logo .logo-img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .mob-menu-logo span {
      color: var(--accent);
    }

    .mob-lang-wrap {
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
      width: 100%;
    }

    .mob-lang-wrap .lang-switch {
      justify-content: flex-start;
    }

    .mob-menu a {
      font-family: var(--fh);
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      width: 100%;
      transition: color .2s;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mob-menu a:last-of-type {
      border-bottom: none;
    }

    .mob-menu a::after {
      content: '→';
      font-size: 16px;
      opacity: .3;
      transition: opacity .2s, transform .2s;
    }

    .mob-menu a:hover {
      color: var(--accent);
    }

    .mob-menu a:hover::after {
      opacity: 1;
      transform: translateX(4px);
    }

    .mob-close {
      position: absolute;
      top: 18px;
      right: var(--r);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--gray);
      cursor: pointer;
      background: none;
      border: none;
    }

    .mob-cta-wrap {
      margin-top: 32px;
      width: 100%;
    }

    .mob-cta-btn {
      display: block;
      background: var(--accent);
      color: var(--black);
      font-family: var(--fh);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 18px;
      text-align: center;
      text-decoration: none;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 120px 60px 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #050505;
    }

    .hero-video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .6;
    }

    .video-ph {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 255, 0, .04) 0%, transparent 70%);
    }

    .video-ph-box {
      width: 80px;
      height: 80px;
      border: 1.5px dashed rgba(184, 255, 0, .2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-ph span {
      font-family: var(--fh);
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(184, 255, 0, .28);
      text-transform: uppercase;
      text-align: center;
      padding: 0 20px;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(8, 8, 8, .45) 0%, rgba(8, 8, 8, .2) 50%, rgba(8, 8, 8, .12) 100%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
      background-size: 60px 60px;
    }

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

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(184, 255, 0, .09);
      border: 1px solid rgba(184, 255, 0, .2);
      color: var(--accent);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      width: fit-content;
      margin-bottom: 18px;
      animation: fup .8s ease both;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    .hero-pretitle {
      font-family: var(--fb);
      font-size: clamp(12px, 1.3vw, 16px);
      font-weight: 400;
      color: var(--white);
      margin-bottom: 6px;
      letter-spacing: 0.5px;
      animation: fup .8s .05s ease both;
    }

    .hero-pretitle span {
      color: var(--accent);
      font-weight: 600;
    }

    .hero h1 {
      font-family: var(--fh);
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 900;
      line-height: 0.98;
      letter-spacing: -2px;
      max-width: 800px;
      animation: fup .8s .1s ease both;
      text-transform: uppercase;
      color: var(--accent);
    }

    .hero h1 em {
      font-style: normal;
      color: var(--white);
    }

    .hero-subtitle {
      font-family: var(--fb);
      font-size: clamp(14px, 1.7vw, 18px);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 24px;
      animation: fup .8s .15s ease both;
    }

    .hero-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
      max-width: 520px;
      margin-top: 18px;
      animation: fup .8s .2s ease both;
    }

    .hero-sub strong {
      color: var(--white);
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 28px;
      animation: fup .8s .3s ease both;
    }

    .hero .btn-primary,
    .hero .btn-outline {
      font-size: 10px;
      padding: 12px 24px;
    }

    .hero .btn-outline .arrow-icon {
      width: 16px;
      height: 16px;
    }

    .btn-outline {
      color: var(--white);
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 17px 34px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: border-color .2s, background .2s, transform .2s;
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-2px);
    }

    .btn-outline .arrow-icon {
      width: 20px;
      height: 20px;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--black);
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 17px 34px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity .2s, transform .2s;
    }

    .btn-primary:hover {
      opacity: .85;
      transform: translateY(-2px);
    }

    .btn-secondary {
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: .65;
      transition: opacity .2s;
    }

    .btn-secondary:hover {
      opacity: 1;
    }

    .btn-secondary::after {
      content: '→';
      transition: transform .2s;
    }

    .btn-secondary:hover::after {
      transform: translateX(4px);
    }

    @keyframes fup {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      background: var(--accent);
      padding: 14px 0;
      overflow: hidden;
    }

    .marquee-inner {
      display: flex;
      animation: mar 22s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--black);
      padding: 0 34px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .marquee-item::after {
      content: '●';
      font-size: 5px;
    }

    @keyframes mar {
      from {
        transform: translateX(0)
      }

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

    /* ─── SECTIONS ─── */
    section {
      padding: 88px 60px;
    }

    .section-tag {
      font-size: 10px;
      font-weight: 600;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: var(--fh);
      font-size: clamp(24px, 3vw, 48px);
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1.1;
      max-width: 660px;
    }

    .section-sub {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
      max-width: 460px;
      margin-top: 12px;
    }

    .section-sub-pricing {
      text-align: center;
      max-width: none;
      margin-top: 16px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-head-wrap {
      text-align: center;
      margin-bottom: 52px;
      position: relative;
      z-index: 1;
    }

    .pricing-head-wrap .section-tag {
      margin-bottom: 14px;
    }

    .pricing-head-wrap .section-title {
      max-width: none;
      margin-bottom: 16px;
    }

    .pricing-highlight {
      display: inline-block;
      background: rgba(184, 255, 0, 0.14);
      border: 1px solid rgba(184, 255, 0, 0.35);
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      padding: 10px 24px;
      border-radius: 12px;
      letter-spacing: 0.02em;
    }

    .section-head-center {
      text-align: center;
      margin-bottom: 52px;
    }
    .section-head-center .section-tag {
      display: block;
    }
    .section-head-center .section-title {
      max-width: none;
      margin-left: auto;
      margin-right: auto;
    }
    .section-head-center .section-sub {
      max-width: 520px;
      margin-top: 16px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
    }
    #how .section-head-center {
      margin-top: 32px;
      margin-bottom: 24px;
    }

    /* ─── PRICING SECTION ANIMATED BG ─── */
    #pricing {
      position: relative;
      overflow: hidden;
    }

    #pricing::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(125deg, var(--black) 0%, var(--dark) 35%, #0a0d08 70%, var(--black) 100%);
      background-size: 400% 400%;
      animation: pricingBgShift 18s ease infinite;
    }

    #pricing::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(184, 255, 0, .06) 0%, transparent 50%),
                  radial-gradient(ellipse 60% 80% at 80% 80%, rgba(184, 255, 0, .04) 0%, transparent 45%),
                  radial-gradient(ellipse 50% 50% at 20% 60%, rgba(184, 255, 0, .03) 0%, transparent 40%);
      animation: pricingGlow 12s ease-in-out infinite;
    }

    @keyframes pricingBgShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes pricingGlow {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    #pricing .section-tag,
    #pricing .section-title,
    #pricing .section-sub-pricing,
    #pricing .price-grid {
      position: relative;
      z-index: 1;
    }

    /* ─── SHADER BG (общий фон для How + Process) ─── */
    .shader-bg-wrap {
      position: relative;
    }

    .shader-bg-wrap .shader-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    .shader-bg-wrap .section-with-neural {
      background: transparent;
    }

    .shader-bg-wrap .section-bg-neural {
      display: none;
    }

    /* ─── NEURAL BG (sections How + Process) ─── */
    .section-with-neural {
      position: relative;
      overflow: hidden;
    }

    .section-with-neural .section-bg-neural {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.5;
    }

    .section-with-neural .section-bg-neural svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .section-with-neural .section-bg-neural .nn-node {
      fill: rgba(184, 255, 0, 0.12);
      animation: nn-pulse 4s ease-in-out infinite;
    }

    .section-with-neural .section-bg-neural .nn-node:nth-child(odd) {
      animation-delay: 1s;
    }

    .section-with-neural .section-bg-neural .nn-line {
      stroke: rgba(184, 255, 0, 0.08);
      stroke-width: 0.5;
      fill: none;
      stroke-dasharray: 4 8;
      animation: nn-dash 12s linear infinite;
    }

    @keyframes nn-pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @keyframes nn-dash {
      to { stroke-dashoffset: -24; }
    }

    .section-with-neural .section-tag,
    .section-with-neural .section-title,
    .section-with-neural .section-sub,
    .section-with-neural .steps,
    .section-with-neural .process-grid,
    .section-with-neural .how-carousel {
      position: relative;
      z-index: 1;
    }

    /* ─── HOW CAROUSEL (большая карточка, заголовок и описание над картинками) ─── */
    .how-carousel {
      margin-top: 28px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    .how-carousel-card {
      overflow: hidden;
      border-radius: 28px;
      border: none;
      background: transparent;
      transition: box-shadow .3s;
    }
    .how-carousel-card:hover {
      box-shadow: none;
    }
    .how-carousel-inner {
      padding: 36px 48px 32px;
      min-height: 460px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    .how-carousel-text {
      max-width: 640px;
      width: 100%;
      min-height: 130px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 14px;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
      transition: opacity 0.22s ease;
    }
    .how-carousel-images {
      transition: opacity 0.22s ease;
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .how-carousel-inner.how-fade-out .how-carousel-text,
    .how-carousel-inner.how-fade-out .how-carousel-images {
      opacity: 0;
    }
    .how-carousel-inner.how-fade-in .how-carousel-text,
    .how-carousel-inner.how-fade-in .how-carousel-images {
      opacity: 1;
    }
    .how-step-title {
      font-family: var(--fh);
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 700;
      letter-spacing: -.02em;
      color: var(--accent);
      line-height: 1.2;
      margin: 0;
    }
    .how-step-desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--white);
      margin: 0;
      max-width: 52ch;
    }
    .how-carousel-images .how-img {
      border-radius: 12px;
      border: 1px dashed rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      object-fit: cover;
      width: 100%;
      max-width: 520px;
      height: 300px;
      display: block;
      margin: 0 auto;
    }
    .how-carousel-images .how-img[src=""],
    .how-carousel-images .how-img:not([src]) {
      min-height: 300px;
    }
    .how-img-center {
      display: block;
      margin: 0 auto;
    }
    .how-carousel-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 24px;
      width: 100%;
    }
    .how-nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      border: none;
      border-radius: 12px;
      background: rgba(255, 255, 255, .06);
      color: var(--gray);
      font-family: var(--fb);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: background .25s, color .25s;
    }
    .how-nav-btn:hover {
      background: rgba(184, 255, 0, .1);
      color: var(--white);
    }
    .how-nav-btn.active {
      background: var(--accent);
      color: var(--black);
    }
    .how-nav-num {
      font-weight: 700;
      font-family: var(--fh);
    }

    /* ─── STEPS (legacy, скрыто) ─── */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 52px;
      background: var(--border);
    }

    .step {
      background: var(--dark);
      padding: 40px 32px 40px;
      position: relative;
      overflow: hidden;
      transition: background .35s, transform .35s ease, box-shadow .35s ease;
      display: flex;
      flex-direction: column;
    }

    .step:hover {
      background: var(--card);
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .35), 0 0 0 1px rgba(184, 255, 0, .12);
    }

    .step.reveal.visible { animation: stepReveal .6s ease both; }
    .step.reveal.visible:nth-child(1) { animation-delay: .05s; }
    .step.reveal.visible:nth-child(2) { animation-delay: .15s; }
    .step.reveal.visible:nth-child(3) { animation-delay: .25s; }
    .step.reveal.visible:nth-child(4) { animation-delay: .35s; }
    @keyframes stepReveal {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .step.reveal.visible:hover { transform: translateY(-8px); }

    /* big ghost number – fixed position so it never crowds content */
    .step::before {
      content: attr(data-num);
      position: absolute;
      top: 12px;
      right: 16px;
      font-family: var(--fh);
      font-size: 64px;
      font-weight: 900;
      color: rgba(184, 255, 0, .04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .step-icon {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      background: rgba(184, 255, 0, .07);
      border: 1px solid rgba(184, 255, 0, .22);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: transform .35s ease, box-shadow .35s;
    }

    .step:hover .step-icon {
      transform: scale(1.08);
      box-shadow: 0 0 20px rgba(184, 255, 0, .2);
    }

    .step h3 {
      font-family: var(--fh);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: -.3px;
      margin-bottom: 12px;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }

    .step p {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    /* ─── TOOLS ─── */
    .tools-section {
      background: var(--dark);
      padding-left: 0 !important;
      padding-right: 0 !important;
      overflow: hidden;
    }

    .tools-inner {
      padding: 88px 60px 48px;
    }

    .tools-header-ai {
      text-align: center;
      padding: 88px 60px 40px !important;
    }

    .tools-title-ai {
      font-family: var(--fh);
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 700;
      letter-spacing: -1px;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.15;
    }

    .tools-title-accent {
      color: var(--accent);
    }

    .tools-sub-ai {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.5;
      max-width: 420px;
      margin: 0 auto;
    }

    .tools-tape-wrap {
      position: relative;
      overflow: hidden;
      padding: 12px 0 88px;
      background: var(--dark);
    }

    .tools-tape-wrap::before,
    .tools-tape-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }

    .tools-tape-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--dark), transparent);
    }

    .tools-tape-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--dark), transparent);
    }

    .tools-tape {
      display: flex;
      gap: 24px;
      align-items: center;
      animation: toolsMar 45s linear infinite;
      width: max-content;
    }

    .tools-tape:hover {
      animation-play-state: paused;
    }

    @keyframes toolsMar {
      from {
        transform: translateX(0)
      }

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

    .tool-logo-card {
      flex-shrink: 0;
      width: 200px;
      height: 200px;
      background: var(--card);
      border: 1px solid rgba(184, 255, 0, 0.15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
      cursor: default;
    }

    .tool-logo-card:hover {
      transform: scale(1.04);
      border-color: rgba(184, 255, 0, 0.5);
      background: rgba(184, 255, 0, .06);
      box-shadow: 0 0 0 2px var(--accent), 0 12px 32px rgba(0, 0, 0, .35);
    }

    .tool-logo-card img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .tool-logo-card.text-card {
      background: rgba(184, 255, 0, .08);
      border-color: rgba(184, 255, 0, .25);
    }

    .tool-logo-card.text-card:hover {
      border-color: var(--accent);
      background: rgba(184, 255, 0, .12);
    }

    .tool-logo-card.text-card span {
      font-family: var(--fh);
      font-size: 9px;
      font-weight: 700;
      color: var(--accent);
      text-align: center;
      letter-spacing: -.3px;
      line-height: 1.3;
      text-transform: uppercase;
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: var(--black);
    }

    .faq-list {
      margin-top: 52px;
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--border);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      color: var(--white);
    }

    .faq-q:hover .faq-q-text {
      color: var(--accent);
    }

    .faq-q-text {
      font-family: var(--fh);
      font-size: clamp(13px, 1.4vw, 16px);
      font-weight: 600;
      letter-spacing: -.3px;
      line-height: 1.3;
      transition: color .2s;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .25s, background .25s;
    }

    .faq-icon svg {
      transition: transform .3s;
    }

    .faq-item.open .faq-icon {
      border-color: var(--accent);
      background: rgba(184, 255, 0, .07);
    }

    .faq-item.open .faq-icon svg {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
    }

    .faq-a p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.85;
      padding-bottom: 28px;
      max-width: 720px;
    }

    .faq-item.open .faq-a {
      max-height: 500px;
    }

    /* ─── VIDEO CARDS shared ─── */
    .video-card {
      background: var(--card);
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: border-color .3s, transform .3s;
    }

    .video-card:hover {
      border-color: rgba(184, 255, 0, .38);
      transform: translateY(-3px);
    }

    .video-placeholder {
      width: 100%;
      height: 100%;
      min-height: 160px;
      background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
    }

    /* Портфолио: контейнер под формат 9:16 */
    .portfolio-grid .video-placeholder {
      min-height: 0;
    }

    .video-placeholder video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* Видео в портфолио — сохраняем 9:16 (вертикаль) */
    .portfolio-grid .video-placeholder video {
      object-fit: cover;
      object-position: center;
    }

    .video-placeholder .play-btn,
    .video-placeholder .video-label {
      position: relative;
      z-index: 1;
    }

    .play-btn {
      width: 52px;
      height: 52px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .2s;
      flex-shrink: 0;
    }

    .play-btn::after {
      content: '';
      border: 0 solid transparent;
      border-left: 15px solid var(--black);
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      margin-left: 4px;
    }

    .video-card:hover .play-btn {
      transform: scale(1.1);
    }

    .video-label {
      font-family: var(--fh);
      font-size: 10px;
      font-weight: 600;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      padding: 0 12px;
    }

    .video-card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px;
      background: linear-gradient(transparent, rgba(0, 0, 0, .88));
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .video-card-info .portfolio-video-controls {
      margin-left: auto;
      background: none;
      padding: 0;
      position: static;
    }

    .video-tag {
      display: inline-block;
      background: var(--accent);
      color: var(--black);
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 3px 8px;
      margin-bottom: 5px;
    }

    .video-title {
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 600;
    }

    /* Портфолио: нижний оверлей как на фото — заголовок и описание, наши цвета */
    #portfolio .video-card-info {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 20px 18px 18px;
      background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.85) 100%);
      gap: 6px;
    }
    #portfolio .video-title {
      font-family: var(--fh);
      font-size: clamp(14px, 1.8vw, 17px);
      font-weight: 700;
      color: var(--accent);
      line-height: 1.25;
      margin: 0;
    }
    #portfolio .video-desc {
      font-family: var(--fb);
      font-size: 13px;
      font-weight: 400;
      color: var(--white);
      line-height: 1.4;
      opacity: 0.95;
    }

    /* ─── PORTFOLIO ─── */
    .videos-section {
      background: var(--dark);
    }

    .videos-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* Сетка портфолио: как на референсе — 3 колонки, карточки 16:9, скругления */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .portfolio-grid .video-card {
      width: 100%;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      min-height: 0;
    }
    .portfolio-grid .video-placeholder {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .portfolio-grid .video-placeholder video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* Круглая кнопка play по центру (как на фото) */
    .portfolio-play-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      transition: background .2s, transform .2s;
    }
    .portfolio-play-overlay::after {
      content: '';
      margin-left: 4px;
      border: 0 solid transparent;
      border-left: 16px solid var(--white);
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
    }
    .portfolio-grid .video-card:hover .portfolio-play-overlay {
      background: rgba(0, 0, 0, 0.7);
      transform: translate(-50%, -50%) scale(1.06);
    }

    /* Сначала 6 видео, ещё 2 по кнопке «Показать ещё» */
    #portfolio .video-card.portfolio-card-more {
      display: none;
    }
    #portfolio.portfolio-expanded .video-card.portfolio-card-more {
      display: block;
    }
    .portfolio-show-more-wrap {
      text-align: center;
      margin-top: 52px;
    }
    .portfolio-show-more-btn {
      position: relative;
      display: inline-block;
      padding: 8px 28px;
      border: 1px solid rgba(184, 255, 0, 0.25);
      border-radius: 9999px;
      background: rgba(184, 255, 0, 0.06);
      color: var(--accent);
      font-family: var(--fb);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, border-color .2s;
    }
    .portfolio-show-more-btn:hover {
      background: transparent;
      border-color: rgba(184, 255, 0, 0.4);
    }
    .portfolio-show-more-btn::before,
    .portfolio-show-more-btn::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 75%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none;
    }
    .portfolio-show-more-btn::before {
      top: 0;
    }
    .portfolio-show-more-btn::after {
      bottom: 0;
    }
    .portfolio-show-more-btn:hover::before {
      opacity: 1;
    }
    .portfolio-show-more-btn:hover::after {
      opacity: 0.35;
    }

    /* Модальное окно портфолио: чёрный фон 50%, видео по центру со звуком */
    .portfolio-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, visibility .25s;
    }
    .portfolio-modal.is-open {
      opacity: 1;
      visibility: visible;
    }
    .portfolio-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      cursor: pointer;
    }
    .portfolio-modal-inner {
      position: relative;
      z-index: 1;
      max-width: 90vw;
      max-height: 90vh;
      aspect-ratio: 9 / 16;
    }
    .portfolio-modal-video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #000;
      border-radius: 8px;
    }
    .portfolio-modal-close {
      position: absolute;
      top: -40px;
      right: 0;
      width: 36px;
      height: 36px;
      border: none;
      background: rgba(184, 255, 0, 0.2);
      color: var(--accent);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transition: background .2s, color .2s;
    }
    .portfolio-modal-close:hover {
      background: var(--accent);
      color: var(--black);
    }

    /* ─── CASES ─── */
    .cases-section {
      background: var(--black);
    }

    /*
  2 rows × 3 cols — clean with no orphans.
  Row1: wide(2) | sq(1)
  Row2: sq | sq | sq
*/
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 230px 230px;
      gap: 10px;
      margin-top: 44px;
    }

    .cg-wide {
      grid-column: span 2;
    }

    /* ─── PRICING ─── */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 52px;
    }

    .price-card {
      background: linear-gradient(145deg, rgba(184, 255, 0, .06) 0%, rgba(20, 20, 20, .95) 50%);
      border: 1px solid rgba(184, 255, 0, .15);
      border-radius: 20px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease, border-color .3s;
    }

    .price-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 255, 0, .08) 0%, transparent 60%);
      pointer-events: none;
    }

    .price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(184, 255, 0, .2);
      border-color: rgba(184, 255, 0, .35);
    }

    .price-card.featured {
      border-color: rgba(184, 255, 0, .3);
      box-shadow: 0 0 30px rgba(184, 255, 0, .08);
    }

    .price-card.featured:hover {
      box-shadow: 0 20px 50px rgba(0, 0, 0, .45), 0 0 40px rgba(184, 255, 0, .12);
    }

    .price-badge {
      position: absolute;
      top: 20px;
      right: 24px;
      background: var(--accent);
      color: var(--black);
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 5px 10px;
      border-radius: 6px;
    }

    .price-name {
      font-family: var(--fh);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -.5px;
      color: var(--accent);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .price-amount {
      font-family: var(--fh);
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 4px;
      color: var(--accent);
      position: relative;
      z-index: 1;
    }

    .price-amount sup {
      font-size: 14px;
      font-weight: 600;
      vertical-align: super;
      opacity: .9;
    }

    .price-period {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }

    .price-features li {
      font-size: 13px;
      color: rgba(255, 255, 255, .85);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      line-height: 1.5;
    }

    .price-features li::before {
      content: '';
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8ff00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
      background-size: 14px;
    }

    .price-card .btn-price-order {
      display: block;
      width: 100%;
      text-align: center;
      background: linear-gradient(135deg, var(--accent) 0%, rgba(184, 255, 0, .85) 100%);
      color: var(--black);
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 16px 24px;
      border-radius: 14px;
      text-decoration: none;
      transition: transform .25s, box-shadow .25s, opacity .25s;
      position: relative;
      z-index: 1;
    }

    .price-card .btn-price-order:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(184, 255, 0, .35);
      opacity: .95;
    }

    .btn-outline {
      display: block;
      text-align: center;
      border: 1px solid var(--border);
      color: var(--white);
      font-family: var(--fh);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 14px;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }

    .btn-outline:hover {
      border-color: var(--accent);
      background: rgba(184, 255, 0, .05);
    }

    .price-card.featured .btn-outline {
      background: var(--accent);
      color: var(--black);
      border-color: var(--accent);
    }

    .price-card.featured .btn-outline:hover {
      opacity: .85;
    }

    /* ─── REVIEWS ─── */
    .reviews-section {
      background: var(--dark);
      overflow: hidden;
    }

    .reviews-tape-wrap {
      position: relative;
      margin-top: 44px;
      overflow: hidden;
    }

    .reviews-tape-wrap::before,
    .reviews-tape-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    .reviews-tape-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--dark), transparent);
    }

    .reviews-tape-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--dark), transparent);
    }

    .reviews-tape {
      display: flex;
      gap: 14px;
      animation: toolsMar 44s linear infinite;
      width: max-content;
      padding: 4px 0 12px;
    }

    .reviews-tape:hover {
      animation-play-state: paused;
    }

    .review-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 26px 24px 22px;
      width: 310px;
      flex-shrink: 0;
      transition: border-color .3s;
    }

    .review-card:hover {
      border-color: rgba(184, 255, 0, .22);
    }

    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 12px;
    }

    .review-stars span {
      color: var(--accent);
      font-size: 13px;
    }

    .review-text {
      font-size: 12px;
      color: rgba(245, 245, 245, .82);
      line-height: 1.7;
      margin-bottom: 18px;
      font-style: italic;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 10px;
    }

    .review-author strong {
      display: block;
      font-size: 11px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .review-author span {
      font-size: 10px;
      color: var(--gray);
    }

    .review-stat .val {
      font-family: var(--fh);
      font-size: 17px;
      font-weight: 700;
      color: var(--accent);
      text-align: right;
    }

    .review-stat .lbl {
      font-size: 9px;
      color: var(--gray);
      text-align: right;
    }

    /* ─── WHY US (три колонки: факты | фото | получаете) ─── */
    .why-section {
      background: var(--black);
      padding: 64px 60px 72px;
    }

    .why-section .section-head-center {
      margin-bottom: 32px;
    }

    .why-labels-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 20px;
      align-items: center;
    }

    .why-label-cell {
      font-family: var(--fh);
      font-size: clamp(11px, 1.2vw, 13px);
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--gray);
    }

    .why-label-cell:last-child {
      text-align: right;
    }

    .why-label-center {
      text-align: center;
    }

    .why-section-title {
      font-family: var(--fh);
      font-weight: 900;
      font-size: clamp(28px, 3.5vw, 42px);
      letter-spacing: -0.5px;
      color: var(--white);
      text-transform: uppercase;
    }

    .why-three-col {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      align-items: stretch;
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-col {
      display: flex;
      flex-direction: column;
    }

    .why-col.why-facts,
    .why-col.why-benefits {
      justify-content: center;
    }

    .why-fact-line {
      font-size: clamp(17px, 2.2vw, 24px);
      line-height: 1.45;
      margin-bottom: 18px;
    }

    .why-fact-line:last-of-type {
      margin-bottom: 24px;
    }

    .why-fact-main {
      font-family: var(--fh);
      font-weight: 900;
      color: var(--accent);
      font-size: clamp(22px, 2.8vw, 32px);
      letter-spacing: -0.02em;
    }

    .why-fact-line .why-fact-plain {
      color: var(--accent);
      font-weight: 600;
      font-size: inherit;
      opacity: 0.9;
    }

    .why-fact-line .why-fact-desc {
      font-family: var(--fb);
      font-size: inherit;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.88);
    }

    .why-fact-cycle {
      margin-top: 8px;
      margin-bottom: 0;
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--gray);
      line-height: 1.5;
    }

    .why-photo-col {
      align-items: center;
      justify-content: center;
    }

    .why-photo-placeholder {
      position: relative;
      width: 100%;
      max-width: 420px;
      min-height: 380px;
      aspect-ratio: 3 / 4;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-photo-placeholder .why-photo-img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .why-photo-placeholder .why-photo-img:not([src]),
    .why-photo-placeholder .why-photo-img[src=""] {
      display: none;
    }

    .why-photo-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(180deg, rgba(184, 255, 0, 0.03) 0%, var(--dark) 100%);
    }

    .why-photo-placeholder:has(.why-photo-img[src]:not([src=""])) .why-photo-fallback {
      display: none;
    }

    .why-photo-fallback-txt {
      font-family: var(--fh);
      font-size: 10px;
      letter-spacing: 0.2em;
      color: rgba(184, 255, 0, 0.35);
      text-transform: uppercase;
    }

    .why-benefits {
      gap: 0;
    }

    .why-benefit {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
      font-size: clamp(15px, 1.8vw, 18px);
      line-height: 1.5;
    }

    .why-benefit:last-child {
      margin-bottom: 0;
    }

    .why-benefit-text {
      flex: 1;
    }

    .why-benefit-head {
      font-family: var(--fh);
      font-weight: 800;
      color: var(--accent);
      font-size: clamp(16px, 2vw, 20px);
      letter-spacing: -0.02em;
    }

    .why-benefit .why-benefit-plain {
      color: var(--accent);
      font-weight: 600;
      opacity: 0.9;
    }

    .why-benefit-desc {
      font-family: var(--fb);
      font-weight: 400;
      font-size: clamp(14px, 1.65vw, 17px);
      color: rgba(255, 255, 255, 0.88);
    }

    .why-benefit-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(184, 255, 0, 0.12);
      border: 1px solid rgba(184, 255, 0, 0.3);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-benefit-icon svg {
      transform: rotate(-135deg);
    }

    /* ─── PROCESS ─── */
    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 80px;
      background: var(--border);
    }

    .process-item {
      background: var(--dark);
      padding: 40px;
      display: flex;
      gap: 40px;
      align-items: flex-start;
      transition: background .35s, transform .35s ease, box-shadow .35s ease;
    }

    .process-item:hover {
      background: var(--card);
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .3), 0 0 0 1px rgba(184, 255, 0, .1);
    }

    .process-item.reveal.visible { animation: processReveal .5s ease both; }
    .process-item.reveal.visible:nth-child(1) { animation-delay: .08s; }
    .process-item.reveal.visible:nth-child(2) { animation-delay: .18s; }
    .process-item.reveal.visible:nth-child(3) { animation-delay: .28s; }
    .process-item.reveal.visible:nth-child(4) { animation-delay: .38s; }
    @keyframes processReveal {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .process-item.reveal.visible:hover { transform: translateY(-6px); }

    .process-num {
      transition: color .35s, transform .35s;
    }
    .process-item:hover .process-num {
      color: rgba(184, 255, 0, .2);
      transform: scale(1.05);
    }

    .process-num {
      font-family: var(--fh);
      font-size: 40px;
      font-weight: 900;
      color: rgba(184, 255, 0, .1);
      letter-spacing: -2px;
      line-height: 1;
      flex-shrink: 0;
      width: 52px;
      margin-right: 8px;
    }

    .process-content h3 {
      font-family: var(--fh);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -.4px;
      margin-bottom: 9px;
    }

    .process-content p {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ─── CTA ─── */
    .cta-section {
      background: var(--accent);
      padding: 88px 60px;
      text-align: center;
    }

    .cta-section .section-tag {
      color: rgba(0, 0, 0, .48);
    }
    .cta-section .section-head-center .section-sub {
      color: rgba(0, 0, 0, .7);
    }

    .cta-section h2 {
      font-family: var(--fh);
      font-size: clamp(28px, 4vw, 58px);
      font-weight: 900;
      color: var(--black);
      letter-spacing: -2px;
      line-height: 1;
      max-width: 720px;
      margin: 0 auto 18px;
    }

    .cta-section>p {
      font-size: 15px;
      color: rgba(0, 0, 0, .58);
      margin: 0 auto 40px;
      max-width: 460px;
    }

    .cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-dark {
      background: var(--black);
      color: var(--accent);
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 16px 36px;
      text-decoration: none;
      display: inline-block;
      transition: opacity .2s;
    }

    .btn-dark:hover {
      opacity: .8;
    }

    .btn-tg {
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
      font-family: var(--fh);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 14px 36px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s;
    }

    .btn-tg:hover {
      background: rgba(0, 0, 0, .1);
    }

    /* ─── CONTACT ─── */
    .contact-section {
      background: var(--dark);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      margin-top: 52px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 9px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gray);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--black);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--white);
      font-family: var(--fb);
      font-size: 14px;
      padding: 13px 14px;
      outline: none;
      transition: border-color .2s;
      resize: none;
      -webkit-appearance: none;
      appearance: none;
      border-radius: 0;
    }
    .form-group input:hover,
    .form-group textarea:hover,
    .form-group select:hover {
      border-color: rgba(184, 255, 0, 0.5);
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: rgba(184, 255, 0, .5);
    }

    .form-group textarea {
      height: 110px;
    }

    .contact-info h3 {
      font-family: var(--fh);
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -.5px;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .contact-info>p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 26px;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px 16px;
      border: 1px solid var(--border);
      margin-bottom: 9px;
      text-decoration: none;
      color: var(--white);
      transition: border-color .2s;
    }

    .contact-method:hover {
      border-color: rgba(184, 255, 0, .4);
    }

    .contact-method-icon {
      width: 36px;
      height: 36px;
      background: rgba(184, 255, 0, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-method-text strong {
      display: block;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .contact-method-text span {
      font-size: 10px;
      color: var(--gray);
    }

    /* ─── FOOTER ─── */
    footer {
      padding: 36px 60px 56px;
      border-top: 1px solid var(--border);
      background: var(--black);
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 28px;
      flex-wrap: wrap;
      gap: 28px;
    }

    .footer-logo {
      font-family: var(--fh);
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -.5px;
      margin-bottom: 9px;
    }

    .footer-logo span {
      color: var(--accent);
    }

    .footer-desc {
      font-size: 11px;
      color: var(--gray);
      max-width: 270px;
      line-height: 1.6;
    }

    .footer-links {
      display: flex;
      gap: 48px;
    }

    .footer-col h4 {
      font-family: var(--fh);
      font-size: 9px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gray);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      color: var(--white);
      text-decoration: none;
      font-size: 11px;
      margin-bottom: 8px;
      opacity: .6;
      transition: opacity .2s;
    }

    .footer-col a:hover {
      opacity: 1;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      font-size: 10px;
      color: var(--gray);
      flex-wrap: wrap;
      gap: 10px;
    }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .5s ease, transform .5s ease;
    }

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

    /* ══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1100px)
══════════════════════════════════════════ */
    @media (max-width: 1100px) {
      nav {
        padding: 20px 28px;
      }

      section {
        padding: 68px 28px;
      }

      .hero {
        padding: 0 28px 72px;
      }

      .tools-inner {
        padding: 68px 28px 40px;
      }

      .tools-tape-wrap {
        padding-bottom: 68px;
      }

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

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

      .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 210px 210px;
      }

      .why-labels-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 16px;
      }

      .why-label-cell:last-child {
        text-align: left;
      }

      .why-three-col {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .why-section {
        padding: 48px 28px 56px;
      }

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

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

      .how-carousel {
        max-width: 100%;
      }
      .how-carousel-inner {
        min-height: 380px;
        padding: 32px var(--r) 24px;
      }
      .how-carousel-text {
        max-width: 100%;
      }
      .how-carousel-text { margin-bottom: 24px; min-height: 110px; }
      .how-step-title { font-size: clamp(1.35rem, 4vw, 1.75rem); }
      .how-step-desc { font-size: 14px; }
      .how-carousel-images .how-img { max-width: 100%; height: 240px; }
      .how-carousel-nav {
        margin-top: 20px;
        gap: 8px;
      }
      .how-nav-btn {
        padding: 10px 14px;
        font-size: 12px;
      }

      footer {
        padding: 32px 28px 44px;
      }

      .footer-links {
        gap: 32px;
      }

      .cta-section {
        padding: 72px 28px;
      }
    }

    /* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   Mobile-first UX principles:
   · min touch target 44×44px
   · 16px side padding (iOS safe)
   · readable font-sizes (≥14px body)
   · single-column layouts
   · no horizontal scroll
══════════════════════════════════════════ */
    @media (max-width: 768px) {
      :root {
        --r: 20px;
      }

      /* NAV */
      nav {
        padding: 18px var(--r);
      }

      .nav-links,
      .nav-cta,
      .nav-social {
        display: none;
      }

      .lang-switch {
        margin-right: 0;
      }

      .nav-burger {
        display: flex;
      }

      /* SECTIONS */
      section {
        padding: 56px var(--r);
      }

      /* HERO */
      .hero {
        padding: 0 var(--r) 60px;
        min-height: 100svh;
      }

      .hero h1 {
        font-size: clamp(32px, 9vw, 52px);
        letter-spacing: -1px;
      }

      .hero-sub {
        font-size: 15px;
        margin-top: 18px;
      }

      .hero-actions {
        margin-top: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }

      .btn-primary {
        width: 100%;
        text-align: center;
        padding: 18px;
        font-size: 12px;
      }

      .btn-secondary {
        font-size: 14px;
      }

      /* MARQUEE */
      .marquee-item {
        font-size: 10px;
        padding: 0 22px;
      }

      /* TOOLS */
      .tools-inner {
        padding: 56px var(--r) 36px;
      }

      .tools-tape-wrap {
        padding-bottom: 56px;
      }

      .tools-tape-wrap::before,
      .tools-tape-wrap::after {
        width: 40px;
      }

      /* STEPS */
      .steps {
        grid-template-columns: 1fr;
        gap: 2px;
      }

      .step {
        padding: 28px var(--r);
      }

      .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
      }

      .step h3 {
        font-size: 13px;
      }

      .step p {
        font-size: 13px;
      }

      /* PORTFOLIO */
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      /* CASES */
      .cases-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
      }

      .cg-wide {
        grid-column: span 2;
      }

      /* PRICING */
      .price-grid {
        grid-template-columns: 1fr;
        gap: 2px;
      }

      .price-card {
        padding: 32px 24px;
      }

      .price-amount {
        font-size: 40px;
      }

      /* REVIEWS */
      .reviews-tape-wrap::before,
      .reviews-tape-wrap::after {
        width: 28px;
      }

      .review-card {
        width: 260px;
        padding: 20px;
      }

      /* WHY */
      .why-labels-row {
        grid-template-columns: 1fr;
      }

      .why-three-col {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .why-section {
        padding: 40px var(--r) 48px;
      }

      .why-photo-placeholder {
        max-width: 280px;
        min-height: 320px;
        margin: 0 auto;
      }

      /* PROCESS */
      .process-grid {
        grid-template-columns: 1fr;
      }

      .process-item {
        padding: 28px 24px;
      }

      /* CTA */
      .cta-section {
        padding: 60px var(--r);
      }

      .cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-dark,
      .btn-tg {
        text-align: center;
        justify-content: center;
        padding: 18px;
        font-size: 12px;
      }

      /* CONTACT */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        font-size: 16px;
        /* prevent iOS zoom */
      }

      .contact-method {
        padding: 16px;
      }

      .contact-method-icon {
        width: 44px;
        height: 44px;
      }

      /* FOOTER */
      footer {
        padding: 28px var(--r) 40px;
      }

      .footer-top {
        flex-direction: column;
      }

      .footer-links {
        flex-wrap: wrap;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .videos-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .section-title {
        font-size: clamp(22px, 6.5vw, 36px);
      }

      /* TOOLS LOGOS mobile */
      .tools-tape-wrap::before,
      .tools-tape-wrap::after {
        width: 40px;
      }

      .tool-logo-card {
        width: 140px;
        height: 140px;
        padding: 18px;
      }

      /* FAQ mobile */
      .faq-q {
        padding: 22px 0;
        gap: 16px;
      }

      .faq-q-text {
        font-size: 14px;
      }

      .faq-icon {
        width: 32px;
        height: 32px;
      }
    }

    /* ══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤ 420px)
══════════════════════════════════════════ */
    @media (max-width: 420px) {
      .hero h1 {
        font-size: clamp(28px, 8vw, 38px);
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
      }

      .cg-wide {
        grid-column: span 1;
      }

      .price-amount {
        font-size: 36px;
      }

      .review-card {
        width: 240px;
      }
    }

    /* ─── PROMO: аккуратные блоки, нормальные размеры ─── */
    .promo-split {
      background: var(--black);
      padding: 72px 60px 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .promo-split::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 70% at 100% 50%, rgba(184, 255, 0, .04) 0%, transparent 65%);
      pointer-events: none;
    }

    .promo-split-content {
      position: relative;
      z-index: 1;
    }

    .promo-split-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(184, 255, 0, .09);
      border: 1px solid rgba(184, 255, 0, .22);
      color: var(--accent);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 7px 14px;
      margin-bottom: 28px;
    }

    .promo-split-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    .promo-split h2 {
      font-family: var(--fh);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .promo-split h2 span {
      display: block;
      color: var(--accent);
      font-size: clamp(22px, 2.8vw, 38px);
      margin-bottom: 2px;
    }

    .promo-split h2 em {
      font-style: normal;
      color: var(--white);
      font-size: clamp(26px, 3.2vw, 44px);
    }

    .promo-split-lead {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .promo-split-body {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 38px;
      max-width: 480px;
    }

    .promo-split-body strong {
      color: var(--white);
      font-weight: 600;
    }

    .promo-split-body a {
      color: var(--accent);
      text-decoration: none;
    }

    .promo-split-body a:hover {
      text-decoration: underline;
    }

    /* видео справа: нормальная пропорция 4/3 */
    .promo-split-video {
      position: relative;
      z-index: 1;
      aspect-ratio: 4/3;
      max-height: 380px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .promo-split-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .promo-split-video .vid-ph {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
    }

    .promo-split-video .vid-ph-box {
      width: 72px;
      height: 72px;
      border: 1.5px dashed rgba(184, 255, 0, .25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .promo-split-video .vid-ph span {
      font-family: var(--fh);
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(184, 255, 0, .3);
      text-transform: uppercase;
      text-align: center;
      padding: 0 20px;
    }

    .promo-video-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      background: linear-gradient(transparent, rgba(0, 0, 0, .85));
      pointer-events: none;
    }
    .promo-video-controls .promo-ctrl-btn {
      pointer-events: auto;
      width: 40px;
      height: 40px;
      border: none;
      background: rgba(184, 255, 0, .2);
      color: var(--accent);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      transition: background .2s, color .2s, transform .15s;
    }
    .promo-video-controls .promo-ctrl-btn:hover {
      background: var(--accent);
      color: var(--black);
      transform: scale(1.05);
    }
    .promo-video-controls .promo-ctrl-btn svg {
      width: 20px;
      height: 20px;
    }
    .promo-split-video .promo-video-controls,
    .promo-wide-inner .promo-video-controls {
      position: absolute;
    }

    /* CGI: видео пол-вкладки слева, тёмная панель справа, крупный текст как на фото */
    .promo-wide {
      background: var(--black);
      padding: 0 60px 64px;
      position: relative;
    }

    .promo-wide-inner {
      display: grid;
      grid-template-columns: 0.42fr 0.58fr;
      gap: 0;
      min-height: 420px;
      max-height: 520px;
      border-radius: 0;
      overflow: hidden;
      border: none;
      background: transparent;
    }

    .promo-wide-video {
      position: relative;
      min-height: 380px;
    }

    .promo-wide-inner .promo-wide-video video {
      width: 100%;
      height: 100%;
      min-height: 100%;
      position: absolute;
      inset: 0;
      object-fit: cover;
      display: block;
    }

    .promo-wide-inner .promo-wide-video .vid-ph {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
    }

    .promo-wide-inner .promo-wide-video .vid-ph-box {
      width: 72px;
      height: 72px;
      border: 1.5px dashed rgba(184, 255, 0, .2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .promo-wide-inner .promo-wide-video .vid-ph span {
      font-family: var(--fh);
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(184, 255, 0, .25);
      text-transform: uppercase;
      text-align: center;
      padding: 0 20px;
    }

    .promo-wide-panel {
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 20px 32px 60px;
      text-align: center;
    }

    .promo-wide-title {
      font-family: var(--fh);
      font-weight: 900;
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin: 0;
    }

    .promo-wide-title span {
      display: block;
      color: var(--accent);
      font-size: clamp(28px, 3.5vw, 48px);
      margin-bottom: 8px;
    }

    .promo-wide-title em {
      font-style: normal;
      color: var(--white);
      font-size: clamp(22px, 2.8vw, 36px);
      font-weight: 700;
    }

    /* ─── responsive ─── */
    @media (max-width: 1100px) {
      .promo-split {
        padding: 64px 28px 56px;
        gap: 40px;
      }

      .promo-wide {
        padding: 0 28px 56px;
      }

      .promo-wide-inner {
        min-height: 360px;
        max-height: 440px;
      }

      .promo-wide-video {
        min-height: 320px;
      }

      .promo-wide-panel {
        padding: 24px 28px;
      }

      .promo-wide-title span {
        font-size: clamp(22px, 3vw, 36px);
      }

      .promo-wide-title em {
        font-size: clamp(18px, 2.4vw, 28px);
      }
    }

    @media (max-width: 768px) {
      .promo-split {
        grid-template-columns: 1fr;
        padding: 48px var(--r) 40px;
        gap: 32px;
      }

      .promo-split h2 span {
        font-size: clamp(20px, 5.5vw, 32px);
      }

      .promo-split h2 em {
        font-size: clamp(22px, 6vw, 36px);
      }

      .promo-split-video {
        aspect-ratio: 4/3;
        max-height: none;
      }

      .promo-wide {
        padding: 0 var(--r) 40px;
      }

      .promo-wide-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        max-height: none;
      }

      .promo-wide-video {
        min-height: 240px;
        aspect-ratio: 16/10;
      }

      .promo-wide-panel {
        padding: 20px var(--r);
      }

      .promo-wide-title span,
      .promo-wide-title em {
        font-size: clamp(18px, 5vw, 24px);
      }
    }