:root {
      --brand-primary: #1f4aff;
      --brand-dark: #0b1b3c;
      --brand-accent: #06c167;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
      background: #f6f7fb;
      color: #0f172a;
    }

    .navbar-brand span {
      color: var(--brand-primary);
    }

    .hero {
      position: relative;
      background: linear-gradient(135deg, rgba(31, 74, 255, 0.9), rgba(11, 27, 60, 0.95)), url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      color: #fff;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(11, 27, 60, 0.4), rgba(6, 193, 103, 0.25));
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 6rem 0 5rem;
    }

    .badge-pill {
      border-radius: 50rem;
    }

    .service-card {
      border: none;
      box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    }

    .icon-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(31, 74, 255, 0.12);
      color: var(--brand-primary);
      font-size: 1.25rem;
    }

    .section-title {
      color: var(--brand-dark);
      font-weight: 700;
    }

    .stats-card {
      border: 1px solid rgba(15, 23, 42, 0.06);
      background: #fff;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    }

    .contact-card {
      border: none;
      box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
    }

    .nap-strip {
      background: #fff;
      border-top: 1px solid rgba(15, 23, 42, 0.06);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 6px 30px rgba(15, 23, 42, 0.05);
      position: relative;
      z-index: 2;
    }

    .nap-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      color: #0f172a;
    }

    .nap-item .icon-circle {
      background: rgba(6, 193, 103, 0.12);
      color: var(--brand-accent);
      width: 44px;
      height: 44px;
      font-size: 1rem;
    }

    .mobile-call-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #0b1b3c;
      color: #fff;
      padding: 0.75rem 1.25rem;
      display: none;
      align-items: center;
      justify-content: space-between;
      z-index: 1030;
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    }

    .mobile-call-bar .btn {
      flex: 1;
      margin-left: 1rem;
    }

    @media (max-width: 991.98px) {
      body {
        padding-bottom: 84px;
      }

      .mobile-call-bar {
        display: flex;
      }
    }

    .faq-card {
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    }

    footer {
      background: #0b1b3c;
      color: #e2e8f0;
    }

    footer a {
      color: #cbd5e1;
      text-decoration: none;
    }

    footer a:hover {
      color: #fff;
    }
