<style>
    /* ─────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      color: #111827;
      background: #fff;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; }

    /* ─────────────────────────────────────
       DESIGN TOKENS
    ───────────────────────────────────── */
    :root {
      --blue:        #3a3abf;
      --blue-hover:  #2b2b9e;
      --blue-soft:   #eeeeff;
      --blue-mid:    #6b6bd6;
      --navy:        #0f0f2d;
      --white:       #ffffff;
      --gray-50:     #f9fafb;
      --gray-100:    #f3f4f6;
      --gray-200:    #e5e7eb;
      --gray-400:    #9ca3af;
      --gray-500:    #6b7280;
      --gray-700:    #374151;
      --yellow:      #f59e0b;
      --green:       #10b981;
      --max-w:       1200px;
      --nav-h:       72px;
      --radius-sm:   6px;
      --radius-md:   10px;
      --radius-lg:   16px;
      --radius-xl:   24px;
      --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
      --shadow-md:   0 4px 16px rgba(0,0,0,.10);
      --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
    }

    /* ─────────────────────────────────────
       UTILITIES
    ───────────────────────────────────── */
    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ─────────────────────────────────────
       BUTTONS
    ───────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 30px; border-radius: var(--radius-md);
      font-size: 15px; font-weight: 700;
      transition: all .18s; white-space: nowrap; cursor: pointer; border: none;
    }
    .btn-primary {
      background: var(--blue); color: #fff;
      box-shadow: 0 4px 14px rgba(58,58,191,.35);
    }
    .btn-primary:hover {
      background: var(--blue-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(58,58,191,.42);
    }
    .btn-ghost {
      background: transparent; color: var(--blue);
      border: 2px solid var(--blue);
    }
    .btn-ghost:hover { background: var(--blue-soft); }
    .btn-white {
      background: #fff; color: var(--blue);
      box-shadow: var(--shadow-md);
    }
    .btn-white:hover { background: var(--blue-soft); }

    /* ─────────────────────────────────────
       NAVBAR  — white, sticky, icon+label links
    ───────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 300;
      height: var(--nav-h);
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      box-shadow: 0 1px 6px rgba(0,0,0,.06);
    }
    .nav__inner {
      height: 100%;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }

    /* Logo */
    .nav__logo img { height: 38px; width: auto; object-fit: contain; }

    /* Nav links */
    .nav__links {
      display: flex; align-items: center; gap: 2px;
    }
    .nav__links a {
      display: flex; align-items: center; gap: 6px;
      padding: 8px 14px; border-radius: var(--radius-sm);
      font-size: 13.5px; font-weight: 600; color: var(--gray-700);
      transition: background .15s, color .15s;
    }
    .nav__links a img {
      width: 15px; height: 15px;
      object-fit: contain; opacity: .75;
      /* make nav icons match the dark theme */
      filter: brightness(0) saturate(100%);
    }
    .nav__links a:hover,
    .nav__links a.active {
      background: var(--blue-soft); color: var(--blue);
    }
    .nav__links a:hover img,
    .nav__links a.active img {
      filter: none; opacity: 1;
    }

    /* Right side */
    .nav__right {
      display: flex; align-items: center; gap: 16px;
    }
    .nav__phone {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600; color: var(--navy);
    }
    .nav__phone img { width: 18px; height: 18px; }

    /* Hamburger */
    .nav__burger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; padding: 4px; cursor: pointer;
    }
    .nav__burger span {
      display: block; width: 23px; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: transform .25s, opacity .25s;
    }

    /* Mobile menu */
    .nav__mobile {
      display: none; flex-direction: column;
      padding: 12px 40px 18px;
      border-top: 1px solid var(--gray-200); background: #fff;
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile a {
      display: flex; align-items: center; gap: 10px;
      padding: 11px 12px; border-radius: var(--radius-sm);
      font-size: 14px; font-weight: 600; color: var(--gray-700);
    }
    .nav__mobile a img { width: 16px; height: 16px; filter: brightness(0) saturate(100%); }
    .nav__mobile a:hover { background: var(--blue-soft); color: var(--blue); }
    .nav__mobile a:hover img { filter: none; }

    /* ─────────────────────────────────────
       HERO  — light lavender/off-white bg, two-col
    ───────────────────────────────────── */
    .hero {
      background: linear-gradient(155deg, #f0f0ff 0%, #f8f8ff 55%, #fff 100%);
      padding: 72px 40px 60px;
      overflow: hidden; position: relative;
    }
    /* Decorative arrows top-left */
    .hero__deco-arrows {
      position: absolute; top: 28px; left: 44px;
      width: 100px; opacity: .5; pointer-events: none;
    }
    /* Curvy arrow bottom-right area */
    .hero__deco-curl {
      position: absolute; bottom: 60px; right: 52px;
      width: 46px; opacity: .3; pointer-events: none;
    }

    .hero__inner {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 56px;
    }

    /* LEFT COPY */
    .hero__label {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--blue-soft); color: var(--blue);
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 5px 14px;
      border-radius: 20px; margin-bottom: 20px;
    }
    .hero__label::before {
      content: ""; width: 6px; height: 6px;
      background: var(--blue); border-radius: 50%; animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .4; transform: scale(1.4); }
    }

    .hero__title {
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800; line-height: 1.16;
      letter-spacing: -1.2px; color: var(--navy);
      margin-bottom: 6px;
    }
    .hero__title .blue { color: var(--blue); }

    /* The underline vector sits right under "Compliance" */
    .hero__underline-img {
      display: block;
      width: 210px; margin-top: -2px; margin-bottom: 10px;
    }

    .hero__sub {
      font-size: 15.5px; color: var(--gray-500);
      line-height: 1.78; margin-bottom: 10px; max-width: 440px;
    }

    /* Three small feature lines (icons + text) */
    .hero__features {
      display: flex; flex-direction: column; gap: 8px;
      margin-bottom: 34px;
    }
    .hero__feat {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--gray-700); font-weight: 500;
    }
    .hero__feat img {
      width: 20px; height: 20px; flex-shrink: 0;
    }

    .hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* RIGHT IMAGE */
    .hero__img-wrap {
      position: relative;
      display: flex; justify-content: flex-end; align-items: center;
    }
    .hero__img-wrap img.hero__main-img {
      width: 100%; max-width: 500px;
      border-radius: var(--radius-xl);
      /* Remove black bg — already part of the PNG */
    }

    /* ─────────────────────────────────────
       SECTION SHARED STYLES
    ───────────────────────────────────── */
    .section { padding: 80px 40px; }
    .section--light { background: var(--gray-50); }

    .eyebrow {
      display: inline-block;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 10px;
    }
    .s-title {
      font-size: clamp(24px, 2.8vw, 36px); font-weight: 800;
      color: var(--navy); letter-spacing: -.6px; line-height: 1.22;
      margin-bottom: 12px;
    }
    .s-title .blue { color: var(--blue); }
    .s-desc {
      font-size: 15px; color: var(--gray-500); line-height: 1.75;
    }

    /* Underline image decoration under title */
    .title-line {
      display: block; width: 170px; margin-top: 2px;
    }
    .title-line-c { margin: 2px auto 0; }

    .center { text-align: center; }
    .center .s-desc { max-width: 560px; margin: 0 auto; }

    /* ─────────────────────────────────────
       ABOUT SECTION  — image LEFT, text RIGHT
    ───────────────────────────────────── */
    .about__grid {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 72px;
    }
    .about__img-wrap { position: relative; }
    .about__img-wrap img.about__main {
      width: 100%; border-radius: var(--radius-lg);
      /* image has black bg, show it naturally */
    }
    /* Curly vector decoration */
    .about__deco {
      position: absolute; right: -18px; top: 48px;
      width: 40px; opacity: .4; pointer-events: none;
    }

    /* Checklist */
    .about__checks {
      display: flex; flex-direction: column; gap: 13px;
      margin: 26px 0 34px;
    }
    .about__check {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: var(--navy); font-weight: 500; line-height: 1.5;
    }
    .about__check img {
      width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
    }

    /* ─────────────────────────────────────
       SERVICES  — 3-column cards
    ───────────────────────────────────── */
    .services__header {
      max-width: var(--max-w); margin: 0 auto 48px;
    }
    .services__grid {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .svc-card {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-lg); padding: 34px 28px;
      transition: box-shadow .2s, border-color .2s, transform .2s;
    }
    .svc-card:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 32px rgba(58,58,191,.13);
      transform: translateY(-5px);
    }
    .svc-card__icon {
      width: 58px; height: 58px; border-radius: var(--radius-md);
      background: var(--blue-soft);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
    }
    .svc-card__icon img {
      width: 34px; height: 34px; object-fit: contain;
    }
    .svc-card__title {
      font-size: 17px; font-weight: 700; color: var(--navy);
      margin-bottom: 10px;
    }
    .svc-card__desc {
      font-size: 14px; color: var(--gray-500); line-height: 1.72;
    }

    /* ─────────────────────────────────────
       PRICING  — 3 plan cards
    ───────────────────────────────────── */
    .pricing__header {
      max-width: var(--max-w); margin: 0 auto 48px;
    }
    .pricing__grid {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; align-items: start;
    }
    .plan {
      border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
      padding: 36px 30px; position: relative; overflow: hidden;
      transition: box-shadow .2s;
    }
    .plan:hover { box-shadow: var(--shadow-md); }
    .plan--hot {
      border-color: var(--blue);
      box-shadow: 0 10px 44px rgba(58,58,191,.2);
    }
    /* "Popular" ribbon */
    .plan--hot::before {
      content: "POPULAR";
      position: absolute; top: 20px; right: -30px;
      background: var(--blue); color: #fff;
      font-size: 9px; font-weight: 800; letter-spacing: 1px;
      padding: 4px 44px; transform: rotate(45deg);
    }
    .plan__tier {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.8px; color: var(--gray-400); margin-bottom: 14px;
    }
    .plan__price {
      font-size: 46px; font-weight: 800; color: var(--navy); line-height: 1;
      margin-bottom: 4px;
    }
    .plan__price sup { font-size: 22px; vertical-align: super; }
    .plan__cycle { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; }
    .plan__feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
    .plan__feat {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--navy);
    }
    .plan__feat img { width: 20px; height: 20px; flex-shrink: 0; }

    /* ─────────────────────────────────────
       FAQ
    ───────────────────────────────────── */
    .faq__header {
      max-width: var(--max-w); margin: 0 auto 44px;
    }
    .faq__list {
      max-width: 800px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 12px;
    }
    details.qi {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-md); overflow: hidden;
    }
    details.qi summary {
      padding: 19px 24px; cursor: pointer; list-style: none;
      font-size: 15.5px; font-weight: 600; color: var(--navy);
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
    }
    details.qi summary::after {
      content: "+"; font-size: 22px; font-weight: 300;
      color: var(--blue); flex-shrink: 0;
    }
    details[open].qi summary::after { content: "−"; }
    details.qi p {
      padding: 0 24px 20px;
      font-size: 14.5px; color: var(--gray-500); line-height: 1.75;
    }

    /* ─────────────────────────────────────
       CONTACT  — info left, form right
    ───────────────────────────────────── */
    .contact__grid {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px;
      align-items: start;
    }
    .contact__items { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
    .ci {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .ci__icon {
      width: 50px; height: 50px; border-radius: var(--radius-md);
      background: var(--blue-soft);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ci__icon img { width: 26px; height: 26px; }
    .ci__lbl { font-size: 12px; color: var(--gray-400); margin-bottom: 3px; }
    .ci__val { font-size: 15px; font-weight: 600; color: var(--navy); }

    /* Form */
    .contact__form { display: flex; flex-direction: column; gap: 16px; }
    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .f-grp { display: flex; flex-direction: column; gap: 6px; }
    .f-grp label { font-size: 13px; font-weight: 600; color: var(--navy); }
    .f-grp input,
    .f-grp select,
    .f-grp textarea {
      padding: 12px 16px; border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm); font-size: 14px;
      font-family: inherit; color: var(--navy);
      background: #fff; outline: none;
      transition: border-color .15s;
    }
    .f-grp input:focus,
    .f-grp select:focus,
    .f-grp textarea:focus { border-color: var(--blue); }
    .f-grp textarea { min-height: 110px; resize: vertical; }

    /* ─────────────────────────────────────
       CTA BANNER  — deep blue gradient
    ───────────────────────────────────── */
    .cta {
      background: linear-gradient(130deg, #3a3abf 0%, #1a1a7a 100%);
      padding: 84px 40px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta::before {
      content: ""; position: absolute; top: -100px; left: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(255,255,255,.04);
    }
    .cta::after {
      content: ""; position: absolute; bottom: -80px; right: -80px;
      width: 320px; height: 320px; border-radius: 50%;
      background: rgba(255,255,255,.05);
    }
    .cta__inner { position: relative; z-index: 1; }
    /* Decorative vectors inside cta */
    .cta__v1 {
      position: absolute; top: 18px; left: 36px;
      width: 100px; opacity: .18; pointer-events: none;
    }
    .cta__v2 {
      position: absolute; bottom: 18px; right: 52px;
      width: 44px; opacity: .22; pointer-events: none;
    }
    .cta__title {
      font-size: clamp(26px, 3.2vw, 42px); font-weight: 800;
      color: #fff; letter-spacing: -.8px; margin-bottom: 14px;
    }
    .cta__sub {
      font-size: 16px; color: rgba(255,255,255,.72);
      max-width: 480px; margin: 0 auto 38px; line-height: 1.7;
    }
    .cta__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .btn-outline-white {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.5);
      padding: 13px 28px; border-radius: var(--radius-md);
      font-size: 15px; font-weight: 700; cursor: pointer;
      transition: background .18s;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,.12); }

    /* ─────────────────────────────────────
       FOOTER
    ───────────────────────────────────── */
    footer {
      background: #0a0a20; color: #fff;
      padding: 64px 40px 32px;
    }
    .footer__grid {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 44px; margin-bottom: 44px;
    }
    .footer__logo img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 16px; }
    .footer__tagline { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.75; max-width: 250px; }
    .footer__col-head {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 18px;
    }
    .footer__links { display: flex; flex-direction: column; gap: 10px; }
    .footer__links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
    .footer__links a:hover { color: #a5a5ff; }
    .footer__bar {
      max-width: var(--max-w); margin: 0 auto;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    }
    .footer__bar p { font-size: 13px; color: rgba(255,255,255,.3); }

    /* ─────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero__inner,
      .about__grid,
      .contact__grid { grid-template-columns: 1fr; gap: 40px; }
      .hero__img-wrap { justify-content: center; }
      .hero__img-wrap img.hero__main-img { max-width: 420px; }
      .services__grid,
      .pricing__grid { grid-template-columns: 1fr 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .section { padding: 60px 20px; }
      .hero { padding: 52px 20px 44px; }
      .cta { padding: 64px 20px; }
      footer { padding: 52px 20px 28px; }
      .nav__links, .nav__right { display: none; }
      .nav__burger { display: flex; }
      .nav__mobile { padding: 12px 20px 16px; }
      .wrap { padding: 0 20px; }
      .services__grid,
      .pricing__grid { grid-template-columns: 1fr; }
      .f-row { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; gap: 32px; }
      .footer__bar { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero__btns,
      .cta__btns { flex-direction: column; align-items: stretch; }
      .hero__btns .btn,
      .cta__btns .btn,
      .cta__btns .btn-outline-white { width: 100%; }
    }

    /* ─────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; }
    .revealed { animation: fadeUp .52s ease forwards; }
  </style>