:root {
  --color-dark: #14181d;
  --color-primary: #fdb206;
  --color-primary-dark: #d99400;
  --color-text: #2a2f36;
  --color-muted: #667085;
  --color-bg-alt: #f5f6f8;
  --color-border: #e3e5e9;
  --max-width: 1200px;
  --radius: 6px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: none;
  margin: 0 auto;
  padding: 0 10px;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  background: #fff;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 4px rgba(20,24,29,.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  transition: transform .6s ease;
}

.logo:hover { transform: scale(1.1); }

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  color: #232323;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 10px 14px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color .18s ease, background-color .18s ease;
}

.dropdown-caret { display: inline-flex; }
.dropdown-caret svg { width: 10px; height: 10px; fill: currentColor; }

.main-nav a:hover {
  color: var(--color-primary-dark);
  background: rgba(253,178,6,.1);
}

.main-nav a.active {
  background: var(--color-primary);
  color: #fff;
  border-radius: 0;
}

.main-nav a.active:hover { color: #fff; background: var(--color-primary); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-primary);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  width: 180px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  padding: 10px 18px;
  border-radius: 0;
  display: block;
  color: #33373d;
  font-weight: 600;
}

.dropdown li a:hover { background: rgba(0,0,0,.08); }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 20px;
  margin-left: 2px;
  border-left: 1px solid var(--color-border);
}

.nav-lang-flag {
  width: 24px;
  height: 12px;
  border-radius: 2px;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.nav-lang-code {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--color-muted);
}

/* Hero */
.hero {
  position: relative;
  background-color: var(--color-dark);
  overflow: hidden;
  padding: 0;
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1536 / 480;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.05) 70%);
}

.hero-content .container { width: 100%; padding-bottom: 0; }

@keyframes hero-image-reveal {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0%); }
}

.hero-image {
  animation: hero-image-reveal 1.3s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes hero-slide-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero-subtitle,
.hero-body,
.hero .btn {
  animation: hero-slide-in 1.1s cubic-bezier(.22,.61,.36,1) backwards;
}

.hero h1 { animation-delay: .5s; }
.hero-subtitle { animation-delay: .7s; }
.hero-body { animation-delay: .85s; }
.hero .btn { animation-delay: 1s; }

@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; }
  .hero h1, .hero-subtitle, .hero-body, .hero .btn { animation: none; }
}

.hero h1 {
  font-size: 2.375rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 700px;
  margin: 0 0 10px;
  line-height: 1.1;
}

.hero h1 .highlight { color: var(--color-primary); }

.hero-subtitle {
  max-width: 600px;
  color: #e6e6e6;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero-content .container.no-btn .hero-subtitle,
.hero-content .container.no-btn .hero-body { margin-bottom: 0; padding-bottom: 30px; }

.hero-body {
  max-width: 640px;
  color: #e6e6e6;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 14px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000;
}

.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); transform: translateY(-2px); }

/* Sections */
section { padding: 70px 0; }

.section-alt { background: var(--color-bg-alt); }

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-heading .eyebrow {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.section-heading h2 { margin: 8px 0 0; font-size: 1.9rem; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card h3 { font-size: 1.8rem; color: var(--color-primary); margin: 0 0 4px; }
.stat-card p { margin: 0; color: var(--color-muted); }

/* Section title with centered underline (e.g. "Our Capabilities") */
.section-title-centered {
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 40px;
}

.section-title-centered h2 {
  color: #15171a;
  font-size: 1.3125rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.section-title-centered::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  background: #fff;
  border: 1px solid #e7e8ea;
  border-radius: 5px;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 16px 32px rgba(20,24,29,.1);
}

.card-media { position: relative; }

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 5px 5px 0 0;
}

.card-icon {
  position: absolute;
  left: 15px;
  bottom: -23px;
  width: 46px;
  height: 46px;
  background: #15171a;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.7;
}

.card-content { padding: 34px 20px 21px; }

.card-content h3 {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #15171a;
  margin: 0 0 16px;
  padding-bottom: 12px;
}

.card-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.card-content p {
  color: #62666c;
  font-size: 0.9375rem;
  margin: 0 0 16px;
}

.card .learn-more {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.6875rem;
}

.card .learn-more::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* Simple list (industries / why choose us) */
.simple-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}

.simple-list li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
}

/* Story text block */
.story-heading {
  position: relative;
  padding-left: 22px;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 1040px;
}

.story-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 67px;
  background: var(--color-primary);
}

.story-heading h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #15171a;
  text-align: left;
}

.story-text {
  max-width: 1040px;
  margin: 0 auto;
}

.story-text p {
  color: #25292e;
  font-weight: 500;
  line-height: 1.8;
}

.story-closing {
  position: relative;
  padding-left: 20px;
  margin-top: 8px;
  font-weight: 700;
  color: #15171a;
}

.story-closing::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
}

/* Section heading with small left bar (Our Story / Our Journey) */
.bar-heading {
  position: relative;
  padding-left: 13px;
  margin: 0 0 20px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #15171a;
}

.bar-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 20px;
  background: var(--color-primary);
}

/* Our Story: video + photo gallery */
.story-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-media-grid video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  aspect-ratio: 16 / 9;
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .3s ease, filter .3s ease;
}

.story-gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,17,20,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1000;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: scale(.94);
  transition: transform .25s ease;
}

.lightbox-overlay.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.lightbox-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

/* Our Journey timeline */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.journey-card {
  grid-column: span 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7ea;
  border-radius: 5px;
  padding: 15px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.journey-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(20,24,29,.08);
}

.journey-card.is-current {
  grid-column: 1 / -1;
  position: relative;
  padding-left: 18px;
  border: 1px solid rgba(253, 178, 6, .45);
}

.journey-card.is-current::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
}

.journey-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.journey-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: #15171a;
}

.journey-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.journey-card.is-current .journey-icon { background: var(--color-primary); }

.journey-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #555b61;
  stroke-width: 1.7;
}

.journey-card.is-current .journey-icon svg { stroke: #15171a; }

.journey-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #15171a;
  margin: 0 0 4px;
}

.journey-card p {
  font-size: 0.9375rem;
  color: #74787e;
  margin: 0;
}

/* Video section */
.video-section { text-align: center; }

.video-section video {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

/* Latest News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e7ea;
  border-radius: 5px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(20,24,29,.08);
}

.news-card:hover .news-card-image-wrap img { transform: scale(1.05); }

.news-card-image-wrap {
  flex: 0 0 163px;
  height: 165px;
  overflow: hidden;
}

.news-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.news-card-content { display: flex; align-items: center; flex: 1; padding: 18px; }

.news-card-content h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #15171a;
}

/* Partner banner (CTA) - ported 1:1 from antrametal.com */
.partner-banner {
  --apb-yellow: #f4bd19;
  --apb-black: #141619;
  --apb-white: #ffffff;
  --apb-text: rgba(255, 255, 255, 0.86);

  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 280px;
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  background-color: #232a23;
  background-image: linear-gradient(90deg, rgba(12,15,14,.88) 0%, rgba(12,15,14,.65) 42%, rgba(12,15,14,.25) 72%, rgba(12,15,14,.40) 100%), var(--banner-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.partner-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 48px 0;
}

.partner-banner .apb-content { width: 100%; max-width: 660px; min-width: 0; }

.partner-banner .apb-title {
  margin: 0 0 14px;
  color: var(--apb-white);
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.partner-banner .apb-title-highlight { color: var(--apb-yellow); }

.partner-banner .apb-description {
  max-width: 560px;
  margin: 0;
  color: var(--apb-text);
  font-size: 15px;
  line-height: 1.7;
}

.partner-banner .apb-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.partner-banner .apb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 165px;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25px;
  text-transform: uppercase;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.partner-banner .apb-button svg {
  width: 16px; height: 16px; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.partner-banner .apb-button-primary {
  color: var(--apb-black);
  background: var(--apb-yellow);
  border: 1px solid var(--apb-yellow);
}

.partner-banner .apb-button-primary:hover {
  color: var(--apb-white);
  background: var(--apb-black);
  border-color: var(--apb-black);
  transform: translateY(-2px);
}

.partner-banner .apb-button-secondary {
  color: var(--apb-black);
  background: var(--apb-white);
  border: 1px solid var(--apb-white);
}

.partner-banner .apb-button-secondary:hover {
  color: var(--apb-black);
  background: var(--apb-yellow);
  border-color: var(--apb-yellow);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .partner-banner { min-height: 340px; }
  .partner-banner .container { flex-direction: column; align-items: flex-start; gap: 28px; padding: 44px 0; }
  .partner-banner .apb-buttons { justify-content: flex-start; }
}

/* Footer - ported 1:1 from antrametal.com */
.site-footer {
  --am-yellow: #fdb206;
  --am-yellow-dark: #d99700;
  --am-black: #111214;
  --am-text: #24262a;
  --am-muted: #6d7178;
  --am-light: #f7f7f7;
  --am-border: #e6e6e6;

  position: relative;
  color: var(--am-text);
  background: #fff;
  border-top: 1px solid var(--am-border);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--am-yellow) 0%, var(--am-yellow) 22%, var(--am-black) 22%, var(--am-black) 100%);
}

.site-footer a { color: inherit; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
  padding: 38px 0 32px;
}

.footer-grid h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--am-black);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.footer-grid h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  border-radius: 20px;
  background: var(--am-yellow);
}

.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo { width: 190px; max-width: 100%; height: auto; }

.footer-about-text { max-width: 620px; margin: 0; color: var(--am-muted); font-size: 15px; line-height: 1.7; }

.footer-social-heading {
  margin: 16px 0 9px;
  color: var(--am-black);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--am-black);
  background: var(--am-light);
  border: 1px solid var(--am-border);
  border-radius: 4px;
  font-size: .8125rem;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-social-link:hover { background: var(--am-yellow); border-color: var(--am-yellow); transform: translateY(-1px); }
.footer-social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-grid ul { list-style: none; padding: 0; margin: 0; }

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 22px;
}

.footer-contact-item { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: center; min-width: 0; }
.footer-contact-item-duns { grid-column: 1 / -1; }

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  color: var(--am-black);
  background: rgba(253, 178, 6, .18);
  border-radius: 50%;
}

.footer-contact-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.footer-contact-label {
  display: block;
  margin-bottom: 2px;
  color: var(--am-black);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.footer-contact-value { display: block; color: var(--am-muted); font-size: .875rem; line-height: 1.5; }
a.footer-contact-value:hover { color: var(--am-yellow-dark); }

.footer-bottom { background: #fafafa; border-top: 1px solid var(--am-border); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 12px 0;
}

.footer-copyright { margin: 0; color: var(--am-muted); font-size: .75rem; }
.footer-copyright strong { color: var(--am-black); font-weight: 600; }

.legal-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px; }

.legal-nav a {
  position: relative;
  color: var(--am-muted);
  font-size: .75rem;
  font-weight: 500;
  transition: color .2s ease;
}

.legal-nav a:hover { color: var(--am-black); }

.legal-nav a:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -12px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--am-yellow);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 36px 0 30px; }
  .footer-contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .footer-contact-list { grid-template-columns: 1fr; gap: 13px; }
  .footer-contact-item-duns { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 9px; min-height: auto; padding: 16px 0; }
}

/* Contact form */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea { min-height: 120px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(253,178,6,.12);
}

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-success { background: #e6f4ea; color: #1e7e34; }
.alert-error { background: #fbeaea; color: #b02a37; }

/* Contact Us page */
.contact-strip { padding: 50px 0 20px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e5e7ea;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(15, 17, 19, .055);
  overflow: hidden;
}

.contact-card {
  position: relative;
  padding: 20px 18px;
  border-right: 1px solid #e5e7ea;
  border-bottom: 1px solid #e5e7ea;
  transition: background-color .2s ease;
}

.contact-card:hover { background: var(--color-bg-alt); }

.contact-card:nth-child(3n) { border-right: 0; }
.contact-card:nth-child(n+4) { border-bottom: 0; }

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  background: rgba(253,178,6,.08);
  border: 1px solid rgba(253,178,6,.28);
  border-radius: 50%;
}

.contact-card-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.contact-card-label {
  display: block;
  margin-bottom: 4px;
  color: #6d7279;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.contact-card-value { margin: 0; color: #15171a; font-size: 0.9375rem; font-weight: 600; }
.contact-card-sub { margin: 2px 0 0; color: #6d7279; font-size: 0.8125rem; }
.contact-card a.contact-card-value:hover { color: var(--color-primary-dark); }

.contact-card a.contact-card-value::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* Pathways */
.pathway-head { text-align: center; max-width: 700px; margin: 0 auto 36px; }
.pathway-head .intro-eyebrow, .pathway-head .expertise-section-title { text-align: center; }
.pathway-head .expertise-section-title { margin: 0 0 12px; }
.pathway-head p { color: #6d7279; }

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  border-radius: 7px;
  overflow: hidden;
}

.pathway-card {
  background: #fff;
  border-right: 1px solid var(--color-border);
  padding: 24px 20px;
  transition: background-color .22s ease;
}

.pathway-card:hover { background: var(--color-bg-alt); }
.pathway-card:last-child { border-right: 0; }

.pathway-number { display: block; margin-bottom: 10px; color: var(--color-primary-dark); font-size: 0.625rem; font-weight: 600; }
.pathway-card h3 { margin: 0 0 8px; color: #15171a; font-size: 0.9375rem; font-weight: 600; }
.pathway-card p { margin: 0 0 16px; color: #6d7279; font-size: 0.8125rem; line-height: 1.55; }

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pathway-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Process */
.process-box {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: start;
  background: #15171a;
  border-radius: 7px;
  overflow: hidden;
}

.process-intro { padding: 27px 25px; }
.process-intro h2 { margin: 8px 0 14px; font-size: 1.5rem; font-weight: 600; color: #fff; }
.process-intro p { margin: 0; color: rgba(255,255,255,.7); font-size: 0.9375rem; line-height: 1.6; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step { padding: 25px 21px; }

.process-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  margin-bottom: 14px;
  color: #15171a;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
}

.process-step h3 { margin: 0 0 8px; color: #fff; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; }
.process-step p { margin: 0; color: rgba(255,255,255,.6); font-size: 0.8125rem; line-height: 1.55; }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  padding: 25px;
}

.form-head { margin: 0 0 19px; }
.form-head h2 { margin: 8px 0 10px; font-size: 1.5rem; font-weight: 600; color: #15171a; }
.form-head p { margin: 0; color: #6d7279; font-size: 0.9375rem; }

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form-grid .form-group-full { grid-column: 1 / -1; }

.form-group label { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; color: #15171a; }
.form-group .required { color: var(--color-primary-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  border-color: #dfe2e5;
  border-radius: 3px;
}

.field-error { display: block; margin-top: 5px; color: #b02a37; font-size: 0.75rem; }

.form-note { margin: 16px 0 0; color: #8a8f96; font-size: 0.75rem; }

.form-submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: .3px;
}

.form-submit-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

/* Location */
.location-section { padding-top: 20px; }

.location-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  overflow: hidden;
}

.location-copy { padding: 27px 25px; }
.location-copy h2 { margin: 8px 0 16px; font-size: 1.375rem; font-weight: 600; color: #15171a; }
.location-address { margin: 0 0 16px; color: #6d7279; font-size: 0.9375rem; line-height: 1.6; }
.location-meta { margin: 0 0 20px; }
.location-meta a { display: block; color: #15171a; font-size: 0.875rem; margin-bottom: 6px; }
.location-meta a:hover { color: var(--color-primary-dark); }

.location-copy .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.location-copy .btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.location-map { min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pathway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-box { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* About page: WHO WE ARE intro */
.intro-eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
}

.intro-eyebrow-dash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-dark);
  font-size: 0.625rem;
  letter-spacing: .6px;
}

.intro-eyebrow-dash::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.intro-heading {
  margin: 0 0 18px;
  color: #191919;
  font-size: 1.75rem;
  font-weight: 600;
}

.intro-divider {
  width: 185px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 0 24px;
}

.intro-text p {
  max-width: 900px;
  color: #191919;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0 0 14px;
}

/* Stats band (dark) */
.stats-band {
  background: #191919;
  padding: 0;
}

.stats-band .stats-grid { padding: 35px 0; text-align: left; }

.stats-band .stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stats-band .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex: 0 0 38px;
  margin: 0;
  color: var(--color-primary);
}

.stats-band .stat-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.stats-band .stat-card h3 { color: #fff; font-size: 1rem; }
.stats-band .stat-card p { color: #fff; }

.section-notop { padding-top: 0; }

.expertise-section-title {
  margin: 0 0 24px;
  color: #171717;
  font-size: 1.3125rem;
  font-weight: 600;
}

.expertise-section-title.is-centered {
  font-size: 2.1875rem;
  text-align: center;
}

.intro-divider-center { margin-left: auto; margin-right: auto; }

/* Expertise cards (About page) - ported from antrametal.com */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,.04);
}

.expertise-card {
  position: relative;
  min-height: 245px;
  padding: 32px 28px 30px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
}

.expertise-card:last-child { border-right: 0; }

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card:hover { background: #fafafa; }

.expertise-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.expertise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  flex: 0 0 54px;
  color: var(--color-primary-dark);
  background: rgba(253, 178, 6, .09);
  border: 1px solid rgba(253, 178, 6, .3);
  border-radius: 5px;
  transition: transform .25s ease;
}

.expertise-card:hover .expertise-icon { transform: rotate(-8deg) scale(1.06); }

.expertise-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.expertise-title {
  margin: 0;
  color: #171717;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
}

.expertise-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  position: relative;
  padding-left: 18px;
  color: #666b72;
  font-size: 0.875rem;
}

.expertise-list li::before {
  content: '';
  position: absolute;
  top: 8px; left: 0;
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(253, 178, 6, .14);
}

/* Industries / Why-us mega section - ported from antrametal.com */
.expertise-wrapper {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .85fr) minmax(340px, 1fr);
  min-height: 500px;
  overflow: hidden;
  background: #111315;
  border-radius: 6px 6px 0 0;
}

.expertise-panel {
  min-width: 0;
  padding: 52px 46px;
  background: radial-gradient(circle at top left, rgba(253,178,6,.06), transparent 35%), #181b1f;
}

.expertise-panel .antre-label {
  display: inline-block;
  margin: 0 0 11px;
  color: var(--color-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.expertise-panel h2 {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 16px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.expertise-panel h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  border-radius: 10px;
  background: var(--color-primary);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 18px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 5px;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.industry-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--color-primary);
  background: rgba(253,178,6,.07);
}

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  flex: 0 0 48px;
  color: var(--color-primary);
  background: rgba(253,178,6,.09);
  border: 1px solid rgba(253,178,6,.25);
  border-radius: 4px;
  transition: transform .25s ease;
}

.industry-card:hover .industry-icon { transform: rotate(-8deg) scale(1.06); }

.industry-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.industry-name {
  margin: 0;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.expertise-main-image {
  min-height: 500px;
  background-image: linear-gradient(180deg, rgba(12,14,16,.05), rgba(12,14,16,.32)), var(--main-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d9dde2;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.reason-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  color: var(--color-primary);
  border: 1px solid rgba(253,178,6,.55);
  border-radius: 50%;
}

.reason-check svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.advantage-note {
  padding: 20px;
  background: rgba(255,255,255,.025);
  border-left: 3px solid var(--color-primary);
}

.advantage-note strong { display: block; margin-bottom: 7px; color: #fff; font-size: 0.875rem; }
.advantage-note p { margin: 0; color: #aeb4bc; font-size: 0.8125rem; line-height: 1.7; }

.expertise-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 215px;
  padding: 43px 48px;
  overflow: hidden;
  background-color: #121416;
  background-image: linear-gradient(90deg, rgba(13,15,17,.98) 0%, rgba(13,15,17,.91) 43%, rgba(13,15,17,.45) 100%), var(--cta-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 6px 6px;
}

.expertise-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--color-primary);
}

.expertise-cta-content { max-width: 720px; }

.expertise-cta h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
}

.expertise-cta p {
  max-width: 660px;
  margin: 0;
  color: #d9dde2;
  font-size: 0.875rem;
  line-height: 1.75;
}

.expertise-cta .apb-button-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(253, 178, 6, .72);
}

.expertise-cta .apb-button-outline:hover {
  color: var(--color-dark);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 1100px) {
  .expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expertise-card { border-bottom: 1px solid #e8e8e8; }
}

@media (max-width: 1120px) {
  .expertise-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expertise-main-image { grid-column: 1 / -1; grid-row: 1; min-height: 380px; }
}

/* Capability detail pages (Subassembly/Machining/HPDC Mold/Engineering) */

/* Intro: image + text, two columns */
.detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.detail-intro img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.detail-intro h2 {
  margin: 0 0 18px;
  color: #191919;
  font-size: 1.75rem;
  font-weight: 600;
}

.detail-intro .intro-divider { margin-bottom: 24px; }

.detail-intro p {
  color: #3f4349;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

/* Shell wrapping the capability grid / products / why / industries / cta */
.detail-shell {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 7px;
  box-shadow: 0 12px 35px rgba(17,18,20,.045);
}

.detail-shell-heading {
  position: relative;
  margin: 0;
  padding: 25px 28px 17px;
  color: #15171a;
  font-size: 1.3125rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.detail-shell-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  margin: 11px auto 0;
  background: var(--color-primary);
}

/* Sub-capability grid (4 grouped feature lists) */
.detail-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #e6e8eb;
  border-bottom: 1px solid #e6e8eb;
}

.detail-cap-grid.detail-cap-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.detail-cap-card {
  position: relative;
  min-height: 270px;
  padding: 24px 20px 22px;
  background: #fff;
  border-right: 1px solid #e6e8eb;
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.detail-cap-card:last-child { border-right: 0; }

.detail-cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.detail-cap-card:hover::before { transform: scaleX(1); }
.detail-cap-card:hover {
  z-index: 2;
  background: #fafafa;
  box-shadow: 0 12px 28px rgba(17,18,20,.07);
  transform: translateY(-3px);
}

.detail-cap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px; height: 43px;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  background: rgba(253,178,6,.08);
  border: 1px solid rgba(253,178,6,.28);
  border-radius: 50%;
}

.detail-cap-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.detail-cap-title {
  position: relative;
  margin: 0 0 15px;
  padding-bottom: 11px;
  color: #15171a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-cap-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--color-primary);
}

.detail-cap-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }

.detail-cap-list li {
  position: relative;
  padding-left: 14px;
  color: #6d7279;
  font-size: 0.75rem;
}

.detail-cap-list li::before {
  content: '';
  position: absolute;
  top: 7px; left: 0;
  width: 4px; height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

.detail-cap-desc { color: #6d7279; font-size: 0.8125rem; line-height: 1.6; margin: 0; }

.detail-cap-grid.detail-cap-grid-bordered { border-top: 1px solid #e6e8eb; border-bottom: 1px solid #e6e8eb; }

/* Process gallery: captioned image row */
.detail-gallery {
  padding: 18px;
  background: #fafafa;
  border-top: 1px solid #e6e8eb;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-gallery-item { position: relative; overflow: hidden; background: #eceeef; }

.detail-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .38s ease;
}

.detail-gallery-item:hover img { transform: scale(1.045); }

.detail-gallery-item span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: block;
  background: rgba(15, 17, 19, .78);
  color: #fff;
  padding: 9px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Info grid: image-topped card with bullet list */
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #e6e8eb;
}

.detail-info-card {
  padding: 28px;
  border-right: 1px solid #e6e8eb;
}

.detail-info-card:last-child { border-right: 0; }

.detail-info-layout {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 19px;
  align-items: start;
}

.detail-info-image-wrap {
  display: block;
  width: 128px;
  height: 128px;
  overflow: hidden;
  border-radius: 6px;
}

.detail-info-card img {
  width: 128px;
  height: 128px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.detail-info-card:hover img { transform: scale(1.035); }

.detail-info-card ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }

.detail-info-card li {
  position: relative;
  padding-left: 14px;
  color: #6d7279;
  font-size: 0.8125rem;
}

.detail-info-card li::before {
  content: '';
  position: absolute;
  top: 7px; left: 0;
  width: 4px; height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Why cards with description (icon + title + text) */
.detail-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.detail-why-card {
  text-align: left;
  padding: 16px;
  background: #fcfcfc;
  border: 1px solid #e6e8eb;
  border-radius: 5px;
}

.detail-why-card .detail-reason-icon {
  width: 52px; height: 52px;
  color: var(--color-primary-dark);
  background: rgba(253,178,6,.09);
  border: 1px solid rgba(253,178,6,.28);
  border-radius: 50%;
  margin-bottom: 14px;
}

.detail-why-card .detail-reason-icon svg { width: 26px; height: 26px; }

.detail-why-card h4 {
  margin: 0 0 8px;
  color: #15171a;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-why-card p { margin: 0; color: #6d7279; font-size: 0.8125rem; line-height: 1.6; }

/* Horizontal variant: icon beside text instead of icon above text */
.detail-why-card.detail-why-card-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.detail-why-card-row .detail-reason-icon {
  width: 38px; height: 38px;
  margin-bottom: 0;
}

.detail-why-card-row .detail-reason-icon svg { width: 18px; height: 18px; }

.detail-why-card-row h4 { margin: 0 0 3px; font-size: 0.625rem; }
.detail-why-card-row p { font-size: 0.6875rem; line-height: 1.5; }

/* Panel variant: single bordered strip, no per-card gap/radius */
.detail-why-grid.detail-why-panel {
  gap: 0;
  border: 1px solid #e6e8eb;
  border-radius: 5px;
  overflow: hidden;
}

.detail-why-panel .detail-why-card-row {
  background: #fff;
  border: 0;
  border-right: 1px solid #e6e8eb;
  border-radius: 0;
  padding: 22px;
  align-items: center;
  transition: background-color .2s ease;
}

.detail-why-panel .detail-why-card-row:last-child { border-right: 0; }
.detail-why-panel .detail-why-card-row:hover { background: var(--color-bg-alt); }

.detail-why-panel .detail-reason-icon {
  width: 46px; height: 46px;
  background: none;
  border: 0;
  border-radius: 0;
}

.detail-why-panel .detail-reason-icon svg { width: 32px; height: 32px; stroke-width: 1.65; }
.detail-why-panel .detail-why-card-row h4 { font-size: 0.75rem; }
.detail-why-panel .detail-why-card-row p { font-size: 0.75rem; }

/* CTA without image (simple flex variant) */
.detail-cta.detail-cta-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 32px 28px;
}

.detail-cta-simple .detail-cta-content { padding: 0; }

/* Photo variant: full-bleed dark background image with gradient overlay */
.detail-cta.detail-cta-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 250px;
  padding: 42px 45px;
  overflow: hidden;
  background-color: #17191c;
  background-image: linear-gradient(90deg, rgba(13,15,17,.96) 0%, rgba(13,15,17,.84) 46%, rgba(13,15,17,.38) 100%), var(--cta-photo);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.detail-cta-photo::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  background: var(--color-primary);
}

.detail-cta-photo .detail-cta-content { max-width: 640px; padding: 0; }
.detail-cta-photo .detail-cta-content h2 { color: #fff; }
.detail-cta-photo .detail-cta-content h2 .highlight { color: var(--color-primary); }
.detail-cta-photo .detail-cta-content p { color: rgba(255,255,255,.82); }

/* CTA: image left, content (with button inside) right */
.detail-cta.detail-cta-media {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: stretch;
}

.detail-cta-media .detail-cta-image { min-height: 260px; }

.detail-cta-media .detail-cta-content {
  padding: 32px 28px;
  max-width: none;
  align-self: center;
}

.detail-cta-media .detail-cta-content .btn { margin-top: 18px; display: inline-block; }

/* Engineering workflow timeline */
.detail-workflow {
  padding: 28px;
  border-top: 1px solid #e6e8eb;
  background: linear-gradient(180deg, rgba(244,189,25,.025), transparent);
}

.detail-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.detail-workflow-step { text-align: center; }

.detail-workflow-step .detail-reason-icon {
  width: 46px; height: 46px;
  margin: 0 auto 10px;
  color: var(--color-primary-dark);
  background: rgba(253,178,6,.09);
  border: 1px solid rgba(253,178,6,.28);
  border-radius: 50%;
}

.detail-workflow-step .detail-reason-icon svg { width: 22px; height: 22px; }

.detail-workflow-step span {
  display: block;
  color: #15171a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Process steps connected by arrows (e.g. Inspection Process) */
.quality-philosophy-section { padding-bottom: 0; }
.quality-process-section { padding-top: 30px; padding-bottom: 0; }

.detail-process-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
}

.detail-process-step { flex: 1 1 0; min-width: 70px; text-align: center; }

.detail-process-step .detail-reason-icon {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px;
  margin: 0 auto 10px;
  color: #15171a;
  background: #fff8dc;
  border: 1px solid rgba(244, 189, 25, .45);
  border-radius: 50%;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-process-step:hover .detail-reason-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

/* Engineering workflow: one gradient line behind the icons instead of per-segment arrows */
.detail-workflow .detail-process-arrow { display: none; }

.detail-workflow .detail-process-grid { position: relative; }

.detail-workflow .detail-process-grid::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 6.25%;
  right: 6.25%;
  height: 2px;
  background: linear-gradient(90deg, #f4bd19, #e0e2e5 15%, #e0e2e5 85%, #f4bd19);
}

/* Compact icon variant matching the live Engineering Workflow strip */
.detail-workflow .detail-process-step .detail-reason-icon {
  width: 36px; height: 36px;
  background: #fff;
  border: 2px solid #e6e8eb;
}

.detail-workflow .detail-process-step .detail-reason-icon svg { width: 18px; height: 18px; }
.detail-workflow .detail-process-step span:not(.detail-reason-icon) { font-size: 0.5625rem; }

.detail-process-step .detail-reason-icon svg { width: 28px; height: 28px; }

.detail-process-step span:not(.detail-reason-icon) {
  display: block;
  color: #15171a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-process-arrow {
  position: relative;
  width: 44px;
  height: 58px;
  flex: 0 0 auto;
}

.detail-process-arrow::before {
  content: '';
  position: absolute;
  top: 29px; left: 0;
  width: 31px; height: 1px;
  background: #e7c760;
}

.detail-process-arrow::after {
  content: '';
  position: absolute;
  top: 24px; left: 27px;
  width: 9px; height: 9px;
  border-top: 1px solid #e7c760;
  border-right: 1px solid #e7c760;
  transform: rotate(45deg);
}

/* Quality: equipment + documentation two-panel row */
.quality-top {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 0;
  border-top: 1px solid #e6e8eb;
}

.quality-panel { padding: 28px; }
.quality-panel:first-child { border-right: 1px solid #e6e8eb; }
.quality-panel h3 {
  position: relative;
  margin: 0 0 20px;
  padding-left: 14px;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #15171a;
}

.quality-panel h3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--color-primary);
}

.quality-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quality-equipment-item { text-align: center; }

.quality-equipment-image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-bottom: 10px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.quality-equipment-item:hover .quality-equipment-image-wrap {
  border-color: rgba(217, 165, 0, .58);
  box-shadow: 0 10px 24px rgba(17,18,20,.08);
  transform: translateY(-3px);
}

.quality-equipment-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.quality-equipment-item:hover img { transform: scale(1.04); }

.quality-equipment-item span:not(.quality-equipment-image-wrap) {
  display: block;
  color: #15171a;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quality-doc-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 24px;
  align-items: center;
}

.quality-doc-layout img { width: 100%; border-radius: 6px; display: block; }

.quality-doc-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }

.quality-doc-item { display: flex; align-items: flex-start; gap: 12px; }

.quality-doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  flex: 0 0 34px;
  color: var(--color-primary-dark);
  background: rgba(253,178,6,.09);
  border-radius: 6px;
}

.quality-doc-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.quality-doc-item h4 { margin: 0 0 4px; color: #15171a; font-size: 0.875rem; font-weight: 600; }
.quality-doc-item p { margin: 0; color: #6d7279; font-size: 0.8125rem; line-height: 1.5; }

/* Quality: commitment bar */
.quality-commitment {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(6, minmax(0, 1fr)) minmax(0, 1.25fr);
  align-items: stretch;
  border-top: 1px solid #e6e8eb;
}

.quality-commitment-intro { padding: 22px 16px 22px 32px; }
.quality-commitment-intro h3 { margin: 0 0 4px; color: #15171a; font-size: 0.9375rem; font-weight: 600; text-transform: uppercase; }
.quality-commitment-intro p { margin: 0; color: #6d7279; font-size: 0.8125rem; }

.quality-commitment-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  text-align: center;
  border-left: 1px solid #e7e8ea;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.quality-commitment-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.quality-commitment-item:hover {
  z-index: 2;
  background: var(--color-bg-alt);
  box-shadow: 0 8px 22px rgba(0,0,0,.055);
}

.quality-commitment-item:hover::before { transform: scaleX(1); }

.quality-commitment-item .quality-commitment-icon {
  display: block;
  width: 37px; height: 37px;
  color: var(--color-primary-dark);
}

.quality-commitment-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.quality-commitment-item span {
  display: block;
  color: #15171a;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quality-commitment-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border-left: 1px solid #e7e8ea;
}

.quality-commitment.quality-commitment-notop { border-top: 0; }

/* Sustainability - floating commitment card (different shell than Quality's flat bar) */
.sustain-commit-card {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) repeat(5, minmax(0, 1fr));
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(20, 24, 28, .055);
  overflow: hidden;
}

.sustain-commit-card .quality-commitment-intro {
  position: relative;
  padding: 30px 30px 30px 43px;
}

.sustain-commit-card .quality-commitment-intro::before {
  content: '';
  position: absolute;
  top: 30px; left: 30px;
  width: 3px;
  height: calc(100% - 60px);
  background: var(--color-primary);
}

.sustain-commit-card .quality-commitment-intro h3 { font-size: 1.125rem; }

.sustain-commit-card .quality-commitment-item { padding: 22px 14px; }

/* Dual column: tools image + why-grid */
.detail-dual {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-top: 1px solid #e6e8eb;
}

.detail-dual-col { padding: 28px; }
.detail-dual-col:first-child { border-right: 1px solid #e6e8eb; display: flex; flex-direction: column; }

.detail-dual-col img { width: 100%; border-radius: 6px; display: block; margin-top: auto; margin-bottom: auto; }

.detail-tools-image-wrap {
  padding: 18px;
  margin-top: auto;
  margin-bottom: auto;
  background: #fcfcfc;
  border: 1px solid #e6e8eb;
  border-radius: 6px;
}

.detail-tools-image-wrap img { margin: 0; }

.detail-why-grid.detail-why-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

/* Panel title with left bar (Featured Products / Why / Industries) */
.detail-panel-title {
  position: relative;
  margin: 0 0 18px;
  padding-left: 13px;
  color: #15171a;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-panel-title::before {
  content: '';
  position: absolute;
  top: 2px; bottom: 2px; left: 0;
  width: 3px;
  border-radius: 10px;
  background: var(--color-primary);
}

.detail-panel-title.is-centered { padding-left: 0; text-align: center; }
.detail-panel-title.is-centered::before { display: none; }

/* Featured products */
.detail-products {
  padding: 28px;
  background: #fafafa;
  border-bottom: 1px solid #e6e8eb;
}

.detail-products-note {
  max-width: 520px;
  margin: 0 0 18px;
  color: #6d7279;
  font-size: 0.75rem;
  line-height: 1.6;
}

.detail-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.detail-carousel { position: relative; }

.detail-carousel-viewport { overflow: hidden; width: 100%; }

.detail-products-grid {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.detail-products-grid .detail-product-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}

.detail-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.detail-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: #15171a;
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-carousel-btn:hover { background: var(--color-primary); border-color: var(--color-primary); transform: translateY(-2px); }
.detail-carousel-btn:disabled { opacity: .4; cursor: default; transform: none; }
.detail-carousel-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.detail-carousel-dots { display: flex; align-items: center; gap: 6px; }

.detail-carousel-dot {
  width: 18px; height: 4px;
  padding: 0;
  background: #e6e8eb;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.detail-carousel-dot.is-active { background: var(--color-primary); width: 22px; }

.detail-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 6px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.detail-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 32px rgba(20,24,29,.1);
}

.detail-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.detail-product-card:hover .detail-product-image { transform: scale(1.06); }

.detail-product-body { padding: 16px; }

.detail-product-category {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.detail-product-title {
  margin: 0 0 12px;
  color: #15171a;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color .2s ease;
}

.detail-product-card:hover .detail-product-category { color: var(--color-primary); }
.detail-product-card:hover .detail-product-title { color: var(--color-primary-dark); }

.detail-product-specs { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }

.detail-product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.75rem;
  color: #6d7279;
  border-top: 1px dashed #e6e8eb;
  padding-top: 4px;
}

.detail-product-specs li:first-child { border-top: 0; padding-top: 0; }
.detail-product-specs strong { color: #15171a; font-weight: 600; }

/* Why / Industries grid rows */
.detail-why, .detail-industries { padding: 28px; }
.detail-industries { border-top: 1px solid #e6e8eb; }

.detail-reason-grid, .detail-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #e6e8eb;
  border-radius: 6px;
  overflow: hidden;
}

.detail-industry-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.detail-reason-item, .detail-industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 21px 20px;
  border-right: 1px solid #e6e8eb;
  border-bottom: 1px solid #e6e8eb;
  transition: background-color .2s ease;
}

.detail-reason-item:hover, .detail-industry-item:hover {
  background: var(--color-bg-alt);
}

.detail-reason-item:nth-child(3n) { border-right: 0; }
.detail-reason-item:nth-last-child(-n+3) { border-bottom: 0; }
.detail-industry-item:last-child { border-right: 0; }
.detail-industry-item { border-bottom: 0; }

.detail-industry-item { flex-direction: column; text-align: center; gap: 10px; }

.detail-reason-icon, .detail-industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: 0 0 44px;
  color: var(--color-primary-dark);
}

.detail-reason-icon svg, .detail-industry-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.detail-reason-item span:not(.detail-reason-icon), .detail-industry-item span:not(.detail-industry-icon) {
  color: #15171a;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* CTA */
.detail-cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr;
  align-items: stretch;
  padding: 0;
  border-top: 1px solid #e6e8eb;
}

.detail-cta-content { max-width: 640px; padding: 32px 28px; align-self: center; }

.detail-cta-image { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }

.detail-cta-action { display: flex; align-items: center; justify-content: center; padding: 32px 28px; background: #fafafa; }

.detail-cta h2 {
  margin: 0 0 10px;
  color: #15171a;
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-cta h2 .highlight { color: var(--color-primary); }

.detail-cta p { margin: 0; color: #6d7279; font-size: 0.875rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .detail-intro { grid-template-columns: 1fr; }
  .detail-cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-cap-card:nth-child(2n) { border-right: 0; }
  .detail-reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-cta { grid-template-columns: 1fr; }
  .detail-cta-content, .detail-cta-action { padding: 24px; }
  .detail-cta-image { min-height: 200px; }
  .detail-cta.detail-cta-photo { flex-direction: column; align-items: flex-start; padding: 28px; }
  .detail-why-grid.detail-why-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-why-panel .detail-why-card-row:nth-child(2n) { border-right: 0; }
  .detail-products-grid .detail-product-card { flex: 0 0 100%; }
  .detail-gallery-grid { grid-template-columns: 1fr; }
  .detail-info-grid { grid-template-columns: 1fr; }
  .detail-info-card { border-right: 0; border-bottom: 1px solid #e6e8eb; }
  .detail-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-dual { grid-template-columns: 1fr; }
  .detail-dual-col:first-child { border-right: 0; border-bottom: 1px solid #e6e8eb; }
  .detail-why-grid.detail-why-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-cta.detail-cta-media { grid-template-columns: 1fr; }
  .detail-process-arrow { transform: rotate(90deg); height: 30px; width: 30px; }
  .quality-top { grid-template-columns: 1fr; }
  .quality-panel:first-child { border-right: 0; border-bottom: 1px solid #e6e8eb; }
  .quality-doc-layout { grid-template-columns: 1fr; }
  .quality-commitment { justify-content: center; }
}

/* News article */
.article-layout { max-width: 760px; margin: 0 auto; padding: 50px 0 20px; }

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 36px;
}

.article-body h2 {
  margin: 40px 0 16px;
  color: #15171a;
  font-size: 1.375rem;
  font-weight: 700;
}

.article-body p {
  margin: 0 0 18px;
  color: #444a52;
  font-size: 1rem;
  line-height: 1.75;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.article-body ul li {
  position: relative;
  padding-left: 20px;
  color: #444a52;
  font-size: 1rem;
  line-height: 1.6;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  top: 9px; left: 0;
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.article-body .legal-contact-box { margin-top: 40px; }

.article-related-section {
  padding: 50px 0 70px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

@media (max-width: 700px) {
  .article-layout { padding: 36px 0 10px; }
  .article-body h2 { font-size: 1.1875rem; }
}

/* Legal pages (Privacy / Cookie / KVKK / Terms) */
.legal-hero {
  background: #1d2227;
  padding: 70px 0 50px;
}

.legal-hero-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
}

.legal-hero h1 .highlight { color: var(--color-primary); }

.legal-hero p {
  max-width: 720px;
  margin: 0 0 20px;
  color: #c7cbd1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9aa0a8;
  font-size: 0.8125rem;
}

.legal-updated svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.legal-layout {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 50px 0 70px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 22px;
}

.legal-toc-head {
  margin: 0 0 14px;
  color: #15171a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: legaltoc; }

.legal-toc li { counter-increment: legaltoc; margin-bottom: 4px; }

.legal-toc a {
  display: flex;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 5px;
  color: #5f656c;
  font-size: 0.8125rem;
  font-weight: 500;
}

.legal-toc a::before {
  content: counter(legaltoc, decimal-leading-zero);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.6875rem;
}

.legal-toc a:hover { background: var(--color-bg-alt); color: #15171a; }

.legal-intro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 10px;
  color: #5f656c;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-of-type { border-bottom: 0; }

.legal-section-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  margin-bottom: 12px;
  background: var(--color-primary);
  color: #15171a;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
}

.legal-section h2 { margin: 0 0 12px; color: #15171a; font-size: 1.25rem; font-weight: 600; }
.legal-section p { margin: 0 0 14px; color: #5f656c; font-size: 0.9375rem; line-height: 1.7; }
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul { margin: 0 0 14px; padding-left: 20px; color: #5f656c; font-size: 0.9375rem; line-height: 1.8; }
.legal-section ul:last-child { margin-bottom: 0; }

.legal-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--color-bg-alt);
  border-radius: 6px;
}

.legal-box-item { min-width: 0; }
.legal-box-label { display: block; margin-bottom: 3px; color: #8a8f96; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; }
.legal-box-value { color: #15171a; font-size: 0.875rem; font-weight: 600; word-break: break-word; }
a.legal-box-value:hover { color: var(--color-primary-dark); }

.legal-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.legal-category-card {
  padding: 18px;
  background: var(--color-bg-alt);
  border-radius: 6px;
}

.legal-category-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.legal-category-top h3 { margin: 0; color: #15171a; font-size: 0.9375rem; font-weight: 600; }
.legal-category-card p { margin: 0; color: #5f656c; font-size: 0.8125rem; line-height: 1.6; }

.legal-badge {
  flex: 0 0 auto;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-badge-required { background: var(--color-primary); color: #15171a; }
.legal-badge-consent { background: #fff; color: #5f656c; border: 1px solid var(--color-border); }

.legal-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.875rem; }
.legal-table th { background: var(--color-bg-alt); color: #15171a; text-align: left; padding: 10px 14px; font-weight: 600; }
.legal-table td { padding: 12px 14px; border-bottom: 1px solid var(--color-border); color: #5f656c; }

.legal-steps { display: grid; gap: 14px; margin-top: 16px; }

.legal-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: 6px;
}

.legal-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--color-primary);
  color: #15171a;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.legal-step h4 { margin: 0 0 4px; color: #15171a; font-size: 0.875rem; font-weight: 600; }
.legal-step p { margin: 0; color: #5f656c; font-size: 0.8125rem; line-height: 1.6; }

.legal-related { display: grid; gap: 10px; margin-top: 16px; }

.legal-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border-radius: 6px;
  color: #15171a;
  font-size: 0.875rem;
  font-weight: 600;
}

.legal-related a:hover { background: rgba(253,178,6,.12); }

.legal-contact-box {
  margin-top: 20px;
  padding: 26px;
  background: #1d2227;
  border-radius: 8px;
}

.legal-contact-box h2 { margin: 0 0 10px; color: #fff; font-size: 1.125rem; font-weight: 600; }
.legal-contact-box p { margin: 0 0 18px; color: #c7cbd1; font-size: 0.875rem; line-height: 1.6; }

.legal-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-box, .legal-category-grid { grid-template-columns: 1fr; }
  .legal-hero h1 { font-size: 2rem; }
}

/* Responsive */
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav.open { display: flex; flex-direction: column; align-items: stretch; }
  .main-nav > ul { flex-direction: column; gap: 0; padding: 10px 20px; }
  .dropdown {
    position: static; width: auto; box-shadow: none; display: block; padding-left: 12px;
    opacity: 1; visibility: visible; transform: none;
  }
  .nav-lang { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { border-right: 0; border-bottom: 1px solid #e8e8e8; }
  .expertise-wrapper { grid-template-columns: 1fr; }
  .expertise-main-image { min-height: 280px; }
  .industries-grid, .reasons-list { grid-template-columns: 1fr; }
  .expertise-cta { flex-direction: column; align-items: flex-start; }
}
