:root {
      --primary: #0b5cab;
      --primary-dark: #083d73;
      --accent: #2b88d8;
      --text: #1f2937;
      --muted: #5b6777;
      --bg: #f5f9fd;
      --white: #ffffff;
      --border: #d8e3ef;
      --success: #0f7b6c;
      --shadow: 0 12px 32px rgba(8, 61, 115, 0.10);
      --radius: 18px;
      --max: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    /* a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    } */

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 10px;
      font-weight: 600;
      transition: 0.25s ease;
      border: 1px solid transparent;
    }
    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: var(--shadow);
    }
    .btn-primary:hover { background: var(--primary-dark); }
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }
    .btn-secondary:hover {
      background: rgba(11, 92, 171, 0.06);
    }

    /* .section {
      padding: 78px 0;
    } */
    .section.alt {
      background: var(--bg);
    }
    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--primary);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    h1, h2, h3 {
      margin: 0 0 16px;
      line-height: 1.2;
    }
    h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
    h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
    h3 { font-size: 1.2rem; }
    p.lead {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 760px;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.94);
      border-bottom: 1px solid rgba(216, 227, 239, 0.8);
      backdrop-filter: blur(12px);
    }
    .nav-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      color: var(--primary-dark);
      font-size: 1.1rem;
    }
    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: inline-block;
    }
    .nav-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
      color: #314355;
      font-weight: 500;
    }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(115deg, rgba(8,61,115,0.96), rgba(11,92,171,0.92)),
        url('images/home-hero-bg.webp') center/cover no-repeat;
      color: var(--white);
      padding: 88px 0 72px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.95fr;
      gap: 44px;
      align-items: center;
    }
    .hero p {
      color: rgba(255,255,255,0.88);
      font-size: 1.06rem;
      margin-bottom: 24px;
    }
    .hero-badges {
      display: grid;
      grid-template-columns: repeat(2, minmax(180px, 1fr));
      gap: 14px;
      margin: 28px 0;
    }
    .hero-badges span {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 0.98rem;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .hero-note {
      font-size: 0.96rem;
      color: rgba(255,255,255,0.76);
    }
    .hero-card {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 14px 40px rgba(0,0,0,0.12);
      backdrop-filter: blur(8px);
    }
    .dashboard-card {
      background: var(--white);
      color: var(--text);
      border-radius: 20px;
      padding: 22px;
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    }
    .dash-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }
    .dash-title { font-weight: 700; }
    .mini-pill {
      background: #e9f3fb;
      color: var(--primary);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 0.84rem;
      font-weight: 600;
    }
    /* .metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 16px;
    }
    .metric {
      background: #f5f9fd;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px;
    }
    .metric strong {
      display: block;
      font-size: 1.35rem;
      color: var(--primary-dark);
    } */
    .bars {
      display: grid;
      gap: 12px;
      margin-top: 16px;
    }
    .bar-row span {
      display: flex;
      justify-content: space-between;
      font-size: 0.92rem;
      margin-bottom: 6px;
    }
    .bar-track {
      background: #e8eef6;
      border-radius: 999px;
      height: 10px;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    /* Shared grids */
    .grid-4, .grid-3, .grid-2 {
      display: grid;
      gap: 22px;
    }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 8px 20px rgba(10, 42, 80, 0.05);
    }
    .card h3 { color: var(--primary-dark); }
    .icon-box {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #eaf3fb;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .solution-card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .solution-card p {
      color: var(--muted);
      flex-grow: 1;
    }
    .learn-link {
      color: var(--primary);
      font-weight: 700;
      margin-top: 8px;
    }

    .check-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 20px 0 0;
      list-style: none;
    }
    .check-list li::before {
      content: '✔';
      color: var(--success);
      font-weight: 700;
      margin-right: 10px;
    }

    .stat-card {
      text-align: center;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
    }
    .stat-card strong {
      display: block;
      font-size: 2rem;
      color: var(--primary-dark);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    