    :root {
      --bg: #050816;
      --bg-soft: #0b1024;
      --card: rgba(255, 255, 255, 0.085);
      --card-border: rgba(255, 255, 255, 0.16);
      --text: #f8fafc;
      --muted: #b8c0d4;
      --gold: #f5c76b;
      --gold-dark: #b88932;
      --blue: #57c7ff;
      --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(87, 199, 255, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245, 199, 107, 0.18), transparent 38%),
        linear-gradient(135deg, #050816 0%, #0b1024 55%, #111827 100%);
      overflow-x: hidden;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
      pointer-events: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 36px 0;
      position: relative;
      z-index: 1;
    }

    .hero {
      min-height: calc(100vh - 72px);
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 42px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border: 1px solid var(--card-border);
      background: rgba(255, 255, 255, 0.07);
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 24px;
      backdrop-filter: blur(14px);
      animation: fadeUp 0.7s ease both;
    }

    .badge span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 22px var(--gold);
    }

    h1 {
      font-size: clamp(42px, 7vw, 82px);
      line-height: 0.96;
      letter-spacing: -0.06em;
      margin-bottom: 22px;
      animation: fadeUp 0.8s ease 0.08s both;
    }

    .highlight {
      background: linear-gradient(90deg, #fff, var(--gold), var(--blue));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      font-size: clamp(18px, 2vw, 23px);
      line-height: 1.65;
      color: var(--muted);
      max-width: 700px;
      margin-bottom: 30px;
      animation: fadeUp 0.8s ease 0.16s both;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      animation: fadeUp 0.8s ease 0.24s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid var(--card-border);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #17110a;
      box-shadow: 0 18px 40px rgba(245, 199, 107, 0.22);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
      backdrop-filter: blur(14px);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
    }

    .image-card {
      position: relative;
      border-radius: var(--radius);
      padding: 14px;
      background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow);
      animation: floatIn 1s ease both, float 6s ease-in-out 1.2s infinite;
    }

    .image-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(245,199,107,0.45), rgba(87,199,255,0.35), transparent);
      filter: blur(20px);
      opacity: 0.6;
      z-index: -1;
    }

    .image-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      background: rgba(255,255,255,0.025);
      border-radius: 20px;
      display: block;
    }

    .section {
      margin-top: 34px;
      padding: 34px;
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .section h2 {
      font-size: clamp(28px, 4vw, 44px);
      margin-bottom: 16px;
      letter-spacing: -0.04em;
    }

    .section p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 17px;
      margin-bottom: 14px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .service-card,
    .faq-item {
      padding: 22px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }

    .service-card:hover,
    .faq-item:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.105);
      border-color: rgba(245, 199, 107, 0.34);
    }

    .service-card h3,
    .faq-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #fff;
    }

    .service-card p,
    .faq-item p {
      margin: 0;
      font-size: 16px;
    }

    .faq {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .bottom-cta {
      text-align: center;
    }

    .bottom-cta .buttons {
      justify-content: center;
      margin-top: 24px;
    }

    footer {
      text-align: center;
      color: var(--muted);
      padding: 34px 0 8px;
      font-size: 14px;
    }

    @media print {
      body {
        display: none !important;
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes floatIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-14px);
      }
    }

    @media (max-width: 860px) {
      .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 28px;
      }

      .image-card {
        order: -1;
        max-width: 430px;
        margin: 0 auto;
      }

      .buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .section {
        padding: 24px;
      }

      .service-grid,
      .faq {
        grid-template-columns: 1fr;
      }
    }