  :root {
      --orange: #F97316;
      --blue: #2563EB;
      --dark: #0F172A;
      --mid: #334155;
      --muted: #64748B;
  }

  body {
    font-family: Urbanist;
    color: var(--dark);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Urbanist;
  }

  /* HERO */
  .hero-section {
      background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
      min-height: 520px;
  }

  .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(249, 115, 22, 0.18);
      border: 1px solid rgba(249, 115, 22, 0.35);
      color: #FED7AA;
      border-radius: 20px;
      padding: 4px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
  }

  .hero-tag .dot {
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: blink 1.4s infinite;
  }

  @keyframes blink {

      0%,
      100% {
          opacity: 1
      }

      50% {
          opacity: .2
      }
  }

  .hero-section h1 {
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
  }

  .hero-section h1 span {
      color: #60A5FA;
  }

  .hero-section p {
      color: #CBD5E1;
      font-size: 1rem;
      line-height: 1.7;
  }

  .btn-orange {
      background: var(--orange);
      color: #fff;
      border: none;
      font-family: Urbanist;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: 9px;
      transition: all .2s;
  }

  .btn-orange:hover {
      background: #ea6e0b;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(249, 115, 22, .35);
  }

  .btn-outline-light-custom {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, .4);
      font-family: Urbanist;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 9px;
      transition: all .2s;
  }

  .btn-outline-light-custom:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .08);
      color: #fff;
  }

  .stat-box {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 12px;
      padding: 20px 24px;
  }

  .stat-box .num {
      font-family: Urbanist;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--orange);
  }

  .stat-box .lbl {
      font-size: 0.8rem;
      color: #94A3B8;
      margin-top: 2px;
  }

  /* SECTION COMMON */
  .section-tag {
      display: inline-block;
      background: #EFF6FF;
      border: 1px solid #BFDBFE;
      color: var(--blue);
      border-radius: 20px;
      padding: 3px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 12px;
  }

  .section-tag.orange {
      background: #FFF7ED;
      border-color: #FED7AA;
      color: var(--orange);
  }

  .section-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--dark);
  }

  .section-sub {
      color: var(--muted);
      font-size: 0.95rem;
  }

  /* TURNAROUND */
  .turnaround-box {
      background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
      border: 1px solid rgba(37, 99, 235, .2);
      border-radius: 16px;
  }

  .turnaround-box .big-text {
      font-family: Urbanist;
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--dark);
  }

  .turnaround-box .big-text span {
      color: var(--blue);
  }

  .check-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--mid);
  }

  .check-icon {
      width: 20px;
      height: 20px;
      background: #DBEAFE;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
  }

  .check-icon i {
      font-size: 0.65rem;
      color: var(--blue);
  }

  /* WHO USES */
  .who-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all .2s;
  }

  .who-card:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
      transform: translateY(-2px);
  }

  .who-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      background: #EFF6FF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
  }

  .who-card span {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--dark);
  }

  /* COVERAGE */
  .coverage-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--dark);
      transition: all .2s;
  }

  .coverage-pill:hover {
      border-color: #BFDBFE;
      background: #F8FAFC;
  }

  .coverage-pill .cov-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
  }

  /* ENGINE CARDS */
  .engine-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 14px;
      padding: 24px;
      height: 100%;
      transition: all .2s;
  }

  .engine-card:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
      transform: translateY(-3px);
  }

  .engine-badge {
      display: inline-block;
      background: #EFF6FF;
      border: 1px solid #BFDBFE;
      color: var(--blue);
      border-radius: 20px;
      padding: 3px 12px;
      font-size: 0.72rem;
      font-weight: 700;
      margin-bottom: 14px;
  }

  .engine-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 14px;
  }

  .engine-card h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
  }

  .engine-card p {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.6;
  }

  .cap-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
  }

  .cap-list li {
      font-size: 0.8rem;
      color: var(--mid);
      display: flex;
      align-items: flex-start;
      gap: 8px;
  }

  .cap-list li::before {
      content: '✓';
      color: var(--blue);
      font-weight: 800;
      flex-shrink: 0;
  }

  /* HOW IT WORKS */
  .how-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
  }

  .how-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      font-family: Urbanist;
      font-weight: 700;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .how-step h6 {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 2px;
  }

  .how-step p {
      font-size: 0.82rem;
      color: var(--muted);
      margin: 0;
  }

  .how-connector {
      width: 2px;
      height: 28px;
      background: #E2E8F0;
      margin-left: 17px;
  }

  /* DIFFERENTIATORS */
  .diff-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 18px;
      transition: all .2s;
  }

  .diff-item:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
  }

  .diff-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
  }

  .diff-item h6 {
      font-size: 0.88rem;
      font-weight: 700;
      margin-bottom: 2px;
      color: var(--dark);
  }

  .diff-item p {
      font-size: 0.8rem;
      color: var(--muted);
      margin: 0;
  }

  /* INTEGRATION */
  .int-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: all .2s;
  }

  .int-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
      transform: translateY(-2px);
  }

  .int-card .int-icon {
      font-size: 1.8rem;
      margin-bottom: 10px;
  }

  .int-card h6 {
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 4px;
  }

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

  /* COMPARISON TABLE */
  .compare-table th {
      background: var(--dark);
      color: #fff;
      font-family: Urbanist;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 14px 18px;
  }

  .compare-table td {
      padding: 13px 18px;
      font-size: 0.85rem;
      vertical-align: middle;
  }

  .compare-table .col-safemate {
      background: #F0F9FF;
      font-weight: 600;
      color: var(--dark);
  }

  .compare-table .col-trad {
      color: var(--muted);
  }

  .compare-table tr:nth-child(even) td {
      background: #F8FAFC;
  }

  .compare-table tr:nth-child(even) .col-safemate {
      background: #E0F2FE;
  }

  .badge-yes {
      background: #D1FAE5;
      color: #065F46;
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.75rem;
      font-weight: 600;
  }

  .badge-no {
      background: #FEE2E2;
      color: #991B1B;
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.75rem;
      font-weight: 600;
  }

  .badge-fast {
      background: #FFF7ED;
      color: #92400E;
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.75rem;
      font-weight: 600;
  }

  /* INDUSTRY */
  .industry-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 20px;
      transition: all .2s;
  }

  .industry-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
      transform: translateY(-2px);
      border-color: #BFDBFE;
  }

  .industry-card .ind-icon {
      font-size: 1.5rem;
      margin-bottom: 10px;
  }

  .industry-card h6 {
      font-size: 0.88rem;
      font-weight: 700;
      margin-bottom: 4px;
  }

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

  /* OUTPUT REPORT */
  .report-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 10px;
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--dark);
  }

  .report-item .rep-dot {
      width: 8px;
      height: 8px;
      background: var(--blue);
      border-radius: 50%;
      flex-shrink: 0;
  }

  /* SLA */
  .sla-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
  }

  .sla-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #EFF6FF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
  }

  .sla-item h6 {
      font-size: 0.88rem;
      font-weight: 700;
      margin-bottom: 2px;
      color: var(--dark);
  }

  .sla-item p {
      font-size: 0.8rem;
      color: var(--muted);
      margin: 0;
  }

  /* CTA */
  .cta-section {
      background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  }
