    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    /* ---------- root variables (from file) ---------- */
    :root {
      --navy: #07194d;
      --blue: #1577e8;
      --purple: #7c24d8;
      --ink: #101a33;
      --muted: #65708a;
      --light: #f5f8fc;
      --white: #fff;
      --line: #e4e9f2;
      --shadow: 0 18px 50px rgba(10,31,75,.10);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: var(--ink);
      line-height: 1.6;
      background: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1120px, 92%);
      margin: auto;
    }

    /* ---------- header / nav ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: .04em;
    }

    .brand img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      background: #edf5ff;
      border-radius: 12px;
      padding: 4px;
    }

    .navlinks {
      display: flex;
      gap: 28px;
      font-size: 14px;
      font-weight: 700;
      color: #3e4962;
    }

    .navlinks a:hover {
      color: var(--blue);
    }

    .navcta {
      padding: 11px 18px;
      border-radius: 999px;
      background: var(--navy);
      color: #fff;
      font-weight: 700;
    }

    /* ---------- hero ---------- */
    .hero {
      padding: 92px 0 84px;
      background: radial-gradient(circle at 85% 15%, rgba(124,36,216,.10), transparent 28%),
                  radial-gradient(circle at 15% 30%, rgba(21,119,232,.10), transparent 30%),
                  #fff;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 60px;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.02;
      letter-spacing: -.045em;
      color: var(--navy);
      margin-bottom: 24px;
    }

    h1 span {
      background: linear-gradient(90deg, var(--blue), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 19px;
      color: var(--muted);
      max-width: 650px;
      margin-bottom: 32px;
    }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 10px;
      font-weight: 800;
      transition: all 0.2s;
    }

    .btn-primary {
      background: linear-gradient(90deg, var(--blue), var(--purple));
      color: #fff;
      box-shadow: 0 10px 25px rgba(56,65,210,.22);
    }

    .btn-primary:hover {
      transform: scale(1.02);
      opacity: 0.92;
    }

    .btn-secondary {
      border: 1px solid #cfd7e6;
      background: #fff;
      color: var(--navy);
    }

    .btn-secondary:hover {
      background: var(--light);
    }

    .logo-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 34px;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .logo-card img {
      width: 100%;
      max-width: 460px;
      height: auto;
      display: block;
      margin: auto;
    }

    /* ---------- sections ---------- */
    section {
      padding: 86px 0;
    }

    .section-head {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 44px;
    }

    .section-head h2 {
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .light {
      background: var(--light);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 8px 25px rgba(10,31,75,.05);
      transition: transform 0.2s;
    }

    .card:hover {
      transform: translateY(-4px);
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #edf5ff;
      color: var(--blue);
      font-size: 23px;
      margin-bottom: 20px;
    }

    .card h3 {
      font-size: 20px;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .card p {
      color: var(--muted);
      font-size: 15px;
    }

    /* about */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about h2 {
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 18px;
    }

    .about p {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 18px;
    }

    .checks {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .check {
      font-weight: 700;
      color: #26324c;
    }

    .check::before {
      content: "✓";
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #eaf4ff;
      color: var(--blue);
      margin-right: 10px;
      font-size: 15px;
    }

    /* process */
    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step {
      position: relative;
      padding: 26px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      transition: 0.2s;
    }

    .step:hover {
      box-shadow: var(--shadow);
    }

    .num {
      font-size: 13px;
      font-weight: 900;
      color: var(--purple);
      letter-spacing: .1em;
      margin-bottom: 15px;
    }

    .step h3 {
      color: var(--navy);
      margin-bottom: 8px;
    }

    .step p {
      font-size: 14px;
      color: var(--muted);
    }

    /* cta */
    .cta {
      padding: 70px 0;
      background: linear-gradient(110deg, var(--navy), #122b73 55%, #40209a);
      color: #fff;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .cta h2 {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .cta p {
      color: #d8e2ff;
      max-width: 650px;
    }

    .cta .btn {
      background: #fff;
      color: var(--navy);
      white-space: nowrap;
    }

    .cta .btn:hover {
      background: #f0f4ff;
    }

    /* contact */
    .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 35px;
    }

    .contact-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 30px;
    }

    .contact-card h3 {
      color: var(--navy);
      margin-bottom: 18px;
      font-size: 24px;
    }

    .contact-item {
      padding: 15px 0;
      border-bottom: 1px solid var(--line);
    }

    .contact-item:last-child {
      border: 0;
    }

    .contact-item small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 800;
    }

    .contact-item strong {
      color: var(--ink);
    }

    form {
      display: grid;
      gap: 14px;
    }

    input, textarea {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid #d7deea;
      border-radius: 10px;
      font: inherit;
      outline: none;
      background: #fff;
    }

    input:focus, textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(21,119,232,.10);
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    /* footer */
    footer {
      background: #050f30;
      color: #aeb9d4;
      padding: 25px 0;
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }

    /* ---------- responsive ---------- */
    @media (max-width: 850px) {
      .navlinks {
        display: none;
      }
      .hero-grid,
      .about,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .cards {
        grid-template-columns: 1fr;
      }
      .process {
        grid-template-columns: 1fr 1fr;
      }
      .cta-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .hero {
        padding: 65px 0;
      }
      section {
        padding: 65px 0;
      }
      .process {
        grid-template-columns: 1fr;
      }
      .brand span {
        font-size: 13px;
      }
      .logo-card {
        padding: 18px;
      }
    }