:root {
      --bg: #08090c;
      --bg-2: #0c0f14;
      --card: rgba(18, 22, 28, .72);
      --card-strong: rgba(20, 25, 32, .94);
      --line: rgba(138, 174, 213, .15);
      --line-bright: rgba(91, 169, 255, .42);
      --text: #eef4fb;
      --muted: #8e99a7;
      --blue: #62b1ff;
      --blue-deep: #277bd3;
      --purple: #8c69ff;
      --brown: #b87a49;
      --green: #62d294;
      --red: #ff6d72;
      --radius: 18px;
      --shadow: 0 24px 80px rgba(0, 0, 0, .36);
      --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-display: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 82% 6%, rgba(40, 126, 216, .09), transparent 24rem),
        radial-gradient(circle at 18% 30%, rgba(173, 105, 54, .07), transparent 27rem),
        var(--bg);
      font-family: var(--font-body);
      line-height: 1.55;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -3;
      opacity: .18;
      background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 80%);
      pointer-events: none;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    button { color: inherit; }
    :is(a, button, input, textarea):focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
    ::selection { background: rgba(98, 177, 255, .3); }

    .container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
    .section { padding: 92px 0; scroll-margin-top: 96px; }
    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px; width: fit-content;
      color: #b7c4d2; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
      border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; background: rgba(255,255,255,.025);
    }
    .eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
    h1, h2, h3, h4, p { margin-top: 0; }
    h1, h2, h3, h4 { font-family: var(--font-display); text-wrap: balance; }
    h2 { margin-bottom: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
    .section-copy { max-width: 470px; margin: 0; color: var(--muted); }
    .gradient-text { color: transparent; background: linear-gradient(100deg, var(--blue), #9ecfff 52%, var(--purple)); background-clip: text; -webkit-background-clip: text; }

    .nav-wrap { position: fixed; z-index: 50; top: 14px; left: 0; right: 0; }
    .nav {
      min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
      padding: 8px 10px 8px 18px; border: 1px solid transparent; border-radius: 16px;
      transition: .3s ease;
    }
    .nav.scrolled { background: rgba(8, 10, 14, .74); border-color: var(--line); backdrop-filter: blur(20px); box-shadow: 0 16px 50px rgba(0,0,0,.35); }
    .logo { min-height: 44px; display: flex; align-items: center; gap: 10px; flex: 0 0 auto; font-size: 13px; font-weight: 650; }
    .logo-mark { position: relative; width: 38px; height: 34px; color: var(--blue); }
    .logo-mark::before, .logo-mark::after {
      content: ""; position: absolute; width: 27px; height: 13px; border: 2px solid currentColor; transform: skewX(-36deg);
    }
    .logo-mark::before { top: 2px; left: 3px; border-color: var(--brown); border-left: 0; border-bottom: 0; }
    .logo-mark::after { bottom: 2px; right: 3px; border-right: 0; border-top: 0; border-radius: 0 0 0 8px; }
    .logo strong { color: var(--blue); font-weight: 600; }
    .nav-links { display: flex; align-items: center; gap: 26px; color: #b7c1cc; font-size: 13px; }
    .nav-links a { transition: color .2s ease; }
    .nav-links a:hover { color: var(--text); }
    .nav-actions { display: flex; align-items: center; gap: 8px; }
    .lang { display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
    .lang button { min-width: 40px; min-height: 40px; border: 0; padding: 8px 9px; background: transparent; font-size: 11px; cursor: pointer; }
    .lang button.active { color: var(--blue); background: rgba(98,177,255,.12); }
    .menu-btn { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
    .menu-btn img { width: 100%; height: 100%; display: block; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px;
      padding: 0 20px; border-radius: 11px; border: 1px solid var(--line); background: rgba(255,255,255,.025);
      font-size: 13px; font-weight: 600; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-2px); border-color: var(--line-bright); background: rgba(98,177,255,.07); }
    .btn-primary { border-color: rgba(116,190,255,.5); background: linear-gradient(110deg, #1b68b5, #67b3ff); color: white; box-shadow: 0 0 24px rgba(61, 152, 244, .24), inset 0 1px rgba(255,255,255,.28); }
    .btn-primary:hover { background: linear-gradient(110deg, #2475c8, #7dc0ff); box-shadow: 0 0 32px rgba(61, 152, 244, .38); }
    .btn .arrow { transition: transform .2s ease; }
    .btn:hover .arrow { transform: translateX(3px); }
    .nav-cta { min-height: 40px; padding-inline: 16px; font-size: 12px; }

    .hero { min-height: 100vh; padding: 150px 0 68px; display: flex; align-items: center; position: relative; }
    .hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; }
    .hero h1 { max-width: 680px; margin: 22px 0; font-size: clamp(3rem, 5.5vw, 5.35rem); line-height: .98; letter-spacing: -.07em; }
    .hero-copy { max-width: 570px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .trust { display: flex; align-items: center; gap: 13px; margin-top: 28px; color: var(--muted); font-size: 12px; }
    .avatars { display: flex; }
    .avatar { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -7px; border: 2px solid var(--bg); border-radius: 50%; background: linear-gradient(135deg, #29394b, #8d5938); color: #e9f4ff; font-size: 11px; }
    .avatar:first-child { margin-left: 0; }
    .trust strong { color: var(--text); }

    .visual-wrap { position: relative; perspective: 1200px; }
    .orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
    .orb-a { width: 180px; height: 180px; right: -8%; top: 9%; background: rgba(40, 145, 255, .14); box-shadow: 0 0 100px 30px rgba(40,145,255,.12); }
    .orb-b { width: 160px; height: 160px; left: -8%; bottom: -5%; background: rgba(176, 104, 48, .11); box-shadow: 0 0 90px 20px rgba(176,104,48,.12); }
    .dashboard {
      position: relative; z-index: 2; padding: 16px; border: 1px solid rgba(113,174,232,.28); border-radius: 20px;
      background: linear-gradient(145deg, rgba(22,27,34,.96), rgba(11,14,18,.92)); box-shadow: var(--shadow), 0 0 44px rgba(51,145,238,.12);
      transform: rotateY(-5deg) rotateX(2deg); transition: transform .25s ease;
    }
    .visual-wrap:hover .dashboard { transform: rotateY(-2deg) rotateX(1deg) translateY(-4px); }
    .dash-top, .dash-title { display: flex; align-items: center; justify-content: space-between; }
    .dash-top { margin-bottom: 16px; color: var(--muted); font-size: 11px; }
    .dots { display: flex; gap: 5px; }
    .dots i { width: 6px; height: 6px; border-radius: 50%; background: #34404c; }
    .dots i:first-child { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
    .dash-title { margin-bottom: 15px; }
    .dash-title strong { font-size: 16px; }
    .online { color: var(--green); font-size: 11px; }
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .stat, .chart-card, .activity { border: 1px solid rgba(255,255,255,.06); border-radius: 11px; background: rgba(255,255,255,.018); }
    .stat { padding: 11px; color: var(--muted); font-size: 11px; }
    .stat b { display: block; margin: 4px 0 0; color: var(--text); font-size: 17px; letter-spacing: -.04em; }
    .stat span { color: var(--green); font-size: 11px; }
    .chart-row { display: grid; grid-template-columns: 1.5fr .7fr; gap: 8px; margin-top: 8px; }
    .chart-card { min-height: 168px; padding: 12px; }
    .chart-label { color: var(--muted); font-size: 11px; }
    .chart { height: 110px; margin-top: 12px; position: relative; overflow: hidden; }
    .chart svg { width: 100%; height: 100%; overflow: visible; }
    .ring { width: 82px; height: 82px; margin: 18px auto 0; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 38%, var(--brown) 38% 67%, #303a46 67%); position: relative; }
    .ring::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #12171d; }
    .ring b { z-index: 1; font-size: 14px; }
    .ring small { z-index: 1; position: absolute; top: 48px; color: var(--green); font-size: 11px; }
    .activity { margin-top: 8px; padding: 12px; }
    .activity-line { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 9px; color: var(--muted); font-size: 11px; }
    .activity-line i { width: 5px; height: 5px; margin-right: 6px; display: inline-block; border-radius: 50%; background: var(--green); }
    .float-card { position: absolute; z-index: 3; padding: 10px 13px; border: 1px solid var(--line-bright); border-radius: 12px; background: rgba(12,16,21,.86); backdrop-filter: blur(14px); box-shadow: 0 12px 30px rgba(0,0,0,.35); font-size: 11px; animation: float 4s ease-in-out infinite; }
    .float-card b { display: block; margin-top: 2px; font-size: 14px; }
    .float-one { top: -18px; right: -22px; }
    .float-two { bottom: 20px; left: -30px; animation-delay: -2s; }
    @keyframes float { 50% { transform: translateY(-8px); } }

    .glass {
      border: 1px solid var(--line); border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255,255,255,.036), rgba(255,255,255,.012));
      box-shadow: inset 0 1px rgba(255,255,255,.025);
      backdrop-filter: blur(16px);
    }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .service-card { min-height: 265px; padding: 22px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
    .service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -60px; top: -65px; border-radius: 50%; background: rgba(98,177,255,.08); filter: blur(4px); transition: .3s ease; }
    .service-card:nth-child(4)::after { background: rgba(184,122,73,.11); }
    .service-card:hover { transform: translateY(-7px); border-color: var(--line-bright); }
    .service-card:hover::after { transform: scale(1.5); }
    .icon {
      width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(89,172,255,.3); border-radius: 11px;
      color: var(--blue); background: rgba(69,155,245,.08); box-shadow: 0 0 22px rgba(69,155,245,.09); font-size: 19px;
    }
    .icon img { width: 100%; height: 100%; display: block; border-radius: inherit; }
    .service-card:nth-child(4) .icon { color: #d99b68; border-color: rgba(217,155,104,.3); background: rgba(217,155,104,.07); }
    .service-card h3 { margin: 28px 0 8px; font-size: 18px; letter-spacing: -.02em; }
    .service-card p { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
    .price { margin-top: auto; color: var(--blue); font-size: 12px; }
    .hero-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
    .hero-tag { padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; color: #a8b5c3; background: rgba(255,255,255,.018); font-size: 11px; }

    .problem-solution { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; padding: 18px; }
    .problem-solution h3 { margin-bottom: 16px; font-size: 17px; }
    .problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
    .problem { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.018); }
    .problem .icon { width: 34px; height: 34px; margin-bottom: 18px; }
    .problem h4 { margin: 0 0 5px; font-size: 13px; }
    .problem p { margin: 0; color: var(--muted); font-size: 12px; }
    .solution { padding: 20px; border-left: 1px solid var(--line); }
    .check-list { display: grid; gap: 14px; margin: 20px 0 0; padding: 0; list-style: none; }
    .check-list li { display: flex; gap: 10px; color: #b6c2cf; font-size: 12px; }
    .check-list li::before { content: "✓"; width: 20px; height: 20px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--blue); font-size: 10px; }

    .process-track { display: grid; grid-template-columns: repeat(6, minmax(170px, 1fr)); gap: 12px; overflow-x: auto; padding: 4px 2px 14px; scrollbar-color: var(--blue-deep) transparent; }
    .process-step { position: relative; min-height: 175px; padding: 20px; }
    .step-number { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--blue); font-size: 12px; }
    .process-step h3 { margin: 22px 0 7px; font-size: 14px; }
    .process-step p { margin: 0; color: var(--muted); font-size: 11px; }
    .process-nav { display: flex; gap: 8px; }
    .process-nav button, .to-top { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.02); cursor: pointer; transition: .2s ease; }
    .process-nav button:hover, .to-top:hover { color: var(--blue); border-color: var(--line-bright); }

    .technology-row { display: flex; flex-wrap: wrap; gap: 9px; }
    .technology { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); color: #c6d1dc; font-size: 11px; transition: .2s ease; }
    .technology:hover { transform: translateY(-2px); border-color: var(--line-bright); }
    .technology::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue); }

    .benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
    .benefit { min-height: 180px; padding: 20px; transition: .25s ease; }
    .benefit:hover { transform: translateY(-4px); border-color: var(--line-bright); }
    .benefit .icon { width: 36px; height: 36px; }
    .benefit h3 { margin: 28px 0 7px; font-size: 13px; }
    .benefit p { margin: 0; color: var(--muted); font-size: 12px; }

    .pricing-faq { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .pricing-card { position: relative; min-height: 330px; padding: 20px; display: flex; flex-direction: column; }
    .pricing-card.popular { border-color: var(--line-bright); box-shadow: 0 0 32px rgba(59,130,246,.12); }
    .popular-badge { position: absolute; top: -10px; right: 14px; padding: 4px 9px; border-radius: 999px; background: var(--blue-deep); font-size: 11px; }
    .pricing-card h3 { margin: 0 0 10px; font-size: 13px; }
    .pricing-card .amount { font-size: 28px; letter-spacing: -.05em; }
    .pricing-card .check-list { gap: 9px; margin-bottom: 24px; }
    .pricing-card .check-list li { font-size: 11px; }
    .pricing-card .check-list li::before { width: 15px; height: 15px; border: 0; }
    .pricing-card .btn { margin-top: auto; min-height: 40px; padding: 0 10px; font-size: 11px; }
    .faq-list { display: grid; gap: 8px; }
    .faq-item { overflow: hidden; }
    .faq-question { width: 100%; padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; background: transparent; color: var(--text); text-align: left; cursor: pointer; font-size: 12px; }
    .faq-question span:last-child { color: var(--blue); font-size: 16px; transition: transform .25s ease; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .faq-answer p { margin: 0; padding: 0 16px 16px; color: var(--muted); font-size: 12px; }
    .faq-item.open .faq-answer { max-height: 150px; }
    .faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

    .cta-panel { position: relative; padding: clamp(28px, 5vw, 50px); display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(24px, 5vw, 50px); overflow: hidden; }
    .cta-panel h2 { margin: 16px 0 12px; }
    .cta-panel p { max-width: 560px; color: var(--muted); }
    .cta-mark { position: absolute; right: 2%; bottom: -35%; opacity: .055; transform: scale(4.5); }
    .cta-contacts { display: grid; gap: 12px; margin-top: 28px; z-index: 1; }
    .cta-contact { min-height: 44px; display: flex; align-items: center; gap: 10px; color: #b8c4d0; font-size: 12px; }
    .cta-contact .icon { width: 34px; height: 34px; }
    .lead-form { position: relative; z-index: 1; display: grid; gap: 15px; max-width: 660px; justify-self: end; padding: clamp(18px, 2.6vw, 26px); border: 1px solid rgba(124,58,237,.52); border-radius: 19px; background: radial-gradient(circle at 10% 0%, rgba(98,177,255,.11), transparent 34%), linear-gradient(145deg, rgba(18,22,33,.88), rgba(10,12,18,.78)); box-shadow: inset 0 1px rgba(255,255,255,.05), 0 0 34px rgba(124,58,237,.16); }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .lead-form .field { display: grid; gap: 8px; color: var(--text); font-size: 13px; font-weight: 700; }
    .lead-form .field input, .lead-form .field textarea { width: 100%; border: 1px solid rgba(135,151,174,.32); border-radius: 13px; outline: none; background: rgba(13,20,30,.68); color: var(--text); padding: 14px 16px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
    .lead-form .field textarea { min-height: 128px; resize: vertical; }
    .lead-form .field input::placeholder, .lead-form .field textarea::placeholder { color: #8fa3ba; opacity: 1; }
    .lead-form .field input:focus, .lead-form .field textarea:focus { border-color: rgba(124,58,237,.72); background: rgba(16,24,36,.78); box-shadow: 0 0 0 4px rgba(124,58,237,.12); }
    .form-submit { width: 100%; min-height: 52px; justify-content: space-between; padding-inline: 22px; border-color: rgba(154,123,255,.62); background: linear-gradient(110deg, #2f6eea, #8a4cf6); font-size: 15px; box-shadow: 0 12px 30px rgba(72,91,240,.2), inset 0 1px rgba(255,255,255,.26); }
    .form-submit:hover { background: linear-gradient(110deg, #397cff, #9a63ff); }
    .to-top { position: fixed; z-index: 30; right: 20px; bottom: 20px; width: 44px; height: 44px; opacity: 0; pointer-events: none; background: rgba(12,16,21,.9); backdrop-filter: blur(12px); }
    .to-top.show { opacity: 1; pointer-events: auto; }

    .works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .work { overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
    .work:hover { transform: translateY(-5px); border-color: var(--line-bright); }
    .work-shot { height: 210px; margin: 8px; padding: 15px; border-radius: 13px; position: relative; overflow: hidden; background: radial-gradient(circle at 75% 30%, rgba(83,165,255,.18), transparent 40%), #0c1117; border: 1px solid rgba(255,255,255,.05); }
    .work-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.025) 50%, transparent 50.5%), linear-gradient(transparent 49.5%, rgba(255,255,255,.025) 50%, transparent 50.5%); background-size: 28px 28px; }
    .mock-nav { position: relative; z-index: 1; width: fit-content; max-width: 78%; padding: 6px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; background: rgba(9,13,18,.68); color: #aebdca; font-size: 10px; line-height: 1; }
    .mock-title { position: relative; z-index: 1; width: 72%; min-height: 32px; margin-top: 28px; color: #eef4fb; font-size: 22px; font-weight: 800; line-height: .98; letter-spacing: -.04em; }
    .mock-lines { width: 57%; height: 7px; margin-top: 12px; border-radius: 4px; background: #354454; box-shadow: 0 14px #263442; }
    .mock-panel { position: absolute; width: 41%; height: 62%; right: 15px; bottom: 12px; display: grid; gap: 8px; padding: 12px; border: 1px solid rgba(98,177,255,.24); border-radius: 9px; background: linear-gradient(145deg, #18212c, #0d1218); box-shadow: 0 0 28px rgba(68,157,247,.14); }
    .mock-panel span { display: block; border-radius: 7px; background: rgba(255,255,255,.08); }
    .visual-vetlyx { background: radial-gradient(circle at 74% 25%, rgba(34,197,94,.2), transparent 42%), linear-gradient(135deg, #071311, #0c1117); }
    .visual-vetlyx .mock-title { color: #dfffee; }
    .visual-vetlyx .mock-panel { border-color: rgba(70,223,143,.28); box-shadow: 0 0 32px rgba(34,197,94,.16); }
    .visual-zvp { background: linear-gradient(90deg, rgba(2,13,28,.96), rgba(2,18,39,.68)), radial-gradient(circle at 78% 40%, rgba(247,148,73,.42), transparent 26%), linear-gradient(135deg, #031022, #0b315a 55%, #201611); }
    .visual-zvp::before { content: ""; position: absolute; right: -8%; bottom: 16%; width: 72%; height: 30%; border-radius: 999px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), rgba(21,113,255,.22)); filter: blur(1px); transform: skewX(-18deg); }
    .visual-zvp .mock-title { width: 78%; color: #fff; font-size: 24px; }
    .visual-zvp .mock-title::first-letter { color: #2275ff; }
    .visual-zvp .mock-lines { background: #1873ff; box-shadow: 0 14px rgba(255,255,255,.28); }
    .visual-zvp .mock-panel { display: none; }
    .visual-intimi { background: linear-gradient(90deg, rgba(39,25,17,.62), rgba(255,246,232,.18)), radial-gradient(circle at 78% 36%, rgba(242,205,164,.72), transparent 22%), linear-gradient(135deg, #f6eee5, #c8734e 48%, #1e1714); }
    .visual-intimi::before { content: "INTIMI.UA"; position: absolute; top: 14px; left: 14px; color: #221f1d; font-family: Georgia, serif; font-size: 16px; font-weight: 700; letter-spacing: .14em; }
    .visual-intimi .mock-nav { margin-top: 30px; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.18); color: #fff; letter-spacing: .18em; text-transform: uppercase; }
    .visual-intimi .mock-title { width: 62%; color: #fff; font-family: Georgia, serif; font-size: 25px; letter-spacing: -.02em; text-shadow: 0 2px 12px rgba(0,0,0,.28); }
    .visual-intimi .mock-lines { width: 38%; height: 24px; margin-top: 18px; border-radius: 0; background: #df8878; box-shadow: 72px 0 rgba(255,255,255,.26); }
    .visual-intimi .mock-panel { display: none; }
    .visual-hype { background: radial-gradient(circle at 84% 54%, rgba(124,58,237,.44), transparent 30%), linear-gradient(105deg, #08090c 0 54%, #120b25 100%); }
    .visual-hype::before { content: "hype production"; position: absolute; top: 15px; left: 15px; color: #fff; font-size: 12px; font-weight: 800; }
    .visual-hype .mock-nav { margin-top: 38px; border-color: rgba(124,58,237,.35); color: #d7c7ff; text-transform: uppercase; letter-spacing: .12em; }
    .visual-hype .mock-title { width: 58%; font-size: 26px; color: #f0f6ff; }
    .visual-hype .mock-title::first-line { color: #b692ff; }
    .visual-hype .mock-lines { background: #7c3aed; box-shadow: 0 14px rgba(124,58,237,.38); }
    .visual-hype .mock-panel { width: 47%; height: 54%; border-color: rgba(124,58,237,.4); background: linear-gradient(145deg, #17141f, #0f0f14); box-shadow: 0 0 38px rgba(124,58,237,.22); }
    .visual-hype .mock-panel span:first-child { grid-column: 1 / -1; }
    .visual-truckflow { background: radial-gradient(circle at 76% 26%, rgba(37,99,235,.24), transparent 38%), linear-gradient(135deg, #08152b, #f8fafc 240%); }
    .visual-truckflow .mock-title { width: 62%; color: #f8fafc; }
    .visual-truckflow .mock-lines { background: #2f66f2; box-shadow: 0 14px #06b6a8, 0 28px #ef4444; }
    .visual-truckflow .mock-panel { grid-template-columns: 1fr 1fr; border-color: rgba(47,102,242,.38); background: linear-gradient(145deg, rgba(248,250,252,.96), rgba(226,232,240,.9)); }
    .visual-truckflow .mock-panel span { background: rgba(47,102,242,.16); }
    .work-body { padding: 12px 18px 19px; }
    .work-top { display: flex; justify-content: space-between; gap: 10px; }
    .work h3 { margin-bottom: 4px; font-size: 17px; }
    .work-link { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s ease; }
    .work-link:hover { color: var(--blue); border-color: var(--line-bright); transform: rotate(-45deg); }
    .work-link-disabled { color: var(--brown); cursor: default; }
    .work-link-disabled:hover { color: var(--brown); border-color: var(--line); transform: none; }
    .work p { color: var(--muted); font-size: 12px; }
    .tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .tag { padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; color: #a9b6c4; font-size: 11px; }

    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-main { padding: clamp(24px, 5vw, 54px); }
    .about-main h2 { margin: 24px 0; }
    .about-main p { max-width: 590px; color: var(--muted); font-size: 15px; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-stat { min-height: 180px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; transition: .3s ease; }
    .about-stat:hover { border-color: var(--line-bright); }
    .about-stat b { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -.07em; color: var(--blue); }
    .about-stat span { color: var(--muted); font-size: 12px; }
    .techs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
    .tech { padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; color: #c1ccd8; background: rgba(255,255,255,.02); font-size: 11px; }

    .contact-card { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; }
    .contact-info { padding: clamp(28px, 5vw, 55px); background: radial-gradient(circle at 20% 10%, rgba(64,155,247,.14), transparent 48%); }
    .contact-info h2 { margin: 24px 0 14px; }
    .contact-info p { color: var(--muted); }
    .contact-links { display: grid; gap: 10px; margin-top: 32px; }
    .contact-link { display: flex; align-items: center; gap: 12px; width: fit-content; color: #c9d6e2; font-size: 13px; transition: color .2s ease; }
    .contact-link:hover { color: var(--blue); }
    .contact-form { padding: clamp(24px, 5vw, 52px); border-left: 1px solid var(--line); }
    .field { display: grid; gap: 7px; margin-bottom: 14px; }
    .field label { color: #b4bfca; font-size: 11px; }
    .field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; outline: none; background: rgba(0,0,0,.18); color: var(--text); padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
    .field textarea { min-height: 120px; resize: vertical; }
    .field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(98,177,255,.08); }
    .contact-form .btn { width: 100%; }
    .form-note { min-height: 20px; margin: 12px 0 0; color: var(--green); font-size: 11px; text-align: center; }

    footer { padding: 24px 0 35px; }
    .footer-inner { padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }
    .footer-meta { display: flex; gap: 16px; color: var(--muted); }
    .footer-meta a { transition: color .2s ease; }
    .footer-meta a:hover { color: var(--blue); }
    .socials { display: flex; gap: 16px; }
    .socials a:hover { color: var(--blue); }
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      .nav-links, .nav-cta { display: none; }
      .menu-btn { display: grid; place-items: center; }
      .nav-links.open { position: absolute; top: 70px; left: 16px; right: 16px; padding: 18px; display: grid; gap: 0; background: rgba(9,12,16,.96); border: 1px solid var(--line); border-radius: 14px; backdrop-filter: blur(18px); box-shadow: var(--shadow); }
      .nav-links.open a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
      .hero { min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; }
      .visual-wrap { width: min(620px, 100%); margin-inline: auto; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .works-grid { grid-template-columns: 1fr 1fr; }
      .work:last-child { grid-column: span 2; }
      .about-grid { grid-template-columns: 1fr; }
      .problem-solution, .pricing-faq { grid-template-columns: 1fr; }
      .solution { border-left: 0; border-top: 1px solid var(--line); }
      .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 22px, 1180px); }
      .section { padding: 60px 0; }
      .section-head { align-items: start; flex-direction: column; }
      .section-copy { font-size: 13px; }
      .nav-wrap { top: 8px; }
      .nav { min-height: 56px; padding-left: 12px; }
      .logo span { display: none; }
      .hero { padding-top: 116px; }
      .hero-grid { gap: 48px; }
      .hero h1 { font-size: clamp(2.65rem, 12.8vw, 4.2rem); line-height: .98; }
      .hero-copy { font-size: 14px; }
      .hero-actions .btn { flex: 1 1 100%; }
      .dashboard { transform: none; padding: 10px; }
      .stat { padding: 8px; }
      .stat b { font-size: 13px; }
      .stats { grid-template-columns: 1fr 1fr; }
      .chart-card { min-height: 125px; padding: 8px; }
      .chart { height: 78px; }
      .ring { width: 62px; height: 62px; margin-top: 14px; }
      .ring::before { inset: 8px; }
      .ring small { top: 38px; }
      .activity, .float-card { display: none; }
      .services-grid, .works-grid { grid-template-columns: 1fr; }
      .work:last-child { grid-column: auto; }
      .service-card { min-height: 225px; }
      .benefit { min-height: 155px; }
      .pricing-card { min-height: 290px; }
      .about-stats { gap: 10px; }
      .about-stat { min-height: 135px; padding: 17px; }
      .contact-card { grid-template-columns: 1fr; }
      .contact-form { border-left: 0; border-top: 1px solid var(--line); }
      .problem-solution { padding: 12px; }
      .problems-grid, .pricing-grid, .benefits-grid, .cta-panel { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .lead-form { padding: 16px; border-radius: 18px; }
      .lead-form .field input, .lead-form .field textarea { border-radius: 13px; padding: 14px 15px; }
      .lead-form .field textarea { min-height: 132px; }
      .footer-inner { align-items: start; flex-direction: column; }
    }

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