:root {
  --bg: #eaf3fb;
  --surface: #ffffff;
  --ink: #0d1f33;
  --muted: #52677b;
  --line: #d4e3ef;
  --accent: #256fa8;
  --accent-dark: #0f3f68;
  --accent-bright: #1e78b7;
  --accent-light: #67b8e8;
  --accent-soft: #e4f1fb;
  --steel: #263f56;
  --graphite: #0b243d;
  --soft: #e8f3fb;
  --panel: #f7fbff;
  --warning: #fff7e6;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(13, 31, 51, 0.14);
  --shadow-soft: 0 10px 26px rgba(13, 31, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #dfeef8 0, var(--bg) 420px, #f6fbff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  background: rgba(11, 36, 61, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.utility-bar {
  background: #071a2d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 24px;
  justify-content: flex-end;
  gap: 18px;
  color: #c7d8e7;
  font-size: 12px;
  font-weight: 650;
}

.utility-inner a {
  color: #eff7ff;
  text-decoration: none;
}

.header-inner,
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #fff;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.brand::after {
  content: "CNC";
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d8e9f6;
  font-size: 11px;
  font-weight: 760;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link {
  color: #e1eef7;
  font-size: 14px;
  font-weight: 620;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta {
  background: var(--accent-bright);
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 120, 183, 0.26);
}

.nav-cta:hover,
.nav-cta[aria-current="page"] {
  background: #145985;
  color: #fff;
}

main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 51, 0.14);
  border-radius: var(--radius);
  background: #071a2d;
  box-shadow: 0 26px 62px rgba(7, 26, 45, 0.22);
}

.hero-copy {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.98), rgba(11, 36, 61, 0.96) 58%, rgba(15, 63, 104, 0.94)),
    linear-gradient(90deg, rgba(103, 184, 232, 0.2), transparent 62%);
  padding: 52px 50px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 58px);
}

.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}

h2 {
  margin: 40px 0 14px;
  font-size: 28px;
}

h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

p {
  margin: 0 0 16px;
}

.hero-intro {
  max-width: 670px;
  color: #d8e8f4;
  font-size: 18px;
  line-height: 1.58;
}

.article-meta {
  color: var(--muted);
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  margin: 12px 0 18px;
}

.hero .article-meta {
  color: #d8e8f4;
  border-left-color: var(--accent-bright);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  max-width: 720px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--accent-light);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
  color: #edf7ff;
  font-size: 13px;
  font-weight: 680;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: #1f83c5;
  color: #fff;
  box-shadow: 0 12px 26px rgba(30, 120, 183, 0.34);
}

.button.primary:hover {
  background: #145985;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 63, 104, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eff7ff;
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  transform: translateY(-1px);
}

.image-placeholder {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(37, 111, 168, 0.18), rgba(38, 63, 86, 0.28)),
    linear-gradient(0deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.32) 0 1px, transparent 1px 18px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--steel);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-height: 480px;
  margin: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 45, 0.28), transparent 36%),
    linear-gradient(180deg, transparent 54%, rgba(7, 26, 45, 0.34));
  pointer-events: none;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 6px;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 28px solid rgba(255,255,255,0.16);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.82);
  color: var(--steel);
}

.content,
.related-section,
.final-cta,
.visual-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.content-shell {
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(228, 241, 251, 0.72), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 0;
}

.content-shell .content {
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
}

.content {
  max-width: 880px;
  box-shadow: none;
}

.page-home .content,
.page-service .content,
.page-material .content,
.page-contact .content,
.page-blog-index .content {
  max-width: 100%;
}

.content-shell-home,
.content-shell-service,
.content-shell-material,
.content-shell-contact,
.content-shell-blog-index {
  background: var(--surface);
}

.content-home,
.content-service,
.content-material,
.content-contact,
.content-blog-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  align-items: start;
}

.content-home > h2,
.content-service > h2,
.content-material > h2,
.content-contact > h2,
.content-blog-index > h2,
.content-home > .table-wrap,
.content-service > .table-wrap,
.content-material > .table-wrap,
.content-contact > .table-wrap,
.content-blog-index > .table-wrap {
  grid-column: 1 / -1;
}

.content-home > p,
.content-home > ul,
.content-home > ol,
.content-service > p,
.content-service > ul,
.content-service > ol,
.content-material > p,
.content-material > ul,
.content-material > ol,
.content-contact > p,
.content-contact > ul,
.content-contact > ol,
.content-blog-index > p,
.content-blog-index > ul,
.content-blog-index > ol {
  min-width: 0;
}

.content-blog-article,
.content-about {
  margin-left: 0;
  margin-right: auto;
}

.content h2 {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.content h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.content ul,
.content ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.content li {
  margin-bottom: 7px;
}

.content-home h3 {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.content-home h3 + p {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: #fff;
}

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

th {
  background: #e6f2fb;
  color: var(--ink);
  font-weight: 760;
}

tbody tr:nth-child(even) {
  background: #f7fbff;
}

.visual-section {
  margin-bottom: 24px;
}

.home-capabilities,
.home-parts,
.home-materials,
.home-quality,
.home-trust,
.contact-rfq-panel {
  border-top: 4px solid var(--accent-bright);
  background:
    linear-gradient(135deg, #ffffff 0, #f6fbff 58%, #edf7ff 100%);
}

.home-parts {
  border-top-color: var(--accent-light);
}

.home-trust {
  border-top-color: var(--accent-dark);
}

.home-parts .section-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-materials,
.home-quality {
  background: #fff;
}

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

.compact-section {
  max-width: 980px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading h2 {
  margin-top: 0;
}

.section-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.info-card,
.process-grid > div,
.notice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--panel));
  padding: 19px;
}

.info-card {
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 20px rgba(13, 31, 51, 0.06);
}

.info-card h3,
.process-grid h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.info-card p,
.process-grid p,
.notice-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-method-list {
  margin: 16px 0;
  padding-left: 20px;
}

.contact-method-list li {
  margin-bottom: 6px;
}

.service-overview .rfq-detail-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
}

.service-overview .rfq-detail-panel h3,
.rfq-checklist-block h3 {
  margin: 0 0 12px;
}

.machining-services-hub .visual-section {
  box-shadow: none;
}

.service-hub-note {
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.service-hub-note p:last-child {
  margin-bottom: 0;
}

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

.service-capability-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.service-capability-card h3 {
  margin-top: 0;
}

.service-capability-card > p {
  margin: 0 0 12px;
  color: var(--muted);
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 4px 0 22px;
  padding: 0;
}

.capability-tags li {
  border: 1px solid #c8d9e8;
  border-radius: 4px;
  background: #f3f8fc;
  color: var(--accent-dark);
  padding: 7px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.service-support-links {
  margin-top: 18px;
}

.service-support-links .resource-card {
  min-height: 0;
  padding: 16px 18px;
}

.service-support-links .resource-card p {
  margin-bottom: 12px;
}

.quality-support-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

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

.typical-part-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-bright);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
}

.typical-part-card h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.typical-part-card p {
  margin: 0;
  color: var(--muted);
}

.service-hub-rfq-cta {
  margin-top: 20px;
}

.milling-services-hub .visual-section,
.turning-services-hub .visual-section {
  box-shadow: none;
}

.milling-component-section .section-grid,
.milling-feature-section .section-grid,
.turning-component-section .section-grid,
.turning-feature-section .section-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.milling-parts-table .table-wrap,
.turning-parts-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.milling-technical-links,
.turning-technical-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.milling-technical-links .resource-card,
.turning-technical-links .resource-card {
  min-height: 0;
  padding: 16px 18px;
}

.milling-rfq-cta,
.turning-rfq-cta {
  margin-top: 20px;
}

.materials-hub .visual-section {
  box-shadow: none;
}

.material-comparison-section .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.material-link-card {
  display: flex;
  flex-direction: column;
}

.material-link-card .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.material-factors-section .section-grid,
.material-factor-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.material-factor-links {
  margin-top: 18px;
}

.material-factor-links .resource-card {
  min-height: 0;
  padding: 16px 18px;
}

.material-rfq-cta {
  margin-top: 22px;
}

.aluminum-machining-hub .visual-section {
  box-shadow: none;
}

.aluminum-parts-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.aluminum-process-card {
  display: flex;
  flex-direction: column;
}

.aluminum-process-card .text-link {
  padding-top: 14px;
}

.aluminum-finish-note {
  margin-top: 18px;
  padding: 18px 20px;
}

.aluminum-rfq-cta {
  margin-top: 22px;
}

.stainless-machining-hub .visual-section {
  box-shadow: none;
}

.stainless-considerations-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.stainless-rfq-cta {
  margin-top: 22px;
}

.surface-finishing-hub .visual-section {
  box-shadow: none;
}

.finishing-options-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.finish-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.finish-note-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-bright);
  border-radius: var(--radius);
  background: #f7fbff;
  padding: 18px;
  color: var(--steel);
  font-weight: 650;
}

.finish-rfq-cta {
  margin-top: 22px;
}

.tolerance-review-hub .visual-section {
  box-shadow: none;
}

.tolerance-engineering-note {
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.tolerance-engineering-note p:last-child {
  max-width: 980px;
  margin-bottom: 0;
}

.tolerance-checklist-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.tolerance-rfq-cta {
  margin-top: 22px;
}

.quality-inspection-hub .visual-section {
  box-shadow: none;
}

.quality-checklist-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.quality-inline-image {
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quality-inline-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.quality-inline-image figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quality-inspection-note {
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.quality-inspection-note p:last-child {
  max-width: 980px;
  margin-bottom: 0;
}

.quality-rfq-cta {
  margin-top: 22px;
}

.about-kendoric-hub .visual-section {
  box-shadow: none;
}

.about-intro-section .section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

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

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

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

.about-partner-section {
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.about-partner-section .section-heading,
.about-engineering-note p:last-child {
  max-width: 980px;
  margin-bottom: 0;
}

.about-engineering-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-dark);
  background: #fff;
}

.about-start-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 4px solid var(--accent-bright);
  background: linear-gradient(135deg, #ffffff, #eef7fd);
}

.about-start-section > div {
  max-width: 880px;
}

.about-start-section h2,
.about-start-section p:last-child {
  margin-bottom: 0;
}

.about-start-section .button {
  flex: 0 0 auto;
}

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

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-grid li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  padding: 9px 10px 9px 28px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 650;
}

.checklist-grid li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
}

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

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-bright));
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.process-row > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--panel));
  padding: 16px;
}

.process-row span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.process-row strong {
  display: block;
  margin-bottom: 6px;
}

.process-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.contact-rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.contact-rfq-layout h2 {
  margin-top: 0;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #eef7fd);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(13, 31, 51, 0.08);
}

.contact-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-email {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 800;
  word-break: break-word;
}

.contact-card dl {
  margin: 0;
}

.contact-card div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 720;
}

.rfq-checklist-block {
  margin-top: 22px;
}

.contact-subsection {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.rfq-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rfq-group-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-bright);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}

.rfq-group-card h3 {
  margin: 0 0 14px;
}

.rfq-group-list {
  margin: 0;
  padding-left: 20px;
}

.rfq-group-list li + li {
  margin-top: 8px;
}

.rfq-trust-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
  padding: 22px 24px;
}

.rfq-trust-note .eyebrow {
  margin-bottom: 8px;
}

.rfq-trust-note h2,
.example-rfq-card h2 {
  margin-top: 0;
}

.rfq-trust-note p {
  margin-bottom: 0;
  max-width: 980px;
}

.example-rfq-card {
  border: 1px solid var(--line);
  background: #f7fbff;
  padding: 24px;
  box-shadow: none;
}

.example-rfq-email {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-bright);
  background: #fff;
}

.example-rfq-field {
  padding: 14px 16px;
}

.example-rfq-field + .example-rfq-field {
  border-top: 1px solid var(--line);
}

.example-rfq-field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.example-rfq-subject strong {
  display: block;
}

.example-rfq-message p {
  margin: 8px 0 0;
}

.blog-index-hub .visual-section {
  box-shadow: none;
}

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

.blog-index-intro {
  max-width: 920px;
}

.blog-featured-guide,
.blog-rfq-transition {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.blog-featured-guide > div,
.blog-rfq-transition > div {
  max-width: 860px;
}

.blog-featured-guide h2,
.blog-featured-guide p:last-child,
.blog-rfq-transition h2,
.blog-rfq-transition p:last-child {
  margin-bottom: 0;
}

.blog-category {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
}

.blog-guide-grid,
.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-guide-card,
.blog-topic-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--panel));
  padding: 20px;
}

.blog-guide-card h3,
.blog-topic-card h3 {
  margin: 12px 0 8px;
  font-size: 1.04rem;
  line-height: 1.4;
}

.blog-guide-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-guide-card h3 a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.blog-guide-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.blog-guide-card .text-link {
  margin-top: auto;
}

.blog-topic-card h3 {
  margin-top: 0;
}

.blog-topic-card ul {
  margin: 0;
  padding-left: 20px;
}

.blog-topic-card li + li {
  margin-top: 7px;
}

.blog-rfq-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.page-blog-index .related-section .resource-card {
  min-height: 130px;
}

.rfq-checklist-article .visual-section {
  box-shadow: none;
}

.rfq-checklist-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.rfq-gap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rfq-gap-grid li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 12px 14px 12px 34px;
  color: var(--steel);
  font-weight: 650;
}

.rfq-gap-grid li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.rfq-before-send {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.rfq-before-send > div {
  max-width: 860px;
}

.rfq-before-send h2,
.rfq-before-send p:last-child {
  margin-bottom: 0;
}

.rfq-before-send .button {
  flex: 0 0 auto;
}

.hero-material-selection-guide {
  margin-top: 12px;
}

.material-selection-article .visual-section {
  box-shadow: none;
}

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

.material-groups-section .section-grid,
.material-factors-guide .section-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.material-guide-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.material-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.material-review-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--panel));
  padding: 20px;
}

.material-review-card h3 {
  margin: 0 0 12px;
}

.material-review-list {
  margin: 0;
  padding-left: 20px;
}

.material-review-list li + li {
  margin-top: 7px;
}

.material-review-rfq .button {
  margin-top: 20px;
}

.aluminum-stainless-article .visual-section {
  box-shadow: none;
}

.aluminum-stainless-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

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

.material-comparison-card,
.choose-material-card,
.comparison-rfq-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--panel));
  padding: 20px;
}

.material-comparison-card h3,
.choose-material-card h3,
.comparison-rfq-card h3 {
  margin: 0 0 14px;
}

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

.material-comparison-pair > div {
  border-left: 3px solid var(--accent-light);
  background: #f4f9fd;
  padding: 12px 14px;
}

.material-comparison-pair > div + div {
  border-left-color: #6d7f8f;
  background: #f4f6f8;
}

.material-comparison-pair span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 780;
}

.material-comparison-pair p {
  margin: 0;
  color: var(--muted);
}

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

.stainless-choice {
  border-top-color: #6d7f8f;
}

.choose-material-list,
.comparison-rfq-list {
  margin: 0;
  padding-left: 20px;
}

.choose-material-list li + li,
.comparison-rfq-list li + li {
  margin-top: 7px;
}

.comparison-rfq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.comparison-rfq-section .button {
  margin-top: 20px;
}

.supplier-selection-article .visual-section {
  box-shadow: none;
}

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

.supplier-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-question-grid li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 13px 14px 13px 36px;
  color: var(--steel);
  font-weight: 650;
}

.supplier-question-grid li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.supplier-evaluation-table .table-wrap {
  max-width: 100%;
  margin-bottom: 0;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.supplier-warning-note,
.supplier-kendoric-note {
  border-left: 4px solid var(--accent-bright);
  background: linear-gradient(90deg, #f3f9fe, #fff);
}

.supplier-warning-note > div,
.supplier-kendoric-note > div {
  max-width: 980px;
}

.supplier-warning-note h2,
.supplier-kendoric-note h2,
.supplier-warning-note p:last-child,
.supplier-kendoric-note p:last-child {
  margin-bottom: 0;
}

.supplier-rfq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.supplier-rfq-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--panel));
  padding: 20px;
}

.supplier-rfq-card h3 {
  margin: 0 0 12px;
}

.supplier-rfq-list {
  margin: 0;
  padding-left: 20px;
}

.supplier-rfq-list li + li {
  margin-top: 7px;
}

.supplier-rfq-section .button {
  margin-top: 20px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.page-contact .related-section {
  background: transparent;
  box-shadow: none;
  padding: 28px 32px;
}

.page-contact .related-section .resource-card {
  min-height: 120px;
  background: #fff;
  box-shadow: none;
  gap: 8px;
  padding: 16px;
}

.resource-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7fbff);
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

.resource-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.resource-kicker,
.resource-action {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 680;
}

.resource-action {
  margin-top: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: var(--accent-dark);
}

.resource-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.content-blog-index h3 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.content-blog-index h3:first-of-type {
  margin-top: 8px;
}

.content-blog-index p:has(+ h3),
.content-blog-index h3 + p {
  color: var(--muted);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(15,63,104,0.98), rgba(11,36,61,0.98) 68%, rgba(30,120,183,0.9));
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.site-footer {
  background: #071a2d;
  color: #dfeaf4;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: 36px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-brand h2,
.footer-groups h3 {
  color: #fff;
  margin-top: 0;
}

.footer-brand p {
  color: #c4d5e4;
}

.footer-groups h3 {
  font-size: 15px;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-groups ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-groups li {
  margin-bottom: 8px;
}

.footer-groups a {
  color: #dfeaf4;
  text-decoration: none;
}

.footer-groups a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(223, 234, 244, 0.18);
  color: #9fb4c7;
  font-size: 13px;
}

.not-found {
  min-height: 70vh;
}

@media (max-width: 1120px) {
  .home-parts .section-grid,
  .section-grid,
  .process-grid,
  .resource-grid,
  .service-hub-related .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .milling-component-section .section-grid,
  .milling-feature-section .section-grid,
  .turning-component-section .section-grid,
  .turning-feature-section .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-factors-section .section-grid,
  .material-factor-links,
  .aluminum-process-section .section-grid,
  .aluminum-tolerance-section .section-grid,
  .stainless-tolerance-section .section-grid,
  .finish-inspection-section .section-grid,
  .finish-note-grid,
  .tolerance-risk-section .section-grid,
  .tolerance-inspection-section .section-grid,
  .quality-methods-section .section-grid,
  .quality-shipment-section .section-grid,
  .about-resources-section .section-grid,
  .about-focus-section .section-grid,
  .about-buyers-section .section-grid,
  .about-process-grid,
  .blog-guide-grid,
  .blog-topic-grid,
  .material-function-section .section-grid,
  .material-groups-section .section-grid,
  .material-factors-guide .section-grid,
  .supplier-factor-section .section-grid,
  .material-review-grid,
  .comparison-rfq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 24px;
  }

  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: #eff7ff;
    font-weight: 740;
    cursor: pointer;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-toggle:checked ~ .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-link {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .nav-cta {
    grid-column: 1 / -1;
  }

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

  .hero-copy,
  .content,
  .related-section,
  .final-cta,
  .visual-section {
    padding: 22px;
  }

  .content-shell {
    margin-bottom: 20px;
  }

  .content-home,
  .content-service,
  .content-material,
  .content-contact,
  .content-blog-index {
    display: block;
  }

  .hero-copy {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .utility-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 7px 18px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 24px;
  }

  .hero-intro {
    font-size: 15.5px;
  }

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

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .image-placeholder {
    min-height: 190px;
  }

  .hero-media,
  .hero-media img {
    min-height: 190px;
  }

  .hero-media {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-grid,
  .process-grid,
  .resource-grid,
  .process-row,
  .contact-rfq-layout,
  .service-capability-grid,
  .typical-part-grid,
  .quality-support-links,
  .milling-technical-links,
  .turning-technical-links,
  .rfq-group-grid,
  .checklist-grid,
  .checklist-grid.two-column,
  .footer-inner,
  .footer-groups {
    grid-template-columns: 1fr;
  }

  .milling-component-section .section-grid,
  .milling-feature-section .section-grid,
  .turning-component-section .section-grid,
  .turning-feature-section .section-grid {
    grid-template-columns: 1fr;
  }

  .material-factors-section .section-grid,
  .material-factor-links,
  .aluminum-process-section .section-grid,
  .aluminum-tolerance-section .section-grid,
  .stainless-tolerance-section .section-grid,
  .finish-inspection-section .section-grid,
  .finish-note-grid,
  .tolerance-risk-section .section-grid,
  .tolerance-inspection-section .section-grid,
  .quality-methods-section .section-grid,
  .quality-shipment-section .section-grid,
  .about-intro-section .section-grid,
  .about-resources-section .section-grid,
  .about-focus-section .section-grid,
  .about-buyers-section .section-grid,
  .about-process-grid,
  .blog-category-section .section-grid,
  .blog-guide-grid,
  .blog-topic-grid,
  .rfq-explanation-section .section-grid,
  .rfq-gap-grid,
  .material-function-section .section-grid,
  .material-groups-section .section-grid,
  .material-factors-guide .section-grid,
  .supplier-factor-section .section-grid,
  .material-review-grid,
  .material-comparison-grid,
  .material-comparison-pair,
  .choose-material-grid,
  .comparison-rfq-grid {
    grid-template-columns: 1fr;
  }

  .supplier-question-grid,
  .supplier-rfq-grid {
    grid-template-columns: 1fr;
  }

  .about-start-section {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-featured-guide,
  .blog-rfq-transition,
  .blog-rfq-actions,
  .rfq-before-send {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-card {
    min-height: 0;
  }

  .contact-email {
    font-size: 19px;
  }
}
