    /* Base reset & typography */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, 
BlinkMacSystemFont, "Segoe UI",
                   sans-serif;
      font-size: 15px;
      line-height: 1.7;
      color: #4c4c4d;
      background-color: #ffffff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: #0f367a;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    h1, h2, h3, h4, h5, h6 {
      margin: 0 0 0.6em;
      color: #000000;
      font-weight: 600;
    }

    p {
      margin: 0 0 0.9em;
    }

    /* Layout helpers */
    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .section {
      padding: 60px 0;
    }

    .section--light {
      background-color: #ffffff;
    }

    .section--alt {
      background-color: #eef3f9;
    }

    .section__heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .section__heading h2 {
      font-size: 28px;
    }

    .section__heading p {
      max-width: 720px;
      margin: 12px auto 0;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: #ffffff;
      box-shadow: 0 0 15px 5px rgba(16, 1, 148, 0.05);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 44px;
      width: auto;
    }

    .logo-text {
      font-size: 18px;
      font-weight: 600;
      color: #0f367a;
      letter-spacing: 0.02em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 15px;
    }

    .main-nav a {
      position: relative;
      padding-bottom: 4px;
      color: #000000;
      text-decoration: none;
    }

    .main-nav a::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background-color: #0f367a;
      transition: width 0.2s ease;
    }

    .main-nav a:hover::before {
      width: 100%;
    }

    .header-cta {
      margin-left: 8px;
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      white-space: nowrap;
    }

    .btn--primary {
      background-color: #0f367a;
      border-color: #0f367a;
      color: #ffffff;
    }

    .btn--primary:hover {
      opacity: 0.9;
      text-decoration: none;
    }

    .btn--outline {
      background-color: transparent;
      border-color: #0f367a;
      color: #0f367a;
    }

    .btn--outline:hover {
      background-color: #0f367a;
      color: #ffffff;
      text-decoration: none;
    }

    /* Mobile header */
    .menu-toggle {
      display: none;
      width: 32px;
      height: 32px;
      border-radius: 4px;
      border: 1px solid #ddd;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background-color: #000000;
    }

    @media (max-width: 900px) {
      .main-nav {
        display: none; /* feels static – no JS behaviour */
      }
      .menu-toggle {
        display: flex;
      }
    }

    /* Hero (no slider, static content) */
    .hero {
      background: linear-gradient(-6deg, #eef3f9, #eef3f9);
      padding: 90px 0 70px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .hero-eyebrow {
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0f367a;
      margin-bottom: 8px;
    }

    .hero-title {
      font-size: 34px;
      line-height: 1.25;
      margin-bottom: 14px;
      color: #000000;
    }

    .hero-subtitle {
      font-size: 16px;
      margin-bottom: 18px;
    }

    .hero-list {
      margin: 0 0 22px;
      padding-left: 18px;
    }

    .hero-list li {
      margin-bottom: 4px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-highlight {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 16px 18px;
      font-size: 13px;
      box-shadow: 0 12px 30px rgba(15, 54, 122, 0.08);
    }

    .hero-highlight strong {
      color: #0f367a;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* Cards (Services & Products) */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    @media (max-width: 900px) {
      .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .cards-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background-color: #ffffff;
      border-radius: 10px;
      padding: 18px 18px 20px;
      box-shadow: 0 10px 28px rgba(15, 54, 122, 0.06);
      border: 1px solid #eef3f9;
    }

    .card__eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #fa584d;
      margin-bottom: 6px;
    }

    .card__title {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .card__body {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .card__link {
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* Industries list */
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .chip {
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid #d4ddf0;
      background-color: #ffffff;
      font-size: 13px;
    }

    /* Why Phoenix (3 columns) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    @media (max-width: 900px) {
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .feature {
      padding: 18px 18px 20px;
      border-radius: 10px;
      background-color: #ffffff;
      border: 1px solid #eef3f9;
    }

    .feature__title {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .feature__body {
      font-size: 14px;
    }

    /* CTA band */
    .cta-band {
      text-align: center;
      padding: 40px 24px;
      border-radius: 12px;
      background: linear-gradient(135deg, #0f367a, #3b7eff);
      color: #ffffff;
    }

    .cta-band h2 {
      color: #ffffff;
      margin-bottom: 10px;
    }

    .cta-band p {
      margin-bottom: 18px;
      opacity: 0.95;
    }

    .cta-band .btn--outline {
      border-color: #ffffff;
      color: #ffffff;
    }

    .cta-band .btn--outline:hover {
      background-color: #ffffff;
      color: #0f367a;
    }

    /* Footer */
    .site-footer {
      background-color: #ffffff;
      border-top: 1px solid #eef3f9;
      padding: 40px 0 20px;
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
      gap: 24px;
      margin-bottom: 24px;
    }

    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .footer-title {
      font-size: 15px;
      font-weight: 600;
      color: #000000;
      margin-bottom: 10px;
      position: relative;
      padding-bottom: 6px;
    }

    .footer-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 32px;
      height: 2px;
      background-color: #0f367a;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 4px;
    }

    .footer-links a {
      color: #4c4c4d;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #0f367a;
      text-decoration: underline;
    }

    .footer-logo {
      margin-bottom: 10px;
    }

    .footer-text {
      font-size: 13px;
      margin-bottom: 10px;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }

    .social-links a {
      font-size: 13px;
      padding: 4px 0;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 260px;
    }

    .newsletter-form input[type="email"] {
      width: 100%;
      padding: 8px 10px;
      border-radius: 4px;
      border: 1px solid #d4ddf0;
      font-size: 13px;
    }

    .newsletter-form button {
      border: none;
      padding: 9px 12px;
      font-size: 13px;
      border-radius: 4px;
      background-color: #0f367a;
      color: #ffffff;
      cursor: pointer;
    }

    .newsletter-form button:hover {
      opacity: 0.9;
    }

    .footer-bottom {
      border-top: 1px solid #eef3f9;
      padding-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #777777;
    }

    .footer-bottom a {
      color: inherit;
    }
