:root {
      --bg: #f5f7fb;
      --surface: #ffffff;
      --surface-soft: #eef4ff;
      --text: #162033;
      --muted: #5f6c82;
      --primary: #3157d5;
      --primary-2: #6d4aff;
      --accent: #0fba87;
      --border: #dfe6f1;
      --shadow: 0 18px 45px rgba(27, 39, 74, .10);
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 10%, rgba(109, 74, 255, .10), transparent 28%),
        radial-gradient(circle at 90% 5%, rgba(49, 87, 213, .10), transparent 25%),
        var(--bg);
      line-height: 1.6;
    }

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

    .wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

    .topbar {
      padding: 18px 0;
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(245, 247, 251, .82);
      border-bottom: 1px solid rgba(223, 230, 241, .8);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 10px 25px rgba(49, 87, 213, .28);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: .2s ease;
      cursor: pointer;
    }

    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 28px rgba(49, 87, 213, .24);
    }
    .btn-light {
      background: #fff;
      border-color: var(--border);
      color: var(--text);
    }

    .hero {
      padding: 88px 0 62px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 52px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(49, 87, 213, .09);
      color: var(--primary);
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.02;
      letter-spacing: -.055em;
      margin: 20px 0 22px;
      max-width: 850px;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      color: var(--muted);
      font-size: 19px;
      max-width: 760px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      color: var(--muted);
      font-weight: 650;
      font-size: 14px;
    }

    .trust-row span::before {
      content: "✓";
      color: var(--accent);
      font-weight: 900;
      margin-right: 8px;
    }

    .dashboard-card {
      background: linear-gradient(160deg, #17224b 0%, #243b85 58%, #563ec2 100%);
      color: #fff;
      border-radius: 30px;
      padding: 24px;
      min-height: 510px;
      box-shadow: 0 28px 70px rgba(30, 44, 110, .27);
      position: relative;
      overflow: hidden;
    }

    .dashboard-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      right: -85px;
      top: -80px;
      background: rgba(255,255,255,.08);
    }

    .dash-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .dot-row { display: flex; gap: 6px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.62); }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      position: relative;
      z-index: 2;
    }

    .stat {
      padding: 18px;
      border-radius: 17px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.12);
    }
    .stat small { color: rgba(255,255,255,.72); }
    .stat strong { display: block; font-size: 26px; margin-top: 4px; }

    .chart {
      height: 150px;
      margin-top: 16px;
      display: flex;
      align-items: end;
      gap: 9px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.09);
      position: relative;
      z-index: 2;
    }

    .chart span {
      flex: 1;
      border-radius: 999px 999px 4px 4px;
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.28));
      min-height: 18px;
    }

    .dash-list {
      margin-top: 16px;
      display: grid;
      gap: 10px;
      position: relative;
      z-index: 2;
    }

    .dash-line {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px;
      background: rgba(255,255,255,.08);
      border-radius: 14px;
      color: rgba(255,255,255,.86);
      font-size: 14px;
    }

    section { padding: 70px 0; }
    .section-title { max-width: 760px; margin-bottom: 34px; }
    .section-title h2 {
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -.035em;
      margin-bottom: 14px;
    }
    .section-title p { color: var(--muted); font-size: 18px; }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 0 10px 30px rgba(28, 43, 75, .055);
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--surface-soft);
      display: grid;
      place-items: center;
      color: var(--primary);
      font-size: 22px;
      margin-bottom: 18px;
    }

    .card h3 { margin-bottom: 8px; font-size: 19px; }
    .card p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
    .card ul { padding-left: 20px; margin: 0; color: var(--muted); font-size: 14px; }
    .card li + li { margin-top: 7px; }

    .analytics {
      background: #10182d;
      color: #fff;
      border-radius: 34px;
      padding: 46px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .analytics p { color: rgba(255,255,255,.72); }
    .analytics h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; }

    .analytics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .analytics-item {
      padding: 15px 16px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      border-radius: 15px;
      font-size: 14px;
    }
    .analytics-item::before {
      content: "●";
      color: #62e9bb;
      font-size: 9px;
      margin-right: 10px;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .value-card {
      padding: 26px;
      border-radius: var(--radius-md);
      background: var(--surface);
      border: 1px solid var(--border);
    }
    .value-card strong { font-size: 20px; display: block; margin-bottom: 8px; }
    .value-card p { color: var(--muted); margin: 0; }

    .audience {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .pill {
      padding: 10px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 26px 22px 24px;
      background: linear-gradient(180deg, #fff, #fbfcff);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
    }
    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 13px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      font-weight: 900;
    }
    .step p { color: var(--muted); margin-bottom: 0; }

    .cta {
      padding-bottom: 88px;
    }
    .cta-box {
      text-align: center;
      padding: 54px 26px;
      border-radius: 34px;
      background: linear-gradient(135deg, #3157d5, #6d4aff);
      color: #fff;
      box-shadow: 0 24px 60px rgba(62, 70, 180, .26);
    }
    .cta-box h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 14px; }
    .cta-box p { max-width: 720px; margin: 0 auto 26px; color: rgba(255,255,255,.82); font-size: 18px; }
    .cta-box .btn-light { border-color: rgba(255,255,255,.28); }

    footer {
      padding: 30px 0 40px;
      color: var(--muted);
      border-top: 1px solid var(--border);
      font-size: 14px;
    }
    .footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

    @media (max-width: 980px) {
      .hero-grid, .analytics { grid-template-columns: 1fr; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .value-grid { grid-template-columns: 1fr; }
      .process { grid-template-columns: repeat(2, 1fr); }
      .dashboard-card { min-height: auto; }
      .nav-links a:not(.nav-cta) { display: none; }
    }

    @media (max-width: 620px) {
      .wrap { width: min(var(--max), calc(100% - 24px)); }
      .topbar { position: static; }
      .hero { padding-top: 52px; }
      .service-grid, .process, .analytics-grid { grid-template-columns: 1fr; }
      .analytics { padding: 28px 20px; }
      .dashboard-card { padding: 18px; border-radius: 24px; }
      .hero-copy, .section-title p, .cta-box p { font-size: 16px; }
      .nav .btn { padding: 11px 15px; font-size: 14px; }
    }

    @media print {
      .topbar, .hero-actions, .cta .btn { display: none !important; }
      body { background: #fff; }
      .dashboard-card, .analytics, .cta-box { box-shadow: none; }
      section, .hero { padding: 30px 0; }
    }
