    :root {
      --bg: #071126;
      --bg-soft: #0d1b39;
      --panel: rgba(11, 22, 48, 0.78);
      --panel-2: rgba(18, 33, 68, 0.92);
      --line: rgba(138, 183, 255, 0.15);
      --text: #eef4ff;
      --muted: #9eb3da;
      --brand: #4bd4ff;
      --brand-2: #8d5bff;
      --brand-3: #ff5fd2;
      --ok: #7bf1bc;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --wrap: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(75, 212, 255, 0.18), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(141, 91, 255, 0.2), transparent 25%),
        linear-gradient(180deg, #050b19 0%, #081127 45%, #050b16 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
      opacity: 0.35;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; height: auto; }
    h1, h2, h3, p { margin: 0; }

    .wrap { width: min(calc(100% - 28px), var(--wrap)); margin: 0 auto; }
    .section { padding: 42px 0; }

    .header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(16px);
      background: rgba(6, 12, 26, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-row {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      box-shadow: 0 18px 36px rgba(75, 212, 255, 0.24);
      font-weight: 900;
      letter-spacing: 0.04em;
    }

    .brand-copy strong, .brand-copy span { display: block; }
    .brand-copy strong { font-size: 1.02rem; }
    .brand-copy span {
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      gap: 24px;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .cta, .cta-alt {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 14px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: 180ms ease;
    }

    .cta {
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      box-shadow: 0 18px 40px rgba(75, 212, 255, 0.24);
    }

    .cta-alt {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.08);
    }

    .cta:hover, .cta-alt:hover { transform: translateY(-2px); }

    .header-icons {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-button {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      transition: 180ms ease;
    }

    .icon-button:hover {
      transform: translateY(-2px);
      border-color: rgba(75, 212, 255, 0.26);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    }

    .icon-button svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    .hero { padding: 34px 0 48px; }

    .hero-copy, .hero-visual, .panel, .feature, .service, .gallery-card, .contact-card, .hero-stage {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--panel);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-stage {
      position: relative;
      min-height: 700px;
      display: flex;
      align-items: flex-end;
      background:
        linear-gradient(90deg, rgba(5, 12, 29, 0.72) 0%, rgba(8, 15, 33, 0.42) 34%, rgba(12, 16, 39, 0.1) 68%),
        linear-gradient(180deg, rgba(5, 12, 29, 0.05) 0%, rgba(5, 12, 29, 0.28) 100%);
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(141, 91, 255, 0.08), transparent 22%),
        linear-gradient(0deg, rgba(2, 8, 20, 0.24), transparent 34%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-backdrop {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 74% center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      width: min(100%, 500px);
      padding: 30px 30px 28px;
      margin: 18px 0 18px 18px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(255, 95, 210, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(10, 22, 50, 0.46), rgba(6, 14, 31, 0.5));
      backdrop-filter: blur(7px);
    }

    h1 {
      margin-top: 0;
      max-width: 10ch;
      font-size: clamp(2.45rem, 6vw, 5rem);
      line-height: 0.94;
      letter-spacing: -0.05em;
    }

    .lead {
      margin-top: 16px;
      max-width: 34ch;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 22px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .stat {
      padding: 16px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat strong, .stat span { display: block; }
    .stat strong { font-size: 1.3rem; }
    .stat span { margin-top: 8px; color: var(--muted); line-height: 1.5; font-size: 0.92rem; }

    .panel-grid, .services, .gallery {
      display: grid;
      gap: 18px;
    }

    .panel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .panel, .feature, .service, .gallery-card, .contact-card { border-radius: var(--radius-lg); }
    .panel, .feature, .service, .contact-card { padding: 22px; }

    .panel strong, .feature strong {
      display: block;
      font-size: 1rem;
    }

    .panel span, .feature p, .service p, .contact-card p, .section-head p {
      color: var(--muted);
      line-height: 1.65;
    }

    .panel span { display: block; margin-top: 8px; font-size: 0.94rem; }

    .section-head {
      display: grid;
      gap: 10px;
      margin-bottom: 24px;
    }

    .section-head h2 {
      font-size: clamp(2rem, 5vw, 3.6rem);
      line-height: 0.96;
      letter-spacing: -0.04em;
      max-width: 11ch;
    }

    .section-head p { max-width: 62ch; font-size: 1rem; }

    .section-head.centered {
      justify-items: center;
      text-align: center;
    }

    .section-head.centered h2 {
      max-width: none;
    }

    .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .service {
      padding: 0;
      background: linear-gradient(180deg, rgba(14, 28, 59, 0.96), rgba(7, 14, 30, 0.96));
    }

    .service-media {
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 3 / 2;
      height: auto;
      padding: 0;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(24, 40, 82, 0.9), rgba(18, 31, 64, 0.85));
    }

    .service img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .service-copy { padding: 20px; }

    .tag {
      display: inline-flex;
      margin-top: 16px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(123, 241, 188, 0.08);
      color: #bdf8de;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .split {
      display: grid;
      gap: 18px;
      align-items: start;
    }

    .feature {
      background: linear-gradient(180deg, rgba(13, 26, 56, 0.96), rgba(7, 15, 31, 0.96));
    }

    .feature img {
      display: block;
      width: 100%;
      margin-top: 18px;
      height: 240px;
      object-fit: cover;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .checklist {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .check {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .check::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 10px;
      margin-top: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ok), var(--brand));
    }

    .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .gallery-card {
      background: linear-gradient(180deg, rgba(12, 24, 50, 0.94), rgba(7, 14, 29, 0.94));
    }

    .gallery-card img { height: 210px; object-fit: cover; object-position: center; }
    .gallery-copy { padding: 18px; }
    .gallery-copy h3 { font-size: 1.08rem; }
    .gallery-copy p { margin-top: 10px; color: var(--muted); line-height: 1.55; font-size: 0.93rem; }

    .pos-hero-monitor { object-position: 74% center; }
    .pos-laptop-repair { object-position: center center; }
    .pos-upgrade-parts { object-position: center center; }
    .pos-router { object-position: center center; }
    .pos-recovery { object-position: center center; background: #f8f9fd; }
    .pos-it-setup { object-position: center center; }
    .pos-custom-build { object-position: center center; }
    .media-light { background: #f8f9fd; }
    .media-network { background: linear-gradient(180deg, #141f58, #0d1746); }
    .media-setup { background: linear-gradient(180deg, #241457, #120f3d); }
    .media-build { background: linear-gradient(180deg, #20145e, #101d55); }
    .pos-repair-bench { object-position: center 34%; }
    .pos-ram { object-position: center 48%; }
    .pos-ssd { object-position: center 60%; }
    .pos-network-mgmt { object-position: center 34%; background: #f7f9ff; }
    .pos-case-build { object-position: center 48%; }
    .pos-desk-setup { object-position: center 55%; }

    .contact-grid {
      display: grid;
      gap: 18px;
      align-items: stretch;
    }

    .contact-card {
      padding: 24px;
      background: linear-gradient(180deg, rgba(13, 27, 58, 0.96), rgba(7, 14, 29, 0.96));
    }

    .contact-card-wide {
      grid-column: 1 / -1;
    }

    .contact-card h3 { font-size: 1.8rem; line-height: 1.05; }

    .detail-list {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .detail {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .detail strong { font-size: 0.96rem; }
    .detail span { color: var(--muted); text-align: right; }

    @media (min-width: 860px) {
      .split, .contact-grid { grid-template-columns: 1.08fr 0.92fr; }
    }

    @media (max-width: 980px) {
      .services, .gallery, .panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .header-row {
        min-height: 76px;
        gap: 14px;
      }
      .hero-stage {
        min-height: 620px;
      }
      .hero-copy {
        width: min(100%, 460px);
      }
      .gallery-card img {
        height: 190px;
      }
    }

    @media (max-width: 720px) {
      .nav { display: none; }
      .services, .gallery, .panel-grid, .stats, .contact-grid, .split { grid-template-columns: 1fr; }
      .section { padding: 30px 0; }
      .wrap { width: min(calc(100% - 20px), var(--wrap)); }
      .header-row {
        min-height: 72px;
      }
      .brand {
        gap: 10px;
      }
      .brand-mark {
        width: 42px;
        height: 42px;
      }
      .brand-copy strong {
        font-size: 0.95rem;
      }
      .brand-copy span {
        font-size: 0.72rem;
      }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .detail { flex-direction: column; }
      .cta, .cta-alt { width: 100%; }
      .header-icons { width: auto; }
      .icon-button {
        width: 46px;
        height: 46px;
      }
      .hero {
        padding: 18px 0 26px;
      }
      .hero-stage {
        min-height: 520px;
        align-items: flex-end;
      }
      .hero-copy {
        width: auto;
        max-width: none;
        margin: 10px;
        padding: 20px 18px;
      }
      h1 {
        max-width: 11ch;
        font-size: clamp(2.1rem, 11vw, 3.25rem);
      }
      .lead {
        font-size: 0.94rem;
        line-height: 1.6;
      }
      .panel,
      .contact-card {
        border-radius: 18px;
      }
      .panel, .feature, .service, .contact-card {
        padding: 18px;
      }
      .service-copy,
      .gallery-copy {
        padding: 16px;
      }
      .section-head {
        margin-bottom: 18px;
      }
      .section-head h2,
      .contact-card h3 {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
        line-height: 1;
      }
      .section-head p,
      .gallery-copy p,
      .service p {
        font-size: 0.92rem;
        line-height: 1.55;
      }
      .gallery-copy h3,
      .service-copy h3 {
        font-size: 1rem;
      }
      .detail-list {
        gap: 10px;
      }
      .detail {
        gap: 8px;
        padding: 12px 14px;
      }
      .detail span {
        text-align: left;
      }
      .gallery-card img {
        height: 180px;
      }
      .hero-backdrop, .pos-hero-monitor { object-position: 67% center; }
      .service-media { aspect-ratio: 3 / 2; height: auto; padding: 0; }
    }

    @media (max-width: 480px) {
      .section {
        padding: 24px 0;
      }
      .wrap {
        width: min(calc(100% - 16px), var(--wrap));
      }
      .header-row {
        min-height: 68px;
      }
      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
      }
      .brand-copy strong {
        font-size: 0.9rem;
      }
      .brand-copy span {
        font-size: 0.68rem;
      }
      .icon-button {
        width: 42px;
        height: 42px;
      }
      .hero-stage {
        min-height: 470px;
      }
      .hero-copy {
        margin: 8px;
        padding: 18px 16px;
      }
      h1 {
        font-size: clamp(1.9rem, 10.5vw, 2.7rem);
      }
      .lead {
        font-size: 0.9rem;
      }
      .panel, .feature, .service, .contact-card {
        padding: 16px;
      }
      .service-copy,
      .gallery-copy {
        padding: 14px;
      }
      .gallery-card img {
        height: 165px;
      }
      .tag {
        font-size: 0.74rem;
        padding: 7px 10px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
