:root {
  font-family: Inter, "Noto Sans SC", "Source Han Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f7f8fa;
  font-synthesis: none;
  --navy-950: #061126;
  --navy-900: #0b1733;
  --navy-800: #102244;
  --gold-500: #d4af37;
  --gold-400: #e6c65a;
  --canvas: #f7f8fa;
  --white: #ffffff;
  --ink: #172033;
  --muted: #687286;
  --line: #dfe4ec;
  --success: #1f7a56;
  --radius-sm: 8px;
  --radius-md: 14px;
  --shadow: 0 18px 60px rgba(6, 17, 38, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background: var(--canvas);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #ffdf73;
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.preview-strip {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(24px, 4.5vw, 72px);
  background: var(--navy-950);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wordmark {
  display: block;
  min-width: 180px;
  color: var(--gold-400);
}

.wordmark img {
  width: 150px;
  height: 36px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.wordmark-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wordmark-tag {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  margin-inline: auto;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a,
.language-button {
  color: rgba(255, 255, 255, 0.76);
}

.desktop-nav a:hover,
.language-button:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-button,
.menu-button,
.modal-close {
  border: 0;
  background: transparent;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-gold:hover {
  background: var(--gold-400);
}

.button-navy {
  background: var(--navy-900);
  color: var(--white);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
}

.menu-button {
  display: none;
  padding: 9px;
  color: var(--gold-400);
}

.mobile-nav {
  position: absolute;
  z-index: 18;
  top: 106px;
  inset-inline: 0;
  display: none;
  padding: 12px 24px 22px;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  background: var(--navy-900);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px clamp(32px, 6vw, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark-eyebrow {
  color: #9a7711;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.gold-rule {
  width: 64px;
  height: 3px;
  margin: 20px 0;
  background: var(--gold-500);
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.coverage {
  max-width: 630px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.coverage svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold-400);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.light-link {
  color: var(--white);
}

.text-link svg {
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pillar {
  min-width: 0;
  display: flex;
  gap: 12px;
  padding-inline: 18px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.pillar:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.pillar svg {
  flex: 0 0 auto;
  color: var(--gold-400);
}

.pillar strong,
.pillar span {
  display: block;
}

.pillar strong {
  color: var(--gold-400);
  font-size: 13px;
}

.pillar span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #173b59;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 66% center;
}

.hero-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  max-width: calc(100% - 32px);
  padding: 7px 10px;
  border-radius: 5px;
  background: rgba(6, 17, 38, 0.86);
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  line-height: 1.35;
}

.section {
  padding: 92px clamp(24px, 6vw, 96px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.rfq-band h2,
.inquiry-modal h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-section {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.compact-heading {
  margin: 0;
  text-align: start;
}

.compact-heading h2 {
  font-size: clamp(28px, 2.4vw, 40px);
}

.process-list {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.process-step {
  position: relative;
  min-height: 126px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 24px;
  background: var(--white);
  border-inline-end: 1px solid var(--line);
}

.process-step:last-child {
  border-inline-end: 0;
}

.step-number {
  flex: 0 0 auto;
  color: #a47d10;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-step h3,
.service-card h3,
.proof-item h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 16px;
}

.process-step p,
.service-card p,
.proof-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.step-arrow {
  position: absolute;
  top: 28px;
  inset-inline-end: -10px;
  z-index: 2;
  padding: 2px;
  color: #a47d10;
  background: var(--white);
}

.services-section {
  background: var(--canvas);
}

.service-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #c4a03a;
  box-shadow: 0 18px 40px rgba(11, 23, 51, 0.08);
}

.icon-tile {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 10px;
  background: #fbf5df;
  color: #9a7711;
}

.service-card h3 {
  font-size: 22px;
}

.service-card p {
  font-size: 14px;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.rfq-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px clamp(24px, 8vw, 120px);
  background: var(--navy-900);
  color: var(--white);
}

.rfq-band > div {
  max-width: 780px;
}

.rfq-band h2 {
  color: var(--white);
}

.rfq-band > div > p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.rfq-band .button {
  flex: 0 0 auto;
}

.proof-section {
  background: var(--white);
}

.proof-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: flex;
  gap: 17px;
  padding: 34px 28px;
  border-inline-end: 1px solid var(--line);
}

.proof-item:last-child {
  border-inline-end: 0;
}

.proof-item svg {
  flex: 0 0 auto;
  color: #9a7711;
}

.site-footer {
  padding: 58px clamp(24px, 6vw, 96px) 24px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-brand,
.footer-contact,
.footer-bottom {
  max-width: 1280px;
  margin-inline: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact a {
  color: var(--gold-400);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow-y: auto;
  background: rgba(6, 17, 38, 0.78);
}

.inquiry-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: #eef1f5;
}

.modal-intro {
  margin: 14px 0 28px;
  color: var(--muted);
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #cfd5df;
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
}

.form-grid textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.consent-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.form-submit {
  min-width: 190px;
}

.success-state {
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
}

.success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #e4f3ec;
  color: var(--success);
}

.success-state p {
  margin: 18px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav {
    display: block;
  }

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

  .hero-media {
    order: -1;
    height: 390px;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
  }

  .process-section {
    display: block;
  }

  .compact-heading {
    margin: 0 auto 32px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .preview-strip {
    min-height: 34px;
    font-size: 10px;
  }

  .site-header {
    height: 60px;
    padding-inline: 18px;
  }

  .wordmark {
    min-width: 0;
  }

  .wordmark img {
    width: 142px;
    height: 34px;
  }

  .wordmark-name {
    font-size: 16px;
  }

  .wordmark-tag,
  .header-cta,
  .language-button span {
    display: none;
  }

  .mobile-nav {
    top: 102px;
  }

  .hero-media {
    height: 300px;
  }

  .hero-copy {
    padding: 34px 22px 40px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .light-link {
    justify-content: center;
  }

  .pillar-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  .pillar,
  .pillar:first-child {
    padding: 17px 0;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 20px;
  }

  .process-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .process-list {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .process-step {
    min-height: auto;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-arrow {
    top: auto;
    right: 22px;
    bottom: -10px;
    transform: rotate(90deg);
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
  }

  .proof-grid {
    border-top: 1px solid var(--line);
  }

  .proof-item {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .rfq-band {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .rfq-band .button {
    width: 100%;
  }

  .footer-contact,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact .button {
    width: 100%;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .inquiry-modal {
    width: 100%;
    max-height: 94dvh;
    border-radius: 18px 18px 0 0;
  }

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

  .full-field {
    grid-column: 1;
  }

  .form-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
