:root {
  --navy-950: #06101b;
  --navy-900: #091727;
  --navy-800: #10243a;
  --navy-700: #173651;
  --steel-600: #53677a;
  --steel-400: #8fa0af;
  --steel-200: #d9e1e8;
  --steel-100: #edf2f6;
  --paper: #f6f8fa;
  --white: #ffffff;
  --amber: #f0b447;
  --amber-bright: #ffc85c;
  --blue: #3aa7ff;
  --green: #48c7a0;
  --ink: #112438;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 12px 32px rgba(17, 36, 56, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(17, 36, 56, 0.1);
  background: rgba(255, 255, 255, 0.93);
  color: var(--navy-950);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 36, 56, 0.18);
  border-radius: 9px;
  background: var(--navy-950);
  color: var(--amber-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.13em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--steel-600);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links > a {
  color: var(--navy-700);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
  color: var(--navy-950);
}

.lang-link {
  padding: 7px 10px;
  border: 1px solid rgba(17, 36, 56, 0.18);
  border-radius: 999px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 800;
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 36, 56, 0.18);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--paper) url("assets/johor-factory-hero.webp") 72% center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 248, 250, 0.99) 0%, rgba(246, 248, 250, 0.97) 37%, rgba(246, 248, 250, 0.8) 58%, rgba(246, 248, 250, 0.18) 100%),
    linear-gradient(0deg, rgba(246, 248, 250, 0.96) 0%, transparent 38%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 180, 71, 0.9), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(350px, 0.72fr);
  gap: 64px;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 72px;
}

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

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--steel-600);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(240, 180, 71, 0.2);
}

.button-primary:hover {
  background: var(--amber-bright);
}

.button-ghost {
  border-color: rgba(17, 36, 56, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy-950);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  grid-template-columns: 9px auto;
  gap: 9px;
  align-items: baseline;
  color: var(--navy-700);
  font-size: 13px;
}

.hero-proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(72, 199, 160, 0.14);
}

.brief-card {
  padding: 28px;
  border: 1px solid rgba(17, 36, 56, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.brief-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.brief-head h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.brief-head p {
  margin: 7px 0 0;
  color: var(--steel-600);
  font-size: 13px;
}

.step-count {
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 800;
}

.step-track {
  height: 3px;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--steel-200);
}

.step-track span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--amber);
  transition: width 200ms ease;
}

.brief-card[data-step="2"] .step-track span {
  width: 100%;
}

.brief-step {
  display: none;
}

.brief-step.is-active {
  display: block;
  animation: fade-up 240ms ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.field-group {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.field-group label,
.field-label {
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--steel-200);
  border-radius: 9px;
  outline: none;
  background: var(--white);
  color: var(--ink);
}

.field-group select {
  color-scheme: light;
}

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

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #8a99a7;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58, 167, 255, 0.15);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 8px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--steel-200);
  border-radius: 9px;
  color: var(--navy-700);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.choice input:checked + span {
  border-color: var(--amber);
  background: rgba(240, 180, 71, 0.12);
  color: var(--navy-950);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.form-actions .button {
  flex: 1;
}

.form-back {
  flex: 0 0 auto !important;
  width: 50px;
  padding: 0;
  border-color: var(--steel-200);
  background: transparent;
  color: var(--navy-950);
}

.privacy-note {
  margin: 13px 0 0;
  color: var(--steel-600);
  font-size: 12px;
  line-height: 1.5;
}

.concept-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  color: rgba(17, 36, 56, 0.64);
  font-size: 11px;
}

.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
  background: var(--white);
  color: var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.3fr;
}

.trust-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-right: 1px solid var(--steel-200);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-value {
  color: var(--navy-950);
  font-size: 1.45rem;
  font-weight: 800;
  white-space: nowrap;
}

.trust-label {
  color: var(--steel-600);
  font-size: 13px;
  line-height: 1.45;
}

.industrial-visuals {
  padding: 34px 0 28px;
  background: var(--paper);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.visual-card:hover img {
  transform: scale(1.025);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(6, 16, 27, 0.88), transparent);
  pointer-events: none;
}

.visual-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
}

.visual-card figcaption strong,
.visual-card figcaption span {
  display: block;
}

.visual-card figcaption strong {
  font-size: 1.15rem;
}

.visual-card figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.visual-disclaimer {
  width: min(calc(100% - 40px), var(--max));
  margin: 10px auto 0;
  color: var(--steel-600);
  font-size: 11px;
  text-align: right;
}

.section {
  padding: 88px 0;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
  background: var(--white);
  color: var(--navy-950);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(17, 36, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 36, 56, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-kicker {
  margin: 0 0 13px;
  color: #b47b14;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #966100;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading > p,
.about-copy > p {
  margin: 0;
  color: var(--steel-600);
  font-size: 1.05rem;
}

.section-dark .section-heading > p {
  color: var(--steel-600);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.path-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease;
}

.path-card:hover {
  transform: translateY(-5px);
  border-color: #b5c5d4;
}

.path-index {
  color: #8496a7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.path-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 20px 0 18px;
  border-radius: 13px;
  background: var(--steel-100);
  color: var(--navy-700);
}

.path-icon svg {
  width: 24px;
  height: 24px;
}

.path-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.3;
}

.path-card p {
  margin: 12px 0 22px;
  color: var(--steel-600);
  font-size: 14px;
}

.path-card a {
  margin-top: auto;
  color: #955f00;
  font-size: 14px;
  font-weight: 800;
}

.fit-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
}

.fit-intro {
  position: sticky;
  top: 108px;
}

.fit-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.fit-intro p {
  margin: 20px 0 28px;
  color: var(--steel-600);
}

.fit-intro .button {
  width: fit-content;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fit-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--steel-200);
  border-radius: 14px;
  background: var(--paper);
}

.fit-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.03rem;
}

.fit-card p {
  margin: 9px 0 0;
  color: var(--steel-600);
  font-size: 14px;
}

.fit-tag {
  display: inline-block;
  margin-top: 17px;
  color: #8a5900;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.opportunity-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.opportunity-top {
  position: relative;
  height: 162px;
  padding: 23px;
  overflow: hidden;
  background: var(--navy-800);
  color: var(--white);
}

.opportunity-top::before,
.opportunity-top::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.opportunity-top::before {
  inset: 0;
  opacity: 0.34;
  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: 28px 28px;
}

.opportunity-top::after {
  width: 200px;
  height: 80px;
  right: -30px;
  bottom: -22px;
  border: 1px solid rgba(240, 180, 71, 0.55);
  transform: skewX(-23deg);
}

.opportunity-top > * {
  position: relative;
  z-index: 1;
}

.opportunity-type {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunity-top h3 {
  max-width: 310px;
  margin: 25px 0 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.opportunity-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 23px 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 13px;
  margin: 0;
}

.spec-grid div {
  min-width: 0;
}

.spec-grid dt {
  color: var(--steel-600);
  font-size: 12px;
}

.spec-grid dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.opportunity-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--steel-200);
  color: #875600;
  font-size: 14px;
  font-weight: 850;
}

.availability-note {
  margin: 20px 0 0;
  color: var(--steel-600);
  font-size: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
}

.process-step {
  position: relative;
  padding-right: 24px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 12px;
  width: calc(100% - 58px);
  height: 1px;
  transform: translateX(100%);
  background: var(--steel-200);
}

.process-number {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber-bright);
  font-size: 12px;
  font-weight: 850;
}

.process-step h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--steel-600);
  font-size: 13px;
}

.corridor-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.corridor-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.corridor-copy p {
  color: var(--steel-600);
}

.corridor-list {
  display: grid;
  gap: 12px;
}

.corridor-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--steel-200);
  border-radius: 13px;
  background: var(--paper);
}

.corridor-code {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 180, 71, 0.4);
  border-radius: 12px;
  color: #966100;
  font-size: 13px;
  font-weight: 850;
}

.corridor-row strong {
  display: block;
  font-size: 1rem;
}

.corridor-row small {
  display: block;
  margin-top: 4px;
  color: var(--steel-600);
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  gap: 74px;
  align-items: center;
}

.advisor-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--steel-100);
  box-shadow: var(--shadow-lg);
}

.advisor-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 76% center;
}

.advisor-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(6, 16, 27, 0.86);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.advisor-label strong,
.advisor-label small {
  display: block;
}

.advisor-label small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
}

.about-copy > p {
  margin-top: 23px;
}

.advisor-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.advisor-points li {
  padding: 14px 15px;
  border-left: 2px solid var(--amber);
  background: var(--steel-100);
  font-size: 14px;
  font-weight: 700;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--navy-700);
  font-size: 14px;
  font-weight: 750;
}

.faq-list {
  max-width: 880px;
  margin: 44px auto 0;
  border-top: 1px solid var(--steel-200);
}

.faq-list details {
  border-bottom: 1px solid var(--steel-200);
}

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 2px;
  color: #9b6506;
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -6px 0 24px;
  color: var(--steel-600);
}

.cta-section {
  padding: 80px 0;
  background: var(--amber);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
}

.cta-copy p {
  max-width: 750px;
  margin: 14px 0 0;
  color: rgba(6, 16, 27, 0.71);
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.cta-actions .button {
  background: var(--navy-950);
  color: var(--white);
}

.cta-actions .button-secondary {
  border-color: rgba(6, 16, 27, 0.32);
  background: transparent;
  color: var(--navy-950);
}

.site-footer {
  padding: 52px 0 30px;
  background: var(--navy-950);
  color: var(--white);
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

.form-error {
  margin: 12px 0 0;
  color: #b42318;
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid rgba(58, 167, 255, 0.6);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links > a:not(.lang-link) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 145px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .brief-card {
    max-width: 760px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:first-child,
  .trust-item:nth-child(3) {
    padding-left: 0;
  }

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

  .fit-shell,
  .corridor-shell {
    grid-template-columns: 1fr;
  }

  .fit-intro {
    position: static;
  }

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

  .opportunity-card:last-child {
    grid-column: 1 / -1;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px 12px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    position: absolute;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(6, 16, 27, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    display: grid;
    gap: 3px;
  }

  .nav-links.is-open > a,
  .nav-links.is-open > a:not(.lang-link) {
    display: block;
    padding: 11px 8px;
    color: var(--white);
  }

  .lang-link {
    border: 0;
    border-radius: 0;
  }

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

  .hero::before {
    background:
      linear-gradient(180deg, rgba(246, 248, 250, 0.96) 0%, rgba(246, 248, 250, 0.9) 42%, rgba(246, 248, 250, 0.99) 78%),
      linear-gradient(90deg, rgba(246, 248, 250, 0.84), rgba(246, 248, 250, 0.45));
  }

  .hero-grid {
    gap: 34px;
    padding-top: 112px;
    padding-bottom: 56px;
  }

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

  .hero-lede {
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    display: grid;
    gap: 11px;
  }

  .brief-card {
    padding: 21px 18px;
    border-radius: 18px;
  }

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

  .concept-note {
    display: none;
  }

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

  .trust-item {
    min-height: 90px;
    display: block;
    padding: 17px 14px;
  }

  .trust-item:first-child,
  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .trust-value,
  .trust-label {
    display: block;
  }

  .trust-label {
    margin-top: 4px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .path-grid,
  .fit-grid,
  .opportunity-grid,
  .process-grid,
  .about-grid,
  .advisor-points,
  .cta-grid,
  .footer-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .industrial-visuals {
    padding: 18px 0 20px;
  }

  .visual-card,
  .visual-card img {
    min-height: 245px;
  }

  .visual-disclaimer {
    width: min(calc(100% - 28px), var(--max));
    text-align: left;
  }

  .path-card {
    min-height: auto;
  }

  .opportunity-card:last-child {
    grid-column: auto;
  }

  .process-grid {
    gap: 26px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 13px;
    padding: 0;
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .process-step h3 {
    grid-row: 1;
    margin: 6px 0 5px;
  }

  .process-step p {
    grid-row: 2;
  }

  .advisor-visual,
  .advisor-visual img {
    min-height: 360px;
  }

  .about-grid {
    gap: 38px;
  }

  .cta-actions {
    display: grid;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 12px;
    background: var(--amber);
    color: var(--navy-950);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    font-size: 14px;
    font-weight: 850;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
