    :root {
      --navy: #071a33;
      --navy-deep: #03101f;
      --blue: #123a66;
      --blue-soft: #1a4778;
      --orange: #c76c2d;
      --orange-light: #f09b54;
      --cream: #f6efe6;
      --paper: #fffaf2;
      --white: #ffffff;
      --ink: #121924;
      --muted: #6a7280;
      --line: rgba(7, 26, 51, 0.12);
      --shadow: 0 30px 90px rgba(7, 26, 51, 0.24);
      --soft-shadow: 0 18px 52px rgba(7, 26, 51, 0.12);
      --radius: 30px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      background:
        radial-gradient(circle at 12% 10%, rgba(199, 108, 45, 0.16), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(18, 58, 102, 0.16), transparent 30%),
        linear-gradient(180deg, #fff8ef 0%, #f6efe6 48%, #fffaf2 100%);
    }

    .header {
      position: fixed;
      top: 18px;
      left: 50%;
      z-index: 1000;
      width: min(1180px, calc(100% - 32px));
      transform: translateX(-50%);
      border-radius: 999px;
      background: rgba(7, 26, 51, 0.92);
      box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(18px);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 12px 14px 12px 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-weight: 950;
      letter-spacing: 0.045em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-mark {
      width: 70px;
      height: 70px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      background: rgba(255, 250, 242, 0.96);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
      overflow: hidden;
    }

    .brand-logo {
      width: 62px;
      height: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.92rem;
      font-weight: 800;
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: 999px;
      transition: 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-links .nav-button {
      color: var(--white);
      background: var(--orange);
      box-shadow: 0 12px 28px rgba(199, 108, 45, 0.32);
    }

    .hero {
      position: relative;
      padding: 130px 24px 74px;
      color: var(--white);
      overflow: hidden;
      background:
        linear-gradient(112deg, rgba(7, 26, 51, 0.98), rgba(7, 26, 51, 0.84) 54%, rgba(7, 26, 51, 0.98)),
        radial-gradient(circle at 76% 26%, rgba(240, 155, 84, 0.34), transparent 30%),
        linear-gradient(135deg, var(--navy), var(--blue-soft));
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      color: var(--orange-light);
      font-size: 0.78rem;
      font-weight: 950;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(2.35rem, 5vw, 5rem);
      line-height: 0.92;
      letter-spacing: -0.08em;
      margin-bottom: 28px;
    }

    .hero p {
      max-width: 700px;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(1.05rem, 1.7vw, 1.28rem);
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 52px;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 950;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      box-shadow: 0 16px 36px rgba(199, 108, 45, 0.38);
    }

    .button-secondary {
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.06);
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .trust-pill {
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.74);
      background: rgba(255, 255, 255, 0.06);
      font-size: 0.9rem;
      font-weight: 850;
    }

    .ops-panel {
      padding: 24px;
      border-radius: 38px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      text-align: center;
    }

    .ops-logo {
      width: min(320px, 82%);
      height: auto;
      display: block;
      margin: 0 auto 22px;
      filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.34));
    }

    .ops-panel h2 {
      font-size: 1.6rem;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    .ops-panel p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.98rem;
    }

    .section {
      padding: 84px 24px;
    }

    .section-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .section-heading {
      max-width: 790px;
      margin-bottom: 42px;
    }

    .label {
      display: inline-block;
      color: var(--orange);
      font-size: 0.76rem;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(1.8rem, 3.9vw, 3.7rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      margin-bottom: 18px;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      padding: 28px;
      border-radius: var(--radius);
      background: rgba(255, 250, 242, 0.92);
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
    }

    .card h3 {
      color: var(--navy);
      font-size: 1.32rem;
      line-height: 1.12;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
    }

    .dark-section {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    }

    .dark-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(240, 155, 84, 0.3), transparent 24%),
        radial-gradient(circle at 90% 74%, rgba(26, 71, 120, 0.6), transparent 32%);
      opacity: 0.9;
    }

    .dark-inner {
      position: relative;
      z-index: 1;
    }

    .dark-section .section-heading h2,
    .dark-section .card h3 {
      color: var(--white);
    }

    .dark-section .section-heading p {
      color: rgba(255, 255, 255, 0.74);
    }

    .dark-section .label {
      color: var(--orange-light);
    }

    .dark-section .card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: none;
    }

    .dark-section .card p {
      color: rgba(255, 255, 255, 0.72);
    }

    .contact {
      padding: 84px 24px;
    }

    .contact-panel {
      width: min(1180px, 100%);
      margin: 0 auto;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      border-radius: 38px;
      color: var(--white);
      background:
        radial-gradient(circle at 90% 8%, rgba(240, 155, 84, 0.35), transparent 26%),
        linear-gradient(135deg, var(--navy), var(--blue));
      box-shadow: var(--shadow);
    }

    .contact-main {
      padding: 50px;
    }

    .contact-main .label {
      color: var(--orange-light);
    }

    .contact-main h2 {
      font-size: clamp(1.8rem, 3.9vw, 3.7rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      margin-bottom: 20px;
    }

    .contact-main p {
      max-width: 660px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.08rem;
      margin-bottom: 30px;
    }

    .contact-info {
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.07);
      border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .info-card {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .info-card small {
      display: block;
      color: var(--orange-light);
      font-size: 0.7rem;
      font-weight: 950;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .info-card span {
      color: rgba(255, 255, 255, 0.86);
      font-weight: 850;
    }

    .footer {
      padding: 30px 24px;
      color: rgba(255, 255, 255, 0.68);
      text-align: center;
      background: #06111f;
      font-size: 0.92rem;
    }

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

      .grid {
        grid-template-columns: 1fr;
      }

      .contact-info {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }
    }

    @media (max-width: 760px) {
      .header {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 24px;
      }

      .nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        flex-wrap: wrap;
      }

      .brand {
        white-space: normal;
      }

      .hero {
        padding-top: 170px;
      }

      .section,
      .contact {
        padding: 64px 18px;
      }

      .contact-main,
      .contact-info {
        padding: 28px;
      }
    }