
    :root {
      --navy: #052966;
      --navy-dark: #021d4d;
      --navy-deep: #001941;
      --blue: #1d75d8;
      --light-blue: #eef7ff;
      --soft-blue: #dbeeff;
      --orange: #ff6b1a;
      --text: #071f44;
      --muted: #4f647d;
      --border: #cfe2f7;
      --white: #ffffff;
      --shadow: 0 14px 35px rgba(5, 41, 102, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: #eef7ff;
      color: var(--navy);
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0.98;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5f0fc;
    }

    .nav {
      min-height: 102px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      max-width: 430px;
    }

    .brand-logo {
      width: 360px;
      max-width: 100%;
      height: auto;
      max-height: 96px;
      object-fit: contain;
    }

    .brand-logo-fallback {
      min-width: 240px;
      height: 62px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--white);
      font-size: 34px;
      font-weight: 900;
      letter-spacing: 4px;
    }

    .brand-text strong {
      display: block;
      color: var(--navy);
      font-size: 37px;
      line-height: 0.92;
      letter-spacing: 3px;
      font-weight: 900;
    }

    .brand-text small {
      display: block;
      margin-top: 9px;
      color: var(--navy);
      font-size: 9px;
      letter-spacing: 3.8px;
      text-transform: uppercase;
      font-weight: 700;
      white-space: nowrap;
    }

    .brand-text small span {
      color: var(--orange);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--navy-deep);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-links a {
      position: relative;
      padding: 16px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 0;
      height: 3px;
      background: var(--orange);
      border-radius: 999px;
      transition: 0.25s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 7px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 12px 26px rgba(5, 41, 102, 0.22);
    }

    .btn-primary:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .btn-outline {
      color: var(--navy);
      background: var(--white);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--navy);
      transform: translateY(-2px);
    }

    .btn-orange {
      color: var(--white);
      background: var(--orange);
    }

    .btn-orange:hover {
      color: var(--navy);
      background: var(--white);
    }

    .btn-light-outline {
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn-light-outline:hover {
      color: var(--navy);
      background: var(--white);
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 22px;
      cursor: pointer;
    }

    .hero {
      background: linear-gradient(100deg, #ffffff 0%, #f8fcff 43%, #e8f5ff 100%);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

   

    .hero h1 {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 50px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 18px;
      font-weight: 900;
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero p {
      max-width: 610px;
      color: #102c55;
      font-size: 17px;
      margin-bottom: 26px;
	   margin-top: 20px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-image {
      display: flex;
      justify-content: flex-end;
    }

    .hero-image img {
      width: min(650px, 100%);
      border-radius: 10px;
      object-fit: contain;
    }

    .hero-image-fallback {
      width: min(650px, 100%);
      min-height: 290px;
      display: none;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: linear-gradient(135deg, #f7fbff, #d9ecff);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .dashboard-card {
      width: 100%;
      max-width: 520px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid #c9dff5;
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 18px 45px rgba(5, 41, 102, 0.14);
    }

    .dashboard-header {
      color: var(--navy);
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .dashboard-grid div {
      min-height: 82px;
      border: 1px solid #d8e7f6;
      border-radius: 12px;
      background: #ffffff;
      padding: 12px;
    }

    .dashboard-grid strong {
      display: block;
      color: var(--navy);
      font-size: 20px;
      margin-bottom: 3px;
    }

    .dashboard-grid span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .tech-strip {
      background: linear-gradient(180deg, #f2f9ff, #ffffff);
      border-bottom: 1px solid var(--border);
      padding: 40px 0 40px;
    }

    .tech-title {
      text-align: center;
      color: var(--navy);
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 30px;
    }

    .tech-row-wrap {
      display: grid;
      grid-template-columns: 32px minmax(0, 1fr) 32px;
      gap: 12px;
      align-items: center;
    }

    .tech-row-window {
      overflow: hidden;
      min-width: 0;
      position: relative;
    }

    .tech-row-window::before,
    .tech-row-window::after {
      content: "";
      position: absolute;
      top: 0;
      width: 70px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .tech-row-window::before {
      left: 0;
      background: linear-gradient(to right, #f7fbff, transparent);
    }

    .tech-row-window::after {
      right: 0;
      background: linear-gradient(to left, #f7fbff, transparent);
    }

    .tech-arrow {
      color: var(--navy);
      font-size: 35px;
      line-height: 1;
      text-align: center;
      font-weight: 300;
    }

    .tech-row {
      display: flex;
      width: max-content;
      gap: 18px;
      animation: oem-scroll 26s linear infinite;
    }

    .tech-row-window:hover .tech-row {
      animation-play-state: paused;
    }

    @keyframes oem-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .tech-pill {
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px 14px;
      border: 1px solid #b8d4f3;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.8);
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      box-shadow: 0 4px 10px rgba(5, 41, 102, 0.04);
    }

    .services-preview {
      padding: 40px 0 40px;
      background: var(--white);
    }

    .section-title {
      text-align: center;
      margin-bottom: 12px;
    }

    .section-title h2 {
      color: var(--navy);
      font-size: 22px;
      line-height: 1.2;
      font-weight: 900;
	        margin-bottom: 30px;
    }

    .section-title p {
      color: var(--muted);
      font-size: 14px;
      margin-top: 4px;
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
    }

    .service-card {
      min-height: 132px;
      display: grid;
      grid-template-columns: 78px 1fr;
      gap: 18px;
      align-items: start;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      padding: 18px 22px;
      box-shadow: 0 6px 18px rgba(5, 41, 102, 0.04);
      transition: 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .service-icon {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #e6f2ff;
      display: grid;
      place-items: center;
      color: var(--navy);
    }

    .service-icon svg {
      width: 38px;
      height: 38px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card h3 {
      color: var(--navy);
      font-size: 17px;
      margin-bottom: 7px;
    }

    .service-card p {
      color: #233d5e;
      font-size: 14px;
      line-height: 1.45;
      margin-bottom: 8px;
    }

    .service-card a {
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
    }

    .highlights-strip {
      padding: 40px 0 40px;
      background: var(--white);
    }

    .highlight-box {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border-radius: 8px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }

    .highlight-item {
      min-height: 76px;
      display: grid;
      grid-template-columns: 58px 1fr;
      align-items: center;
      gap: 16px;
      padding: 16px 24px;
      border-right: 1px solid var(--border);
    }

    .highlight-item:last-child {
      border-right: 0;
    }

    .highlight-icon {
      color: var(--navy);
      display: grid;
      place-items: center;
    }

    .highlight-icon svg {
      width: 42px;
      height: 42px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .highlight-item strong {
      display: block;
      color: var(--navy);
      font-size: 16px;
      margin-bottom: 2px;
    }

    .highlight-item span {
      color: #334b68;
      font-size: 13px;
    }

    .final-cta {
      background: var(--white);
      padding: 0 0 0;
    }

    .final-cta-box {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      border-radius: 8px 8px 0 0;
      padding: 30px 45px;
      display: grid;
      grid-template-columns: 1.15fr auto 1.2fr;
      gap: 35px;
      align-items: center;
    }

    .final-cta h2 {
      font-size: 28px;
      line-height: 1.18;
      font-weight: 900;
    }

    .final-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      border-left: 1px solid rgba(255,255,255,0.35);
      padding-left: 28px;
    }

    .footer-contact-card {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 10px;
      color: #e5effb;
      font-size: 13px;
    }

    .flag {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.12);
      font-size: 17px;
    }

    .footer-contact-card strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      margin-bottom: 3px;
    }

    .footer-contact-card p {
      color: #d8e6f7;
      font-size: 13px;
    }

    .bottom-footer {
      background: var(--navy-deep);
      color: #d9e5f5;
      font-size: 13px;
      padding: 14px 0;
    }

    .bottom-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .bottom-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 9px;
      align-items: center;
    }

    .socials a {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 11px;
      font-weight: 900;
    }

    .socials a:hover {
      background: var(--orange);
    }

    @media (max-width: 1100px) {
      .brand-text strong {
        font-size: 30px;
      }

      .nav-links {
        gap: 22px;
      }

      .hero-inner,
      .final-cta-box {
        grid-template-columns: 1fr;
      }

      .footer-contact-grid {
        border-left: 0;
        padding-left: 0;
      }

      .tech-row {
        display: flex;
      }

      .tech-pill {
        min-width: 170px;
      }
    }

    @media (max-width: 900px) {
      .nav-links,
      .nav > .btn-primary {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        display: grid;
        gap: 12px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 18px 24px 24px;
        box-shadow: var(--shadow);
      }

      .service-cards,
      .highlight-box,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }

      .highlight-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .highlight-item:last-child {
        border-bottom: 0;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1240px);
      }

      .topbar-inner,
      .topbar-left,
      .topbar-right {
        justify-content: center;
        text-align: center;
        gap: 10px 18px;
      }

      .topbar-inner {
        padding: 9px 0;
      }

      .brand {
        max-width: 285px;
      }

      .brand-logo {
        width: 265px;
        max-height: 76px;
      }

      .brand-logo-fallback {
        min-width: 190px;
        height: 54px;
        font-size: 26px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        padding-top: 28px;
      }

      .service-card {
        grid-template-columns: 1fr;
      }

      .final-cta-box {
        padding: 26px 22px;
      }

      .final-cta h2 {
        font-size: 24px;
      }
    }
  
  
  
  
  
  
  
  
  
  
    :root {
      --navy: #052966;
      --navy-dark: #021d4d;
      --navy-deep: #001941;
      --blue: #1d75d8;
      --light-blue: #eef7ff;
      --soft-blue: #dbeeff;
      --orange: #ff6b1a;
      --text: #071f44;
      --muted: #4f647d;
      --border: #cfe2f7;
      --white: #ffffff;
      --shadow: 0 14px 35px rgba(5, 41, 102, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: #eef7ff;
      color: var(--navy);
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0.98;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5f0fc;
    }

    .nav {
      min-height: 102px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      max-width: 430px;
    }

    .brand-logo {
      width: 360px;
      max-width: 100%;
      height: auto;
      max-height: 96px;
      object-fit: contain;
    }

    .brand-logo-fallback {
      min-width: 240px;
      height: 62px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--white);
      font-size: 34px;
      font-weight: 900;
      letter-spacing: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--navy-deep);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-links a {
      position: relative;
      padding: 16px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 0;
      height: 3px;
      background: var(--orange);
      border-radius: 999px;
      transition: 0.25s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 7px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 12px 26px rgba(5, 41, 102, 0.22);
    }

    .btn-primary:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .btn-outline {
      color: var(--navy);
      background: var(--white);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--navy);
      transform: translateY(-2px);
    }

    .btn-orange {
      color: var(--white);
      background: var(--orange);
    }

    .btn-orange:hover {
      color: var(--navy);
      background: var(--white);
    }

    .btn-light-outline {
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn-light-outline:hover {
      color: var(--navy);
      background: var(--white);
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 22px;
      cursor: pointer;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 15%, rgba(29, 117, 216, 0.16), transparent 32%),
        linear-gradient(105deg, #ffffff 0%, #f4fbff 44%, #e8f5ff 100%);
      border-bottom: 1px solid var(--border);
      padding: 62px 0 58px;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -130px;
      bottom: -160px;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      border: 70px solid rgba(5, 41, 102, 0.04);
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid var(--border);
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .page-hero h1 {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 66px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 18px;
      font-weight: 900;
    }

    .page-hero h1 span {
      color: var(--orange);
    }

    .page-hero p {
      color: #183352;
      font-size: 18px;
      max-width: 780px;
      margin-bottom: 24px;
    }

    .page-hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .section {
      padding: 76px 0;
    }

    .section.soft {
      background: var(--light-blue);
    }

    .section-heading {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 36px;
    }

    .section-heading.left {
      text-align: left;
      margin-left: 0;
    }

    .section-heading .label {
      color: var(--blue);
      font-weight: 900;
      letter-spacing: 3px;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .section-heading p {
      color: var(--muted);
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .solution-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.07);
      transition: 0.25s ease;
    }

    .solution-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .solution-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: #e6f2ff;
      color: var(--navy);
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }

    .solution-icon svg {
      width: 42px;
      height: 42px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .solution-card h3 {
      color: var(--navy);
      font-size: 24px;
      margin-bottom: 12px;
    }

    .solution-card p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .pill-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .pill-list li {
      background: var(--light-blue);
      color: #263f5f;
      border-radius: 999px;
      padding: 9px 14px;
      font-size: 14px;
      font-weight: 700;
    }

    .split {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 48px;
      align-items: start;
    }

    .feature-list {
      display: grid;
      gap: 18px;
    }

    .feature-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      box-shadow: 0 6px 18px rgba(5, 41, 102, 0.04);
    }

    .feature-num {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      font-weight: 900;
    }

    .feature-item strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 4px;
    }

    .feature-item span {
      color: var(--muted);
      font-size: 15px;
    }

    .use-case-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .use-case {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px;
      min-height: 150px;
    }

    .use-case strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .use-case span {
      color: var(--muted);
      font-size: 14px;
    }

    .final-cta {
      background: var(--white);
      padding: 0;
    }

    .final-cta-box {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      border-radius: 8px 8px 0 0;
      padding: 30px 45px;
      display: grid;
      grid-template-columns: 1.15fr auto 1.2fr;
      gap: 35px;
      align-items: center;
    }

    .final-cta h2 {
      font-size: 28px;
      line-height: 1.18;
      font-weight: 900;
    }

    .final-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      border-left: 1px solid rgba(255,255,255,0.35);
      padding-left: 28px;
    }

    .footer-contact-card {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 10px;
      color: #e5effb;
      font-size: 13px;
    }

    .flag {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.12);
      font-size: 17px;
    }

    .footer-contact-card strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      margin-bottom: 3px;
    }

    .footer-contact-card p {
      color: #d8e6f7;
      font-size: 13px;
    }

    .bottom-footer {
      background: var(--navy-deep);
      color: #d9e5f5;
      font-size: 13px;
      padding: 14px 0;
    }

    .bottom-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .bottom-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 9px;
      align-items: center;
      margin-top: 8px;
    }

    .socials a {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 11px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .socials a:hover {
      background: var(--orange);
    }

    @media (max-width: 1100px) {
      .split,
      .final-cta-box {
        grid-template-columns: 1fr;
      }

      .footer-contact-grid {
        border-left: 0;
        padding-left: 0;
      }
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav > .btn-primary {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: 102px;
        left: 0;
        right: 0;
        display: grid;
        gap: 12px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 18px 24px 24px;
        box-shadow: var(--shadow);
      }

      .solution-grid,
      .use-case-grid,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1240px);
      }

      .topbar-inner,
      .topbar-left,
      .topbar-right {
        justify-content: center;
        text-align: center;
        gap: 10px 18px;
      }

      .topbar-inner {
        padding: 9px 0;
      }

      .brand {
        max-width: 285px;
      }

      .brand-logo {
        width: 265px;
        max-height: 76px;
      }

      .page-hero {
        padding: 48px 0;
      }

      .page-hero h1 {
        font-size: 42px;
      }

      .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .final-cta-box {
        padding: 26px 22px;
      }

      .final-cta h2 {
        font-size: 24px;
      }
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	 :root {
      --navy: #052966;
      --navy-dark: #021d4d;
      --navy-deep: #001941;
      --blue: #1d75d8;
      --light-blue: #eef7ff;
      --soft-blue: #dbeeff;
      --orange: #ff6b1a;
      --text: #071f44;
      --muted: #4f647d;
      --border: #cfe2f7;
      --white: #ffffff;
      --shadow: 0 14px 35px rgba(5, 41, 102, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: #eef7ff;
      color: var(--navy);
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0.98;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5f0fc;
    }

    .nav {
      min-height: 102px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      max-width: 430px;
    }

    .brand-logo {
      width: 360px;
      max-width: 100%;
      height: auto;
      max-height: 96px;
      object-fit: contain;
    }

    .brand-logo-fallback {
      min-width: 240px;
      height: 62px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--white);
      font-size: 34px;
      font-weight: 900;
      letter-spacing: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--navy-deep);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-links a {
      position: relative;
      padding: 16px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 0;
      height: 3px;
      background: var(--orange);
      border-radius: 999px;
      transition: 0.25s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 7px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 12px 26px rgba(5, 41, 102, 0.22);
    }

    .btn-primary:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .btn-outline {
      color: var(--navy);
      background: var(--white);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--navy);
      transform: translateY(-2px);
    }

    .btn-orange {
      color: var(--white);
      background: var(--orange);
    }

    .btn-orange:hover {
      color: var(--navy);
      background: var(--white);
    }

    .btn-light-outline {
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn-light-outline:hover {
      color: var(--navy);
      background: var(--white);
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 22px;
      cursor: pointer;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 15%, rgba(29, 117, 216, 0.16), transparent 32%),
        linear-gradient(105deg, #ffffff 0%, #f4fbff 44%, #e8f5ff 100%);
      border-bottom: 1px solid var(--border);
      padding: 68px 0 62px;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -130px;
      bottom: -160px;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      border: 70px solid rgba(5, 41, 102, 0.04);
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid var(--border);
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .page-hero h1 {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 66px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 18px;
      font-weight: 900;
    }

    .page-hero h1 span {
      color: var(--orange);
    }

    .page-hero p {
      color: #183352;
      font-size: 18px;
      max-width: 790px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .section {
      padding: 76px 0;
    }

    .section.soft {
      background: var(--light-blue);
    }

    .section-heading {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 36px;
    }

    .section-heading.left {
      text-align: left;
      margin-left: 0;
    }

    .section-heading .label {
      color: var(--blue);
      font-weight: 900;
      letter-spacing: 3px;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .section-heading p {
      color: var(--muted);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: start;
    }

    .contact-form-card,
    .contact-info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 32px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.07);
    }

    .contact-form-card h2,
    .contact-info-card h2 {
      color: var(--navy);
      font-size: 30px;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .contact-form-card p,
    .contact-info-card p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 13px 14px;
      font: inherit;
      color: var(--text);
      background: #fbfdff;
      outline: none;
      transition: 0.2s ease;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(29, 117, 216, 0.12);
      background: var(--white);
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      margin-top: 12px;
    }

    .contact-info-list {
      display: grid;
      gap: 18px;
    }

    .contact-info-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--light-blue);
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--white);
      color: var(--navy);
      font-size: 19px;
      font-weight: 900;
    }

    .contact-info-item strong {
      display: block;
      color: var(--navy);
      font-size: 16px;
      margin-bottom: 3px;
    }

    .contact-info-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .social-card {
      margin-top: 22px;
      padding: 22px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
    }

    .social-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .social-card p {
      color: #d8e6f7;
      margin-bottom: 16px;
    }

    .social-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .social-row a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 12px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .social-row a:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .office-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
    }

    .office-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.06);
    }

    .office-flag {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--light-blue);
      font-size: 28px;
      margin-bottom: 18px;
    }

    .office-card h3 {
      color: var(--navy);
      font-size: 24px;
      margin-bottom: 10px;
    }

    .office-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .map-placeholder {
      min-height: 170px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--navy);
      font-weight: 900;
      border-radius: 14px;
      border: 1px dashed #9fc3ea;
      background: linear-gradient(135deg, #f8fcff, #e9f5ff);
    }

    .quick-help-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .quick-help-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 8px 22px rgba(5, 41, 102, 0.06);
    }

    .quick-help-card strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .quick-help-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .final-cta {
      background: var(--white);
      padding: 0;
    }

    .final-cta-box {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      border-radius: 8px 8px 0 0;
      padding: 34px 42px;
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(560px, 1.2fr);
      gap: 34px;
      align-items: center;
    }

    .final-cta-left {
      display: grid;
      gap: 22px;
      align-content: center;
    }

    .final-cta h2 {
      font-size: 30px;
      line-height: 1.18;
      font-weight: 900;
      max-width: 420px;
    }

    .final-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-contact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      border-left: 1px solid rgba(255,255,255,0.28);
      padding-left: 30px;
      align-items: start;
    }

    .footer-contact-card {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 10px;
      color: #e5effb;
      font-size: 13px;
      min-width: 0;
    }

    .flag {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.12);
      font-size: 17px;
    }

    .footer-contact-card strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      margin-bottom: 3px;
    }

    .footer-contact-card p {
      color: #d8e6f7;
      font-size: 13px;
      line-height: 1.55;
      word-break: break-word;
    }

    .bottom-footer {
      background: var(--navy-deep);
      color: #d9e5f5;
      font-size: 13px;
      padding: 14px 0;
    }

    .bottom-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .bottom-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 9px;
      align-items: center;
      margin-top: 8px;
    }

    .socials a {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 11px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .socials a:hover {
      background: var(--orange);
    }

    @media (max-width: 1100px) {
      .contact-layout,
      .final-cta-box {
        grid-template-columns: 1fr;
      }

      .final-cta h2 {
        max-width: 720px;
      }

      .footer-contact-grid {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.22);
        padding-left: 0;
        padding-top: 26px;
      }
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav > .btn-primary {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: 102px;
        left: 0;
        right: 0;
        display: grid;
        gap: 12px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 18px 24px 24px;
        box-shadow: var(--shadow);
      }

      .office-grid,
      .quick-help-grid,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1240px);
      }

      .topbar-inner,
      .topbar-left,
      .topbar-right {
        justify-content: center;
        text-align: center;
        gap: 10px 18px;
      }

      .topbar-inner {
        padding: 9px 0;
      }

      .brand {
        max-width: 285px;
      }

      .brand-logo {
        width: 265px;
        max-height: 76px;
      }

      .page-hero {
        padding: 52px 0;
      }

      .page-hero h1 {
        font-size: 42px;
      }

      .hero-actions,
      .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-form-card,
      .contact-info-card,
      .office-card {
        padding: 24px;
      }

      .final-cta-box {
        padding: 26px 22px;
      }

      .final-cta h2 {
        font-size: 24px;
      }
    }
	
	
	
	
	
	
	
	
	
	 :root {
      --navy: #052966;
      --navy-dark: #021d4d;
      --navy-deep: #001941;
      --blue: #1d75d8;
      --light-blue: #eef7ff;
      --soft-blue: #dbeeff;
      --orange: #ff6b1a;
      --text: #071f44;
      --muted: #4f647d;
      --border: #cfe2f7;
      --white: #ffffff;
      --shadow: 0 14px 35px rgba(5, 41, 102, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: #eef7ff;
      color: var(--navy);
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0.98;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5f0fc;
    }

    .nav {
      min-height: 102px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      max-width: 430px;
    }

    .brand-logo {
      width: 360px;
      max-width: 100%;
      height: auto;
      max-height: 96px;
      object-fit: contain;
    }

    .brand-logo-fallback {
      min-width: 240px;
      height: 62px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--white);
      font-size: 34px;
      font-weight: 900;
      letter-spacing: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--navy-deep);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-links a {
      position: relative;
      padding: 16px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 0;
      height: 3px;
      background: var(--orange);
      border-radius: 999px;
      transition: 0.25s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 7px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 12px 26px rgba(5, 41, 102, 0.22);
    }

    .btn-primary:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .btn-outline {
      color: var(--navy);
      background: var(--white);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--navy);
      transform: translateY(-2px);
    }

    .btn-orange {
      color: var(--white);
      background: var(--orange);
    }

    .btn-orange:hover {
      color: var(--navy);
      background: var(--white);
    }

    .btn-light-outline {
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn-light-outline:hover {
      color: var(--navy);
      background: var(--white);
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 22px;
      cursor: pointer;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 15%, rgba(29, 117, 216, 0.16), transparent 32%),
        linear-gradient(105deg, #ffffff 0%, #f4fbff 44%, #e8f5ff 100%);
      border-bottom: 1px solid var(--border);
      padding: 68px 0 62px;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -130px;
      bottom: -160px;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      border: 70px solid rgba(5, 41, 102, 0.04);
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 880px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid var(--border);
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .page-hero h1 {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 66px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 18px;
      font-weight: 900;
    }

    .page-hero h1 span {
      color: var(--orange);
    }

    .page-hero p {
      color: #183352;
      font-size: 18px;
      max-width: 780px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .section {
      padding: 76px 0;
    }

    .section.soft {
      background: var(--light-blue);
    }

    .section-heading {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 36px;
    }

    .section-heading.left {
      text-align: left;
      margin-left: 0;
    }

    .section-heading .label {
      color: var(--blue);
      font-weight: 900;
      letter-spacing: 3px;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .section-heading p {
      color: var(--muted);
    }

    .service-overview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .overview-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.07);
      transition: 0.25s ease;
    }

    .overview-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .service-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: #e6f2ff;
      color: var(--navy);
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }

    .service-icon svg {
      width: 42px;
      height: 42px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .overview-card h3 {
      color: var(--navy);
      font-size: 24px;
      margin-bottom: 12px;
    }

    .overview-card p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .pill-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .pill-list li {
      background: var(--light-blue);
      color: #263f5f;
      border-radius: 999px;
      padding: 9px 14px;
      font-size: 14px;
      font-weight: 700;
    }

    .service-detail-stack {
      display: grid;
      gap: 26px;
    }

    .service-detail {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.06);
    }

    .service-detail-header {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 20px;
      align-items: start;
      margin-bottom: 24px;
    }

    .service-detail h3 {
      color: var(--navy);
      font-size: 28px;
      margin-bottom: 8px;
    }

    .service-detail p {
      color: var(--muted);
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .mini-card {
      background: var(--light-blue);
      border: 1px solid #d7e9fb;
      border-radius: 14px;
      padding: 18px;
    }

    .mini-card strong {
      display: block;
      color: var(--navy);
      font-size: 16px;
      margin-bottom: 6px;
    }

    .mini-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .process-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      min-height: 165px;
    }

    .process-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: var(--white);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .process-card strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .process-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .tools-strip {
      background: var(--navy-dark);
      color: var(--white);
      padding: 54px 0;
    }

    .tools-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 40px;
      align-items: center;
    }

    .tools-layout h2 {
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .tools-layout p {
      color: #d8e6f7;
    }

    .tool-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tool-pills span {
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.08);
      color: var(--white);
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 800;
      font-size: 14px;
    }

    .final-cta {
      background: var(--white);
      padding: 0;
    }

    .final-cta-box {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      border-radius: 8px 8px 0 0;
      padding: 34px 42px;
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(560px, 1.2fr);
      gap: 34px;
      align-items: center;
    }

    .final-cta-left {
      display: grid;
      gap: 22px;
      align-content: center;
    }

    .final-cta h2 {
      font-size: 30px;
      line-height: 1.18;
      font-weight: 900;
      max-width: 420px;
    }

    .final-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-contact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      border-left: 1px solid rgba(255,255,255,0.28);
      padding-left: 30px;
      align-items: start;
    }

    .footer-contact-card {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 10px;
      color: #e5effb;
      font-size: 13px;
      min-width: 0;
    }

    .flag {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.12);
      font-size: 17px;
    }

    .footer-contact-card strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      margin-bottom: 3px;
    }

    .footer-contact-card p {
      color: #d8e6f7;
      font-size: 13px;
      line-height: 1.55;
      word-break: break-word;
    }

    .bottom-footer {
      background: var(--navy-deep);
      color: #d9e5f5;
      font-size: 13px;
      padding: 14px 0;
    }

    .bottom-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .bottom-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 9px;
      align-items: center;
      margin-top: 8px;
    }

    .socials a {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 11px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .socials a:hover {
      background: var(--orange);
    }

    @media (max-width: 1100px) {
      .tools-layout,
      .final-cta-box {
        grid-template-columns: 1fr;
      }

      .final-cta h2 {
        max-width: 720px;
      }

      .footer-contact-grid {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.22);
        padding-left: 0;
        padding-top: 26px;
      }
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav > .btn-primary {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: 102px;
        left: 0;
        right: 0;
        display: grid;
        gap: 12px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 18px 24px 24px;
        box-shadow: var(--shadow);
      }

      .service-overview-grid,
      .mini-grid,
      .process-grid,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1240px);
      }

      .topbar-inner,
      .topbar-left,
      .topbar-right {
        justify-content: center;
        text-align: center;
        gap: 10px 18px;
      }

      .topbar-inner {
        padding: 9px 0;
      }

      .brand {
        max-width: 285px;
      }

      .brand-logo {
        width: 265px;
        max-height: 76px;
      }

      .page-hero {
        padding: 52px 0;
      }

      .page-hero h1 {
        font-size: 42px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .service-detail-header {
        grid-template-columns: 1fr;
      }

      .final-cta-box {
        padding: 26px 22px;
      }

      .final-cta h2 {
        font-size: 24px;
      }
    }
	
	
	
	
	
	
	 :root {
      --navy: #052966;
      --navy-dark: #021d4d;
      --navy-deep: #001941;
      --blue: #1d75d8;
      --light-blue: #eef7ff;
      --soft-blue: #dbeeff;
      --orange: #ff6b1a;
      --text: #071f44;
      --muted: #4f647d;
      --border: #cfe2f7;
      --white: #ffffff;
      --shadow: 0 14px 35px rgba(5, 41, 102, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1350px, calc(100% - 40px));
      margin: 0 auto;
    }


 .hero-inner {
      min-height: 385px;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 42px;
      padding: 80px 0 80px;
      width: 100%;
      max-width: 1200px;
    }
	
	
    .topbar {
      background: #eef7ff;
      color: var(--navy);
      font-size: 14px;
      border-bottom: 1px solid var(--border);
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0.98;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5f0fc;
    }

    .nav {
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      max-width: 430px;
    }

    .brand-logo {
      width: 360px;
      max-width: 100%;
      height: auto;
      max-height: 60px;
      object-fit: contain;
    }

    .brand-logo-fallback {
      min-width: 240px;
      height: 62px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--white);
      font-size: 34px;
      font-weight: 900;
      letter-spacing: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--navy-deep);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-links a {
      position: relative;
      padding: 16px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 0;
      height: 3px;
      background: var(--orange);
      border-radius: 999px;
      transition: 0.25s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 7px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 12px 26px rgba(5, 41, 102, 0.22);
    }

    .btn-primary:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .btn-outline {
      color: var(--navy);
      background: var(--white);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--navy);
      transform: translateY(-2px);
    }

    .btn-orange {
      color: var(--white);
      background: var(--orange);
    }

    .btn-orange:hover {
      color: var(--navy);
      background: var(--white);
    }

    .btn-light-outline {
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn-light-outline:hover {
      color: var(--navy);
      background: var(--white);
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 22px;
      cursor: pointer;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 15%, rgba(29, 117, 216, 0.16), transparent 32%),
        linear-gradient(105deg, #ffffff 0%, #f4fbff 44%, #e8f5ff 100%);
      border-bottom: 1px solid var(--border);
      padding: 68px 0 62px;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -130px;
      bottom: -160px;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      border: 70px solid rgba(5, 41, 102, 0.04);
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid var(--border);
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .page-hero h1 {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 66px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 18px;
      font-weight: 900;
    }

    .page-hero h1 span {
      color: var(--orange);
    }

    .page-hero p {
      color: #183352;
      font-size: 18px;
      max-width: 790px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .section {
      padding: 76px 0;
    }

    .section.soft {
      background: var(--light-blue);
    }

    .section-heading {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 36px;
    }

    .section-heading.left {
      text-align: left;
      margin-left: 0;
    }

    .section-heading .label {
      color: var(--blue);
      font-weight: 900;
      letter-spacing: 3px;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .section-heading p {
      color: var(--muted);
    }

    .intro-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 44px;
      align-items: start;
    }

    .intro-panel {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      border-radius: 18px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .intro-panel h2 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .intro-panel p {
      color: #d8e6f7;
      margin-bottom: 24px;
    }

    .intro-list {
      display: grid;
      gap: 14px;
      list-style: none;
    }

    .intro-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      color: #edf5ff;
      font-weight: 700;
    }

    .intro-list li::before {
      content: "✓";
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--orange);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
    }

    .about-copy {
      display: grid;
      gap: 20px;
    }

    .about-copy h2 {
      color: var(--navy);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
    }

    .about-copy p {
      color: var(--muted);
      font-size: 17px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 8px 22px rgba(5, 41, 102, 0.06);
    }

    .stat-card strong {
      display: block;
      color: var(--navy);
      font-size: 26px;
      margin-bottom: 4px;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.07);
      transition: 0.25s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .value-icon {
      width: 66px;
      height: 66px;
      border-radius: 18px;
      background: #e6f2ff;
      color: var(--navy);
      display: grid;
      place-items: center;
      margin-bottom: 18px;
    }

    .value-icon svg {
      width: 38px;
      height: 38px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .value-card h3 {
      color: var(--navy);
      font-size: 22px;
      margin-bottom: 10px;
    }

    .value-card p {
      color: var(--muted);
    }

    .presence-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
    }

    .presence-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(5, 41, 102, 0.06);
    }

    .presence-card .flag-large {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--light-blue);
      font-size: 28px;
      margin-bottom: 18px;
    }

    .presence-card h3 {
      color: var(--navy);
      font-size: 24px;
      margin-bottom: 10px;
    }

    .presence-card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .presence-card ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .presence-card li {
      background: var(--light-blue);
      color: #263f5f;
      border-radius: 999px;
      padding: 9px 14px;
      font-size: 14px;
      font-weight: 700;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .industry-grid span {
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--navy);
      border-radius: 999px;
      padding: 12px 14px;
      text-align: center;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 6px 16px rgba(5, 41, 102, 0.04);
    }

    .final-cta {
         background: linear-gradient(135deg, var(--navy), var(--navy-deep));
     padding: 40px 0 40px;
    }

    .final-cta-box {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      border-radius: 8px 8px 0 0;
      padding: 34px 42px;
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(560px, 1.2fr);
      gap: 34px;
      align-items: center;
    }

    .final-cta-left {
      display: grid;
      gap: 22px;
      align-content: center;
    }

    .final-cta h2 {
      font-size: 30px;
      line-height: 1.18;
      font-weight: 900;
      max-width: 420px;
    }

    .final-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-contact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      border-left: 1px solid rgba(255,255,255,0.28);
      padding-left: 30px;
      align-items: start;
    }

    .footer-contact-card {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 10px;
      color: #e5effb;
      font-size: 13px;
      min-width: 0;
    }

    .flag {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.12);
      font-size: 17px;
    }

    .footer-contact-card strong {
      display: block;
      color: var(--white);
      font-size: 16px;
      margin-bottom: 3px;
    }

    .footer-contact-card p {
      color: #d8e6f7;
      font-size: 15px;
      line-height: 1.55;
      word-break: break-word;
    }

    .bottom-footer {
      background: var(--navy-deep);
      color: #d9e5f5;
      font-size: 13px;
      padding: 14px 0;
    }

    .bottom-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .bottom-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 9px;
      align-items: center;
      margin-top: 8px;
    }

    .socials a {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 11px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .socials a:hover {
      background: var(--orange);
    }

    @media (max-width: 1100px) {
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 50px 0;
        text-align: center;
      }

      .hero p {
        margin: 20px auto 26px;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-image {
        justify-content: center;
        margin-top: 24px;
      }

      .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .intro-layout,
      .final-cta-box {
        grid-template-columns: 1fr;
      }

      .final-cta h2 {
        max-width: 720px;
      }

      .footer-contact-grid {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.22);
        padding-left: 0;
        padding-top: 26px;
      }

      .industry-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav > .btn-primary {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: 102px;
        left: 0;
        right: 0;
        display: grid;
        gap: 12px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 18px 24px 24px;
        box-shadow: var(--shadow);
      }

      .stat-grid,
      .values-grid,
      .presence-layout,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .topbar {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1240px);
      }

      .topbar-inner,
      .topbar-left,
      .topbar-right {
        justify-content: center;
        text-align: center;
        gap: 10px 18px;
      }

      .topbar-inner {
        padding: 9px 0;
      }

      .brand {
        max-width: 285px;
      }

      .brand-logo {
        width: 265px;
        max-height: 76px;
      }

      .page-hero {
        padding: 52px 0;
      }

      .page-hero h1 {
        font-size: 42px;
      }

      .hero-inner {
        padding: 30px 0;
      }

      .hero h1 {
        font-size: 32px;
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .industry-grid {
        grid-template-columns: 1fr;
      }

      .final-cta-box {
        padding: 26px 22px;
      }

      .final-cta h2 {
        font-size: 24px;
      }
    }