/*
Theme Name: PlasCity Manufacturing
Description: Premium Industrial Manufacturing Theme — v4.0
Version: 4.0
Text Domain: plascity
*/

/* ============================================================
   DESIGN TOKENS — v4.0 Premium Industrial
   ============================================================ */
:root {
  /* Brand */
  --red:        #C8102E;
  --red-hv:     #A50D26;
  --red-bg:     #FFF1F3;
  --red-bdr:    rgba(200,16,46,.18);

  /* Neutrals — deep charcoal palette */
  --ink:        #07080C;
  --dark:       #0D0F15;
  --dark-2:     #13161E;
  --mid:        #1C2030;
  --text:       #0D0F15;
  --text-2:     #3C4556;
  --text-3:     #7A8599;
  --text-4:     #B4BFCF;
  --white:      #FFFFFF;
  --bg:         #F6F8FC;
  --bg-2:       #EDF0F7;
  --border:     #E1E6EF;
  --border-lt:  #EDF0F6;

  /* Typography */
  --font-head:  'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:       var(--font-body);

  /* Sizing */
  --max-w:      1280px;

  /* Radius */
  --r-xs:       4px;
  --r-sm:       8px;
  --r:          14px;
  --r-lg:       20px;
  --r-xl:       28px;
  --radius:     var(--r);

  /* Shadows */
  --sh-xs:      0 1px 3px rgba(13,15,21,.06);
  --sh-sm:      0 2px 10px rgba(13,15,21,.07), 0 1px 3px rgba(13,15,21,.05);
  --sh-md:      0 8px 28px rgba(13,15,21,.09), 0 2px 8px rgba(13,15,21,.05);
  --sh-lg:      0 20px 60px rgba(13,15,21,.12), 0 4px 16px rgba(13,15,21,.06);
  --sh-xl:      0 40px 100px rgba(13,15,21,.16), 0 8px 30px rgba(13,15,21,.08);

  /* Transitions */
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(0,0,.2,1);
  --dur:        .24s;
  --dur-lg:     .4s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.0625rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--red-hv); }
ul, ol { list-style: none; }
input, button, textarea, select { font-family: var(--font-body); }
button { cursor: pointer; background: none; border: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.75rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.75vw, 3.25rem); line-height: 1.14; }
h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.015em; }
p  { color: var(--text-2); line-height: 1.82; font-size: 1.0625rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; display: block; width: 22px; height: 2px;
  background: var(--red); flex-shrink: 0; border-radius: 2px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.s-white { background: var(--white); }
.s-bg    { background: var(--bg); }
.s-dark  { background: var(--dark-2); }
.s-ink   { background: var(--ink); }
.tc { text-align: center; }
.tc .section-sub { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 4rem; }
.section-sub {
  font-size: 1.1rem; color: var(--text-3);
  max-width: 640px; margin-top: 1rem; line-height: 1.8;
}
.s-dark .section-sub, .s-ink .section-sub { color: rgba(255,255,255,.42); }
.s-dark h2, .s-ink h2,
.s-dark h3, .s-ink h3,
.s-dark h4, .s-ink h4 { color: var(--white); }

/* Reveal animation base */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 2.25rem; font-size: .9rem; font-weight: 700;
  letter-spacing: .01em; border: 2px solid transparent;
  border-radius: var(--r-sm); transition: all var(--dur) var(--ease);
  white-space: nowrap; font-family: var(--font-body);
}
.btn-red  { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-hv); border-color: var(--red-hv); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,16,46,.3); }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: #fff; color: var(--text); border-color: #fff; }
.btn-ghost-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost-red:hover { background: var(--red); color: #fff; }
.btn-sm  { padding: .65rem 1.5rem; font-size: .82rem; }
.btn-lg  { padding: 1.1rem 2.75rem; font-size: .975rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn .arr { transition: transform var(--dur) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(13,15,21,.08); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.site-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900; letter-spacing: -.04em;
  color: var(--text); line-height: 1; display: flex; align-items: center;
}
.site-logo em { color: var(--red); font-style: normal; }
.site-logo:hover { color: var(--text); }
.logo-img { height: 60px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: .15rem; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: block; padding: .5rem 1rem;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--text-2); transition: color var(--dur) var(--ease);
  border-radius: var(--r-xs);
}
.primary-nav > li > a:hover,
.primary-nav > li.active > a { color: var(--red); }


.drop-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--sh-lg); z-index: 100;
}
.has-drop:hover > .drop-menu { display: block; animation: dropIn .18s var(--ease-out) both; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.drop-menu a {
  display: block; padding: .78rem 1.4rem;
  font-size: .84rem; font-weight: 500; color: var(--text-2);
  border-bottom: 1px solid var(--border-lt);
  transition: all var(--dur) var(--ease);
}
.drop-menu a:hover { color: var(--red); padding-left: 1.65rem; background: var(--bg); }
.drop-menu li:last-child a { border-bottom: none; }
.drop-sep { height: 1px; background: var(--border); margin: .25rem 0; }
.nav-quote { margin-left: 1.5rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; background: #fff;
  border-top: 1px solid var(--border); padding: .5rem 0 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: .8rem 1.75rem;
  font-size: .9rem; font-weight: 600;
  color: var(--text-2); border-bottom: 1px solid var(--border-lt);
}
.mobile-nav a:hover { color: var(--red); background: var(--bg); }
.mobile-nav .mob-sub a { padding-left: 3rem; font-weight: 400; font-size: .85rem; }
.mob-quote { padding: 1.25rem 1.75rem 0; }
.mob-quote .btn { display: block; text-align: center; }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.topbar {
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .76rem; display: none;
}
@media(min-width: 900px) { .topbar { display: block; } }
.topbar-inner {
  display: flex; justify-content: space-between;
  align-items: center; height: 38px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-item {
  display: inline-flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.5); font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.topbar-item:hover { color: rgba(255,255,255,.85); }
.topbar-item svg { flex-shrink: 0; }
.topbar-wa { color: #4ade80 !important; }
.topbar-wa:hover { color: #22c55e !important; }

/* Body offset for fixed header */
body { padding-top: 110px; }
@media(max-width: 899px) { body { padding-top: 72px; } }

/* WordPress admin bar — shift fixed header and adjust body offset */
.admin-bar #site-header { top: 32px; }
.admin-bar body { padding-top: 142px; }
@media (max-width: 899px) {
  .admin-bar body { padding-top: 104px; }
}
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
  .admin-bar body { padding-top: 118px; }
}

/* ============================================================
   HERO — Split Layout
   ============================================================ */
.site-hero {
  background: var(--dark);
  min-height: calc(100vh - 110px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.site-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.028) 1px, transparent 0);
  background-size: 40px 40px; pointer-events: none;
}
.site-hero::after {
  content: ''; position: absolute;
  top: -30%; right: -10%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(200,16,46,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0 4rem;
  position: relative; z-index: 1; width: 100%;
}

.hero-content { display: flex; flex-direction: column; }

.hero-label {
  display: inline-flex; align-items: center; gap: .65rem;
  background: rgba(200,16,46,.12);
  border: 1px solid rgba(200,16,46,.25);
  padding: .42rem 1.1rem; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 2rem; width: fit-content;
}
.hero-label::before {
  content: ''; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  animation: blink 2.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

.hero-title {
  color: #fff; font-family: var(--font-head);
  font-size: clamp(2.75rem, 5.5vw, 5.75rem);
  line-height: 1.06; letter-spacing: -.04em; font-weight: 900;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.48);
  max-width: 520px; line-height: 1.85; margin-bottom: 0;
}

/* Hero feature badges */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 2rem 0 2.75rem;
}
.hbadge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: .48rem 1rem; border-radius: 100px;
  font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: all var(--dur) var(--ease);
}
.hbadge:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}
.hbadge svg { color: #4ade80; flex-shrink: 0; }

.hero-ctas { margin-bottom: 3.5rem; }

.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2.5rem; flex-wrap: wrap;
}
.hero-stat {
  flex: 1; min-width: 130px;
  padding-right: 2.5rem; border-right: 1px solid rgba(255,255,255,.08);
  margin-right: 2.5rem;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.75rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.045em; margin-bottom: .3rem;
}
.hero-stat-num em { color: var(--red); font-style: normal; }
.hero-stat-lbl {
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.32); text-transform: uppercase; letter-spacing: .13em;
}

/* Hero visual — right column */
.hero-visual { position: relative; }
.hv-wrap {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 0;
}
.hv-placeholder {
  background: rgba(255,255,255,.035);
  border: 1.5px dashed rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  height: 460px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
  padding: 2rem;
  overflow: hidden; position: relative;
}
.hv-placeholder svg { opacity: .2; }
.hv-placeholder span {
  font-size: .82rem; color: rgba(255,255,255,.25);
  font-weight: 500; max-width: 200px; line-height: 1.6;
}
.hv-placeholder img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r-xl);
}

/* Floating stat cards */
.hv-stat {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--sh-xl);
  min-width: 130px;
}
.hv-stat-a { bottom: 36px; left: -24px; }
.hv-stat-b { top: 36px; right: -8px; }
.hvs-num {
  font-family: var(--font-head);
  font-size: 1.65rem; font-weight: 900;
  color: var(--text); letter-spacing: -.03em; line-height: 1; margin-bottom: .25rem;
}
.hvs-lbl { font-size: .68rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  color: rgba(255,255,255,.25); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(rgba(255,255,255,.25), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.25;transform:scaleY(1);} 50%{opacity:.7;transform:scaleY(.6);} }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--red);
  overflow: hidden;
}
.trust-inner {
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.trust-inner::-webkit-scrollbar { display: none; }
.trust-tag {
  display: flex; align-items: center; gap: .65rem;
  padding: 1.2rem 2.2rem;
  border-right: 1px solid rgba(255,255,255,.18);
  font-size: .82rem; font-weight: 600;
  color: #fff; white-space: nowrap;
  flex-shrink: 0; transition: background var(--dur) var(--ease);
}
.trust-tag:hover { background: rgba(255,255,255,.08); }
.trust-tag svg { color: #fff; flex-shrink: 0; }
.trust-label { display: none; }
.trust-sep { display: none; }
.trust-tags { display: contents; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--red); padding: 4rem 0; }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.045em; margin-bottom: .4rem;
}
.stat-lbl {
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .13em;
}

/* ============================================================
   SERVICES / WHAT WE MAKE
   ============================================================ */
.services-main-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.service-main-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 4px solid var(--red);
  border-radius: var(--r-lg);
  padding: 3rem;
  display: flex; flex-direction: column;
  transition: transform var(--dur-lg) var(--ease), box-shadow var(--dur-lg) var(--ease);
}
.service-main-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.smc-icon {
  width: 60px; height: 60px;
  background: rgba(200,16,46,.12);
  border: 1px solid rgba(200,16,46,.22);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 1.75rem;
}
.smc-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: .65rem;
}
.smc-title {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800; color: #fff;
  margin-bottom: 1.1rem; line-height: 1.18; letter-spacing: -.03em;
}
.smc-desc {
  font-size: .925rem; color: rgba(255,255,255,.42);
  line-height: 1.82; margin-bottom: 2rem; flex: 1;
}
.smc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.75rem; }
.smc-tag {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  padding: .28rem .8rem; font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.5); border-radius: 100px;
}
.smc-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .09em;
  transition: gap var(--dur) var(--ease);
}
.smc-link:hover { color: var(--red); gap: .8rem; }

.capabilities-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; margin-top: 1.5rem;
}
.cap-card {
  background: #fff; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: background var(--dur) var(--ease);
}
.cap-card:hover { background: var(--bg); }
.cap-icon { font-size: 1.5rem; color: var(--red); }
.cap-name { font-size: .9rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.cap-note { font-size: .78rem; color: var(--text-3); line-height: 1.45; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all var(--dur-lg) var(--ease);
  position: relative; overflow: hidden;
}
.industry-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-lg) var(--ease);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.industry-card:hover::before { transform: scaleX(1); }

.service-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media(max-width:900px) { .service-links-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .service-links-grid { grid-template-columns: 1fr; } }
.service-link-card {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1.5rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); text-decoration: none; color: inherit;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-link-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
@media(max-width:600px) {
  .service-link-card { align-items: center; text-align: center; }
  .service-link-card .service-link-icon { margin: 0 auto !important; }
}
.ind-icon {
  font-size: 1.75rem; line-height: 1;
  width: 56px; height: 56px;
  background: rgba(200,16,46,.07);
  border: 1px solid rgba(200,16,46,.13);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.ind-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.ind-desc { font-size: .8rem; color: var(--text-3); line-height: 1.55; }

/* ============================================================
   MATERIALS
   ============================================================ */
.materials-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.1rem;
}
.material-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.6rem 1.25rem;
  text-align: center; transition: all var(--dur) var(--ease);
}
.material-card:hover { border-color: var(--red); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.mat-abbr {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 900; color: var(--text);
  letter-spacing: -.03em; margin-bottom: .35rem;
}
.mat-name {
  font-size: .68rem; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem;
}
.mat-uses { font-size: .72rem; color: var(--text-4); line-height: 1.55; }
.material-note {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1.75rem; padding: 1.1rem 1.5rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); font-size: .88rem; color: var(--text-2);
}
.material-note strong { color: var(--red); }

/* ============================================================
   WHY CHOOSE PLASCITY
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.5rem 2.25rem;
  transition: all var(--dur-lg) var(--ease);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-lg) var(--ease);
}
.why-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-family: var(--font-head);
  font-size: 3.5rem; font-weight: 900;
  color: var(--bg-2); line-height: 1;
  letter-spacing: -.05em; margin-bottom: .75rem;
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(200,16,46,.07);
  border: 1px solid rgba(200,16,46,.13);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 1rem;
}
.why-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; line-height: 1.3; }
.why-desc { font-size: .88rem; color: var(--text-3); line-height: 1.78; }

/* ============================================================
   MANUFACTURING PROCESS
   ============================================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 28px; left: 8%; right: 8%;
  height: 1px; background: var(--border); z-index: 0;
}
.process-step { text-align: center; padding: 0 .5rem; position: relative; z-index: 1; }
.ps-num {
  width: 56px; height: 56px;
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--font-head);
  font-size: .9rem; font-weight: 800; color: var(--text-3);
  background: #fff; transition: all var(--dur) var(--ease);
}
.process-step:hover .ps-num { border-color: var(--red); background: var(--red); color: #fff; }
.ps-title { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.ps-desc { font-size: .75rem; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   QUALITY CONTROL
   ============================================================ */
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.quality-img {
  background: var(--bg); height: 400px;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem; color: var(--text-3);
  border: 1.5px dashed var(--border); font-size: .85rem;
}
.quality-img span { font-size: 3rem; }
.quality-checks { margin-top: 1.5rem; }
.quality-check {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border-lt);
}
.quality-check:last-child { border-bottom: none; }
.qc-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--red-bg); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.qc-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.qc-desc { font-size: .83rem; color: var(--text-3); line-height: 1.68; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5rem; }
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--dur-lg) var(--ease);
}
.product-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.pc-thumb {
  height: 200px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-body { padding: 1.5rem; }

/* product-card-thumb — used by plascity_render_products_grid() */
.product-card-thumb {
  aspect-ratio: 4 / 3;
  background: var(--bg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.product-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-card-thumb img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.pc-cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--red); margin-bottom: .45rem;
}
.pc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .55rem; line-height: 1.3; }
.pc-desc { font-size: .83rem; color: var(--text-3); margin-bottom: 1rem; line-height: 1.65; }
.product-category-tag {
  display: inline-block; background: var(--red-bg); color: var(--red);
  padding: .22rem .75rem; border-radius: 100px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.product-cat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; display: block;
  transition: all var(--dur-lg) var(--ease);
}
.product-cat-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.pcc-thumb {
  height: 180px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.pcc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcc-body { padding: 1.5rem; }
.pcc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
.pcc-desc { font-size: .83rem; color: var(--text-3); margin-bottom: .75rem; line-height: 1.65; }
.pcc-link { font-size: .78rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .09em; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.case-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--dur-lg) var(--ease);
}
.case-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.case-thumb {
  height: 210px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden; position: relative;
}
.case-thumb img { width: 100%; height: 100%; object-fit: cover; }
.case-ind {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem .8rem; border-radius: 100px;
}
.case-body { padding: 1.75rem; }
.case-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .55rem; line-height: 1.3; }
.case-desc { font-size: .85rem; color: var(--text-3); line-height: 1.68; margin-bottom: 1.25rem; }
.case-meta { display: flex; gap: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-lt); }
.case-meta-val { font-size: 1rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.case-meta-key { font-size: .68rem; font-weight: 600; color: var(--text-4); text-transform: uppercase; letter-spacing: .09em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 240px; gap: 6px;
}
.gallery-item {
  background: rgba(255,255,255,.04); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-ph {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; color: rgba(255,255,255,.18);
  font-size: .75rem; text-align: center;
}
.gallery-ph span { font-size: 2.25rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer; gap: 1.5rem; user-select: none;
}
.faq-q-text { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .8rem; font-weight: 700; color: var(--text-3);
  transition: all var(--dur) var(--ease);
}
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-item.open .faq-q-text { color: var(--red); }
.faq-a {
  display: none; padding-bottom: 1.5rem;
  font-size: .925rem; color: var(--text-3); line-height: 1.88;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   RFQ / QUOTE SECTION
   ============================================================ */
.rfq-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 5rem; align-items: start; }
.rfq-bullets { margin: 2rem 0; }
.rfq-bullet { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.4rem; }
.rfq-bi {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(200,16,46,.1); border: 1px solid rgba(200,16,46,.2);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: .95rem; margin-top: .1rem;
}
.rfq-bt strong { display: block; color: #fff; font-size: .9rem; margin-bottom: .18rem; }
.rfq-bt span { font-size: .82rem; color: rgba(255,255,255,.35); }
.rfq-form-wrap {
  background: #fff; border-radius: var(--r-lg);
  padding: 2.75rem; box-shadow: var(--sh-lg);
}
.rfq-form-title { font-size: 1.2rem; color: var(--text); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .11em;
  color: var(--text-3); margin-bottom: .45rem;
}
.form-ctrl {
  width: 100%; padding: .875rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .9rem; color: var(--text); background: #fff;
  outline: none; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-ctrl:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-bdr); }
.form-ctrl::placeholder { color: var(--text-4); }
textarea.form-ctrl { resize: vertical; min-height: 120px; }
.form-note { font-size: .74rem; color: var(--text-4); margin-top: .5rem; }
.form-submit { width: 100%; justify-content: center; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); padding: 7rem 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.4); font-size: 1.05rem; margin-bottom: 2.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: #000; padding: 5.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .site-logo { color: #fff; display: inline-flex; align-items: center; margin-bottom: 1.4rem; }
.footer-brand .logo-img { mix-blend-mode: normal; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.3); line-height: 1.88; margin-bottom: 1.4rem; }
.footer-address { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.95; font-style: normal; }
.footer-address strong { color: rgba(255,255,255,.55); display: block; margin-bottom: .3rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.75rem; }
.fsoc {
  width: 38px; height: 38px; background: rgba(255,255,255,.07);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all var(--dur) var(--ease); flex-shrink: 0;
}
.fsoc svg { display: block; width: 16px; height: 16px; fill: currentColor; }
.fsoc:hover { background: var(--red); color: #fff; }
.footer-col h4 {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: rgba(255,255,255,.5); margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.3); transition: color var(--dur) var(--ease); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-size: .78rem; color: rgba(255,255,255,.2);
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: var(--ink);
  padding: calc(72px + 4.5rem) 0 4rem;
  position: relative;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.025) 1px, transparent 0);
  background-size: 40px 40px; pointer-events: none;
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 2rem;
  width: 60px; height: 3px; background: var(--red); border-radius: 3px;
}
.page-banner h1 { color: #fff; margin-bottom: .6rem; position: relative; }
.page-banner .sub { color: rgba(255,255,255,.42); margin: 0; font-size: 1.05rem; position: relative; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-bottom: 1.5rem; font-size: .75rem; position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 100px;
  padding: .3rem .9rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.25); font-size: .85em; }
.breadcrumb .cur { color: var(--red); font-weight: 600; }

/* Light-background breadcrumb bar (SEO landing pages, blog) */
.breadcrumb-bar { background: var(--bg); border-bottom: 1px solid var(--border); padding: .6rem 0; }
.breadcrumb-light {
  display: flex; align-items: center; gap: .3rem; font-size: .8rem; flex-wrap: wrap;
}
.breadcrumb-light a { color: var(--text-3); text-decoration: none; transition: color var(--dur) var(--ease); }
.breadcrumb-light a:hover { color: var(--red); }
.breadcrumb-light .sep { color: var(--text-4); font-size: .85em; }
.breadcrumb-light .cur { color: var(--red); font-weight: 600; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-item { display: grid; grid-template-columns: 100px 1fr; gap: 2.75rem; padding: 3.25rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.svc-item:last-child { border-bottom: none; }
.svc-num { font-size: 5rem; font-weight: 900; color: var(--bg-2); line-height: 1; text-align: center; letter-spacing: -.05em; user-select: none; }
.svc-body h3 { margin-bottom: .75rem; }
.svc-body p { font-size: .92rem; color: var(--text-3); margin-bottom: .9rem; line-height: 1.82; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc-tag { background: var(--red-bg); color: var(--red); padding: .25rem .8rem; font-size: .72rem; font-weight: 700; border-radius: 100px; text-transform: uppercase; letter-spacing: .07em; }

.process-steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.ps-card { text-align: center; padding: 0 .5rem; }
.ps-card-num { width: 54px; height: 54px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; margin: 0 auto 1.25rem; }
.ps-card-title { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.ps-card-desc { font-size: .8rem; color: var(--text-3); line-height: 1.65; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-ph {
  background: var(--bg); height: 440px;
  border-radius: var(--r-xl); border: 1.5px dashed var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem; color: var(--text-3); font-size: .85rem;
}
.about-img-ph span { font-size: 3rem; }
.about-badge {
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1.1rem 1.6rem; border-radius: var(--r); margin-top: 1.5rem;
}
.ab-num { font-size: 1.75rem; font-weight: 900; letter-spacing: -.04em; }
.ab-txt { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.about-list { margin: 1.5rem 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .7rem 0; border-bottom: 1px solid var(--border-lt);
  font-size: .92rem; color: var(--text-2);
}
.about-list li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; margin-top: .1rem; }
.about-list li:last-child { border-bottom: none; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; }
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid transparent; border-radius: var(--r-lg);
  padding: 2.25rem; transition: all var(--dur) var(--ease);
}
.value-card:hover { border-top-color: var(--red); box-shadow: var(--sh-sm); }
.value-icon { font-size: 1.85rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .85rem; color: var(--text-3); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.25rem; }
.team-card { text-align: center; }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--bg-2); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.25rem; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.team-role { font-size: .78rem; color: var(--red); font-weight: 600; display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4.5rem; align-items: start; }
.ci-item { display: flex; gap: 1.1rem; margin-bottom: 1.9rem; align-items: flex-start; }
.ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--red-bg); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.ci-text strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: .2rem; font-weight: 700; }
.ci-text span, .ci-text a { font-size: .88rem; color: var(--text-3); }
.contact-form-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.75rem;
}
.contact-form-box h3 { margin-bottom: 1.75rem; }
.map-ph {
  background: var(--bg); height: 220px;
  border: 1.5px dashed var(--border); border-radius: var(--r);
  margin-top: 1.5rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; color: var(--text-3); font-size: .82rem;
}
.map-ph span { font-size: 2rem; }
.map-embed { margin-top: 1.5rem; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.map-open-link {
  display: block; text-align: center; padding: .8rem;
  font-size: .8rem; color: var(--red);
  background: var(--bg); border-top: 1px solid var(--border); font-weight: 600;
}
.map-open-link:hover { background: var(--red-bg); }

/* Trust row (contact page stats bar) */
.trust-row {
  display: flex; justify-content: space-between;
  align-items: center; gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: .3rem; flex: 1; min-width: 100px;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}
.ti-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  color: var(--red); line-height: 1;
  letter-spacing: -.04em;
}
.ti-lbl {
  font-size: .72rem; font-weight: 600;
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: .08em; line-height: 1.4;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 4rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 1.5rem; }
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--dur-lg) var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.bc-thumb { height: 200px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; flex-shrink: 0; }
.bc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bc-meta { display: flex; gap: .75rem; margin-bottom: .65rem; font-size: .72rem; color: var(--text-4); text-transform: uppercase; letter-spacing: .07em; }
.bc-cat { color: var(--red); font-weight: 700; }
.bc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; line-height: 1.3; }
.bc-title a { color: inherit; }
.bc-title a:hover { color: var(--red); }
.bc-excerpt { font-size: .83rem; color: var(--text-3); flex: 1; line-height: 1.68; }
.read-more { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700; color: var(--red); margin-top: .9rem; text-transform: uppercase; letter-spacing: .09em; }
.sidebar .widget { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar .widget h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--text-3); margin-bottom: 1rem; }
.sidebar .widget ul li { padding: .4rem 0; border-bottom: 1px solid var(--border-lt); }
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { font-size: .88rem; color: var(--text-2); }
.sidebar .widget ul li a:hover { color: var(--red); }

/* Single post */
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 4rem 0; }
.post-feat-img { height: 440px; background: var(--bg); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; }
.post-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.post-meta-bar { display: flex; gap: 1.5rem; font-size: .78rem; color: var(--text-4); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.post-meta-bar a { color: var(--red); }
.post-body { line-height: 1.9; font-size: .975rem; }
.post-body h2 { font-size: 1.45rem; margin-top: 2.5rem; margin-bottom: .75rem; color: var(--text); }
.post-body h3 { font-size: 1.18rem; margin-top: 2rem; margin-bottom: .6rem; color: var(--text); }
.post-body h4 { font-size: 1rem; font-weight: 700; margin-top: 1.75rem; margin-bottom: .5rem; color: var(--text); }
.post-body p { color: var(--text-2); margin-bottom: 1.1rem; }
.post-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: .5rem; color: var(--text-2); line-height: 1.75; }
.post-body img { border-radius: var(--r); margin: 1.75rem 0; max-width: 100%; height: auto; }
.post-body blockquote { border-left: 3px solid var(--red); padding: 1rem 1.5rem; background: var(--bg); border-radius: 0 var(--r) var(--r) 0; margin: 2rem 0; font-style: italic; color: var(--text-2); }
.post-body code { font-family: monospace; background: var(--bg); padding: .15rem .45rem; border-radius: 3px; font-size: .88em; color: var(--text); border: 1px solid var(--border); }
.post-body pre { background: var(--ink); color: #e8e8e8; padding: 1.5rem; border-radius: var(--r); overflow-x: auto; margin: 2rem 0; }
.post-body pre code { background: transparent; padding: 0; border: none; color: inherit; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: .9rem; }
.post-body table th { background: var(--bg); font-weight: 700; text-align: left; padding: .65rem .85rem; border: 1px solid var(--border); color: var(--text); }
.post-body table td { padding: .65rem .85rem; border: 1px solid var(--border); color: var(--text-2); }
.post-body table tr:nth-child(even) td { background: var(--bg); }

/* Pagination */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 3rem; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .85rem; color: var(--text-2); font-weight: 500; }
.pagination a:hover, .pagination .current { background: var(--red); color: #fff; border-color: var(--red); }

/* 404 */
.not-found-wrap { min-height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 0; padding-top: calc(72px + 3rem); }
.nf-num { font-size: clamp(8rem, 18vw, 14rem); font-weight: 900; color: var(--bg-2); line-height: 1; display: block; letter-spacing: -.04em; }

/* Single product */
.product-single-wrap { padding: 4rem 0; }
.product-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; margin-bottom: 4rem; }
.product-gallery-main { background: var(--bg); height: 420px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 5rem; overflow: hidden; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-specs { margin: 1.75rem 0; }
.product-specs h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); margin-bottom: .9rem; font-weight: 700; }
.product-specs table { width: 100%; border-collapse: collapse; }
.product-specs td { padding: .65rem .75rem; font-size: .9rem; border-bottom: 1px solid var(--border-lt); }
.product-specs td:first-child { font-weight: 700; color: var(--text-2); width: 42%; }
.product-specs tr:last-child td { border-bottom: none; }
.product-content { border-top: 1px solid var(--border); padding-top: 3.25rem; }
.related-products { padding-top: 3.25rem; border-top: 1px solid var(--border); margin-top: 3.25rem; }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5rem; padding: 4rem 0; }

/* ============================================================
   DIFF / COMPARISON TABLE
   ============================================================ */
.diff-section { }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.diff-table { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.diff-table-head {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--dark-2); padding: .9rem 1.25rem;
}
.dth { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.dth.highlight { color: var(--red); }
.diff-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  padding: .9rem 1.25rem; border-bottom: 1px solid var(--border);
  background: #fff; transition: background var(--dur) var(--ease);
}
.diff-row:last-child { border-bottom: none; }
.diff-row:hover { background: var(--bg); }
.dr-label { font-size: .85rem; font-weight: 600; color: var(--text); }
.dr-them { font-size: .83rem; color: var(--text-4); }
.dr-them::before { content: '✗ '; color: var(--text-4); }
.dr-us { font-size: .83rem; color: var(--text); font-weight: 600; }
.dr-us::before { content: '✓ '; color: var(--red); }

/* ============================================================
   AEO SECTION
   ============================================================ */
.aeo-section { }
.aeo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.aeo-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all var(--dur) var(--ease);
}
.aeo-card:hover { box-shadow: var(--sh-sm); border-color: var(--red-bdr); }
.aeo-q { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .85rem; line-height: 1.4; }
.aeo-q::before { content: 'Q: '; color: var(--red); }
.aeo-a { font-size: .85rem; color: var(--text-3); line-height: 1.78; }

/* ============================================================
   PAGE TEMPLATES — Phase 6 Components
   ============================================================ */

/* Two-col intro */
.two-col-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
@media(max-width:768px) { .two-col-intro { grid-template-columns: 1fr; gap: 2rem; } }
.info-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; }
.info-box h4 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--text-3); }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.check-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: var(--text-2); }
.check-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: .1em; }
.limit-list li::before { content: '!'; color: var(--text-3); }

/* App grid */
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.app-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; }
.app-icon { font-size: 1.85rem; margin-bottom: .85rem; }
.app-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.app-card p { font-size: .9rem; color: var(--text-3); margin-bottom: .75rem; }
.app-link { font-size: .82rem; font-weight: 600; color: var(--red); }
.app-link:hover { text-decoration: underline; }

/* Material table */
.mat-table-wrap { overflow-x: auto; }
.mat-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.mat-table th { background: var(--dark-2); color: var(--white); padding: .8rem 1.1rem; text-align: left; font-weight: 600; white-space: nowrap; }
.mat-table td { padding: .7rem 1.1rem; border-bottom: 1px solid var(--border); color: var(--text-2); }
.mat-table tr:hover td { background: var(--bg); }
.mat-table a { color: var(--red); font-weight: 600; }

/* Process grid (page templates) */
.process-grid-tmpl { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.process-step-tmpl { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--r); padding: 1.75rem; }
.ps-num-tmpl { font-size: 1.85rem; font-weight: 900; color: var(--red); opacity: .25; margin-bottom: .5rem; }
.process-step-tmpl h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.process-step-tmpl p { font-size: .9rem; color: var(--text-3); }

/* Why grid (page templates) */
.why-grid-tmpl { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.why-card-tmpl { padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--r); }
.why-num-tmpl { font-size: 1.85rem; font-weight: 900; color: var(--red); opacity: .2; margin-bottom: .5rem; }
.why-card-tmpl h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card-tmpl p { font-size: .9rem; color: var(--text-3); }

/* Link card grid */
.link-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.link-card { display: flex; flex-direction: column; gap: .55rem; padding: 1.4rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); transition: all var(--dur) var(--ease); }
.link-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(200,16,46,.08); transform: translateY(-2px); }
.lc-label { font-size: .88rem; font-weight: 700; color: var(--text); }
.link-card p { font-size: .82rem; color: var(--text-3); margin: 0; flex: 1; }
.lc-arr { font-size: .95rem; color: var(--red); font-weight: 700; }

/* Material cards (injection molding) */
.mat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.1rem; margin-top: 2rem; }
.mat-card-sm { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.4rem; }
.mat-name { font-size: .975rem; font-weight: 700; margin-bottom: .25rem; }
.mat-name a { color: var(--text); }
.mat-name a:hover { color: var(--red); }
.mat-prop { font-size: .82rem; color: var(--red); margin-bottom: .25rem; }
.mat-use { font-size: .8rem; color: var(--text-3); }

/* FAQ page layout */
.faq-page-layout { display: grid; grid-template-columns: 230px 1fr; gap: 3.5rem; align-items: start; }
@media(max-width:768px) { .faq-page-layout { grid-template-columns: 1fr; } }
.faq-sidebar { position: sticky; top: 110px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; }
.faq-sidebar h3 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--text-3); }
.faq-sidebar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.faq-sidebar li a { font-size: .9rem; color: var(--text-2); }
.faq-sidebar li a:hover { color: var(--red); }
.faq-main h2 { font-size: 1.3rem; font-weight: 700; margin: 0 0 1rem; border-bottom: 2px solid var(--border); padding-bottom: .75rem; }

/* Quote page */
.quote-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }
@media(max-width:900px) { .quote-layout { grid-template-columns: 1fr; } }
.quote-steps { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.qs-step { display: flex; gap: 1rem; align-items: flex-start; }
.qs-num { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: var(--white); font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1em; }
.qs-text strong { display: block; font-size: .92rem; font-weight: 700; margin-bottom: .2rem; }
.qs-text p { font-size: .83rem; color: var(--text-3); margin: 0; }
.quote-tip-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.4rem; margin: 1.5rem 0; }

/* Industries hub */
.ind-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.ind-hub-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; transition: all var(--dur) var(--ease); text-decoration: none; }
.ind-hub-card:hover { border-color: var(--red); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.ind-hub-icon { font-size: 2rem; margin-bottom: 1rem; }
.ind-hub-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
.ind-hub-card p { font-size: .85rem; color: var(--text-3); margin: 0; flex: 1; }
.ind-hub-link { font-size: .78rem; font-weight: 700; color: var(--red); margin-top: 1rem; text-transform: uppercase; letter-spacing: .08em; }

/* Materials hub */
.mat-hub-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.mat-hub-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: all var(--dur-lg) var(--ease);
  position: relative; overflow: hidden;
}
.mat-hub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--mat-color, var(--red));
}
.mat-hub-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.mhc-header { display: flex; align-items: center; gap: 1rem; }
.mhc-badge {
  font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  padding: .3rem .85rem; border-radius: 50px; border: 1px solid;
  flex-shrink: 0;
}
.mhc-title { font-size: 1.2rem; font-weight: 900; color: var(--text); line-height: 1.1; }
.mhc-full { font-size: .72rem; color: var(--text-3); margin-top: .2rem; }
.mhc-desc { font-size: .88rem; color: var(--text-2); line-height: 1.78; }
.mhc-uses {
  font-size: .8rem; color: var(--text-2); line-height: 1.6;
  background: var(--bg); border-radius: var(--r);
  padding: .65rem .85rem;
}
.mhc-uses strong { color: var(--text); }
.mhc-temp { font-size: .75rem; font-weight: 700; color: var(--text-3); }
.mhc-temp em { color: var(--red); font-style: normal; }
.mhc-pros { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .1rem; }
.mhc-pro {
  font-size: .72rem; font-weight: 600; color: var(--text-2);
  background: rgba(16,185,129,.07); border: 1px solid rgba(16,185,129,.2);
  border-radius: 50px; padding: .2rem .7rem;
}
.mhc-link { font-size: .82rem; font-weight: 700; color: var(--red); margin-top: auto; padding-top: .35rem; }
.mhc-link:hover { text-decoration: underline; }
@media(max-width:900px) { .mat-hub-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .mat-hub-grid { grid-template-columns: 1fr; } }

/* Guide layout */
.guide-toc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem 2rem; margin-bottom: 2rem; }
.guide-toc h3 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 1rem; }
.guide-toc ol { list-style: decimal; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.guide-toc ol li { font-size: .9rem; color: var(--text-2); }
.guide-toc ol li a { color: var(--red); }
.guide-toc ol li a:hover { text-decoration: underline; }
.guide-content { max-width: 820px; }
.guide-content h2 { font-size: 1.6rem; margin-top: 3.5rem; margin-bottom: 1rem; color: var(--text); }
.guide-content h2:first-child { margin-top: 0; }
.guide-content p { font-size: .95rem; color: var(--text-2); line-height: 1.9; margin-bottom: 1.1rem; }
.guide-list { padding-left: 1.25rem; margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.guide-list li { font-size: .92rem; color: var(--text-2); line-height: 1.75; }
.guide-list.ordered { list-style: decimal; }
.guide-steps { display: flex; flex-direction: column; gap: 3rem; }
.guide-step { display: flex; gap: 2rem; align-items: flex-start; }
.gs-num { width: 48px; height: 48px; min-width: 48px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin-top: .2rem; }
.gs-content { flex: 1; }
.gs-content h3 { font-size: 1.15rem; margin-bottom: .75rem; }

/* Industry template product list */
.industry-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.industry-product-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative; overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.industry-product-item::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-lg) var(--ease);
}
.industry-product-item:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.industry-product-item:hover::before { transform: scaleX(1); }
.ipi-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  color: var(--bg-2); line-height: 1;
  letter-spacing: -.05em; margin-bottom: .65rem;
}
.industry-product-item h4 { font-size: .975rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; line-height: 1.3; }
.industry-product-item p { font-size: .85rem; color: var(--text-3); margin: 0; line-height: 1.72; }

/* Material template */
.material-prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.material-prop-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 1.1rem 1.25rem; }
.mprop-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: .3rem; }
.mprop-val { font-size: 1rem; font-weight: 700; color: var(--text); }

/* ============================================================
   INDUSTRIES HUB PAGE
   ============================================================ */
.ihub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.ihub-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: all var(--dur-lg) var(--ease);
  position: relative; overflow: hidden;
}
.ihub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-lg) var(--ease);
}
.ihub-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.ihub-card:hover::before { transform: scaleX(1); }
.ihub-top { display: flex; align-items: center; gap: 1rem; }
.ihub-icon {
  font-size: 1.6rem; width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(200,16,46,.07); border: 1px solid rgba(200,16,46,.13);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.ihub-title { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: .2rem; }
.ihub-sub { font-size: .75rem; color: var(--text-3); }
.ihub-desc { font-size: .88rem; color: var(--text-2); line-height: 1.75; }
.ihub-products {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
  border-top: 1px solid var(--border); padding-top: .75rem; margin-top: .25rem;
}
.ihub-products li {
  font-size: .8rem; color: var(--text-3);
  padding-left: 1rem; position: relative;
}
.ihub-products li::before { content: '•'; color: var(--red); position: absolute; left: 0; font-weight: 700; }
.ihub-link { font-size: .82rem; font-weight: 700; color: var(--red); margin-top: auto; padding-top: .5rem; }
.ihub-link:hover { text-decoration: underline; }

/* Other industries tags */
.industry-tags { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-top: 2rem; }
.industry-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: .45rem 1.15rem;
  font-size: .82rem; font-weight: 600; color: var(--text-2);
}
@media(max-width:600px) {
  .industry-tags { display: grid; grid-template-columns: repeat(2,1fr); gap: .65rem; }
  .industry-tag { text-align: center; border-radius: var(--r); padding: .65rem 1rem; }
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.proc-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2.25rem;
  align-items: start;
}
.proc-step + .proc-step {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.proc-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(200,16,46,.25);
}
.proc-body { padding-top: .35rem; }
.proc-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; line-height: 1.3; }
.proc-body p { font-size: .94rem; color: var(--text-2); line-height: 1.85; margin-bottom: .65rem; }
.proc-body p:last-child { margin-bottom: 0; }
.proc-body .check-list { margin: .5rem 0 .75rem; }
@media(max-width:600px) {
  .proc-step { grid-template-columns: 1fr; gap: .85rem; }
  .proc-num { width: 52px; height: 52px; font-size: 1.1rem; margin: 0 auto; }
  .proc-body .btn { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-ready { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.anim-ready.anim-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1200px) {
  .materials-grid { grid-template-columns: repeat(4,1fr); }
  .hero-inner { gap: 3.5rem; }
}
@media(max-width:1100px) {
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-grid::before { display: none; }
}
@media(max-width:1024px) {
  :root { --section-py: 5rem; }
  .section { padding: 5.5rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(3,1fr); }
  .capabilities-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .services-main-grid { grid-template-columns: 1fr; }
  .rfq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .aeo-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.25rem,6vw,3.25rem); }
  .quality-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-item { grid-template-columns: 1fr; }
  .svc-num { font-size: 2.5rem; text-align: left; }
  .product-single-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .primary-nav, .nav-quote { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 0; }
  .hero-stats { flex-direction: column; }
  .hero-stat {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.06);
    padding-right: 0; margin-right: 0; padding-bottom: .85rem; margin-bottom: 0;
  }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; }
  .blog-layout, .single-layout { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .capabilities-grid { grid-template-columns: repeat(2,1fr); }
  .materials-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps-wrap { grid-template-columns: repeat(2,1fr); }
  .aeo-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 4.5rem 0; }
  /* CTA strips with inline 1fr auto grid */
  .section [style*="grid-template-columns:1fr auto"],
  .section [style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  /* Hero stats row */
  .hero-stats { gap: .85rem; flex-wrap: wrap; }
  /* Diff/comparison table */
  .diff-table-head, .diff-row { grid-template-columns: 1fr 1fr !important; }
  .diff-row .dr-label { display: none; }
}
@media(max-width:480px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .btn { white-space: normal; text-align: center; }
  p > .btn { display: flex; width: 100%; box-sizing: border-box; justify-content: center; }
  .about-cta-btns { flex-direction: column; }
  .about-cta-btns .btn { width: 100%; box-sizing: border-box; justify-content: center; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .trust-tag { padding: 1rem 1.25rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-steps-wrap { grid-template-columns: 1fr; }
  .hv-stat-a, .hv-stat-b { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}
