      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Montserrat", sans-serif;
        background: #05070b;
        color: #fff;
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      .container {
        width: min(1200px, calc(100% - 40px));
        margin: 0 auto;
      }

      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        backdrop-filter: blur(10px);
        background: rgba(5, 7, 11, 0.75);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .logo-mark {
        position: relative;
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, #1f2937, #09090b);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 18px;
        letter-spacing: -1px;
        text-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
        color: #dbeafe;
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.25);
      }

      .logo h2 {
        font-size: 18px;
        font-weight: 800;
      }

      .logo p {
        color: #94a3b8;
        font-size: 13px;
        margin-top: 3px;
      }

      nav {
        display: flex;
        gap: 34px;
      }

      nav a {
        color: #d4d4d8;
        transition: 0.3s;
        font-size: 15px;
      }

      nav a:hover {
        color: #60a5fa;
      }

      .phone {
        text-align: right;
      }

      .phone strong {
        display: block;
        font-size: 20px;
      }

      .phone span {
        color: #94a3b8;
        font-size: 13px;
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 120px;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at top,
            rgba(37, 99, 235, 0.25),
            transparent 40%
          ),
          linear-gradient(120deg, #05070b 10%, #0f172a 50%, #05070b 90%);
      }

      .hero-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: center;
      }

      .hero-tag {
        display: inline-flex;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid rgba(59, 130, 246, 0.25);
        background: rgba(59, 130, 246, 0.12);
        color: #93c5fd;
        margin-bottom: 28px;
        font-size: 14px;
      }

      .hero h1 {
        font-size: clamp(54px, 8vw, 110px);
        line-height: 0.9;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: -3px;
      }

      .hero p {
        max-width: 620px;
        color: #cbd5e1;
        font-size: 20px;
        line-height: 1.7;
        margin-top: 36px;
      }

      .hero-buttons {
        display: flex;
        gap: 18px;
        margin-top: 42px;
        flex-wrap: wrap;
      }

      .btn {
        padding: 18px 34px;
        border-radius: 20px;
        font-weight: 700;
        transition: 0.3s;
        border: none;
        cursor: pointer;
        font-size: 16px;
      }

      .btn-primary {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.35);
      }

      .btn-primary:hover {
        transform: translateY(-2px);
      }

      .btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
      }

      .hero-card {
        position: relative;
        height: 700px;
        border-radius: 42px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
          radial-gradient(
            circle at center,
            rgba(59, 130, 246, 0.18),
            transparent 45%
          ),
          linear-gradient(135deg, #18181b, #020617);
        box-shadow: 0 0 80px rgba(59, 130, 246, 0.12);
      }

      .hero-card::before,
      .hero-card::after {
        content: "";
        position: absolute;
        top: -10%;
        width: 2px;
        height: 120%;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(255, 255, 255, 0.45),
          transparent
        );
      }

      .hero-card::before {
        left: 26%;
        transform: rotate(12deg);
      }

      .hero-card::after {
        right: 26%;
        transform: rotate(-12deg);
      }

      .hero-ak {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .hero-ak h2 {
        font-size: 220px;
        font-weight: 900;
        background: linear-gradient(to bottom, #f8fafc, #71717a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 0.9;
      }

      .hero-ak span {
        margin-top: 16px;
        letter-spacing: 8px;
        color: #60a5fa;
        font-size: 14px;
        text-transform: uppercase;
      }

      section {
        padding: 120px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 70px;
      }

      .section-title span {
        color: #60a5fa;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 13px;
      }

      .section-title h2 {
        margin-top: 18px;
        font-size: clamp(38px, 5vw, 64px);
        text-transform: uppercase;
        font-weight: 900;
      }

      .services-grid,
      .works-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
      }

      .card {
        background: linear-gradient(to bottom, #18181b, #09090b);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 32px;
        overflow: hidden;
        transition: 0.3s;
      }

      .card:hover {
        transform: translateY(-6px);
        border-color: rgba(59, 130, 246, 0.35);
      }

      .card-image {
        height: 240px;
        background:
          radial-gradient(
            circle at top,
            rgba(59, 130, 246, 0.18),
            transparent 45%
          ),
          linear-gradient(135deg, #18181b, #09090b);
      }

      .card-content {
        padding: 28px;
      }

      .card-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
      }

      .card-content p {
        color: #94a3b8;
        line-height: 1.7;
      }

      .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .about-box {
        background: linear-gradient(135deg, #18181b, #09090b);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 36px;
        padding: 50px;
        position: relative;
        overflow: hidden;
      }

      .about-box h3 {
        font-size: 42px;
        margin: 18px 0;
      }

      .about-box p {
        color: #cbd5e1;
        line-height: 1.8;
      }

      .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 40px;
      }

      .stat {
        padding: 24px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
      }

      .stat strong {
        display: block;
        color: #60a5fa;
        font-size: 42px;
        font-weight: 900;
      }

      .contact-box {
        background: linear-gradient(135deg, #111827, #020617);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 42px;
        padding: 70px;
        position: relative;
        overflow: hidden;
      }

      .contact-box::before {
        content: "";
        position: absolute;
        right: -200px;
        top: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(59, 130, 246, 0.18),
          transparent 60%
        );
      }

      .contact-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
      }

      .contact-content h2 {
        font-size: clamp(38px, 5vw, 68px);
        text-transform: uppercase;
        font-weight: 900;
        margin-top: 16px;
      }

      footer {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 36px 20px;
        text-align: center;
        color: #64748b;
      }

      .card-image {
        height: 240px;
        overflow: hidden;
        position: relative;
        border-radius: 24px 24px 0 0;
      }

      .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-width: 320px;
      }

      .contact-form input,
      .contact-form textarea {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 18px 20px;
        color: white;
        font-size: 15px;
        outline: none;
        font-family: inherit;
      }

      .contact-form textarea {
        min-height: 120px;
        resize: vertical;
      }

      .contact-form input:focus,
      .contact-form textarea:focus {
        border-color: #3b82f6;
      }

      .ticker {
        position: fixed;
        top: 93px;
        left: 0;
        width: 100%;
        overflow: hidden;
        z-index: 90;

        background: rgba(15, 23, 42, 0.92);

        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

        backdrop-filter: blur(10px);
      }

      .ticker-track {
        display: flex;
        width: max-content;

        animation: ticker 28s linear infinite;
      }

      .ticker span {
        display: flex;
        align-items: center;

        gap: 32px;

        padding: 14px 32px;

        color: #60a5fa;

        font-size: 13px;

        letter-spacing: 4px;

        font-weight: 700;

        text-transform: uppercase;
      }

      @keyframes ticker {
        from {
          transform: translateX(0);
        }

        to {
          transform: translateX(-50%);
        }
      }
      #toTop {
        position: fixed;

        right: 24px;
        bottom: 24px;

        width: 56px;
        height: 56px;

        border: none;
        border-radius: 18px;

        background: linear-gradient(135deg, #2563eb, #1d4ed8);

        color: white;

        font-size: 24px;
        font-weight: 700;

        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: 0 0 30px rgba(37, 99, 235, 0.35);

        opacity: 0;
        visibility: hidden;

        transition: 0.3s;

        z-index: 999;
      }

      #toTop.show {
        opacity: 1;
        visibility: visible;
      }

      #toTop:hover {
        transform: translateY(-4px);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 34px;
  cursor: pointer;
  z-index: 200;
}

@media (max-width: 980px) {

  .burger {
    display: block;
  }

  nav {
    position: fixed;
    top: 93px;
    left: 0;
    width: 100%;

    background: #05070b;

    flex-direction: column;
    align-items: center;

    gap: 24px;

    padding: 40px 20px;

    display: none;
  }

  nav.active {
    display: flex;
  }
}
      @media (max-width: 980px) {
        nav,
        .phone {
          display: none;
        }

        .hero-grid,
        .about-grid,
        .contact-content {
          grid-template-columns: 1fr;
        }

        .hero-card {
          height: 420px;
        }

        .hero-ak h2 {
          font-size: 120px;
        }

        .stats {
          grid-template-columns: 1fr;
        }

        .contact-box {
          padding: 50px 30px;
        }
      }
    