/* PSD International — site stylesheet (2026-06-10) */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1c2733;
  background: #f7f8fa;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0e5aa7; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; }
p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #101b29; color: #fff; padding: 12px 20px; z-index: 200;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 28px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  text-decoration: none; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: #e9a13b; color: #14202e; border-color: #e9a13b; }
.btn-primary:hover { background: #f2b75f; border-color: #f2b75f; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: #14202e; color: #fff; border-color: #14202e; }
.btn-dark:hover { background: #1f3247; border-color: #1f3247; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 18, 28, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px;
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { width: 150px; height: auto; }

.nav-toggle {
  display: none;
  background: none; border: 2px solid rgba(255,255,255,.5); border-radius: 6px;
  color: #fff; min-width: 48px; min-height: 44px; padding: 6px 12px;
  font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.nav-toggle:hover { border-color: #fff; }

.site-nav ul {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav a:not(.btn) {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 10px 14px;
  color: #e8edf3; text-decoration: none; font-weight: 600; font-size: 15px;
  border-radius: 6px;
}
.site-nav a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.08); }
.site-nav .btn { margin-left: 8px; }

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: block;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #0b121c; border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 12px 24px 20px;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav a:not(.btn) { width: 100%; min-height: 48px; }
  .site-nav .btn { margin: 10px 0 0; width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,13,20,.72) 0%, rgba(8,13,20,.55) 45%, rgba(8,13,20,.78) 100%);
}
.hero-inner { padding: 112px 0 96px; max-width: 820px; }
.hero-kicker {
  display: inline-block; margin-bottom: 18px;
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #f2c069;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 54px);
  font-weight: 800; margin-bottom: 18px; text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px); line-height: 1.6;
  color: #dde5ee; max-width: 640px; margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Trust strip ---------- */
.trust { background: #101b29; color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.trust ul {
  list-style: none; margin: 0; padding: 22px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 24px;
  text-align: center;
}
.trust li strong { display: block; font-size: 15px; letter-spacing: .04em; }
.trust li span { display: block; font-size: 13px; color: #9fb0c3; }
@media (max-width: 767px) { .trust ul { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-kicker {
  display: block; margin-bottom: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #b07918;
}
.section h2 { font-size: clamp(26px, 4vw, 36px); color: #101b29; }
.section-lede { max-width: 680px; font-size: 17px; color: #44546a; margin-bottom: 40px; }

/* Capabilities */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cap-card {
  background: #fff; border: 1px solid #e2e8f0; border-left: 4px solid #e9a13b;
  border-radius: 8px; padding: 28px;
}
.cap-card h3 { font-size: 19px; color: #101b29; margin-bottom: 10px; }
.cap-card p { margin: 0; color: #44546a; font-size: 15.5px; }
@media (max-width: 767px) { .cap-grid { grid-template-columns: 1fr; } }

/* About */
.about { background: #fff; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.about-grid figure { margin: 0; }
.about-grid img { border-radius: 8px; width: 100%; height: auto; }
.about-grid figcaption { font-size: 13px; color: #6b7a8d; margin-top: 10px; }
.about p { color: #2c3a4b; font-size: 16.5px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* RFQ */
.rfq { background: linear-gradient(180deg, #101b29 0%, #16273a 100%); color: #fff; }
.rfq h2 { color: #fff; }
.rfq .section-kicker { color: #f2c069; }
.rfq-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.rfq-lede { color: #c4d0de; font-size: 17px; max-width: 560px; }
.rfq-list { list-style: none; margin: 0 0 8px; padding: 0; }
.rfq-list li {
  position: relative; padding: 6px 0 6px 30px; color: #dde5ee; font-size: 15.5px;
}
.rfq-list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #e9a13b;
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 18%, 84% 4%, 38% 70%);
}
.rfq-panel {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 32px;
}
.rfq-panel h3 { color: #fff; font-size: 18px; }
.rfq-panel p { color: #c4d0de; font-size: 15px; }
.rfq-panel .btn { width: 100%; margin: 8px 0 16px; }
.rfq-email { font-size: 15px; color: #c4d0de; margin: 0; }
.rfq-email a { color: #f2c069; font-weight: 700; text-decoration: none; word-break: break-all; }
.rfq-email a:hover { text-decoration: underline; }
@media (max-width: 900px) { .rfq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Footer ---------- */
.site-footer { background: #0b121c; color: #9fb0c3; padding: 48px 0 32px; font-size: 14px; }
.footer-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer img { width: 120px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; margin: 0; padding: 0; }
.footer-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px;
  color: #c4d0de; text-decoration: none;
}
.footer-nav a:hover { color: #fff; }
.footer-meta { padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.footer-meta a { color: #c4d0de; }
.footer-meta p { margin: 0; }
