/* ============================================================
   OLYMPUS INDUSTRIAL LTD — CLEANED STYLESHEET
   ------------------------------------------------------------
   - Cascade order preserved
   - Current .expert-* homepage styles retained
   - Obsolete .mock-* and .final-* homepage prototypes removed
   - Formatting expanded for easier maintenance
   ============================================================ */


/* ============================================================
   01. DESIGN TOKENS & RESET
   ============================================================ */

:root {
  --navy: #07192f;
  --navy2: #0b2444;
  --blue: #2468e8;
  --blue2: #4c88ff;
  --ink: #10213e;
  --muted: #68748a;
  --line: #dce4ef;
  --soft: #f4f7fb;
  --white: #fff;
  --shadow: 0 18px 55px rgba(7,25,47,.10);
  --radius: 16px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: min(var(--max),92%);
  margin: auto;
}


/* ============================================================
   02. GLOBAL HEADER & NAVIGATION
   ============================================================ */

.topbar {
  background: #051224;
  color: #cbd8ea;
  font-size: 12px;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,228,239,.9);
}

.nav-shell {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 230px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav>a,.drop-button {
  padding: 28px 0;
  border: 0;
  background: none;
  color: #172844;
  cursor: pointer;
}

.main-nav>a:hover,.drop-button:hover {
  color: var(--blue);
}

.header-rfq {
  margin-left: 8px;
}

.nav-dropdown {
  position: relative;
}

.drop-button {
  display: flex;
  gap: 6px;
  align-items: center;
}

.drop-button span {
  font-size: 11px;
}

.dropdown-menu {
  position: absolute;
  top: 66px;
  left: -18px;
  width: 560px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s;
  border-radius: 12px;
}

.dropdown-menu.compact {
  width: 280px;
  grid-template-columns: 1fr;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--blue);
}

.drop-feature {
  grid-column: 1/-1;
  border-bottom: 1px solid var(--line);
  margin-bottom: 7px;
  padding-bottom: 14px !important;
}

.drop-feature small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
}


/* ============================================================
   03. SHARED BUTTONS & TYPOGRAPHY
   ============================================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 6px;
  font-weight: 750;
  font-size: 13px;
  border: 1px solid transparent;
  transition: .2s;
}

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

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-dark:hover {
  background: #0d2b53;
}

.button-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(36,104,232,.22);
}

.button-blue:hover {
  background: #1559d8;
}

.button-outline {
  border-color: #aebcd0;
  background: #fff;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-outline-light {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
}

.button.full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kicker {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  color: #62718a;
  margin-bottom: 10px;
}

.kicker.light {
  color: #c8d7ef;
}


/* ============================================================
   04. SHARED / LEGACY LAYOUT UTILITIES
   ============================================================ */

.home-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
}

.hero-copy-panel {
  display: flex;
  align-items: center;
  padding: 70px 6vw;
}

.hero-copy-inner {
  max-width: 650px;
  margin-left: auto;
}

.home-hero h1 {
  font-size: clamp(50px,5.3vw,82px);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 0 0 15px;
  color: #0a1c37;
}

.home-hero h1 span {
  color: var(--blue);
}

.hero-tagline {
  color: var(--blue);
  font-size: 20px;
  font-weight: 750;
  margin: 0 0 14px;
}

.hero-description {
  font-size: 15px;
  color: #485a75;
  max-width: 620px;
  margin: 0 0 26px;
}

.hero-photo {
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.hero-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,rgba(248,251,255,.9),rgba(248,251,255,0) 16%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}

.trust-bar {
  background: var(--navy);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.trust-grid>div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
}

.trust-grid>div:last-child {
  border-right: 0;
}

.trust-icon {
  grid-row: 1/3;
  font-size: 22px;
  color: #dce8fb;
}

.trust-grid strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.trust-grid small {
  font-size: 11px;
  color: #bdcce2;
}


/* ============================================================
   05. SECTIONS, CARDS & CONTENT GRIDS
   ============================================================ */

.section {
  padding: 78px 0;
}

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

.section-head {
  max-width: 800px;
  margin-bottom: 32px;
}

.section-head.centered {
  text-align: center;
  margin: 0 auto 35px;
}

.section-head h2,.two-col h2,.photo-text-copy h2,.quote-aside h2 {
  font-size: clamp(28px,3vw,44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 12px;
}

.section-head p,.two-col p,.photo-text-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
}

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

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

.image-card {
  border: 1px solid var(--line);
  background: #fff;
  transition: .25s;
  overflow: hidden;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-image {
  height: 210px;
  overflow: hidden;
  background: #eef3f8;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.service-band {
  background: var(--navy);
  color: #fff;
  padding: 52px 0;
}

.service-band-head {
  display: flex;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.service-band-head h2 {
  font-size: 34px;
  letter-spacing: -.035em;
  margin: 0;
}

.service-band-head .kicker {
  position: absolute;
}

.service-band-head a {
  margin-left: auto;
  color: #d4e3fa;
  font-size: 13px;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 0;
}

.service-mini-grid article {
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,.13);
}

.service-mini-grid article:first-child {
  border-left: 0;
}

.service-mini-grid span {
  font-size: 11px;
  color: #74a5ff;
}

.service-mini-grid h3 {
  font-size: 14px;
  line-height: 1.25;
  margin: 8px 0;
}

.service-mini-grid p {
  font-size: 11px;
  line-height: 1.45;
  color: #bdcbe0;
  margin: 0;
}

.identification-grid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 40px;
  align-items: center;
}

.ident-photo {
  height: 300px;
  overflow: hidden;
}

.ident-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identification-grid h2 {
  font-size: 38px;
  margin: 0 0 10px;
}

.identification-grid p {
  color: var(--muted);
  max-width: 760px;
}

.upload-demo {
  margin-top: 22px;
  border: 1px dashed #a9bad0;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fbfdff;
}

.upload-demo .upload-icon {
  font-size: 30px;
}

.upload-demo strong,.upload-demo small {
  display: block;
}

.upload-demo small {
  color: var(--muted);
}

.upload-demo .button {
  margin-left: auto;
}

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

.capability-grid article {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.capability-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.capability-grid article>div {
  padding: 16px;
}

.capability-grid span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
}

.capability-grid h3 {
  font-size: 17px;
  margin: 6px 0;
}

.capability-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: #fff;
  min-height: 470px;
}

.why-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.why-copy {
  padding: 70px 6vw;
  display: flex;
  align-items: center;
}

.why-copy>div {
  max-width: 660px;
}

.why-copy h2 {
  font-size: clamp(34px,3.7vw,54px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}

.why-image {
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #d4e0f0;
  font-size: 14px;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6da2ff;
  font-weight: 900;
}

.check-list.dark li {
  color: var(--ink);
}

.capability-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.capability-badges {
  display: grid;
  grid-template-columns: repeat(6,1fr);
}

.capability-badges>div {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.capability-badges>div:last-child {
  border-right: 0;
}

.capability-badges strong,.capability-badges span {
  display: block;
}

.capability-badges strong {
  font-size: 14px;
  color: var(--blue);
}

.capability-badges span {
  font-size: 10px;
  color: var(--muted);
}

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

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

.industry-card {
  border: 1px solid var(--line);
  overflow: hidden;
}

.industry-card a {
  display: block;
  position: relative;
}

.industry-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: .3s;
}

.industry-card a:hover img {
  transform: scale(1.03);
}

.industry-card div {
  padding: 14px 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-card h3 {
  font-size: 15px;
  margin: 0;
}

.industry-card span {
  font-size: 11px;
  color: var(--blue);
}

.process-preview {
  background: linear-gradient(rgba(7,25,47,.91),rgba(7,25,47,.93)),url("../images/hero.jpg") center/cover;
  color: #fff;
  padding: 70px 0;
}

.light-text h2,.light-text p {
  color: #fff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
}

.step-grid article {
  background: rgba(7,25,47,.70);
  padding: 25px;
}

.step-grid span {
  color: #73a6ff;
  font-size: 12px;
  font-weight: 800;
}

.step-grid h3 {
  font-size: 16px;
  margin: 14px 0 8px;
}

.step-grid p {
  font-size: 12px;
  color: #bdcbe0;
  margin: 0;
}

.cta-band {
  padding: 62px 0;
  background: #10213f;
  color: #fff;
}

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

.cta-band h2 {
  font-size: clamp(30px,3.5vw,48px);
  letter-spacing: -.04em;
  margin: 0 0 10px;
}

.cta-band p {
  color: #c5d2e5;
  margin: 0;
  max-width: 780px;
}

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


/* ============================================================
   06. FOOTER
   ============================================================ */

.site-footer {
  background: #06162b;
  color: #c3d0e1;
  padding: 52px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4,1fr);
  gap: 35px;
}

.footer-grid h4 {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 16px;
}

.footer-grid a {
  display: block;
  font-size: 12px;
  margin: 0 0 9px;
  color: #c3d0e1;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand p {
  font-size: 12px;
  max-width: 380px;
}

.footer-meta {
  color: #899db8;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  font-size: 28px;
  color: #6fa3ff;
}

.footer-logo strong {
  display: block;
  font-size: 20px;
  letter-spacing: .03em;
}

.footer-logo small {
  display: block;
  font-size: 8px;
  letter-spacing: .27em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #8ea0ba;
}


/* ============================================================
   07. INNER PAGE HEROES & PAGE LAYOUTS
   ============================================================ */

.subhero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 460px;
  background: var(--navy);
  color: #fff;
}

.subhero-copy {
  padding: 70px 7vw;
  display: flex;
  align-items: center;
}

.subhero-copy>div {
  max-width: 650px;
  margin-left: auto;
}

.subhero h1 {
  font-size: clamp(42px,5vw,68px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 0 16px;
}

.subhero p {
  font-size: 16px;
  color: #c5d2e5;
  max-width: 620px;
}

.subhero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  background: var(--navy);
  color: #fff;
}

.page-hero.compact {
  padding: 72px 0;
}

.page-hero h1 {
  font-size: clamp(42px,5vw,66px);
  line-height: 1;
  letter-spacing: -.05em;
  max-width: 930px;
  margin: 0 0 16px;
}

.page-hero p {
  color: #c3d2e7;
  max-width: 790px;
  font-size: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

.info-panel,.rfq-card {
  background: var(--navy);
  color: #fff;
  padding: 32px;
}

.panel-number {
  font-size: 11px;
  letter-spacing: .16em;
  color: #75a6ff;
}

.info-panel h3 {
  font-size: 25px;
}

.info-panel dl,.contact-card dl {
  margin: 20px 0 0;
}

.info-panel dl div,.contact-card dl div {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 14px 0;
}

.info-panel dt,.contact-card dt {
  font-size: 10px;
  text-transform: uppercase;
  color: #8fa4c1;
}

.info-panel dd,.contact-card dd {
  margin: 4px 0 0;
  font-size: 14px;
}

.value-grid,.number-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.value-grid article,.number-card {
  border: 1px solid var(--line);
  padding: 26px;
  background: #fff;
}

.value-grid span,.number-card span {
  font-size: 11px;
  color: var(--blue);
  font-weight: 850;
}

.value-grid h3,.number-card h3 {
  font-size: 19px;
  margin: 22px 0 9px;
}

.value-grid p,.number-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.photo-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.photo-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-text-copy {
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-list {
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.spec-list strong {
  font-size: 13px;
}

.spec-list span {
  font-size: 13px;
  color: var(--muted);
}


/* ============================================================
   08. PRODUCT / INDUSTRY DETAIL PAGES
   ============================================================ */

.detail-hero {
  padding: 62px 0;
  background: #f7f9fc;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.detail-hero h1 {
  font-size: clamp(45px,5vw,70px);
  letter-spacing: -.05em;
  line-height: 1;
  margin: 8px 0 16px;
}

.detail-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 650px;
}

.detail-image {
  height: 420px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-link {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: start;
}

.detail-content h2 {
  font-size: 38px;
  margin: 0 0 12px;
}

.detail-content>div>p {
  color: var(--muted);
}

.feature-list {
  padding: 0;
  list-style: none;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding: 13px 16px 13px 42px;
  background: #f6f8fb;
  position: relative;
  border-left: 3px solid var(--blue);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--blue);
  font-weight: 900;
}

.rfq-card h3 {
  font-size: 22px;
  margin-top: 0;
}

.rfq-card ol {
  padding-left: 20px;
  color: #d3def0;
  font-size: 13px;
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}

.notice-card {
  border-left: 4px solid var(--blue);
  background: #eef4ff;
  padding: 22px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.notice-card p {
  margin: 0;
  color: #4f6078;
}

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

.brand-chip {
  border: 1px solid var(--line);
  padding: 22px;
  background: #fff;
}

.brand-chip strong {
  display: block;
  font-size: 17px;
}

.brand-chip span {
  font-size: 11px;
  color: var(--muted);
}

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

.resource-card {
  border: 1px solid var(--line);
  padding: 30px;
  background: #fff;
}

.resource-card>span {
  font-size: 10px;
  color: var(--blue);
  font-weight: 900;
}

.resource-card h2 {
  font-size: 25px;
  line-height: 1.15;
}

.resource-card p {
  color: var(--muted);
  font-size: 14px;
}

.resource-card a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 65px;
}

.dark-card {
  background: var(--navy);
  color: #fff;
  padding: 36px;
}

.contact-card h2 {
  font-size: 34px;
  margin: 0 0 14px;
}

.contact-card p {
  color: #bdcbe0;
}

.contact-copy h2 {
  font-size: 38px;
  line-height: 1.08;
}

.quote-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 55px;
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 120px;
}

.quote-aside ol {
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.mini-company {
  margin-top: 28px;
  padding: 18px;
  background: var(--soft);
  display: grid;
  gap: 4px;
  font-size: 12px;
}

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

.mini-company a {
  color: var(--blue);
}


/* ============================================================
   09. RFQ FORM
   ============================================================ */

.rfq-form {
  border: 1px solid var(--line);
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-section {
  display: flex;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
  margin: 0 0 22px;
}

.form-section:not(:first-of-type) {
  margin-top: 38px;
}

.form-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.form-section h2 {
  font-size: 20px;
  margin: 0 0 3px;
}

.form-section p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

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

.rfq-form label {
  font-size: 12px;
  font-weight: 750;
  color: #263b5c;
  display: grid;
  gap: 6px;
}

.rfq-form input,.rfq-form select,.rfq-form textarea {
  width: 100%;
  border: 1px solid #cfd9e8;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  outline: none;
}

.rfq-form input:focus,.rfq-form select:focus,.rfq-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,104,232,.10);
}

.full-field {
  margin-top: 16px;
}

.file-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.file-box {
  border: 1px dashed #aabbd1;
  padding: 22px;
  text-align: center;
  background: #fafcff;
  cursor: pointer;
}

.file-box>span {
  font-size: 26px;
  color: var(--blue);
}

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

.file-box small {
  color: var(--muted);
  font-weight: 400;
}

.file-box input {
  margin-top: 12px;
  padding: 8px;
  background: #fff;
}

.consent {
  display: flex !important;
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  margin: 22px 0;
  font-weight: 400 !important;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.submit-button {
  min-width: 200px;
}

.form-status {
  font-size: 13px;
  margin: 14px 0 0;
}

.form-status.success {
  color: #16784e;
}

.form-status.error {
  color: #b42318;
}


/* ============================================================
   10. SOURCING PROCESS, LEGAL & RESOURCE UTILITIES
   ============================================================ */

.timeline {
  max-width: 1000px;
  margin: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item>span {
  font-size: 30px;
  font-weight: 850;
  color: var(--blue);
}

.timeline-item h2 {
  font-size: 28px;
  margin: 0 0 6px;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
}

.check-card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.check-card-grid article {
  border: 1px solid var(--line);
  padding: 22px;
  background: #fff;
}

.check-card-grid strong {
  font-size: 16px;
}

.check-card-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}

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

.photo-stack img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.prose {
  max-width: 920px;
}

.prose h2 {
  margin-top: 35px;
  font-size: 26px;
}

.prose p {
  color: #4c5d75;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-note {
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  margin-top: 35px;
}

.industry-detail .detail-image {
  height: 430px;
}

@media (max-width:1180px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .header-rfq {
    display: none;
  }

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

  .service-mini-grid article:nth-child(4) {
    border-left: 0;
  }

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

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

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

  .footer-grid>div:nth-child(n/**/+4) {
    margin-top: 10px;
  }

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

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

  .nav-shell {
    height: 68px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 4%;
    gap: 0;
    max-height: calc(100vh - 68px);
    overflow: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav>a,.drop-button {
    padding: 13px 0;
    width: 100%;
    text-align: left;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }

  .nav-dropdown.open .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: grid;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--blue);
    border-radius: 0;
    margin-bottom: 8px;
  }

  .home-hero,.subhero,.why-section,.why-section.reverse,.photo-text {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    padding: 55px 5vw;
  }

  .hero-copy-inner {
    margin: 0;
  }

  .hero-photo {
    min-height: 360px;
  }

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

  .product-grid,.product-grid.large,.industry-grid,.industry-grid.large,.capability-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .identification-grid,.two-col,.detail-grid,.detail-content,.contact-layout,.quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: static;
  }

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

  .service-mini-grid article:nth-child(odd) {
    border-left: 0;
  }

  .service-mini-grid article:nth-child(4) {
    border-left: 1px solid rgba(255,255,255,.13);
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .split-head {
    grid-template-columns: 1fr;
  }

  .value-grid,.number-grid,.check-card-grid {
    grid-template-columns: repeat(2,1fr);
  }

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

  .subhero-image {
    min-height: 340px;
  }

  .detail-image {
    height: 350px;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width:600px) {
  .container {
    width: min(92%,100%);
  }

  .home-hero h1 {
    font-size: 50px;
  }

  .hero-tagline {
    font-size: 17px;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-copy-panel {
    padding: 45px 5vw;
  }

  .hero-photo {
    min-height: 300px;
  }

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

  .trust-grid>div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .section {
    padding: 55px 0;
  }

  .product-grid,.product-grid.large,.industry-grid,.industry-grid.large,.capability-grid,.value-grid,.number-grid,.check-card-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 240px;
  }

  .service-mini-grid,.step-grid,.capability-badges {
    grid-template-columns: 1fr;
  }

  .service-mini-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.13);
  }

  .service-mini-grid article:first-child {
    border-top: 0;
  }

  .identification-grid {
    gap: 22px;
  }

  .upload-demo {
    align-items: flex-start;
    flex-direction: column;
  }

  .upload-demo .button {
    margin-left: 0;
    width: 100%;
  }

  .why-copy {
    padding: 50px 6vw;
  }

  .why-image {
    height: 320px;
  }

  .capability-badges>div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .subhero-copy {
    padding: 50px 6vw;
  }

  .subhero h1,.page-hero h1 {
    font-size: 44px;
  }

  .page-hero.compact {
    padding: 55px 0;
  }

  .photo-text-copy {
    padding: 50px 6vw;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .rfq-form {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .timeline-item>span {
    font-size: 22px;
  }

  .detail-content h2 {
    font-size: 32px;
  }

  .detail-image {
    height: 300px;
  }

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

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img {
    height: 240px;
  }
}


/* ============================================================
   11. IMAGE CREDITS
   ============================================================ */

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

.credit-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: #fff;
}

.credit-card h2 {
  font-size: 18px;
  margin: 0 0 12px;
}

.credit-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0;
}

.credit-card a {
  color: var(--blue);
  font-weight: 700;
}

.credit-card a:hover {
  text-decoration: underline;
}

@media (max-width:700px) {
  .credit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== EXPERT HOMEPAGE REFINEMENT ===== */

.expert-home-body {
  margin: 0;
  background: #edf2f7;
  color: #0d1f3e;
  font-family: Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}

.expert-site {
  width: min(1460px,calc(100% - 28px));
  margin: 14px auto 22px;
  background: #fff;
  border: 1px solid #dce5ef;
  box-shadow: 0 18px 50px rgba(7,25,47,.08);
}

.expert-header {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 26px;
  background: #fff;
  border-bottom: 1px solid #dce5ef;
  position: sticky;
  top: 0;
  z-index: 150;
}

.expert-logo {
  display: flex;
  align-items: center;
  flex: 0 0 230px;
}

.expert-logo img {
  display: block;
  width: 210px;
  height: auto;
  object-fit: contain;
}

.expert-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  color: #152743;
}

.expert-nav a {
  padding: 26px 0 22px;
  border-bottom: 3px solid transparent;
}

.expert-nav a:hover,.expert-nav a.active {
  color: #2368e8;
  border-color: #2368e8;
}

.expert-rfq {
  margin-left: 8px;
  background: #08214a;
  color: #fff;
  padding: 13px 19px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.expert-menu {
  display: none;
}

.expert-hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 360px;
  background: #f9fbfe;
  overflow: hidden;
}

.expert-hero-copy {
  padding: 38px 30px 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.expert-kicker {
  display: block;
  color: #2368e8;
  font-size: 20px;
  font-weight: 750;
  margin-bottom: 8px;
}

.expert-hero h1 {
  font-size: 56px;
  line-height: .96;
  letter-spacing: -.045em;
  margin: 0 0 10px;
  color: #0b1e3e;
  font-weight: 800;
}

.expert-hero h1 span {
  color: #2368e8;
}

.expert-hero h2 {
  font-size: 17px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #2368e8;
  font-weight: 750;
}

.expert-hero p {
  max-width: 530px;
  margin: 0 0 20px;
  color: #40516c;
  font-size: 14px;
  line-height: 1.48;
}

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

.expert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  transition: .18s ease;
}

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

.expert-btn.primary {
  background: #08214a;
  color: #fff;
  border: 1px solid #08214a;
}

.expert-btn.secondary {
  background: #fff;
  color: #132541;
  border: 1px solid #aebed1;
}

.expert-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.expert-hero-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(249,251,254,.96) 0%,rgba(249,251,254,.28) 11%,rgba(249,251,254,0) 28%);
  z-index: 1;
  pointer-events: none;
}

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

.expert-trust {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: #07224b;
  color: #fff;
}

.expert-trust article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.expert-trust article:last-child {
  border-right: 0;
}

.expert-trust b {
  font-size: 26px;
  font-weight: 400;
  color: #dce8f9;
  line-height: 1;
}

.expert-trust strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 3px;
}

.expert-trust small {
  display: block;
  font-size: 10.5px;
  line-height: 1.3;
  color: #c8d5e8;
}

.expert-section {
  padding: 22px 26px;
  background: #fff;
}

.expert-heading.centered {
  text-align: center;
  margin-bottom: 17px;
}

.expert-heading span,.expert-split-heading span,.expert-services-head span,.expert-why-copy>span {
  display: block;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #627087;
  margin-bottom: 4px;
}

.expert-heading h2,.expert-split-heading h2 {
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #0d1f3e;
  margin: 0 0 4px;
}

.expert-heading p {
  font-size: 12px;
  color: #66748a;
  margin: 0;
}

.expert-products {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}

.expert-card {
  border: 1px solid #dce5ef;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
  transition: .2s ease;
}

.expert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7,25,47,.08);
}

.expert-card img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
  background: #eef3f8;
}

.expert-card>div {
  padding: 9px 10px 11px;
}

.expert-card h3 {
  font-size: 13px;
  line-height: 1.18;
  margin: 0 0 5px;
  color: #10223f;
}

.expert-card p {
  font-size: 9.5px;
  line-height: 1.35;
  color: #5b6a80;
  margin: 0 0 7px;
  min-height: 39px;
}

.expert-card div>a {
  font-size: 9.5px;
  font-weight: 800;
  color: #145fdf;
}

.expert-services {
  background: #07224b;
  color: #fff;
  padding: 18px 26px 20px;
}

.expert-services-head {
  margin-bottom: 12px;
}

.expert-services-head span {
  color: #d8e3f4;
}

.expert-services-head h2 {
  font-size: 25px;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0;
  color: #fff;
}

.expert-service-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
}

.expert-service-grid article {
  padding: 4px 13px 3px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.expert-service-grid article:first-child {
  padding-left: 0;
}

.expert-service-grid article:last-child {
  border-right: 0;
}

.expert-service-grid b {
  display: block;
  font-size: 23px;
  font-weight: 400;
  color: #dce7f7;
  margin-bottom: 4px;
}

.expert-service-grid h3 {
  font-size: 11px;
  line-height: 1.18;
  margin: 0 0 4px;
  color: #fff;
}

.expert-service-grid p {
  font-size: 8.5px;
  line-height: 1.35;
  color: #c6d3e5;
  margin: 0;
}

.expert-split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.expert-split-heading>a {
  border: 1px solid #b5c3d5;
  padding: 9px 14px;
  font-size: 10px;
  font-weight: 800;
  background: #fff;
  color: #122440;
  border-radius: 3px;
}

.expert-projects {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
}

.expert-projects article {
  border: 1px solid #dce5ef;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.expert-projects img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  display: block;
}

.expert-projects article>div {
  padding: 9px 10px 10px;
}

.expert-projects h3 {
  font-size: 11.5px;
  line-height: 1.2;
  margin: 0 0 5px;
  color: #10213f;
}

.expert-projects p {
  font-size: 8.8px;
  line-height: 1.35;
  color: #5d6b80;
  margin: 0 0 7px;
  min-height: 46px;
}

.expert-projects span {
  display: inline-block;
  font-size: 8px;
  font-weight: 750;
  color: #3e4e66;
  background: #edf2f7;
  padding: 4px 6px;
  border-radius: 3px;
}

.expert-why {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #07224b;
  color: #fff;
  min-height: 250px;
  overflow: hidden;
}

.expert-why-copy {
  padding: 24px 26px 20px;
}

.expert-why-copy>span {
  color: #d6e2f4;
}

.expert-why-copy h2 {
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 12px;
  color: #fff;
}

.expert-why-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.expert-why-copy li {
  position: relative;
  padding-left: 17px;
  color: #d8e3f2;
  font-size: 10.5px;
  line-height: 1.35;
}

.expert-why-copy li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #73a4ff;
  font-weight: 900;
}

.expert-why-image {
  min-height: 250px;
  overflow: hidden;
}

.expert-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expert-badges {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  background: #fff;
  border-bottom: 1px solid #dfe6ef;
}

.expert-badges article {
  text-align: center;
  padding: 13px 8px;
  border-right: 1px solid #e1e8f0;
}

.expert-badges article:last-child {
  border-right: 0;
}

.expert-badges b {
  display: block;
  color: #10223f;
  font-size: 10.5px;
  margin-bottom: 2px;
}

.expert-badges span {
  display: block;
  color: #67758a;
  font-size: 8.5px;
}

.industries-section {
  padding-top: 18px;
}

.expert-industries {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}

.expert-industries a {
  border: 1px solid #dce5ef;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.expert-industries img {
  display: block;
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.expert-industries strong {
  display: block;
  font-size: 10.5px;
  padding: 7px 9px 9px;
  color: #10223f;
}

.expert-cta {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 22px;
  padding: 17px 26px;
  border-top: 1px solid #dce5ef;
  background: #fff;
}

.expert-cta h2 {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 4px;
  color: #10223f;
}

.expert-cta p {
  font-size: 10.5px;
  color: #637187;
  margin: 0;
}

.expert-cta .expert-actions {
  justify-content: flex-end;
}

.expert-footer {
  display: grid;
  grid-template-columns: 1.55fr repeat(4,1fr);
  gap: 20px;
  padding: 20px 26px;
  background: #071d41;
  color: #fff;
}

.expert-footer-brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.expert-footer-brand p {
  font-size: 8.8px;
  line-height: 1.45;
  color: #c8d6e8;
  max-width: 270px;
  margin: 8px 0 0;
}

.expert-footer h4 {
  font-size: 10px;
  margin: 0 0 7px;
  color: #fff;
}

.expert-footer a,.expert-footer span {
  display: block;
  color: #c8d6e8;
  font-size: 8.8px;
  line-height: 1.45;
  margin-bottom: 4px;
}

@media (max-width:1180px) {
  .expert-site {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
  }

  .expert-header {
    gap: 14px;
    padding: 0 18px;
  }

  .expert-nav {
    gap: 16px;
  }

  .expert-logo {
    flex-basis: 190px;
  }

  .expert-logo img {
    width: 180px;
  }

  .expert-hero {
    grid-template-columns: 45% 55%;
  }

  .expert-hero h1 {
    font-size: 46px;
  }

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

  .expert-service-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
  }

  .expert-service-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding: 9px;
  }

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

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

@media (max-width:900px) {
  .expert-header {
    height: 68px;
  }

  .expert-menu {
    display: block;
    margin-left: auto;
  }

  .expert-rfq {
    display: none;
  }

  .expert-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 5%;
    border-bottom: 1px solid #dce5ef;
  }

  .expert-nav.open {
    display: flex;
  }

  .expert-nav a {
    padding: 11px 0;
    border-bottom: 1px solid #edf1f5;
  }

  .expert-logo {
    flex-basis: auto;
  }

  .expert-logo img {
    width: 170px;
  }

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

  .expert-hero-copy {
    padding: 30px 6vw 26px;
  }

  .expert-hero-image {
    min-height: 300px;
  }

  .expert-hero-image:before {
    background: linear-gradient(180deg,rgba(249,251,254,.5),rgba(249,251,254,0) 25%);
  }

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

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

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

  .expert-why {
    grid-template-columns: 1fr;
  }

  .expert-why-image {
    height: 280px;
  }

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

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

  .expert-footer-brand {
    grid-column: 1/-1;
  }

  .expert-cta {
    grid-template-columns: 1fr;
  }

  .expert-cta .expert-actions {
    justify-content: flex-start;
  }
}

@media (max-width:620px) {
  .expert-hero h1 {
    font-size: 40px;
  }

  .expert-kicker {
    font-size: 13px;
  }

  .expert-hero h2 {
    font-size: 16px;
  }

  .expert-hero p {
    font-size: 13.5px;
  }

  .expert-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .expert-btn {
    width: 100%;
  }

  .expert-trust,.expert-products,.expert-service-grid,.expert-projects,.expert-badges,.expert-industries,.expert-footer {
    grid-template-columns: 1fr;
  }

  .expert-section,.expert-services,.expert-cta,.expert-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .expert-card img,.expert-projects img,.expert-industries img {
    height: 190px;
  }

  .expert-card h3 {
    font-size: 15px;
  }

  .expert-card p {
    font-size: 11px;
    min-height: auto;
  }

  .expert-card div>a {
    font-size: 11px;
  }

  .expert-trust article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .expert-trust article:last-child {
    border-bottom: 0;
  }

  .expert-why-copy h2,.expert-heading h2,.expert-split-heading h2 {
    font-size: 25px;
  }

  .expert-footer-brand {
    grid-column: auto;
  }
}

/* ===== Olympus 2026 reviewed inner-page refinement ===== */

.topbar {
  display: none;
}

.site-header {
  box-shadow: 0 8px 30px rgba(7,25,47,.05);
}

.nav-shell {
  height: 72px;
}

.brand img {
  width: 205px;
  max-height: 54px;
}

.main-nav {
  font-size: 13px;
  gap: 24px;
}

.main-nav>a,.drop-button {
  padding: 25px 0 21px;
  border-bottom: 3px solid transparent;
}

.main-nav>a.active,.drop-button.active,.main-nav>a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--blue);
}

.header-rfq {
  border-radius: 4px;
  padding: 12px 18px;
}

.pro-inner-hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 390px;
  background: linear-gradient(110deg,#07192f 0%,#0b284d 42%,#f7f9fc 42%,#f7f9fc 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.pro-inner-copy {
  padding: 54px 5.2vw;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.pro-inner-copy>div {
  max-width: 620px;
  margin-left: auto;
}

.pro-inner-copy h1 {
  font-size: clamp(38px,4.5vw,62px);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0 0 14px;
  color: #fff;
}

.pro-inner-copy p {
  font-size: 15px;
  line-height: 1.55;
  color: #c9d6e8;
  margin: 0;
  max-width: 590px;
}

.pro-inner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.pro-inner-actions .button {
  min-height: 42px;
}

.pro-inner-photo {
  position: relative;
  min-height: 390px;
  padding: 20px 20px 20px 0;
  background: #f7f9fc;
  overflow: hidden;
}

.pro-inner-photo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 115px;
  background: linear-gradient(90deg,#0b284d 0%,rgba(11,40,77,.75) 20%,rgba(247,249,252,0) 100%);
  z-index: 2;
  pointer-events: none;
}

.pro-inner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(7,25,47,.18);
  filter: saturate(1.03) contrast(1.02);
}

.pro-proof-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.pro-proof-strip article {
  text-align: center;
  padding: 15px 12px;
  border-right: 1px solid var(--line);
}

.pro-proof-strip article:last-child {
  border-right: 0;
}

.pro-proof-strip strong {
  display: block;
  font-size: 12px;
  color: #112441;
  margin-bottom: 2px;
}

.pro-proof-strip span {
  display: block;
  font-size: 10px;
  color: #6a778d;
}

/* Compact product/industry imagery in the same proportion as the approved homepage */

.product-grid.large {
  gap: 14px;
}

.product-grid.large .image-card {
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(7,25,47,.05);
}

.product-grid.large .card-image {
  height: 150px;
  background: #f5f8fb;
}

.product-grid.large .card-body {
  padding: 14px 15px 15px;
}

.product-grid.large .card-body h3 {
  font-size: 16px;
}

.product-grid.large .card-body p {
  font-size: 12px;
  line-height: 1.45;
}

.industry-grid.large {
  gap: 14px;
}

.industry-grid.large .industry-card {
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(7,25,47,.05);
}

.industry-grid.large .industry-card img {
  height: 180px;
}

/* Cleaner detail page product photography */

.detail-hero {
  background: linear-gradient(180deg,#f7f9fc 0%,#fff 100%);
}

.detail-image {
  height: 360px;
  border-radius: 18px;
  border: 1px solid #dce4ef;
  background: #f5f8fb;
  box-shadow: 0 18px 45px rgba(7,25,47,.08);
}

.detail-image img {
  object-fit: contain;
  background: #f5f8fb;
  padding: 10px;
}

.industry-detail .detail-image img {
  object-fit: cover;
  padding: 0;
}

/* Cards and content polish */

.section {
  padding: 68px 0;
}

.info-panel,.rfq-card,.dark-card {
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(7,25,47,.12);
}

.value-grid article,.number-card,.resource-card,.brand-chip,.check-card-grid article {
  border-radius: 12px;
}

.photo-text-image {
  overflow: hidden;
}

.photo-text-image img {
  filter: saturate(1.02) contrast(1.02);
}

.cta-band {
  background: linear-gradient(135deg,#07192f,#0e2f5a);
}

/* Real logo in every footer */

.footer-logo {
  display: block;
  margin-bottom: 16px;
}

.footer-logo img {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  background: #fff;
  padding: 7px 11px;
  border-radius: 10px;
  box-shadow: 0 7px 22px rgba(0,0,0,.16);
}

.expert-footer-brand img {
  filter: none !important;
  background: #fff;
  padding: 7px 10px;
  border-radius: 9px;
  width: 150px;
}

/* RFQ improvements */

.rfq-form {
  border-radius: 18px;
}

.rfq-form input,.rfq-form select,.rfq-form textarea {
  border-radius: 7px;
}

.file-box {
  border-radius: 12px;
}

.submit-button {
  border-radius: 6px;
}

@media (max-width:900px) {
  .nav-shell {
    height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .pro-inner-hero {
    grid-template-columns: 1fr;
    background: #07192f;
  }

  .pro-inner-copy {
    padding: 44px 6vw;
  }

  .pro-inner-copy>div {
    margin: 0;
    max-width: 760px;
  }

  .pro-inner-photo {
    min-height: 300px;
    padding: 0 18px 22px;
    background: #07192f;
  }

  .pro-inner-photo:before {
    display: none;
  }

  .pro-inner-photo img {
    border-radius: 18px;
  }

  .pro-proof-strip {
    grid-template-columns: repeat(2,1fr);
  }

  .product-grid.large .card-image {
    height: 180px;
  }
}

@media (max-width:600px) {
  .pro-inner-copy h1 {
    font-size: 40px;
  }

  .pro-inner-copy p {
    font-size: 14px;
  }

  .pro-inner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pro-inner-actions .button {
    width: 100%;
  }

  .pro-proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .pro-proof-strip article:nth-child(2n) {
    border-right: 0;
  }

  .product-grid.large .card-image {
    height: 200px;
  }

  .industry-grid.large .industry-card img {
    height: 210px;
  }
}
