:root {
  --ink: #17212b;
  --muted: #5b6878;
  --line: #d9e0e7;
  --panel: #ffffff;
  --soft: #f4f7fa;
  --warm: #f8f3eb;
  --blue: #126ab5;
  --blue-deep: #0b3e6b;
  --orange: #f47b1f;
  --green: #0f8f7b;
  --shadow: 0 18px 42px rgba(23, 33, 43, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

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

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

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: #f6f8fa;
  font-size: 0.86rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__links {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 214px;
  height: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 2px;
  align-items: center;
}

.nav__links a {
  color: #243242;
  padding: 10px 9px;
  font-size: 0.91rem;
  font-weight: 650;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--blue);
  border-bottom-color: var(--orange);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  position: relative;
}

.menu-button span::before {
  position: absolute;
  top: -6px;
}

.menu-button span::after {
  position: absolute;
  top: 6px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(244, 123, 31, 0.22);
}

.button--primary:hover {
  background: #de6812;
}

.button--secondary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(18, 106, 181, 0.2);
}

.button--secondary:hover {
  background: #0f599b;
}

.button--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.button--light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button--compact {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78svh;
  display: grid;
  align-items: center;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(8, 22, 34, 0.96) 0%, rgba(8, 22, 34, 0.84) 38%, rgba(8, 22, 34, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 18, 29, 0.08), rgba(7, 18, 29, 0.82)),
    url("../img/hero-fpc.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  width: var(--container);
  max-width: none;
  padding: 82px 0 76px;
}

.hero__copy {
  max-width: 790px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow {
  color: #87e4d3;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.55rem, 7vw, 5.2rem);
  max-width: 770px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 6.3vw, 5.7rem);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero__lead {
  margin-top: 22px;
  max-width: 700px;
  color: #d8e2eb;
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #eef7fb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__insight {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(13, 29, 42, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero__insight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__insight-top span {
  color: #87e4d3;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero__insight-top strong {
  color: #ffffff;
  font-size: 1rem;
}

.hero__file-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero__file-stack div {
  position: relative;
  min-height: 70px;
  padding: 14px 14px 14px 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.hero__file-stack strong,
.hero__file-stack small {
  display: block;
}

.hero__file-stack strong {
  color: #ffffff;
  font-size: 1rem;
}

.hero__file-stack small {
  margin-top: 3px;
  color: #cbd8e4;
}

.file-status {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.file-status--done {
  border-color: #87e4d3;
  background: #87e4d3;
  box-shadow: inset 0 0 0 4px rgba(13, 29, 42, 0.82);
}

.hero__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__timeline div {
  min-height: 86px;
  padding: 14px;
  background: rgba(6, 18, 29, 0.5);
}

.hero__timeline strong {
  display: block;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
}

.hero__timeline span {
  display: block;
  margin-top: 8px;
  color: #cbd8e4;
  font-size: 0.82rem;
}

.hero__mini-proof {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.hero__mini-proof span {
  position: relative;
  padding-left: 18px;
  color: #dce7ef;
  font-size: 0.92rem;
}

.hero__mini-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 2px;
  background: var(--orange);
}

.hero__proof {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 1px;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__proof div {
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-number {
  display: block;
  color: #ffffff;
  font-size: 1.38rem;
  font-weight: 850;
}

.proof-label {
  display: block;
  color: #cbd8e4;
  font-size: 0.86rem;
}

.section {
  padding: 88px 0;
}

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

.section--warm {
  background: var(--warm);
}

.section--dark {
  color: #ffffff;
  background: var(--ink);
}

.section__head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section__head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.section--dark .section__head p {
  color: #bdc9d5;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 100%;
}

.card h3 {
  margin-bottom: 12px;
}

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

.card__kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 850;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.decision-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 106, 181, 0.08), rgba(244, 123, 31, 0.08)),
    #ffffff;
}

.decision-board p {
  margin-top: 14px;
  color: var(--muted);
}

.decision-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.decision-board__grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
}

.decision-board__grid strong,
.decision-board__grid span {
  display: block;
}

.decision-board__grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.decision-board__grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  min-height: 130px;
  padding: 24px 20px;
  background: #ffffff;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
  color: var(--blue-deep);
}

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

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 46px;
}

.media-split__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

.process {
  counter-reset: process;
}

.process .card {
  position: relative;
  padding-top: 58px;
}

.process .card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--orange);
  font-weight: 900;
  font-size: 0.94rem;
}

.project-matcher {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.project-matcher__tabs {
  display: grid;
  gap: 10px;
}

.project-tab {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 16px;
  color: #263545;
  background: #ffffff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.project-tab:hover,
.project-tab.is-active {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.project-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.3fr);
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-panel h3 {
  margin-bottom: 10px;
}

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

.project-panel__facts {
  display: grid;
  gap: 12px;
}

.project-panel__facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7fafc;
}

.project-panel__facts strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.35rem;
  line-height: 1.1;
}

.project-panel__facts span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.document-pack {
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.document-pack__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue-deep), #233443);
}

.document-pack__head span {
  color: #87e4d3;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.document-pack__head strong {
  font-size: 1rem;
}

.document-pack__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.document-pack__items article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.document-pack__items article:last-child {
  border-right: 0;
}

.document-pack__items span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
}

.document-pack__items strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.document-pack__items p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.quality-gates {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
}

.quality-gates ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: gate;
}

.quality-gates li {
  position: relative;
  padding: 16px 16px 16px 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.quality-gates li::before {
  counter-increment: gate;
  content: counter(gate, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 17px;
  color: #87e4d3;
  font-weight: 900;
}

.quality-gates strong,
.quality-gates span {
  display: block;
}

.quality-gates strong {
  color: #ffffff;
}

.quality-gates span {
  margin-top: 4px;
  color: #cbd8e4;
}

.readiness {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.readiness__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.readiness__top strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.readiness__top span {
  color: #87e4d3;
  font-weight: 900;
}

.readiness__bar {
  height: 8px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.readiness__bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #87e4d3);
  transition: width 0.22s ease;
}

.readiness__list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.readiness__list li {
  position: relative;
  padding-left: 24px;
  color: #cbd8e4;
  font-size: 0.92rem;
}

.readiness__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.readiness__list li.is-done {
  color: #ffffff;
}

.readiness__list li.is-done::before {
  border-color: #87e4d3;
  background: #87e4d3;
  box-shadow: inset 0 0 0 3px var(--ink);
}

.rfq-assist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.rfq-assist p {
  max-width: 690px;
  margin-top: 8px;
  color: var(--muted);
}

.form-intro {
  padding-bottom: 4px;
}

.form-intro h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.form-intro p {
  margin-top: 10px;
  color: var(--muted);
}

.file-drop {
  gap: 10px;
}

.file-drop__box {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 20px;
  border: 1px dashed #9fb2c4;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 106, 181, 0.08), rgba(15, 143, 123, 0.08)),
    #f8fbfd;
}

.file-drop__box strong,
.file-drop__box small,
.file-drop__box em {
  display: block;
}

.file-drop__box strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.file-drop__box small {
  color: var(--muted);
  font-weight: 550;
}

.file-drop__box em {
  color: var(--green);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
}

.file-drop__box input[type="file"] {
  margin-top: 8px;
  background: #ffffff;
}

.file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.file-grid > span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.bot-field {
  display: none;
}

.quote-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.quote-flow article {
  min-height: 230px;
  padding: 26px;
  background: #ffffff;
}

.quote-flow span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 900;
}

.quote-flow p {
  margin-top: 12px;
  color: var(--muted);
}

.qa-block {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.qa-block details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.qa-block summary {
  padding: 18px 22px;
  color: #243242;
  font-weight: 850;
  cursor: pointer;
}

.qa-block summary::marker {
  color: var(--orange);
}

.qa-block p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  display: grid;
  gap: 8px;
  width: min(220px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.quick-contact strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.quick-contact__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quick-contact__actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.quick-contact__actions a:first-child {
  background: var(--orange);
}

.reveal {
  opacity: 1;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

.cta-band {
  padding: 58px 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue-deep), #1c2b37);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.cta-band p {
  margin-top: 10px;
  color: #cfdae4;
  max-width: 720px;
}

.page-hero {
  padding: 84px 0 74px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(17, 34, 49, 0.94), rgba(17, 34, 49, 0.78)),
    url("../img/fpc-products.png");
  background-size: cover;
  background-position: center;
}

.page-hero--quality {
  background:
    linear-gradient(90deg, rgba(17, 34, 49, 0.94), rgba(17, 34, 49, 0.76)),
    url("../img/quality-inspection.png");
  background-size: cover;
  background-position: center;
}

.page-hero p {
  margin-top: 18px;
  max-width: 760px;
  color: #d8e2eb;
  font-size: 1.08rem;
}

.breadcrumb {
  color: #9fc2dc;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #243242;
  background: #eef3f7;
  font-size: 0.88rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.contact-panel {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 30px;
}

.contact-panel p,
.contact-panel li {
  color: #cbd8e4;
}

.contact-panel a {
  color: #ffffff;
  font-weight: 750;
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: #243242;
  font-weight: 750;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cdd6df;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.form.was-validated input:invalid,
.form.was-validated select:invalid,
.form.was-validated textarea:invalid {
  border-color: #d29a7a;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 106, 181, 0.14);
  border-color: var(--blue);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input[type="file"] {
  padding: 9px;
}

.field-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-errors {
  display: none;
  padding: 13px 14px;
  border: 1px solid #e0b09a;
  border-radius: 6px;
  color: #7b3419;
  background: #fff4ee;
  font-size: 0.92rem;
}

.form-errors.is-visible {
  display: block;
}

.form-errors ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-errors li + li {
  margin-top: 4px;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid #b8dbd3;
  border-radius: 6px;
  color: #0f5e52;
  background: #eaf7f4;
}

.site-footer {
  color: #cbd8e4;
  background: #121a22;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 54px 0;
}

.footer-logo {
  width: 300px;
  height: auto;
  margin-bottom: 16px;
}

.footer-main h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-main p,
.footer-main a,
.footer-main li {
  color: #cbd8e4;
  font-size: 0.94rem;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: #96a4b0;
  font-size: 0.9rem;
}

.note {
  color: var(--muted);
  font-size: 0.93rem;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #334252;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
}

.timeline {
  border-left: 3px solid var(--line);
  display: grid;
  gap: 22px;
  padding-left: 24px;
}

.timeline__item {
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px var(--line);
}

.timeline__item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.timeline__item span {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 190px;
  }

  .nav__links a {
    padding-inline: 6px;
    font-size: 0.86rem;
  }
}

@media (max-width: 940px) {
  .topbar {
    display: none;
  }

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

  .nav__links {
    position: absolute;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav__actions {
    justify-content: end;
  }

  .nav__actions .button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding: 72px 0 62px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__insight {
    max-width: 680px;
  }

  .hero__proof,
  .stats,
  .grid--3,
  .grid--4,
  .grid--2,
  .decision-board,
  .decision-board__grid,
  .project-matcher,
  .project-panel,
  .document-pack__items,
  .quality-gates,
  .quote-flow,
  .media-split,
  .rfq-layout,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .media-split {
    gap: 30px;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .brand-logo {
    width: 142px;
  }

  .hero__actions,
  .cta-band .button {
    width: 100%;
  }

  .hero__actions .button,
  .cta-band .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  .hero__chips span {
    font-size: 0.82rem;
  }

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

  .hero__timeline div {
    min-height: auto;
  }

  .hero__proof,
  .stats,
  .grid--3,
  .grid--4,
  .grid--2,
  .decision-board,
  .decision-board__grid,
  .project-matcher,
  .project-panel,
  .document-pack__items,
  .quality-gates,
  .quote-flow,
  .media-split,
  .rfq-layout,
  .footer-main,
  .file-grid,
  .form__row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 64px 0 58px;
  }

  .card,
  .form,
  .contact-panel {
    padding: 22px;
  }

  .rfq-assist {
    align-items: stretch;
    flex-direction: column;
  }

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

  .quick-contact {
    right: 14px;
    bottom: 14px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }
}
