/* ============================================================
   CUTSTUDIO.LT — shared styles
   Bold modern industrial. Steel/aluminum + safety orange.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink:        #0E0F11;
  --ink-2:      #1A1C1F;
  --steel-900:  #24272B;
  --steel-700:  #3A3F45;
  --steel-500:  #6B7079;
  --steel-300:  #A8ADB4;
  --steel-200:  #C9CDD2;
  --steel-100:  #E6E8EB;
  --aluminum:   #F2F3F5;
  --paper:      #FAFAFA;

  --orange:     #FF5B1F;
  --orange-ink: #E24A10;
  --yellow:     #FFC93C;

  --radius:     2px;

  --font-display: 'Space Grotesk', Helvetica, Arial, sans-serif;
  --font-body:    'Space Grotesk', Helvetica, Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- mono eyebrow / labels ---- */
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--steel-100);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-logo {
  display: block;
  width: auto;
  height: 40px;
}
.brand-mark {
  width: 26px;
  height: 26px;
  background: var(--ink);
  position: relative;
  display: inline-block;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--orange);
}
.brand-mark::before {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 2px;
  transform: translateX(-50%);
}
.brand-mark::after {
  top: 50%;
  left: 3px;
  right: 3px;
  height: 2px;
  transform: translateY(-50%);
}
.brand-dot {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--steel-700);
  position: relative;
  padding: 4px 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -26px;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .15s;
}
.nav-cta:hover { background: var(--orange); }
.nav-cta .arrow { transition: transform .2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }

/* ---- Hamburger toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile drawer ---- */
.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 49;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.nav-open .nav-drawer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-drawer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer__links {
  display: flex;
  flex-direction: column;
}
.nav-drawer__links a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--steel-300);
  padding: 20px 0;
  border-bottom: 1px solid var(--steel-700);
  transition: color 0.15s, padding-left 0.2s;
  text-decoration: none;
}
.nav-drawer__links a:first-child { border-top: 1px solid var(--steel-700); }
.nav-drawer__links a:hover { color: #fff; padding-left: 8px; }
.nav-drawer__links a.active { color: var(--orange); }
.nav-drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  background: var(--orange);
  color: #fff;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  align-self: flex-start;
}
.nav-drawer__cta:hover { background: var(--orange-ink); }
.nav-drawer__cta .arrow { transition: transform 0.2s; }
.nav-drawer__cta:hover .arrow { transform: translateX(3px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--steel-200);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--orange); }

.cta-inner .btn-dark:hover {
	background-color: var(--orange-ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--steel-300);
  padding: 80px 0 40px;
  margin-top: 120px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--steel-700);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-500);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-links a:hover { color: var(--orange); }
.footer-lede {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 360px;
  margin-top: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   PLACEHOLDER IMAGERY
   ============================================================ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--steel-100) 0 10px,
      var(--aluminum) 10px 20px
    );
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-500);
  background: var(--paper);
  padding: 4px 8px;
  border: 1px solid var(--steel-200);
}
.ph-dark {
  background:
    repeating-linear-gradient(
      135deg,
      #17191C 0 10px,
      #1F2226 10px 20px
    );
}
.ph-dark::after {
  color: var(--steel-300);
  background: var(--ink-2);
  border-color: var(--steel-700);
}

/* ============================================================
   TAG / CHIP
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--steel-100);
  color: var(--steel-700);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chip-accent {
  background: var(--orange);
  color: #fff;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
  padding: 120px 0;
}
.section-hd {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-title {
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.section-title .accent { color: var(--orange); }
.section-sub {
  font-size: 18px;
  color: var(--steel-700);
  line-height: 1.5;
  max-width: 540px;
}

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--steel-100);
  background:
    linear-gradient(var(--paper), var(--paper)),
    repeating-linear-gradient(90deg, var(--steel-100) 0 1px, transparent 1px 80px);
  background-blend-mode: normal;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--steel-100) 1px, transparent 1px);
  background-size: 80px 100%;
  opacity: 0.6;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 1100px;
}
.page-hero .lede {
  font-size: 20px;
  color: var(--steel-700);
  max-width: 720px;
  margin-top: 32px;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .section { padding: 64px 0; }
  .section-hd { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section-title { font-size: 44px; }
  .page-hero { padding: 52px 0 60px; }
  .page-hero h1 { font-size: 44px; line-height: 1.02; }
  .page-hero .lede { font-size: 17px; margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
}


/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--orange);
}
.hero h1 {
  font-size: clamp(60px, 9vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero h1 .line-accent {
  color: var(--orange);
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 12px;
}
.hero-side p {
  font-size: 18px;
  color: var(--steel-300);
  line-height: 1.55;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-actions .btn-primary { background: var(--orange); }
.hero-actions .btn-ghost {
  color: #fff;
  border-color: var(--steel-700);
}
.hero-actions .btn-ghost:hover { border-color: #fff; }

/* ---------- ticker under hero ---------- */
.ticker {
  background: var(--orange);
  color: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker-track {
  display: inline-flex;
  gap: 50px;
  animation: ticker 40s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 50px; }
.ticker-track span::after {
  content: "◆";
  color: var(--ink);
  opacity: 0.5;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- stats bar ---------- */
.stats {
  border-bottom: 1px solid var(--steel-100);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.stat-num .unit {
  font-size: 32px;
  color: var(--steel-500);
  margin-left: 4px;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-500);
}

/* ---------- services cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--steel-100);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s, transform .2s;
  min-height: 420px;
}
.svc-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--orange);
}
.svc-title {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  min-height: 92px;
}
.svc-desc {
  color: var(--steel-700);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.svc-more::after {
  content: "→";
  transition: transform .2s;
}
.svc-card:hover .svc-more::after { transform: translateX(4px); }

.svc-visual {
  height: 160px;
  min-height: 160px;
  margin: -36px -32px 0;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

/* Icon variant: dark panel with centred SVG */
.svc-icon {
  height: 160px;
  min-height: 160px;
  margin: -36px -32px 0;
  margin-bottom: 12px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.svc-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 100%;
  pointer-events: none;
}
.svc-icon svg {
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 1;
  transition: transform .25s;
}
.svc-card:hover .svc-icon { background: var(--ink-2); }
.svc-card:hover .svc-icon svg { transform: scale(1.08); }

/* ---------- materials showcase ---------- */
.mat-intro {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.mat-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}
.mat-intro .container { position: relative; z-index: 1; }
.mat-intro .section-title { color: #fff; }
.mat-intro .section-sub { color: var(--steel-300); }

.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.mat-card {
  background: var(--ink-2);
  border: 1px solid var(--steel-700);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, background .2s;
  min-height: 360px;
}
.mat-card:hover {
  border-color: var(--orange);
  background: #1F2226;
}
.mat-swatch {
  height: 160px;
  min-height: 160px;
  margin: -24px -24px 0;
  position: relative;
}
.mat-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
}
.mat-name {
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 600;
  min-height: 46px;
}
.mat-desc {
  font-size: 13px;
  color: var(--steel-300);
  line-height: 1.5;
  flex: 1;
}

/* swatch textures */
.sw-pvc   { background: linear-gradient(135deg, #F5F5F2 0%, #E8E8E3 100%); }
.sw-akp   { background:
  linear-gradient(135deg, #B8BDC4 0%, #8A9099 100%);
}
.sw-akp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.15) 0 1px, transparent 1px 8px);
}
.sw-pc    { background: linear-gradient(135deg, rgba(180,210,230,0.35) 0%, rgba(200,220,235,0.55) 100%); }
.sw-pc::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 14px);
}
.sw-pmma  { background: linear-gradient(135deg, #F8F8F8 0%, #D8DCE0 100%); opacity: 0.9; }
.sw-pmma::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.6) 48%, transparent 56%);
}

/* ---------- industries ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--steel-100);
  border-bottom: 1px solid var(--steel-100);
}
.ind {
  padding: 60px 40px;
  border-right: 1px solid var(--steel-100);
  position: relative;
  transition: background .2s;
}
.ind:last-child { border-right: none; }
.ind:hover { background: var(--aluminum); }
.ind-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel-500);
  margin-bottom: 20px;
}
.ind h3 {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ind p {
  color: var(--steel-700);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.ind ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ind ul li {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  background: var(--paper);
  border: 1px solid var(--steel-200);
  color: var(--steel-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ind:hover ul li { background: #fff; }

/* ---------- process ---------- */
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr 2fr 140px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--steel-100);
  align-items: center;
  transition: padding .2s;
}
.process-step:hover {
  padding-left: 20px;
}
.process-step:first-child { border-top: 1px solid var(--steel-100); }
.ps-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--orange);
}
.ps-title {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.ps-desc {
  color: var(--steel-700);
  font-size: 15px;
  line-height: 1.5;
}
.ps-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-500);
  text-align: right;
}

/* ---------- CTA block ---------- */
.cta-block {
  background: var(--orange);
  color: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.08) 0%, transparent 70%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
}
.cta-inner h2 {
  font-size: 88px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.cta-inner .btn-dark { font-size: 16px; padding: 18px 30px; }

@media (max-width: 960px) {
  .hero { min-height: 0; padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mat-grid { grid-template-columns: 1fr 1fr; }
  .industries { grid-template-columns: 1fr; }
  .ind { border-right: none; border-bottom: 1px solid var(--steel-100); }
  .process-step { grid-template-columns: 80px 1fr; gap: 16px; }
  .ps-desc, .ps-meta { grid-column: 1 / -1; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-inner h2 { font-size: 44px; }
}

/* ============================================================
   SMALL PHONE  ≤580px
   ============================================================ */
@media (max-width: 580px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 40px 0 48px; }
  .page-hero { padding: 36px 0 44px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero .lede { font-size: 15px; margin-top: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .mat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 20px 0; border-bottom: 1px solid var(--steel-100); }
  .stat-num { font-size: 52px; }
  .stat-num .unit { font-size: 24px; }
  .cta-inner h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-title { font-size: 36px; }
  .section-hd { margin-bottom: 32px; }
}
/* ---- Dark-section button overrides ---- */
.mat-intro .btn-ghost,
.mat-intro .btn-ghost { color: #fff; border-color: var(--steel-700); }
.mat-intro .btn-ghost:hover { border-color: #fff; }
.mat-intro .eyebrow  { color: var(--steel-500); }

/* Hero side mono label */
.hero-side .mono { color: var(--steel-500); margin-bottom: 0; }

/* Footer brand white */
.footer .brand { color: #fff; }

/* CTA block mono */
.cta-block .mono { color: var(--ink); opacity: .6; margin-bottom: 24px; }