:root {
  --blue: #1B3F71;        /* Regal Navy */
  --blue-dark: #0B1729;   /* American Blue */
  --slate: #ABAFB2;       /* Pale Slate */
  --ink: #14181D;         /* Greyscale Ink */
  --charcoal: #171A1F;    /* Charcoal Canvas (Greyscale) */
  --paper: #FFFFFF;       /* Pure White */
  --off-white: #F4F5F6;   /* Off-white Canvas (Greyscale) */
  --line: #D7DCE1;        /* Slate Border (Greyscale) */
  --accent: #ABAFB2;      /* Pale Slate */
  --cyan: #ABAFB2;        /* Pale Slate */
  --max: 1240px;
  --header-height: 72px;
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; color: var(--ink); background: var(--charcoal); font-family: "Barlow", Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Page Loader & Transition ── */
.page-loader {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  pointer-events: all;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.loader-content {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: loader-spin 1.2s linear infinite;
  transform-origin: center center;
}
.loader-ring-track {
  fill: none;
  stroke: rgba(171, 175, 178, 0.22);
  stroke-width: 3.5;
}
.loader-ring-spin {
  fill: none;
  stroke: var(--slate);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 213;
  stroke-dashoffset: 155;
  animation: loader-dash 1.4s ease-in-out infinite alternate;
}
.loader-logo {
  width: 30px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  animation: loader-pulse 1.4s ease-in-out infinite alternate;
}
@keyframes loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes loader-dash {
  0% { stroke-dashoffset: 180; }
  100% { stroke-dashoffset: 45; }
}
@keyframes loader-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  100% { transform: scale(1.04); opacity: 1; }
}

/* ── Contact Hero Banner ── */
.contact-hero-banner { width: 100%; max-height: 320px; overflow: hidden; }
.contact-hero-banner img { width: 100%; height: 320px; object-fit: cover; object-position: center 40%; display: block; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-height); background: var(--blue-dark); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.site-header.header-transparent { background: transparent; border-bottom: 1px solid transparent; box-shadow: none; transition: none; }
.site-header.header-transparent.header-solid { background: var(--blue-dark); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.header-inner { width: min(calc(100% - 48px), var(--max)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 185px; height: auto; display: block; filter: brightness(0) invert(1); }
.primary-nav { display: flex; align-items: center; gap: 36px; font-size: 15px; font-weight: 600; color: #ffffff; }
.primary-nav a { text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; color: rgba(255,255,255,0.9); transition: color 160ms ease, border-color 160ms ease; display: inline-flex; align-items: center; }
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a.active { color: #ffffff; border-bottom-color: #ffffff; }
.nav-toggle { display: none; }

.hero { position: relative; height: 100vh; height: 100dvh; overflow: hidden; background: #111; }
.hero-videos { position: absolute; inset: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0; filter: brightness(0.55) contrast(1.1); transition: opacity 1.2s ease; }
.hero-video.active { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,10,15,0.45), rgba(6,10,15,0.45)), linear-gradient(90deg, rgba(6,10,15,.92) 0%, rgba(6,10,15,.82) 34%, rgba(6,10,15,.45) 70%, rgba(6,10,15,.20) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); height: 100vh; height: 100dvh; margin: 0 auto; display: flex; align-items: center; justify-content: flex-start; text-align: left; }
.hero-copy { width: min(760px, 68%); color: white; padding: 48px 0; margin: 0; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-scroll-hint { position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s; animation: hint-bob 2.4s ease-in-out infinite; }
.hero-scroll-hint:hover { color: rgba(255,255,255,.8); }
@keyframes hint-bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.hero-origin-badge { position: absolute; right: clamp(24px, 3.5vw, 48px); bottom: clamp(24px, 4vh, 38px); z-index: 3; display: flex; align-items: center; gap: 18px; opacity: .75; transition: opacity .25s ease, transform .25s ease; pointer-events: auto; }
.hero-origin-badge:hover { opacity: 1; transform: translateY(-2px); }
.hero-origin-badge .origin-flo { height: 38px; width: auto; display: block; }
.hero-origin-badge .origin-flag { height: 30px; width: auto; display: block; }
html { scroll-behavior: smooth; }
.eyebrow, .section-kicker { margin: 0 0 10px; color: var(--cyan); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-light .eyebrow, .section-light .section-kicker { color: var(--blue); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.08; letter-spacing: -.025em; font-weight: 700; text-shadow: 0 4px 28px rgba(0,0,0,0.6); }
.hero-text { max-width: 600px; margin: 24px 0 0; color: rgba(255,255,255,.94); font-size: clamp(17px, 1.8vw, 19px); font-weight: 500; line-height: 1.55; text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
.scroll-hint { display: flex; align-items: center; justify-content: center; height: 50px; margin-top: auto; color: rgba(255,255,255,0.65); text-decoration: none; line-height: 0; transition: color 200ms ease; }
.scroll-hint:hover { color: rgba(255,255,255,0.9); }
.section-light .scroll-hint { color: rgba(20,24,29,0.35); }
.section-light .scroll-hint:hover { color: rgba(20,24,29,0.7); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 26px; border: 1.5px solid transparent; text-decoration: none; font-size: 15px; font-weight: 700; border-radius: 999px; transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.button-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(11, 23, 41, 0.25); }
.button-secondary { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.72); }
.button-secondary:hover, .button-secondary:focus-visible { background: #fff; color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); }
.button-outline { background: #ffffff; color: var(--blue-dark); border-color: #D7DCE1; }
.button-outline:hover, .button-outline:focus-visible { background: var(--off-white); border-color: var(--blue); color: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(11, 23, 41, 0.08); }
.button-full { width: 100%; }
.hero-btn-large { min-height: 58px; padding: 16px 38px; font-size: 18px; font-weight: 700; letter-spacing: .02em; border-radius: 999px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
.hero-e-mark { display: inline-block; height: 1.15em; width: auto; vertical-align: -0.15em; margin: 0 0.45em; }

.work-reel { position: relative; overflow: hidden; background: #edf0f2; border-bottom: 1px solid #d9dde1; padding: 16px 0; }
.reel-track { display: flex; width: max-content; gap: 14px; will-change: transform; }
.reel-item { width: clamp(280px, 22vw, 360px); height: 245px; margin: 0; flex: 0 0 auto; overflow: hidden; background: #d7dade; cursor: pointer; }
.reel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms ease; }
.reel-item:hover img { transform: scale(1.025); }

.reel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border: none; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--blue-dark); font-size: 24px; line-height: 1; cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center; transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.reel-arrow:hover { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.24); transform: translateY(-50%) scale(1.06); }
.reel-arrow-prev { left: 14px; }
.reel-arrow-next { right: 14px; }

 
.section-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; position: relative; z-index: 1; }
.section-dark { background: var(--charcoal); color: #fff; padding: 72px 0 0; min-height: calc(100vh - var(--header-height)); display: flex; flex-direction: column; position: relative; }
section[id] { scroll-margin-top: var(--header-height); }
.section-light { background: var(--off-white); color: var(--ink); padding: 72px 0 72px; display: flex; flex-direction: column; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin: 0; color: var(--blue); font-size: clamp(32px, 3vw, 44px); line-height: 1.12; letter-spacing: -.02em; }
.section-heading p:last-child { margin: 15px 0 0; color: inherit; opacity: .82; font-size: 17px; }
.section-dark .section-heading h2 { color: #fff; }
.section-dark .section-kicker { color: var(--accent); }

.capability-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin: 34px 0 10px; }
.capability-card { position: relative; overflow: hidden; flex: 0 1 calc(25% - 14px); min-width: 250px; min-height: 230px; border-radius: 8px; box-shadow: 0 4px 18px rgba(11,23,41,0.14); text-decoration: none; color: #ffffff; display: flex; flex-direction: column; justify-content: center; transition: transform 220ms ease, box-shadow 220ms ease; }
.capability-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(11,23,41,0.25); }
.card-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.capability-card:hover .card-bg img { transform: scale(1.08); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,23,41,0.65) 0%, rgba(11,23,41,0.85) 50%, rgba(11,23,41,0.92) 100%); transition: background 220ms ease; }
.capability-card:hover .card-overlay { background: linear-gradient(180deg, rgba(11,23,41,0.55) 0%, rgba(11,23,41,0.78) 50%, rgba(11,23,41,0.88) 100%); }
.card-content { position: relative; z-index: 2; padding: 26px 22px 24px; display: flex; flex-direction: column; height: 100%; justify-content: center; align-items: center; text-align: center; }
.card-content h3 { margin: 0 0 10px; font-size: 17.5px; font-weight: 700; color: #ffffff; line-height: 1.25; }
.card-content p { margin: 0; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.88); max-width: 250px; }
.section-link-row { margin-top: 24px; text-align: right; }
.section-link-row.centered { text-align: center; }
.text-link { font-weight: 700; font-size: 15px; color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.text-link.light { color: #fff; }

.solutions-layout { display: grid; grid-template-columns: minmax(280px,.85fr) minmax(0,1.15fr); gap: 60px; align-items: start; }
.solutions-image-wrap { background: #d9dde1; overflow: hidden; min-height: 400px; }
.solutions-image-wrap img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.solutions-copy h2 { margin: 0 0 20px; color: var(--blue); font-size: clamp(28px, 3vw, 38px); line-height: 1.15; letter-spacing: -.02em; }
.solutions-copy p { margin: 0 0 14px; color: #46515d; max-width: 620px; }
.solutions-tolerance { font-weight: 600; color: var(--blue-dark) !important; }
.solutions-pillars { display: flex; gap: 28px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.solutions-pillar { display: flex; align-items: center; gap: 10px; }
.pillar-icon { flex-shrink: 0; color: var(--blue); }
.solutions-pillar span { font-size: 14px; font-weight: 700; color: var(--blue-dark); }



.engineering-layout { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(0,1.55fr); gap: 70px; align-items: start; }
.engineering-image-wrap { background: #d9dde1; overflow: hidden; min-height: 455px; }
.engineering-image-wrap img { width: 100%; height: 100%; min-height: 455px; object-fit: cover; }
.engineering-copy { display: grid; gap: 42px; padding-top: 12px; }
.engineering-copy article { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.engineering-copy article:last-child { border-bottom: 0; padding-bottom: 0; }
.engineering-copy h3 { margin: 0 0 14px; color: var(--blue); font-size: 22px; line-height: 1.25; }
.engineering-copy p { margin: 0 0 12px; color: #46515d; max-width: 760px; }
.engineering-copy p:last-child { margin-bottom: 0; }

.clients-section { background: var(--off-white); color: var(--ink); padding: 84px 0 96px; border-top: 1px solid var(--line); overflow: hidden; position: relative; }
.clients-marquee { position: relative; width: 100%; overflow: hidden; margin-top: 36px; padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); }
.clients-track { display: flex; width: max-content; will-change: transform; animation: clients-scroll 55s linear infinite; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-group { display: flex; align-items: center; justify-content: space-around; gap: 72px; padding-right: 72px; flex-shrink: 0; }
@keyframes clients-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo-item { display: flex; align-items: center; justify-content: center; min-width: 150px; max-width: 220px; height: 58px; padding: 0 10px; filter: grayscale(100%); opacity: .72; transition: opacity .25s ease, filter .25s ease, transform .25s ease; }
.client-logo-item:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.08); }
.client-logo-item img { max-height: 48px; max-width: 100%; width: auto; height: auto; object-fit: contain; }

.quote-cta { position: relative; background: #ffffff; color: var(--ink); padding: 58px 0; text-align: center; border-top: 1px solid var(--line); overflow: hidden; scroll-margin-top: var(--header-height); }
.quote-cta::before { content: ''; position: absolute; inset: 0; background: url('assets/cta-bushing.jpg') center/cover no-repeat; opacity: .10; pointer-events: none; }
.quote-cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.quote-cta h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.12; color: var(--blue-dark); }
.quote-cta p:not(.section-kicker) { margin: 12px 0 0; color: #46515d; max-width: 700px; margin-left: auto; margin-right: auto; }
.quote-cta .section-kicker { color: var(--blue); font-weight: 700; }
.kicker-link { display: inline-block; text-decoration: none; transition: opacity 160ms ease, transform 160ms ease; }
.kicker-link:hover { opacity: .85; transform: translateY(-1px); }

.site-footer { background: var(--blue); color: #fff; padding: 56px 0 0; position: relative; }
.footer-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.85fr 0.85fr 1.25fr 1.35fr; gap: 26px; align-items: start; }
.footer-col-main { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: inline-block; margin-bottom: 2px; }
.footer-logo img { width: 175px; height: auto; filter: brightness(0) invert(1); display: block; }
.footer-address { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.footer-contact-links { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.footer-contact-links a { color: rgba(255,255,255,0.92); text-decoration: none; transition: color 160ms ease; }
.footer-contact-links a:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.social-circle { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.32); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.social-circle:hover { border-color: #fff; background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.footer-heading { display: block; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 16px; }
.footer-row-item { margin-bottom: 10px; }
.footer-row-item:last-child { margin-bottom: 0; }
.footer-row-item a { font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 160ms ease; line-height: 1.4; display: inline-block; }
.footer-row-item a:hover { color: #fff; text-decoration: underline; }

.credential-item { margin-bottom: 12px; }
.credential-item:last-child { margin-bottom: 0; }
.credential-item strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); line-height: 1.2; margin-bottom: 2px; }
.credential-item span { display: block; font-size: 13px; color: rgba(255,255,255,0.92); font-weight: 500; line-height: 1.35; }

.footer-col-reviews { display: flex; flex-direction: column; }
.google-review-card { display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; text-decoration: none; color: #fff; transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.google-review-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); transform: translateY(-2px); }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.google-icon { flex-shrink: 0; width: 24px; height: 24px; }
.review-stars-wrap { display: flex; flex-direction: column; gap: 2px; }
.review-stars { color: #ABAFB2; font-size: 15px; letter-spacing: 2px; line-height: 1; }
.review-score { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.95); }
.review-card-sub { display: flex; flex-direction: column; gap: 3px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11.5px; }
.review-card-sub span:first-child { color: rgba(255,255,255,0.75); }
.review-read-link { font-weight: 700; color: var(--accent); }

.footer-origin-block { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.footer-origin-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: .06em; text-align: center; }
.footer-origin-icons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.footer-origin-icons .origin-flo { height: 30px; width: auto; opacity: .95; }
.footer-origin-icons .origin-flag { height: 23px; width: auto; opacity: .95; }
.origin-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.22); margin: 0 2px; }
.macf-link { display: inline-flex; align-items: center; opacity: .9; transition: opacity 160ms ease, transform 160ms ease; }
.macf-link:hover { opacity: 1; transform: translateY(-1px); }
.macf-logo-img { height: 30px; width: auto; display: block; }

.footer-bottom { margin-top: 44px; padding: 22px 0; background: var(--blue-dark); border-top: 1px solid rgba(255,255,255,0.10); }
.footer-bottom-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.85); }
.footer-notice { color: rgba(255,255,255,0.92); font-style: italic; font-size: 13px; }

/* ── Breadcrumb Bar for Subpages ── */
.breadcrumb-bar {
  padding: calc(var(--header-height) + 22px) 0 16px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.breadcrumb-bar + section { padding-top: 28px; }
.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #555e68;
}
.breadcrumb-item a {
  color: var(--blue);
  text-decoration: none;
  transition: color 160ms ease;
}
.breadcrumb-item a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}
.breadcrumb-separator {
  color: var(--slate);
  font-size: 12px;
  user-select: none;
}
.breadcrumb-item.active {
  color: var(--ink);
  font-weight: 600;
}

/* About page */
.about-layout { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(0, 1.35fr); gap: 54px; align-items: stretch; }
.about-image-wrap { position: relative; width: 100%; height: 100%; min-height: 480px; display: flex; }
.about-image-wrap img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; border-radius: 6px; display: block; }
.about-copy h2 { margin: 0 0 22px; color: var(--blue); font-size: clamp(28px, 3vw, 38px); line-height: 1.15; letter-spacing: -.02em; }
.about-copy p { margin: 0 0 16px; color: #46515d; line-height: 1.6; }
.about-copy p:last-child { margin-bottom: 0; }

/* Capability / service alternating sections: Solid White & Solid Slate Grey */
.section-white { background: #ffffff; color: var(--ink); padding: 72px 0; }
.section-texture,
.section-slate,
.section-light { background: var(--off-white); color: var(--ink); padding: 72px 0; }
.cap-section h3 { margin: 0 0 14px; color: var(--blue); font-size: 24px; line-height: 1.25; }
.cap-section p { margin: 0 0 12px; color: #46515d; }
.engineering-layout.alt { grid-template-columns: minmax(0,1.55fr) minmax(280px,.8fr); }

/* ── Contact Page ── */
.contact-main { display: flex; flex-direction: column; min-height: 100vh; }
.contact-page-section { flex: 1; display: flex; align-items: stretch; padding: 0; background: var(--off-white); }
.contact-page-section > .section-inner { display: flex; flex-direction: column; justify-content: center; padding-top: 18px; padding-bottom: 18px; gap: 14px; }
.contact-grid-top { display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; align-items: stretch; }
.contact-card-info { background: #ffffff; border: 1px solid var(--line); border-radius: 6px; padding: 28px 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: center; }
.contact-card-info h3 { color: var(--blue-dark); margin: 0 0 16px; font-size: 24px; font-weight: 700; }
.contact-divider { border: none; border-top: 1px solid var(--line); margin: 0 0 18px; width: 100%; }
.contact-details-grid { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-row { font-size: 16px; line-height: 1.45; }
.detail-label { display: block; color: #84919e; font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.detail-value { color: #333d47; font-size: 16px; }
.detail-value a { color: var(--blue); text-decoration: none; font-weight: 600; }
.detail-value a:hover { text-decoration: underline; }
.contact-card-media { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; }
.contact-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-form-wrap { width: 100%; background: #ffffff; padding: 20px 24px; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.contact-form-wrap h3 { color: var(--blue-dark); margin: 0 0 6px; font-size: 24px; }
.quote-redirect { font-size: 14px; color: #46515d; margin: 0 0 10px; line-height: 1.45; }
.quote-redirect a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.contact-form-wrap .form-group { margin-bottom: 9px; }
.contact-form-wrap .form-control { width: 100%; padding: 9px 13px; border: 1px solid var(--line); font-family: inherit; font-size: 14.5px; background: #fff; }
.contact-form-wrap .form-control:focus { outline: none; border-color: var(--blue); }
.contact-form-wrap textarea.form-control { min-height: 72px; height: 72px; resize: vertical; }
.contact-form-wrap button[type="submit"] { min-height: 40px; padding: 9px 20px; font-size: 14.5px; font-weight: 600; }

/* ── Careers Page ── */
.careers-section { padding: 56px 0 88px; background: #ffffff; }
.careers-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 64px; align-items: start; max-width: 1040px; margin: 0 auto; }
.careers-heading-block { border-left: 3px solid var(--blue); padding-left: 18px; margin-bottom: 30px; }
.careers-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin: 0 0 6px; display: block; }
.careers-title { font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; color: var(--blue-dark); line-height: 1.18; margin: 0; }
.careers-form { display: flex; flex-direction: column; gap: 14px; }
.careers-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.careers-form .form-group { margin: 0; }
.careers-form .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #f7f9fa;
  transition: border-color 160ms, background 160ms, box-shadow 160ms;
}
.careers-form .form-control::placeholder { color: #84919e; }
.careers-form .form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 63, 113, 0.08);
}
.careers-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.careers-file-field { position: relative; }
.careers-file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border: 1px dashed var(--line);
  border-radius: 4px;
  background: #f7f9fa;
  cursor: pointer;
  transition: border-color 160ms, background 160ms;
}
.careers-file-label:hover {
  border-color: var(--blue);
  background: #ffffff;
}
.careers-file-label:focus-within {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(27, 63, 113, 0.08);
}
.careers-file-text { font-size: 14px; color: #556270; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.careers-file-browse {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.careers-submit-row { margin-top: 4px; }
.careers-submit-btn {
  display: inline-block;
  min-height: 44px;
  padding: 11px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}
.careers-sidebar { padding-top: 8px; }
.careers-sidebar h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.35;
  margin: 0 0 20px;
}
.careers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.careers-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #333d47;
  line-height: 1.5;
}
.careers-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 860px) {
  .careers-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .careers-form .form-row-2 {
    grid-template-columns: 1fr;
  }
}
.story-wrapper { padding: 48px 0 90px; }
.story-header { max-width: 780px; margin: 0 auto 36px; text-align: left; }
.story-header .section-kicker { font-size: 11.5px; font-weight: 500; letter-spacing: .08em; color: var(--blue); margin: 0 0 12px; }
.story-header h1 { font-size: clamp(32px, 3.2vw, 44px); font-weight: 700; color: var(--blue); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 16px; }
.story-deck { font-size: 17px; line-height: 1.6; color: #46515d; font-weight: 400; margin: 0; }
.story-hero-media { max-width: 780px; margin: 32px auto 44px; }
.story-hero-media img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 6px; }
.story-caption { font-size: 13px; color: #6b7280; margin-top: 10px; line-height: 1.4; }
.story-content { max-width: 780px; margin: 0 auto; font-size: 16.5px; line-height: 1.7; color: #333d47; }
.story-content p { margin: 0 0 20px; }
.story-content h2 { font-size: 24px; font-weight: 700; color: var(--blue); margin: 38px 0 14px; letter-spacing: -0.01em; }
.story-pullquote { margin: 38px 0; padding: 26px 30px; background: var(--off-white); border-left: 4px solid var(--blue); border-radius: 0 6px 6px 0; }
.story-pullquote p { font-size: 18.5px; font-weight: 500; line-height: 1.5; color: var(--blue-dark); font-style: italic; margin: 0 0 12px; }
.story-quote-author { font-size: 13px; font-weight: 700; color: #46515d; text-transform: uppercase; letter-spacing: 0.04em; }
.story-quote-author span { font-weight: 400; text-transform: none; color: #6b7280; }
.story-grid-media { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 34px 0; }
.story-grid-media img { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; }

/* ── Mission & Values Page (Clean Card Grid Layout) ── */
.mv-section { padding: 48px 0 90px; background: var(--off-white); }
.mv-header { max-width: 820px; margin-bottom: 38px; text-align: left; }
.mv-header h1 { font-size: clamp(34px, 3.8vw, 48px); font-weight: 700; color: var(--blue-dark); line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; }
.mv-header p { font-size: 16px; color: #46515d; margin: 0; line-height: 1.5; }
.values-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card-item { background: #ffffff; border: 1px solid #E2E6EA; border-radius: 8px; padding: 34px 30px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; box-shadow: 0 4px 16px rgba(11,23,41,0.04); transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.value-card-item:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: 0 8px 24px rgba(11,23,41,0.08); }
.value-card-icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 2px; display: flex; align-items: center; justify-content: flex-start; }
.value-card-item h3 { font-size: 19px; font-weight: 700; color: var(--blue-dark); margin: 0; line-height: 1.25; }
.value-card-item p { font-size: 14.5px; color: #46515d; line-height: 1.55; margin: 0; }
.value-card-item.mission-card { background: var(--blue); border-color: var(--blue); box-shadow: 0 4px 20px rgba(27, 63, 113, 0.16); }
.value-card-item.mission-card:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: 0 8px 28px rgba(27, 63, 113, 0.24); }
.value-card-item.mission-card .value-card-icon { color: #ffffff; }
.value-card-item.mission-card h3 { color: #ffffff; }
.value-card-item.mission-card p { color: rgba(255, 255, 255, 0.92); }

@media (max-width: 980px) {
  .values-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .story-pullquote { margin: 28px 0; padding: 20px; }
}
@media (max-width: 640px) {
  .values-cards-grid { grid-template-columns: 1fr; }
  .story-grid-media { grid-template-columns: 1fr; }
  .story-grid-media img { height: auto; aspect-ratio: 16 / 9; }
  .value-card-item { padding: 26px 22px; }
}

/* ── Splash / Placeholder Pages ── */
.splash-section { padding: 90px 0 120px; background: var(--off-white); }
.splash-card { max-width: 680px; margin: 0 auto; text-align: center; background: #ffffff; border: 1px solid var(--line); border-radius: 8px; padding: 60px 48px; box-shadow: 0 4px 20px rgba(11, 23, 41, 0.05); }
.splash-card h1 { font-size: clamp(32px, 3.5vw, 44px); font-weight: 700; color: var(--blue); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 16px; }
.splash-card p { font-size: 16.5px; line-height: 1.6; color: #46515d; margin: 0 auto 32px; max-width: 540px; }
.splash-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.splash-actions .button { min-height: 54px; padding: 15px 34px; font-size: 16px; }

@media (max-width: 640px) {
  .splash-card { padding: 40px 24px; }
  .splash-actions { flex-direction: column; width: 100%; }
  .splash-actions .button { width: 100%; }
}

/* Lightbox overlay */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox-img { position: relative; z-index: 1; max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 16px; right: 20px; z-index: 2; width: 44px; height: 44px; border: none; background: rgba(255,255,255,0.08); color: #fff; font-size: 26px; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 160ms ease; }
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; border: none; background: rgba(255,255,255,0.08); color: #fff; font-size: 26px; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 160ms ease; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }
/* ── Quote Wizard (Direct Canvas Layout) ── */
.quote-section { padding: 28px 0 80px; background: var(--off-white); min-height: calc(100vh - var(--header-height) - 40px); min-height: calc(100dvh - var(--header-height) - 40px); box-sizing: border-box; }
.quote-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* Minimal Connected Stepper */
.quote-stepper { display: flex; align-items: center; justify-content: center; max-width: 540px; margin: 0 auto 32px; background: transparent; border: none; box-shadow: none; padding: 0; }
.stepper-tab { appearance: none; background: transparent; border: none; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; position: relative; z-index: 2; }
.stepper-dot { width: 36px; height: 36px; border-radius: 50%; background: #D7DCE1; color: #6b7280; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; transition: all 180ms ease; box-shadow: 0 1px 3px rgba(11,23,41,0.08); }
.stepper-title { font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.06em; transition: color 180ms ease; }

.stepper-tab.active .stepper-dot { background: var(--blue-dark); color: #ffffff; box-shadow: 0 3px 12px rgba(11, 23, 41, 0.35); }
.stepper-tab.active .stepper-title { color: var(--blue-dark); font-weight: 800; }

.stepper-tab.completed .stepper-dot { background: #1B3F71; color: #ffffff; }
.stepper-tab.completed .stepper-dot span { display: none; }
.stepper-tab.completed .stepper-dot::after { content: '✓'; font-size: 15px; font-weight: 800; }
.stepper-tab.completed .stepper-title { color: #1B3F71; }

.stepper-line { flex: 1; height: 3.5px; background: #D7DCE1; margin: 0 14px 26px; border-radius: 2px; transition: background 180ms ease; min-width: 44px; }
.stepper-line.completed { background: #1B3F71; }

/* Form & Step Containers */
.quote-step { display: none; }
.quote-step.active { display: block; animation: stepFadeIn 200ms ease-out; }
@keyframes stepFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* Field Groups */
.quote-field-group { margin-bottom: 28px; }
.quote-field-group:last-child { margin-bottom: 0; }
.field-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.field-label .required { color: #c0392b; font-weight: 700; }

/* Grid Layouts for Tiles */
.quote-grid { display: grid; gap: 12px; }
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* Form Rows */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* Tiles / Buttons */
.quote-tile { appearance: none; background: #ffffff; border: 1.5px solid #D7DCE1; border-radius: 8px; padding: 18px 20px; min-height: 60px; text-align: left; cursor: pointer; transition: all 160ms ease; display: flex; align-items: center; gap: 14px; font-family: inherit; width: 100%; box-shadow: 0 2px 6px rgba(11,23,41,0.03); }
.quote-tile:hover { border-color: var(--blue); background: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(11,23,41,0.08); }

.quote-tile .tile-indicator { width: 20px; height: 20px; border: 1.5px solid #D7DCE1; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #ffffff; transition: all 160ms ease; }
.quote-tile .tile-indicator.check { border-radius: 4px; }
.quote-tile .tile-text { display: flex; flex-direction: column; gap: 4px; }
.quote-tile .tile-text strong { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.quote-tile .tile-text small { font-size: 12.5px; color: #6b7280; line-height: 1.3; font-weight: 400; }
.quote-tile .tile-title { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }

/* Compact Tiles */
.quote-tile.compact { padding: 15px 18px; min-height: 54px; }
.quote-tile.compact .tile-title { font-size: 14px; }

/* Other Input Field */
.quote-other-input-wrap {
  margin-top: 14px;
  animation: otherSlideIn 200ms ease-out;
}
@keyframes otherSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.other-input-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* Selected State */
.quote-tile.selected { background: var(--blue-dark); border-color: var(--blue-dark); color: #ffffff; box-shadow: 0 4px 16px rgba(11, 23, 41, 0.22); transform: translateY(-2px); }
.quote-tile.selected .tile-text strong,
.quote-tile.selected .tile-title { color: #ffffff; }
.quote-tile.selected .tile-text small { color: rgba(255, 255, 255, 0.82); }
.quote-tile.selected .tile-indicator { border-color: #ffffff; background: #ffffff; }
.quote-tile.selected .tile-indicator::after { content: ''; width: 7px; height: 7px; background: var(--blue-dark); border-radius: 50%; }
.quote-tile.selected .tile-indicator.check { background: #ffffff; }
.quote-tile.selected .tile-indicator.check::after { content: '✓'; color: var(--blue-dark); font-size: 11px; font-weight: 800; background: transparent; width: auto; height: auto; }

/* Dropzone */
.quote-dropzone { border: 2px dashed #D7DCE1; border-radius: 8px; padding: 48px 24px; min-height: 200px; display: flex; align-items: center; justify-content: center; text-align: center; cursor: pointer; transition: all 160ms ease; background: #ffffff; box-shadow: 0 2px 6px rgba(11,23,41,0.03); margin-bottom: 28px; }
.quote-dropzone:hover, .quote-dropzone.dragover { border-color: var(--blue); background: rgba(27, 63, 113, 0.03); }
.dropzone-body { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.dropzone-icon { color: var(--blue); margin-bottom: 2px; }
.dropzone-prompt { font-size: 16px; color: var(--ink); }
.dropzone-browse { color: var(--blue); font-weight: 700; text-decoration: underline; cursor: pointer; }
.dropzone-meta { font-size: 13px; color: var(--slate); }

/* File List */
.quote-file-list { display: flex; flex-direction: column; gap: 10px; }
.quote-file-list:not(:empty) { margin-top: -12px; margin-bottom: 32px; }
.quote-file-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #ffffff; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 1px 4px rgba(11,23,41,0.02); }
.file-icon { width: 32px; height: 32px; border-radius: 4px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; flex-shrink: 0; }
.file-info { flex: 1; min-width: 0; }
.file-name { font-size: 14px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-size { font-size: 12px; color: var(--slate); }
.file-remove { appearance: none; border: none; background: none; color: #9ca3af; cursor: pointer; font-size: 18px; padding: 2px; line-height: 1; transition: color 140ms; }
.file-remove:hover { color: #c0392b; }

/* Security Badge */
.security-badge { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #ffffff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 0 6px 6px 0; margin-top: 20px; font-size: 13.5px; color: #46515d; line-height: 1.45; box-shadow: 0 1px 4px rgba(11,23,41,0.02); }
.security-badge svg { flex-shrink: 0; color: var(--blue); }

/* Input Styles */
.form-control { width: 100%; padding: 14px 16px; min-height: 50px; border: 1.5px solid #D7DCE1; border-radius: 6px; font-family: inherit; font-size: 15px; color: var(--ink); background: #ffffff; transition: border-color 160ms, box-shadow 160ms; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 63, 113, 0.1); }
.form-control::placeholder { color: #9ca3af; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* Validation Error */
.quote-field-group.error .form-control { border-color: #c0392b; }
.quote-field-group.error .quote-grid { outline: 2px solid rgba(192, 57, 43, 0.35); outline-offset: 3px; border-radius: 8px; }
.field-error { font-size: 12px; font-weight: 600; color: #c0392b; margin-top: 6px; display: none; }
.quote-field-group.error .field-error { display: block; }

/* Card Navigation (No Divider Line) */
.quote-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 0; border-top: none; }
.quote-nav-left { display: flex; align-items: center; gap: 12px; }
.quote-nav-right { margin-left: auto; }
.quote-nav .button { min-height: 48px; padding: 12px 36px; font-size: 15px; font-weight: 700; border-radius: 999px; }
.quote-reset-btn.button { min-height: auto; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--slate); border-color: transparent; background: transparent; }
.quote-reset-btn.button:hover, .quote-reset-btn.button:focus-visible { color: var(--blue); background: rgba(27, 63, 113, 0.06); border-color: rgba(27, 63, 113, 0.15); }

/* Unified Confirmation Screen (Spacious Single-Viewport Card) */
.quote-confirmation { width: 100%; margin-top: 6px; }
.confirm-card-unified { background: #ffffff; border: 1.5px solid #D7DCE1; border-radius: 10px; padding: 34px 40px; box-shadow: 0 4px 24px rgba(11,23,41,0.04); }

.confirm-header-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid #EAECEF; }
.confirm-title-group { display: flex; align-items: center; gap: 18px; text-align: left; }
.confirm-icon-compact { width: 52px; height: 52px; background: rgba(11, 23, 41, 0.06); color: var(--blue-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.confirm-title-group h3 { font-size: 24px; font-weight: 700; color: var(--blue-dark); margin: 0 0 4px; letter-spacing: -0.01em; }
.confirm-title-group p { font-size: 14.5px; color: #46515d; margin: 0; line-height: 1.45; max-width: 560px; }
.confirm-actions-compact { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.confirm-actions-compact .button { min-height: 46px; padding: 11px 24px; font-size: 14.5px; font-weight: 700; border-radius: 999px; }

.confirm-roadmap-section { padding: 24px 0; border-bottom: 1px solid #EAECEF; text-align: left; }
.roadmap-subhead { font-size: 12px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.confirm-roadmap-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.roadmap-card { display: flex; gap: 14px; align-items: flex-start; background: var(--off-white); border: 1px solid #E2E6EA; border-radius: 8px; padding: 18px 20px; }
.roadmap-card-badge { width: 30px; height: 30px; border-radius: 50%; background: var(--blue-dark); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 1px; box-shadow: 0 2px 6px rgba(11,23,41,0.15); }
.roadmap-card-body { display: flex; flex-direction: column; gap: 4px; }
.roadmap-card-body strong { font-size: 14.5px; font-weight: 700; color: var(--blue-dark); }
.roadmap-card-body span { font-size: 13px; color: #46515d; line-height: 1.4; }

.confirm-footer-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 20px; font-size: 13.5px; color: #6b7280; }
.confirm-contact-text a { color: var(--blue); font-weight: 600; text-decoration: none; }
.confirm-social-inline { display: flex; align-items: center; gap: 10px; }
.social-text-label { font-size: 13px; font-weight: 700; color: var(--blue-dark); }
.social-pill-compact { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; background: var(--off-white); border: 1px solid #D7DCE1; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--blue-dark); text-decoration: none; transition: all 140ms ease; }
.social-pill-compact svg { color: var(--blue-dark); }
.social-pill-compact:hover { background: var(--blue-dark); color: #ffffff; border-color: var(--blue-dark); transform: translateY(-1px); }
.social-pill-compact:hover svg { color: #ffffff; }

/* ── Branded Quote Modal ── */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 23, 41, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.quote-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.quote-modal-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 48px rgba(11, 23, 41, 0.28);
  transform: translateY(12px) scale(0.97);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-modal-backdrop.open .quote-modal-card {
  transform: translateY(0) scale(1);
}
.quote-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27, 63, 113, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.quote-modal-title {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
}
.quote-modal-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
  color: #555e68;
}
.quote-modal-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.quote-modal-actions .button {
  flex: 1;
  min-height: 44px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
}
.quote-modal-reset-btn {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #ffffff;
}
.quote-modal-reset-btn:hover {
  background: #060b13;
  border-color: #060b13;
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .header-inner { width: min(calc(100% - 32px), var(--max)); }
  .brand img { width: 150px; }
  .nav-toggle { display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 0; background: transparent; cursor: pointer; position: relative; }
  .nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: #ffffff; transition: transform 220ms ease, opacity 220ms ease; transform-origin: center; }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; display: grid; gap: 4px; padding: 0 24px; max-height: 0; opacity: 0; overflow: hidden; pointer-events: none; background: var(--blue-dark); border-top: 1px solid transparent; border-bottom: 1px solid transparent; box-shadow: none; transition: max-height 280ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, padding 280ms ease, box-shadow 280ms ease, border-color 280ms ease; }
  .primary-nav.open { max-height: 480px; opacity: 1; padding: 18px 24px 24px; pointer-events: auto; border-top-color: rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.08); box-shadow: 0 16px 28px rgba(0,0,0,.45); }
  .primary-nav a { padding: 11px 0; color: #ffffff; }
  .primary-nav .quote-button { margin-top: 10px; text-align: center; }
  .hero { height: 100vh; }
  .hero-inner { height: 100vh; }
  .hero-copy { width: min(700px, 80%); }
  .capability-card { flex: 0 1 calc(50% - 10px); }
  .solutions-layout { grid-template-columns: .85fr 1.15fr; gap: 42px; }
  .engineering-layout { grid-template-columns: .85fr 1.15fr; gap: 42px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr 1.2fr; gap: 42px; }
  .engineering-layout.alt { grid-template-columns: 1.15fr .85fr; }
  .contact-grid-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .form-row-3 { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 720px) {
  .section-inner, .hero-inner, .footer-inner { width: min(calc(100% - 32px), var(--max)); }
  .hero { height: 100vh; height: 100lvh; height: -webkit-fill-available; }
  .hero-inner { height: 100vh; height: 100lvh; height: -webkit-fill-available; align-items: center; justify-content: center; text-align: center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,12,17,.96) 0%, rgba(7,12,17,.72) 60%, rgba(7,12,17,.25) 100%); }
  .hero-copy { width: 100%; padding: 40px 0; text-align: center; align-items: center; }
  .hero-origin-badge { display: none; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); text-align: center; }
  .hero-text { font-size: 16px; margin-top: 16px; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions { display: flex; justify-content: center; width: 100%; }
  .hero-btn-large { width: 100%; max-width: 320px; }
  .hero-actions .button,
  .confirm-actions-compact .button { width: 100%; }
  .work-reel { padding: 10px 0; }
  .reel-track { gap: 10px; }
  .reel-item { width: 76vw; height: 245px; }
  .reel-arrow { width: 36px; height: 36px; font-size: 18px; }
  .reel-arrow-prev { left: 10px; }
  .reel-arrow-next { right: 10px; }
  .section-dark, .section-light { padding: 68px 0 74px; }
  .section-heading { margin-bottom: 30px; }
  .capability-cards { gap: 12px; margin: 24px 0 20px; }
  .capability-card { flex: 1 1 100%; min-height: auto; padding: 22px 20px; }
  .manufacturing-path { grid-template-columns: 1fr; gap: 10px; text-align: left; padding: 18px 0; }
  .path-arrow { display: none; }
  .manufacturing-path span:not(.path-arrow) { padding-left: 24px; position: relative; }
  .manufacturing-path span:not(.path-arrow)::before { content: "→"; position: absolute; left: 0; color: var(--cyan); font-style: normal; }
  .section-link-row:not(.centered) { text-align: left; }
  .engineering-layout { grid-template-columns: 1fr; gap: 34px; }
  .solutions-layout { grid-template-columns: 1fr; gap: 34px; }
  .solutions-image-wrap, .solutions-image-wrap img { min-height: 280px; }
  .solutions-pillars { flex-direction: column; gap: 14px; }
  .engineering-image-wrap { min-height: auto; }
  .engineering-image-wrap img { min-height: auto; height: auto; object-fit: contain; }
  .clients-section { padding: 48px 0 54px; }
  .clients-marquee { margin-top: 20px; padding: 10px 0; }
  .clients-group { gap: 32px; padding-right: 32px; }
  .client-logo-item { min-width: 90px; max-width: 125px; height: 38px; padding: 0 4px; }
  .client-logo-item img { max-height: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; justify-items: center; }
  .footer-col-main { align-items: center; text-align: center; }
  .footer-logo { display: inline-flex; justify-content: center; }
  .footer-contact-links { align-items: center; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
  .footer-heading { text-align: center; }
  .footer-row-item { text-align: center; }
  .credential-item { text-align: center; }
  .footer-col-reviews { align-items: center; width: 100%; }
  .google-review-card { max-width: 320px; width: 100%; margin: 0 auto; text-align: left; }
  .footer-origin-block { align-items: center; text-align: center; width: 100%; }
  .footer-origin-icons { justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
  .footer-copy, .footer-notice { text-align: center; }
  .about-layout { grid-template-columns: 1fr; gap: 34px; }
  .about-image-wrap { min-height: 280px; height: auto; }
  .about-image-wrap img { min-height: 280px; height: auto; }
  .engineering-layout.alt { grid-template-columns: 1fr; }
  .contact-grid-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .contact-card-media { max-height: none; }
  .contact-card-media img { height: auto; min-height: 0; object-fit: contain; }
  .form-control { font-size: 16px; }
  .contact-hero-banner { max-height: 200px; }
  .contact-hero-banner img { height: 200px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  
  /* Quote Card Mobile */
  .confirm-card-unified { padding: 20px 16px; }
  .quote-form-wrap { padding: 20px 16px; }
  .quote-card { padding: 16px 12px; }
  .quote-stepper { max-width: 320px; margin-bottom: 12px; }
  .stepper-dot { width: 24px; height: 24px; font-size: 11px; }
  .stepper-line { margin: 0 6px 14px; min-width: 16px; }
  .stepper-title { font-size: 10.5px; }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; gap: 0; }
  .quote-tile { padding: 10px 12px; }
  .quote-nav { flex-direction: column-reverse; gap: 10px; }
  .quote-nav .button { width: 100%; }
  .quote-nav-left { width: 100%; flex-direction: column-reverse; gap: 10px; }
  .quote-nav-right { width: 100%; }
  .quote-reset-btn.button { width: 100%; text-align: center; padding: 10px 16px; }
  .quote-dropzone { padding: 18px 12px; }
  .confirm-header-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .confirm-actions-compact { width: 100%; justify-content: flex-start; }
  .confirm-roadmap-grid { grid-template-columns: 1fr; gap: 10px; }
  .confirm-footer-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quote-modal-card { padding: 26px 20px; }
  .quote-modal-actions { flex-direction: column-reverse; gap: 8px; }
  .quote-modal-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reel-item img { transition: none; }
  .button { transition: none; }
  .capability-card, .card-bg img, .card-overlay { transition: none; }
}
