
    :root {
      --brand-primary: #6f42c1;
      --brand-secondary: #8b5cf6;
      --brand-accent: #c084fc;
      --brand-dark: #0f0a19;
      --brand-darker: #090511;
      --brand-surface: rgba(255,255,255,0.08);
      --brand-surface-2: rgba(255,255,255,0.12);
      --brand-border: rgba(255,255,255,0.14);
      --brand-text: #f8f9ff;
      --brand-muted: #b8b4d1;
      --brand-success: #4ade80;
      --shadow-soft: 0 10px 30px rgba(0,0,0,0.18);
      --shadow-lg: 0 18px 60px rgba(0,0,0,0.28);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 16px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(111,66,193,0.28), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(192,132,252,0.14), transparent 20%),
        linear-gradient(135deg, #090511 0%, #120a20 45%, #191033 100%);
      color: var(--brand-text);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    .text-purple {
      color: var(--brand-accent) !important;
    }

    .section-padding {
      padding: 100px 0;
    }

    .glass {
      background: var(--brand-surface);
      border: 1px solid var(--brand-border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: var(--shadow-soft);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .section-subtitle {
      color: var(--brand-muted);
      max-width: 720px;
      font-size: 1.05rem;
    }

    .navbar {
      background: rgba(9, 5, 17, 0.72);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .navbar-brand {
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.15rem;
    }

    .brand-badge {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
      color: white;
      box-shadow: 0 10px 25px rgba(111, 66, 193, 0.35);
      font-size: 1.1rem;
    }

    .nav-link {
      color: rgba(255,255,255,0.82) !important;
      font-weight: 600;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff !important;
    }

    .btn-brand {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      border: none;
      color: white;
      font-weight: 700;
      border-radius: 999px;
      padding: 0.9rem 1.35rem;
      box-shadow: 0 12px 30px rgba(111, 66, 193, 0.28);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(111, 66, 193, 0.36);
      color: white;
    }

    .btn-outline-light-soft {
      border: 1px solid rgba(255,255,255,0.18);
      color: white;
      background: rgba(255,255,255,0.04);
      font-weight: 700;
      border-radius: 999px;
      padding: 0.9rem 1.35rem;
    }

    .btn-outline-light-soft:hover {
      background: rgba(255,255,255,0.1);
      color: white;
      border-color: rgba(255,255,255,0.28);
    }

    .hero {
      position: relative;
      padding-top: 160px;
      padding-bottom: 110px;
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      z-index: 0;
      opacity: 0.7;
    }

    .hero::before {
      width: 340px;
      height: 340px;
      background: rgba(111,66,193,0.28);
      top: -80px;
      left: -70px;
    }

    .hero::after {
      width: 300px;
      height: 300px;
      background: rgba(192,132,252,0.14);
      right: -60px;
      top: 20px;
    }

    .hero-content,
    .hero-visual {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: #f5ecff;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 700;
      margin-bottom: 1.1rem;
    }

    .hero-title {
      font-size: clamp(2.8rem, 7vw, 5.6rem);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: -0.06em;
      margin-bottom: 1.2rem;
    }

    .hero-copy {
      color: var(--brand-muted);
      font-size: 1.1rem;
      max-width: 640px;
      margin-bottom: 1.8rem;
    }

    .hero-stat {
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem;
      min-height: 100%;
    }

    .hero-stat .value {
      font-weight: 900;
      font-size: 1.8rem;
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .hero-panel {
      border-radius: var(--radius-xl);
      padding: 1.3rem;
      position: relative;
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(111,66,193,0.12), rgba(192,132,252,0.04));
      pointer-events: none;
    }

    .dashboard-card,
    .service-card,
    .process-card,
    .project-card,
    .pricing-card,
    .contact-card,
    .testimonial-card {
      border-radius: var(--radius-xl);
      height: 100%;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .dashboard-card:hover,
    .service-card:hover,
    .process-card:hover,
    .project-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover {
      transform: translateY(-6px);
      border-color: rgba(192,132,252,0.35);
      box-shadow: var(--shadow-lg);
    }

    .ui-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      color: #f6f1ff;
      font-weight: 600;
      padding: 0.45rem 0.8rem;
      font-size: 0.86rem;
      margin: 0.25rem;
    }

    .mini-label {
      color: var(--brand-muted);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 800;
    }

    .live-dot {
      width: 10px;
      height: 10px;
      background: var(--brand-success);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 0 rgba(74,222,128,0.8);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
      70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
      100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
    }

    .metric-bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
    }

    .metric-bar > span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    }

    .icon-box {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      background: linear-gradient(135deg, rgba(111,66,193,0.22), rgba(192,132,252,0.2));
      border: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 1rem;
    }

    .service-card,
    .process-card,
    .project-card,
    .pricing-card,
    .contact-card,
    .testimonial-card,
    .dashboard-card {
      padding: 1.5rem;
    }

    .service-card p,
    .process-card p,
    .project-card p,
    .pricing-card p,
    .contact-card p,
    .testimonial-card p {
      color: var(--brand-muted);
    }

    .service-list,
    .pricing-list,
    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-list li,
    .pricing-list li,
    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-bottom: 0.75rem;
      color: #f5f4fb;
    }

    .service-list i,
    .pricing-list i,
    .contact-list i {
      color: var(--brand-accent);
      margin-top: 0.15rem;
    }

    .project-image {
      border-radius: 22px;
      padding: 1rem;
      min-height: 250px;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
      overflow: hidden;
    }

    .project-window {
      background: #120d1e;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .window-topbar {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.8rem 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .window-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.45);
    }

    .window-body {
      padding: 1rem;
    }

    .mock-chart {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.5rem;
      align-items: end;
      min-height: 120px;
    }

    .mock-chart span {
      display: block;
      border-radius: 12px 12px 6px 6px;
      background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary));
      opacity: 0.92;
    }

    .project-badge {
      display: inline-flex;
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      background: rgba(192,132,252,0.12);
      border: 1px solid rgba(192,132,252,0.16);
      color: #f0dfff;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .pricing-card.featured {
      border: 1px solid rgba(192,132,252,0.38);
      box-shadow: 0 20px 60px rgba(111,66,193,0.24);
      position: relative;
    }

    .featured-ribbon {
      position: absolute;
      top: 18px;
      right: 18px;
      background: linear-gradient(135deg, var(--brand-accent), #f0abfc);
      color: #2c1244;
      font-weight: 800;
      border-radius: 999px;
      padding: 0.35rem 0.7rem;
      font-size: 0.76rem;
    }

    .price {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1;
      margin: 0.7rem 0 0.35rem;
    }

    .price small {
      font-size: 1rem;
      color: var(--brand-muted);
      font-weight: 700;
    }

    .counter-number {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 900;
      line-height: 1;
    }

    .cta-box {
      border-radius: 32px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(111,66,193,0.18), rgba(192,132,252,0.08));
      pointer-events: none;
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .form-control,
    .form-select {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      border-radius: 14px;
      padding: 0.95rem 1rem;
    }

    .form-control:focus,
    .form-select:focus {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border-color: rgba(192,132,252,0.55);
      box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.15);
    }

    .form-control::placeholder {
      color: rgba(255,255,255,0.45);
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(0,0,0,0.18);
    }

    .footer-link {
      color: var(--brand-muted);
      transition: color 0.2s ease;
    }

    .footer-link:hover {
      color: white;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 991.98px) {
      .hero {
        padding-top: 130px;
        padding-bottom: 80px;
      }

      .section-padding {
        padding: 80px 0;
      }
    }

    @media (max-width: 767.98px) {
      .hero-title {
        font-size: clamp(2.6rem, 13vw, 4rem);
      }

      .service-card,
      .process-card,
      .project-card,
      .pricing-card,
      .contact-card,
      .testimonial-card,
      .dashboard-card,
      .cta-box {
        padding: 1.25rem;
      }
    }