    :root {
      --bg: #07111a;
      --bg-soft: #0d1b27;
      --card: rgba(10, 24, 36, 0.82);
      --line: rgba(120, 215, 255, 0.16);
      --text: #eef7fb;
      --muted: #b8cfda;
      --green: #7dd44d;
      --green-2: #9fe86b;
      --blue: #39b9ff;
      --cyan: #79e8ff;
      --shadow: 0 20px 55px rgba(0,0,0,0.32);
      --radius: 24px;
      --radius-sm: 16px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top right, rgba(57, 185, 255, 0.18), transparent 28%),
        radial-gradient(circle at 10% 18%, rgba(125, 212, 77, 0.16), transparent 18%),
        linear-gradient(180deg, #07111a 0%, #08131d 45%, #09151f 100%);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--max), calc(100% - 2rem));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(14px);
      background: rgba(7, 17, 26, 0.72);
      border-bottom: 1px solid rgba(121, 232, 255, 0.08);
    }

    .topbar-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      object-fit: contain;
      filter: drop-shadow(0 0 14px rgba(57, 185, 255, 0.22));
    }

    .brand span {
      font-size: 1rem;
      color: #f5fbff;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a {
      color: var(--muted);
      font-size: 0.95rem;
      transition: color .2s ease;
    }

    nav a:hover {
      color: #fff;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 48px;
      padding: 0 1.15rem;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      cursor: pointer;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      background: linear-gradient(135deg, var(--green), var(--blue));
      color: #051018;
      box-shadow: 0 14px 34px rgba(57,185,255,0.18);
    }

    .button-secondary {
      background: rgba(255,255,255,0.02);
      color: var(--text);
      border-color: rgba(121,232,255,0.18);
    }

    .hero {
      padding: 2.75rem 0 3rem;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 2rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(121,232,255,0.18);
      background: rgba(255,255,255,0.03);
      color: var(--cyan);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    h1 {
      margin: 0 0 1rem;
      font-size: clamp(2.2rem, 5vw, 4.5rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 62ch;
      margin: 0 0 1.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .chip {
      padding: 0.65rem 0.9rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(125,212,77,0.18);
      color: #d7f5c6;
      font-size: 0.92rem;
    }

    .hero-card {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        rgba(5, 14, 22, 0.72);
      border: 1px solid rgba(121, 232, 255, 0.14);
      border-radius: 28px;
      box-shadow: var(--shadow);
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -12% -30% auto;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(125,212,77,0.28), transparent 66%);
      pointer-events: none;
    }

    .hero-logo {
      width: min(100%, 440px);
      margin: 0 auto 1.25rem;
      object-fit: contain;
    }

    .hero-card h3 {
      margin: 0 0 0.6rem;
      font-size: 1.45rem;
    }

    .hero-card p {
      margin: 0 0 1rem;
      color: var(--muted);
      font-size: 1rem;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
      margin-top: 1.35rem;
    }

    .stat {
      padding: 1rem;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .stat strong {
      display: block;
      font-size: 1.3rem;
      color: var(--green-2);
      margin-bottom: 0.25rem;
    }

    section {
      padding: 1.2rem 0 2.5rem;
    }

    .section-title {
      margin: 0 0 0.4rem;
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      letter-spacing: -0.03em;
    }

    .section-copy {
      margin: 0 0 1.5rem;
      color: var(--muted);
      max-width: 72ch;
    }

    .about {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1.25rem;
    }

    .panel {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .panel h3 {
      margin-top: 0;
      font-size: 1.2rem;
    }

    .bullet-list {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 0.8rem;
    }

    .bullet-list li {
      padding-left: 1.15rem;
      position: relative;
      color: var(--muted);
    }

    .bullet-list li::before {
      content: "";
      width: 0.52rem;
      height: 0.52rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--blue));
      position: absolute;
      left: 0;
      top: 0.58rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.4rem;
      box-shadow: var(--shadow);
      min-height: 100%;
    }

    .service-card .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(57,185,255,0.16), rgba(125,212,77,0.18));
      border: 1px solid rgba(121,232,255,0.14);
      margin-bottom: 0.85rem;
      font-size: 1.15rem;
    }

    .service-card h3 {
      margin: 0 0 0.55rem;
      font-size: 1.08rem;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.97rem;
    }

    .feature {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1rem;
      align-items: stretch;
    }

    .price-badge {
      display: inline-flex;
      padding: 0.55rem 0.85rem;
      border-radius: 999px;
      background: rgba(125,212,77,0.12);
      border: 1px solid rgba(125,212,77,0.24);
      color: #d5f7c3;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .grid-mini {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .mini-card {
      padding: 1rem;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      color: var(--muted);
    }

    .mini-card strong {
      color: #fff;
      display: block;
      margin-bottom: 0.35rem;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .step {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.25rem;
      box-shadow: var(--shadow);
      position: relative;
    }

    .step-number {
      display: inline-flex;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--green), var(--blue));
      color: #031018;
      font-weight: 800;
      margin-bottom: 0.85rem;
    }

    .clients {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
    }

    .client {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(121,232,255,0.1);
      border-radius: 20px;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client p {
      margin: 0;
      color: #d8eef7;
      font-weight: 700;
      text-align: center;
    }

    .client-logo {
      width: min(100%, 320px);
      aspect-ratio: 16 / 10;
      object-fit: contain;
      border-radius: 14px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(121,232,255,0.14);
      padding: 0.65rem;
    }

    .cta {
      padding-bottom: 4rem;
    }

    .cta-box {
      background:
        radial-gradient(circle at top left, rgba(125,212,77,0.18), transparent 24%),
        radial-gradient(circle at right center, rgba(57,185,255,0.18), transparent 24%),
        rgba(8, 20, 30, 0.92);
      border: 1px solid rgba(121,232,255,0.14);
      border-radius: 30px;
      padding: 2rem;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .cta-box p {
      max-width: 62ch;
      margin: 0.75rem auto 1.4rem;
      color: var(--muted);
    }

    footer {
      padding: 1rem 0 2rem;
      color: #8fb4c2;
      border-top: 1px solid rgba(121,232,255,0.08);

    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-social {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.55rem;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .footer-social-label {
      color: #9dc0cd;
      margin-right: 0.2rem;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.38rem 0.72rem;
      border-radius: 999px;
      border: 1px solid rgba(121, 232, 255, 0.22);
      color: #eaf6fb;
      background: rgba(255, 255, 255, 0.03);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
    }

    .social-link:hover {
      transform: translateY(-1px);
      border-color: rgba(125, 212, 77, 0.42);
      background: rgba(125, 212, 77, 0.1);
    }

    .social-icon {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .small {
      font-size: 0.92rem;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .about,
      .feature {
        grid-template-columns: 1fr;
      }

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

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

    @media (max-width: 720px) {
      .topbar-inner {
        padding: 0.8rem 0;
        align-items: flex-start;
        flex-direction: column;
      }

      nav {
        width: 100%;
        justify-content: flex-start;
      }

      .hero {
        padding-top: 2.5rem;
      }

      .cards,
      .process,
      .clients,
      .grid-mini,
      .stat-grid {
        grid-template-columns: 1fr;
      }

      .panel,
      .service-card,
      .step,
      .hero-card,
      .cta-box {
        padding: 1.2rem;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
