﻿    :root {
      --ink: #1f2428;
      --muted: #5d676f;
      --line: #dfe7e8;
      --paper: #fbfcfb;
      --soft: #edf5f2;
      --teal: #0c766b;
      --coral: #e6684c;
      --gold: #c4943c;
      --white: #ffffff;
      --shadow: 0 20px 60px rgba(31, 36, 40, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
    }

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

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(223, 231, 232, 0.9);
      backdrop-filter: blur(16px);
    }

    .nav {
      width: min(1180px, calc(100% - 40px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--white);
      background: linear-gradient(135deg, var(--teal), #153b44 60%, var(--coral));
      font-size: 18px;
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .nav-links a:hover {
      color: var(--teal);
    }

    .nav-cta,
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 8px;
      background: var(--coral);
      color: var(--white);
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(230, 104, 76, 0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    .form-footer .button {
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 8px;
      background: var(--coral);
      color: var(--white);
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(230, 104, 76, 0.24);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta:hover,
    .button:hover {
      background: #d7563c;
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(230, 104, 76, 0.28);
    }

    .hero {
      min-height: calc(100vh - 72px);
      display: grid;
      align-items: center;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: #163f44;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url("projectstaffasia-hero.png");
      background-size: cover;
      background-position: center right;
      filter: saturate(1.02);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(10, 30, 34, 0.94) 0%, rgba(10, 30, 34, 0.82) 39%, rgba(10, 30, 34, 0.28) 72%, rgba(10, 30, 34, 0.12) 100%),
        linear-gradient(0deg, rgba(10, 30, 34, 0.62) 0%, rgba(10, 30, 34, 0) 28%);
    }

    .hero-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 84px 0 108px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #bce8df;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      border-radius: 999px;
      background: var(--coral);
    }

    .hero h1 {
      max-width: 740px;
      margin: 0;
      color: var(--white);
      font-size: clamp(42px, 7vw, 78px);
      line-height: 1;
      letter-spacing: 0;
    }

    .hero p {
      max-width: 620px;
      margin: 24px 0 34px;
      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(18px, 2vw, 22px);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .button.secondary {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: none;
    }

    .button.secondary:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(960px, calc(100% - 40px));
      margin: -58px auto 0;
      position: relative;
      z-index: 3;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: var(--shadow);
      background: var(--line);
    }

    .stat {
      min-height: 116px;
      padding: 24px;
      background: var(--white);
    }

    .stat strong {
      display: block;
      color: var(--teal);
      font-size: 32px;
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-weight: 700;
    }

    .section {
      padding: 96px 0;
    }

    .section.alt {
      background: var(--soft);
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section-heading {
      max-width: 760px;
      margin: 0 0 42px;
    }

    .section-heading p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 18px;
    }

    h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 54px;
      align-items: start;
    }

    .about-copy p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 17px;
    }

    .highlights {
      display: grid;
      gap: 14px;
    }

    .highlight {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      align-items: start;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
    }

    .icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--white);
      background: var(--teal);
      font-weight: 900;
    }

    .highlight p,
    .service p,
    .contact-panel p {
      margin: 0;
      color: var(--muted);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service {
      min-height: 232px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .service:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(31, 36, 40, 0.1);
    }

    .service .icon {
      margin-bottom: 22px;
      background: var(--coral);
    }

    .contact-band {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: #173f42;
      color: var(--white);
    }

    .contact-band::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url("projectstaffasia-hero.png");
      background-size: cover;
      background-position: center;
      filter: saturate(0.95);
    }

    .contact-band::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(9, 36, 39, 0.94) 0%, rgba(9, 36, 39, 0.88) 42%, rgba(9, 36, 39, 0.76) 100%),
        rgba(9, 36, 39, 0.38);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.1fr);
      gap: clamp(34px, 6vw, 78px);
      align-items: center;
    }

    .contact-wrap h2,
    .contact-wrap p {
      color: var(--white);
    }

    .contact-copy {
      max-width: 520px;
    }

    .contact-copy h2 {
      font-size: clamp(42px, 5vw, 58px);
      line-height: 1.02;
    }

    .contact-copy p {
      max-width: 480px;
      font-size: 18px;
      font-weight: 700;
    }

    .contact-image {
      width: min(440px, 100%);
      aspect-ratio: 16 / 9;
      margin-top: 30px;
      border-radius: 8px;
      object-fit: cover;
      object-position: center;
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    .contact-panel {
      padding: clamp(24px, 3vw, 34px);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(14px);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    }

    .contact-panel p {
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 18px;
    }

    .contact-line {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 42px;
      color: var(--white);
      font-weight: 800;
    }

    .contact-form {
      display: grid;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--white);
      font-size: 13px;
      font-weight: 800;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.09);
      color: var(--white);
      font: inherit;
      outline: none;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255, 255, 255, 0.62);
    }

    .field select {
      color: var(--white);
    }

    .field select option {
      color: var(--ink);
      background: var(--white);
    }

    .field textarea {
      min-height: 118px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: #bce8df;
      box-shadow: 0 0 0 3px rgba(188, 232, 223, 0.22);
    }

    .turnstile-note {
      margin: 0;
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
    }

    .form-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
    }

    .button:disabled {
      cursor: wait;
      opacity: 0.7;
      transform: none;
    }

    .form-popup {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(17, 25, 27, 0.6);
      backdrop-filter: blur(8px);
    }

    .form-popup[hidden] {
      display: none;
    }

    .form-popup-box {
      position: relative;
      width: min(460px, 100%);
      padding: 30px;
      border-radius: 8px;
      background: var(--white);
      color: var(--ink);
      box-shadow: var(--shadow);
    }

    .form-popup-box h3 {
      margin: 0 36px 10px 0;
      font-size: 28px;
      line-height: 1.15;
    }

    .form-popup-box p {
      margin: 0;
      color: var(--muted);
    }

    .form-popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 8px;
      background: var(--soft);
      color: var(--ink);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .form-popup-close:hover {
      background: var(--line);
    }

    .site-footer {
      padding: 34px 0;
      background: #11191b;
      color: rgba(255, 255, 255, 0.68);
    }

    .footer-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 14px;
    }

    .footer-inner strong {
      color: var(--white);
    }

    @media (max-width: 850px) {
      .nav {
        min-height: 66px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        min-height: 760px;
      }

      .hero::before {
        background-position: 62% center;
      }

      .hero::after {
        background:
          linear-gradient(90deg, rgba(10, 30, 34, 0.94) 0%, rgba(10, 30, 34, 0.76) 72%, rgba(10, 30, 34, 0.56) 100%),
          linear-gradient(0deg, rgba(10, 30, 34, 0.7) 0%, rgba(10, 30, 34, 0) 35%);
      }

      .hero-inner {
        padding: 76px 0 126px;
      }

      .stats,
      .about-grid,
      .services-grid,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .contact-wrap {
        align-items: stretch;
      }

      .contact-copy {
        max-width: none;
      }

      .contact-image {
        width: 100%;
        max-height: 300px;
      }

      .stats {
        margin-top: -70px;
      }

      .section {
        padding: 74px 0;
      }
    }

    @media (max-width: 520px) {
      .nav,
      .container,
      .hero-inner,
      .footer-inner,
      .stats {
        width: min(100% - 28px, 1180px);
      }

      .brand span:last-child {
        max-width: 190px;
        white-space: normal;
        line-height: 1.1;
      }

      .nav-cta {
        display: none;
      }

      .hero {
        min-height: 720px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .contact-copy h2 {
        font-size: 40px;
      }

      .contact-copy p {
        font-size: 16px;
      }

      .button {
        width: 100%;
      }

      .stat,
      .service,
      .highlight,
      .contact-panel {
        padding: 20px;
      }

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