/* ============================================================
   P&P COLORISMÉDIA — Shared Stylesheet
   Colors: indigo #3440C4 (primary), grey #4A5568
   green #2B5C3A is retained only for the "À faire / À éviter" do-list accent
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --green:      #2B5C3A;
  --green-dk:   #1D4029;
  --green-lt:   #3A7A50;
  --indigo:     #3440C4;
  --indigo-dk:  #2530A8;
  --indigo-lt:  #5A64D8;
  --grey:       #4A5568;
  --grey-lt:    #8A95A3;
  --black:      #111814;
  --white:      #ffffff;
  --off-white:  #F5F6F4;
  --light:      #EDF0EB;
  --muted:      #6B7580;
  --border:     #D4D9D1;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ───────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 100px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 77px; width: auto; }
.nav-logo-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--indigo); border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-badge span {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; letter-spacing: 0.3px; font-weight: 700;
  color: var(--white); line-height: 1.2;
  -webkit-text-stroke: 0.4px currentColor;
}
.nav-logo-sub {
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  display: block;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.7);
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:not(.nav-cta).active {
  text-decoration: underline;
  text-decoration-color: var(--indigo-lt);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.nav-drawer a.active { color: var(--white) !important; }
.nav-cta {
  font-size: 12px !important; font-weight: 600 !important;
  background: var(--indigo); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px;
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--indigo-dk) !important; }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 99;
  flex-direction: column; padding: 40px 32px; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  color: rgba(255,255,255,0.65);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .nav-cta {
  margin-top: 16px; text-align: center; border-bottom: none;
  padding: 16px; border-radius: 6px; font-size: 14px !important;
  background: var(--indigo); color: var(--white) !important;
}

/* ── LANGUAGE SWITCHER ────────────────────────────────── */
.nav-lang-switch {
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px; padding: 7px 16px; transition: all .2s; white-space: nowrap;
}
.nav-lang-switch:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.nav-drawer .nav-lang-switch {
  display: inline-block; align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 12px;
}
.nav-drawer .nav-lang-switch:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ── NAV DROPDOWNS (desktop) ──────────────────────────── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-item > a {
  display: flex !important;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-chevron {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  transition: transform .2s, color .2s;
  display: inline-block;
  margin-top: 1px;
  font-style: normal;
}
.nav-item:hover > a { color: var(--white); }
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.55);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 300;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}
/* caret */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(255,255,255,0.1);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #111;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-links .nav-dropdown a {
  display: block !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.72) !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: background .15s, color .15s !important;
  white-space: nowrap;
  text-decoration: none !important;
}
.nav-links .nav-dropdown a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white) !important;
}
.nav-links .nav-dropdown a.active {
  text-decoration: none !important;
  background: rgba(255,255,255,0.06);
  color: var(--white) !important;
}
.nav-dropdown-all {
  color: var(--indigo) !important;
  font-weight: 600 !important;
  margin-top: 2px;
}
.nav-dropdown-all:hover { background: rgba(52,64,196,0.2) !important; }
.nav-dropdown-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 5px 6px;
}
/* Industries dropdown slightly wider */
.nav-dropdown-industries { min-width: 240px; }

/* ── NAV DRAWER ACCORDION (mobile) ───────────────────── */
.drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-item > a {
  border-bottom: none !important;
  flex: 1;
  padding-right: 0 !important;
}
.drawer-toggle-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 16px;
  padding: 14px 0 14px 16px;
  cursor: pointer;
  line-height: 1;
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
.drawer-item.open .drawer-toggle-btn {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.65);
}
.drawer-sub-links {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-sub-links.open { display: flex; }
.drawer-sub-links a {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.45) !important;
  padding: 10px 0 !important;
  border-bottom: none !important;
  transition: color .15s;
}
.drawer-sub-links a:hover { color: rgba(255,255,255,0.85) !important; }
.drawer-sub-links .drawer-sub-all {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--indigo) !important;
  margin-top: 4px;
}

/* ── INNER PAGE HERO ───────────────────────────────────── */
.page-hero {
  padding: 120px 64px 64px;
  background-color: var(--black);
  background-image:
    linear-gradient(to right, rgba(17,24,20,0.94) 42%, rgba(17,24,20,0.76) 100%),
    url('../img/lasercut-industry.jpeg');
  background-size: cover; background-position: center center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--indigo);
}
.page-hero-eyebrow {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--indigo-lt); margin-bottom: 16px; font-weight: 500;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800; line-height: 1; letter-spacing: -2px;
  color: var(--white); max-width: 700px;
}
.page-hero h1 .accent { color: var(--indigo); }
.page-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.45);
  max-width: 520px; line-height: 1.7; font-weight: 300;
  margin-top: 20px;
}

/* ── HOME HERO ──────────────────────────────────────────── */
/* ── HERO — split layout ─────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 660px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  background: var(--black);
  padding: 120px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--indigo); z-index: 1;
}
.hero-image-panel {
  position: relative;
  background-image: url('../img/lasercut-industry.jpeg');
  background-size: cover;
  background-position: center center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: .18em;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; line-height: 1.0;
  color: var(--white); letter-spacing: -1.5px;
  max-width: 640px; margin-bottom: 28px;
}
.hero h1 .accent { color: var(--indigo); }
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.45);
  line-height: 1.7; max-width: 440px; font-weight: 300;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Display font override for headings and bold UI text */
.hero h1,
.nav-logo-badge span,
.nav-logo-text,
.nav-drawer a,
.btn-primary,
.btn-outline,
.btn-outline-light,
.btn-green,
.section-title,
.mat-name,
.why-title,
.step-title,
.btn-mat,
.break-quote blockquote,
.break-quote-badge span {
  font-family: 'Space Grotesk', sans-serif;
}

/* ── MATERIALS SECTION ─────────────────────────────────── */
.materials { padding: 80px 64px; background: var(--white); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.section-header-right { font-size: 14px; color: var(--muted); max-width: 360px; line-height: 1.7; font-weight: 300; }
.materials-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.mat-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.mat-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(17,24,20,0.08); }
.mat-card-image {
  min-height: 220px;
  background-size: cover; background-position: center;
}
.mat-card .mat-badge,
.mat-card .mat-name,
.mat-card .mat-subtitle,
.mat-card .mat-desc,
.mat-card .mat-specs,
.mat-card .btn-mat {
  padding-left: 24px;
  padding-right: 24px;
}
.mat-card .mat-badge { padding-top: 24px; }
.mat-card .mat-name { margin-top: 14px; }
.mat-card .mat-desc { margin: 16px 0 22px; }
.mat-card .mat-specs { margin-bottom: 24px; }
.mat-card .btn-mat { margin: 0 24px 24px; }
.mat-card.featured::after {
  background: var(--indigo-lt); opacity: 1;
}
.mat-card.featured .mat-name,
.mat-card.featured .mat-desc { color: var(--black); }
.mat-card.featured .mat-spec { color: var(--muted); }
.mat-card.featured .mat-subtitle { color: var(--grey-lt); }
.mat-card.featured .mat-badge { color: var(--indigo); }
.mat-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; display: block;
}
.mat-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--black); letter-spacing: -0.3px; line-height: 1.12;
}
.mat-subtitle {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--grey-lt); margin-top: 2px; font-weight: 400;
}
.mat-divider { display: none; }
.mat-desc { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.mat-specs { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mat-spec {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  display: flex; align-items: flex-start; gap: 10px; font-weight: 300;
}
.mat-spec::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--indigo); border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.btn-mat {
  display: block; text-align: center; font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; padding: 14px 24px;
  border-radius: 6px; border: 1.5px solid var(--black);
  color: var(--black); transition: background .2s, color .2s;
}
.btn-mat:hover { background: var(--black); color: var(--white); }

/* ── WHY P&P ────────────────────────────────────────────── */
.why { padding: 72px 32px 32px; background: transparent; }
.why-inner { background: var(--indigo); border-radius: 12px; padding: 64px 48px; width: 100%; display: grid; grid-template-columns: minmax(320px, 420px) minmax(0, 1fr); gap: 56px; max-width: none; margin: 0 auto 32px; align-items: center; box-shadow: 0 24px 80px rgba(17,24,20,0.12); }
.why-left { display: flex; flex-direction: column; justify-content: center; }
.why-left .section-eyebrow { color: rgba(255,255,255,0.75); letter-spacing: 0.26em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; font-weight: 600; }
.why-headline { font-size: clamp(44px, 6vw, 68px); line-height: 0.98; margin: 0; color: #fff; max-width: 12ch; }
.why-right { display: grid; gap: 20px; }
.why-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; padding: 26px 28px; min-height: 150px; align-items: center; }
.why-card-icon { width: 56px; height: 56px; border-radius: 6px; background: rgba(255,255,255,0.18); display: grid; place-items: center; }
.why-card-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin: 0; line-height: 1.2; }
.why-card-copy { margin: 0; font-size: 14px; color: rgba(255,255,255,0.86); line-height: 1.75; font-weight: 300; }
.why-stat { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1; }
.why-stat-label { font-size: 10px; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); text-transform: uppercase; margin-top: 4px; }

/* ── PROCESS STRIP ─────────────────────────────────────── */
.process { padding: 100px 64px; background: #eef4ff; }
.process-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; margin-top: 48px; }
.process-step {
  background: #ffffff; border: 1px solid rgba(17,24,20,0.08);
  border-radius: 8px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 240px;
  box-shadow: 0 24px 50px rgba(17,24,20,0.06);
}
.step-num {
  width: 52px; height: 52px; border-radius: 6px;
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--white); background: var(--indigo);
}
.step-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--black); letter-spacing: -0.2px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── FORMATS ACCEPTED ───────────────────────────────────── */
.formats {
  padding: 72px 64px; background: var(--white);
  display: flex; align-items: center; gap: 80px;
}
.formats-left { flex: 1; }
.formats-right { flex: 1; }
.formats-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.format-tag {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 12px 20px; color: var(--black);
  letter-spacing: 0.5px;
}
.format-tag.highlight { background: var(--indigo); border-color: var(--indigo); color: var(--white); }
.formats-rules { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.format-rule {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300;
}
.format-rule strong { color: var(--black); font-weight: 500; }
.rule-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--indigo);
  flex-shrink: 0; margin-top: 6px;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  background: var(--indigo); color: var(--white);
  padding: 14px 32px; border-radius: 6px;
  transition: background .2s, transform .15s;
  display: inline-block; white-space: nowrap; cursor: pointer; border: none;
  letter-spacing: .03em;
}
.btn-primary:hover { background: var(--indigo-dk); transform: translateY(-1px); }
.btn-outline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  background: transparent; color: var(--black);
  padding: 13px 32px; border-radius: 6px;
  border: 1.5px solid var(--black);
  transition: background .2s, color .2s;
  display: inline-block; white-space: nowrap; cursor: pointer;
  letter-spacing: .03em;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  background: transparent; color: var(--white);
  padding: 13px 32px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color .2s, background .2s;
  display: inline-block; white-space: nowrap; cursor: pointer;
  letter-spacing: .03em;
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-green {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  background: var(--indigo); color: var(--white);
  padding: 14px 32px; border-radius: 6px;
  transition: background .2s, transform .15s;
  display: inline-block; white-space: nowrap; cursor: pointer; border: none;
  letter-spacing: .03em;
}
.btn-green:hover { background: var(--indigo-dk); transform: translateY(-1px); }

/* ── SECTION COMMON ────────────────────────────────────── */
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 20px; font-weight: 600;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  line-height: 1.1; color: var(--black);
  letter-spacing: -1.5px;
}
.section-title.light { color: var(--white); }

/* ── STATS BAND ────────────────────────────────────────── */
.stats {
  padding: 0 64px;
  background: var(--indigo);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 0; border-right: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-item:first-child { padding-right: 40px; }
.stat-item:not(:first-child) { padding-left: 40px; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 800; color: #ffffff;
  line-height: 1; letter-spacing: -2px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.2px; }

/* ── BREAK QUOTE ───────────────────────────────────────── */
.break-quote {
  background: var(--indigo);
  padding: 72px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 64px;
}
.break-quote blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.8vw, 32px); font-weight: 700;
  color: var(--white); line-height: 1.25;
  letter-spacing: -0.5px; max-width: 700px;
}
.break-quote blockquote em {
  font-style: italic; font-family: 'Space Grotesk', sans-serif;
  font-weight: 300; opacity: 0.65;
}
.break-quote-right { flex-shrink: 0; text-align: center; }
.break-quote-right img { height: 80px; width: auto; opacity: 0.2; margin: 0 auto 8px; }
.break-quote-right span {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); display: block;
}
.break-quote-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.break-quote-badge span {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}

/* ── INDUSTRIES BAND ───────────────────────────────────── */
.industries-band {
  background: var(--indigo);
  padding: 40px 64px;
  display: flex; align-items: center; overflow: hidden; gap: 0;
}
.industries-band-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); white-space: nowrap; margin-right: 48px;
  font-weight: 400; flex-shrink: 0;
}
.industry-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.industry-tag {
  border: 1px solid rgba(255,255,255,0.25); border-radius: 100px;
  padding: 7px 18px; font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.75); white-space: nowrap;
}

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: var(--indigo); padding: 58px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  border-radius: 0;
  margin: 0;
}
.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3vw, 40px); font-weight: 700;
  color: var(--white); letter-spacing: -1px; max-width: 560px; line-height: 1.05;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.88); margin-top: 10px; font-weight: 300; }
.cta-band .btn-primary {
  background: var(--white); color: var(--indigo);
  padding: 18px 42px;
}
.cta-band .btn-primary:hover { background: #f6f7ff; color: var(--indigo); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-top {
  padding: 64px 64px 48px;
  display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap;
}
.footer-brand { max-width: 260px; }
.footer-logo-link {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.footer-logo-link img {
  width: 92px; height: auto; display: block; border-radius: 16px;
}
.footer-logo-badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--indigo); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-badge span {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 800;
  color: var(--white);
}
.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--white); line-height: 1.2;
  -webkit-text-stroke: 0.4px currentColor;
}
.footer-logo-sub {
  font-size: 9px; font-weight: 400; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6); text-transform: uppercase; display: block;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.6; font-weight: 300; margin-bottom: 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a {
  font-size: 12px; color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-nav { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-col strong {
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 4px; display: block;
}
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.8);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ── FORM SHARED ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 6px; padding: 13px 16px;
  color: var(--black); font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 300; outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(52,64,196,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── PAGE TRANSITIONS ──────────────────────────────────── */
body { animation: pageFadeIn 0.35s ease both; }
body.is-leaving { animation: pageFadeOut 0.25s ease forwards; }
@keyframes pageFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes pageFadeOut { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  body, body.is-leaving { animation: none; }
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ── PAGE HERO LOAD ANIMATION ──────────────────────────── */
.page-hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.page-hero h1 {
  opacity: 0;
  animation: heroFadeUp 0.7s 0.22s cubic-bezier(0.16,1,0.3,1) forwards;
}
.page-hero-sub {
  opacity: 0;
  animation: heroFadeUp 0.7s 0.38s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-body {
  max-width: 820px; margin: 0 auto;
  padding: 72px 64px 100px; background: var(--white);
}
.legal-lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 500; color: var(--muted); margin-bottom: 28px;
}
.legal-lang a {
  color: var(--indigo); font-weight: 600;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
  transition: color .2s;
}
.legal-lang a:hover { color: var(--indigo-dk); }
.legal-updated {
  font-size: 13px; color: var(--muted); font-weight: 300;
  padding-bottom: 28px; margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px; font-weight: 700; color: var(--black);
  letter-spacing: -0.4px; margin: 40px 0 12px;
}
.legal-body p {
  font-size: 15px; color: var(--grey); line-height: 1.85;
  font-weight: 300; margin-bottom: 14px;
}
.legal-body address {
  font-style: normal; font-size: 15px; color: var(--grey);
  line-height: 1.85; font-weight: 300;
}
.legal-body a:not(.legal-lang a) { color: var(--indigo); }
@media (max-width: 768px) {
  .legal-body { padding: 48px 20px 72px; }
}

/* ── 404 PAGE ───────────────────────────────────────────── */
.notfound-body {
  padding: 80px 64px 96px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.notfound-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.notfound-links {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
  font-size: 14px;
}
.notfound-links a { color: var(--indigo); font-weight: 500; }
.notfound-links a:hover { text-decoration: underline; }
.notfound-sep { color: var(--border); }
@media (max-width: 768px) {
  .notfound-body { padding: 56px 24px 72px; }
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */

/* Story section */
.about-story {
  padding: 80px 64px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.about-story-lead {
  font-size: 18px; font-weight: 300; color: var(--grey);
  line-height: 1.75; margin-bottom: 22px;
}
.about-story-body {
  font-size: 15px; color: var(--muted); line-height: 1.85; font-weight: 300;
}
.about-story-body p + p { margin-top: 16px; }
.about-facts { display: flex; flex-direction: column; gap: 14px; }
.about-fact {
  background: var(--off-white); border: 1px solid var(--border);
  border-left: 3px solid var(--indigo);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px; display: flex; flex-direction: column; gap: 4px;
}
.about-fact-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 800;
  color: var(--black); letter-spacing: -1px; line-height: 1;
}
.about-fact-label { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.5; }

/* Owner profile */
.about-owner {
  padding: 48px 64px; background: var(--off-white);
  display: grid; grid-template-columns: 180px 1fr; gap: 48px;
  align-items: start;
}
.about-owner-photo {
  aspect-ratio: 1/1;
  background: var(--light); border: 2px dashed var(--border);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  position: relative;
}
.about-owner-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.about-owner-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.about-owner-photo-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--border); display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.about-owner-photo-icon svg { width: 56px; height: 56px; color: rgba(74,85,104,0.4); }
.about-owner-photo-hint {
  font-size: 11px; color: var(--grey-lt); font-weight: 400;
  text-align: center; line-height: 1.6; max-width: 140px; letter-spacing: 0.2px;
}
.about-owner-content { display: flex; flex-direction: column; }
.about-owner-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.4vw, 27px); font-weight: 700;
  color: var(--black); line-height: 1.35; letter-spacing: -0.4px;
  margin-bottom: 24px; position: relative; padding-left: 4px;
}
.about-owner-quote::before {
  content: '"';
  font-family: Georgia, serif; font-size: 72px; line-height: 1;
  color: var(--indigo); opacity: 0.2;
  position: absolute; top: -18px; left: -22px;
}
.about-owner-bio {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  font-weight: 300; margin-bottom: 28px;
}
.about-owner-sig {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; flex-direction: column; gap: 3px;
}
.about-owner-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--black);
}
.about-owner-role { font-size: 12px; color: var(--muted); font-weight: 300; letter-spacing: 0.2px; }

/* Values */
.about-values { padding: 80px 64px; background: var(--white); }
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.about-value-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.about-value-icon {
  width: 48px; height: 48px; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 4px;
}
.about-value-icon svg {
  width: 22px; height: 22px; stroke: var(--indigo); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.about-value-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--black); line-height: 1.25;
}
.about-value-desc {
  font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300;
}

/* ── GUIDE PAGE ─────────────────────────────────────────── */
.guide-rules { padding: 80px 64px; background: var(--off-white); }
.guide-rules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.guide-rule-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.guide-rule-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--light); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 4px;
}
.guide-rule-icon svg {
  width: 20px; height: 20px; stroke: var(--indigo); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.guide-rule-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
.guide-rule-spec {
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--indigo); letter-spacing: -0.5px; line-height: 1;
}
.guide-rule-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--black); line-height: 1.25;
}
.guide-rule-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300;
}

.guide-table-section { padding: 80px 64px; background: var(--white); }
.guide-table-wrap {
  overflow-x: auto; margin-top: 40px;
  border-radius: 16px; border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}
.guide-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.guide-table thead th {
  padding: 14px 22px; text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--off-white); border-bottom: 1px solid var(--border);
}
.guide-table tbody tr { border-bottom: 1px solid var(--border); }
.guide-table tbody tr:last-child { border-bottom: none; }
.guide-table tbody td {
  padding: 16px 22px; font-size: 14px;
  color: var(--grey); font-weight: 300; line-height: 1.5;
}
.guide-table tbody td:first-child {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  color: var(--black); font-size: 14px;
}
.guide-table tbody td:not(:first-child) { border-left: 1px solid var(--border); }
.guide-table-tag {
  font-size: 11px; font-weight: 600; color: var(--indigo);
  background: var(--light); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
  white-space: nowrap; display: inline-block;
}

.guide-dodonts { padding: 80px 64px; background: var(--off-white); }
.guide-dodonts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.guide-dodonts-col {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px 28px;
}
.guide-dodonts-col.do { border-top: 3px solid var(--green); }
.guide-dodonts-col.dont { border-top: 3px solid #D94F4F; }
.guide-dodonts-heading {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--black); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.guide-dodonts-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.guide-dodonts-col.do .guide-dodonts-dot { background: var(--green); }
.guide-dodonts-col.dont .guide-dodonts-dot { background: #D94F4F; }
.guide-dodonts-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.guide-dodonts-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--grey); line-height: 1.6; font-weight: 300;
}
.guide-dodonts-marker {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; margin-top: 1px; line-height: 1;
}
.guide-dodonts-col.do .guide-dodonts-marker {
  background: rgba(43,92,58,0.1); color: var(--green);
}
.guide-dodonts-col.dont .guide-dodonts-marker {
  background: rgba(217,79,79,0.1); color: #D94F4F;
}

/* ── APPLICATION NAVIGATOR ──────────────────────────────── */
.app-nav { padding: 80px 64px; background: var(--white); }
.app-nav-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.app-nav-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .25s; color: inherit;
}
.app-nav-card:hover {
  transform: translateY(-4px); box-shadow: 0 20px 48px rgba(17,24,20,.08);
  border-color: var(--indigo);
}
.app-nav-icon {
  width: 52px; height: 52px; background: var(--white); border-radius: 14px;
  border: 1px solid var(--border); display: grid; place-items: center;
  margin-bottom: 24px;
}
.app-nav-icon svg {
  width: 22px; height: 22px; stroke: var(--indigo); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.app-nav-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--black); margin-bottom: 10px; line-height: 1.2;
}
.app-nav-desc {
  font-size: 14px; color: var(--muted); margin-bottom: 20px;
  line-height: 1.7; font-weight: 300; flex: 1;
}
.app-nav-mats { display: flex; flex-wrap: wrap; gap: 8px; }
.app-nav-mat {
  font-size: 11px; font-weight: 600;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px; color: var(--indigo);
}

/* ── MATERIAL CATALOG ROWS ───────────────────────────────── */
.mat-catalog { background: var(--white); }
.mat-catalog-inner { border-top: 1px solid var(--border); }
.mat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border); min-height: 440px;
}
.mat-row.reverse .mat-row-image { order: 2; }
.mat-row.reverse .mat-row-content { order: 1; }
.mat-row-image {
  display: block;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.mat-row-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,20,0.5) 0%, transparent 55%);
}
.mat-row-image-badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--indigo); color: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
}
.mat-row-content {
  padding: 56px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.mat-row:nth-child(odd) .mat-row-content { background: var(--white); }
.mat-row:nth-child(even) .mat-row-content { background: var(--off-white); }
.mat-row-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--black); line-height: 1.1; letter-spacing: -1px;
  margin-top: 10px; margin-bottom: 6px;
}
.mat-row-subtitle {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--grey-lt); font-weight: 400; margin-bottom: 20px;
}
.mat-row-desc {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  font-weight: 300; margin-bottom: 28px; max-width: 440px;
}
.mat-row-specs {
  display: flex; gap: 0; margin-bottom: 36px;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  width: fit-content;
}
.mat-row-spec {
  padding: 12px 20px; display: flex; flex-direction: column; gap: 3px;
  border-right: 1px solid var(--border);
}
.mat-row-spec:last-child { border-right: none; }
.mat-row-spec-label {
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
.mat-row-spec-value {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--black); white-space: nowrap;
}

/* ── COMPARISON TABLE ────────────────────────────────────── */
.mat-compare { padding: 80px 64px; background: var(--black); }
.mat-compare .section-eyebrow { color: var(--indigo-lt); }
.mat-compare .section-title { color: var(--white); }
.mat-compare-wrap {
  overflow-x: auto; margin-top: 44px;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.08);
}
.mat-compare-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.mat-compare-table thead tr { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mat-compare-table thead th {
  padding: 18px 22px; text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--white); background: rgba(255,255,255,0.06);
}
.mat-compare-table thead th:first-child {
  color: rgba(255,255,255,0.3); font-size: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1px; width: 160px;
}
.mat-compare-table thead th:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.06); }
.mat-compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mat-compare-table tbody tr:last-child { border-bottom: none; }
.mat-compare-table tbody td {
  padding: 14px 22px;
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.5; font-weight: 300;
}
.mat-compare-table tbody td:first-child {
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  white-space: nowrap; background: rgba(0,0,0,0.2);
}
.mat-compare-table tbody td:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.06); }
.mat-compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.mat-compare-strong { color: var(--white); font-weight: 600; }
.mat-compare-link {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--indigo-lt); display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.mat-compare-link:hover { gap: 10px; }
.mat-compare-link::after { content: '→'; }

/* ── SECONDARY BUTTON ──────────────────────────────────── */
.btn-secondary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  background: transparent; color: var(--white);
  padding: 13px 32px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color .2s, background .2s;
  display: inline-block; white-space: nowrap; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* ── MATERIAL DETAIL PAGES ───────────────────────────────── */

/* Breadcrumb */
.mat-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.mat-breadcrumb a { color: rgba(255,255,255,0.5); transition: color .2s; }
.mat-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.mat-breadcrumb-sep { color: rgba(255,255,255,0.2); }

@media (min-width: 769px) {
  .mat-breadcrumb { font-size: 14px; }
  .page-hero-eyebrow { font-size: 15px; }
}

/* Intro 2-col */
.mat-intro {
  padding: 80px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; background: var(--white);
}
.mat-intro-lead {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--grey); margin-bottom: 20px;
}
.mat-intro-body {
  font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300;
}
.mat-intro-specs-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 16px; font-weight: 500;
}

/* Specs grid */
.mat-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.mat-spec-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px;
}
.mat-spec-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--indigo); margin-bottom: 6px;
}
.mat-spec-value {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--black); line-height: 1.3;
}

/* Properties section */
.mat-props {
  padding: 80px 64px; background: var(--off-white);
}
.mat-props-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 40px;
}
.mat-prop-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.mat-prop-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--light); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 4px;
}
.mat-prop-icon svg {
  width: 20px; height: 20px; stroke: var(--indigo); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.mat-prop-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--black); line-height: 1.3;
}
.mat-prop-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300;
}

/* Applications section */
.mat-apps {
  padding: 80px 64px; background: var(--white);
}
.mat-apps-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.mat-apps-list {
  list-style: none; margin-top: 32px;
  display: flex; flex-direction: column;
}
.mat-apps-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 15px; color: var(--grey); line-height: 1.7; font-weight: 300;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.mat-apps-list li:last-child { border-bottom: none; }
.mat-app-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--indigo-lt); min-width: 24px; padding-top: 4px; flex-shrink: 0;
}
.mat-apps-aside {
  display: flex; flex-direction: column; gap: 12px;
}

/* Related materials */
.mat-related { padding: 80px 64px; background: var(--off-white); }
.mat-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.mat-related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s; color: inherit;
}
.mat-related-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(17,24,20,0.08); }
.mat-related-img { height: 140px; background-size: cover; background-position: center; }
.mat-related-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.mat-related-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--indigo); margin-bottom: 8px;
}
.mat-related-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--black); margin-bottom: 6px; letter-spacing: -0.2px;
}
.mat-related-sub {
  font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300;
  flex: 1; margin-bottom: 20px;
}
.mat-related-link {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--indigo); display: flex; align-items: center; gap: 6px;
  width: fit-content; transition: gap .2s;
}
.mat-related-link::after { content: '→'; }
.mat-related-card:hover .mat-related-link { gap: 10px; }

/* Featured mat-card accent */
.mat-card.featured {
  border-color: var(--indigo);
  background: var(--light);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-story { padding: 72px 32px; grid-template-columns: 1fr; gap: 40px; }
  .about-owner { padding: 40px 32px; grid-template-columns: 140px 1fr; gap: 32px; align-items: start; }
  .about-values { padding: 72px 32px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-rules { padding: 72px 32px; }
  .guide-rules-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-table-section { padding: 72px 32px; }
  .guide-dodonts { padding: 72px 32px; }
  .app-nav { padding: 72px 32px; }
  .app-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .mat-row { grid-template-columns: 1fr; min-height: auto; }
  .mat-row.reverse .mat-row-image { order: -1; }
  .mat-row.reverse .mat-row-content { order: 0; }
  .mat-row-image { min-height: 300px; }
  .mat-row-content { padding: 40px 32px; }
  .mat-compare { padding: 72px 32px; }
  .mat-intro { padding: 72px 32px; grid-template-columns: 1fr; gap: 40px; }
  .mat-props { padding: 72px 32px; }
  .mat-props-grid { grid-template-columns: repeat(2, 1fr); }
  .mat-apps { padding: 72px 32px; }
  .mat-apps-inner { grid-template-columns: 1fr; gap: 40px; }
  .mat-related { padding: 72px 32px; }
  .mat-related-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { padding: 0 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats { padding: 0 32px; grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(2n) { padding-left: 32px; }
  .stat-item:nth-child(2n+1) { padding-right: 32px; }
  .break-quote { padding: 56px 32px; gap: 40px; }
  .industries-band { padding: 32px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .industries-band-label { margin-right: 0; }
  .cta-band { padding: 56px 32px; flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 100px 32px 52px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-panel { height: 280px; order: -1; }
  .hero-content { padding: 56px 32px 64px; }
  .materials { padding: 72px 32px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { padding: 72px 32px 56px; grid-template-columns: 1fr; gap: 48px; }
  .why-right { grid-template-columns: 1fr; gap: 32px; }
  .process { padding: 72px 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .formats { flex-direction: column; gap: 40px; padding: 56px 32px; }
  .footer-top { padding: 48px 32px 36px; }
  .footer-bottom { padding: 16px 32px; }
  .footer-nav { gap: 36px; }
}

@media (max-width: 640px) {
  .about-story { padding: 56px 20px; }
  .about-owner { padding: 36px 20px; grid-template-columns: 100px 1fr; gap: 24px; }
  .about-values { padding: 56px 20px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .guide-rules { padding: 56px 20px; }
  .guide-rules-grid { grid-template-columns: 1fr; }
  .guide-table-section { padding: 56px 20px; }
  .guide-dodonts { padding: 56px 20px; }
  .guide-dodonts-grid { grid-template-columns: 1fr; }
  .app-nav { padding: 56px 20px; }
  .app-nav-grid { grid-template-columns: 1fr; }
  .mat-row-content { padding: 32px 20px; }
  .mat-row-specs { flex-wrap: wrap; }
  .mat-compare { padding: 56px 20px; }
  .mat-intro { padding: 56px 20px; }
  .mat-specs-grid { grid-template-columns: 1fr 1fr; }
  .mat-props { padding: 56px 20px; }
  .mat-props-grid { grid-template-columns: 1fr; }
  .mat-apps { padding: 56px 20px; }
  .mat-related { padding: 56px 20px; }
  .mat-related-grid { grid-template-columns: 1fr; }
  .site-nav { padding: 0 20px; height: 76px; }
  .nav-drawer { top: 60px; }
  .stats { padding: 0 20px; }
  .stat-number { font-size: 32px; }
  .stat-item { padding: 24px 0; }
  .stat-item:nth-child(2n) { padding-left: 20px; }
  .stat-item:nth-child(2n+1) { padding-right: 20px; }
  .break-quote { flex-direction: column; align-items: flex-start; padding: 48px 20px; }
  .industries-band { padding: 28px 20px; }
  .cta-band { padding: 44px 20px; }
  .page-hero { padding: 88px 20px 44px; }
  .page-hero h1 { letter-spacing: -1.5px; }
  .hero-image-panel { height: 220px; }
  .hero-content { padding: 44px 20px 52px; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .materials { padding: 56px 20px; }
  .materials-grid { grid-template-columns: 1fr; }
  .process { padding: 56px 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .process-step { padding: 20px 16px; gap: 10px; min-height: 0; border-radius: 16px; }
  .step-num { width: 40px; height: 40px; border-radius: 12px; font-size: 16px; }
  .step-title { font-size: 14px; }
  .step-desc { display: none; }
  .formats { padding: 44px 20px; gap: 32px; }
  .why { padding: 40px 20px 20px; }
  .why-inner { padding: 28px 20px 28px; gap: 20px; }
  .why-headline { font-size: 28px; letter-spacing: -0.5px; }
  .why-right { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-card { min-height: 0; padding: 16px 14px; gap: 10px; border-radius: 16px; align-items: flex-start; }
  .why-card-icon { width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; }
  .why-card-icon svg { width: 17px; height: 17px; }
  .why-card-title { font-size: 13px; line-height: 1.3; }
  .why-card-copy { display: none; }
  .materials .section-header-right { display: none; }
  .materials-grid { gap: 10px; }
  .mat-card-image { display: none; }
  .mat-card { border-radius: 16px; }
  .mat-card .mat-badge { padding-top: 14px; }
  .mat-card .mat-name { margin-top: 4px; font-size: 17px; }
  .mat-card .mat-subtitle { margin-bottom: 0; }
  .mat-card .mat-desc { display: none; }
  .mat-card .mat-specs { display: none; }
  .mat-card .btn-mat { padding: 10px 20px; font-size: 12px; margin: 12px 20px 14px; }
  .footer-top { padding: 40px 20px 28px; flex-direction: column; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
  .footer-nav { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section {
  padding: 80px 64px;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}

/* Info card */
.contact-info-card {
  background: var(--black);
  border-radius: 24px;
  padding: 44px 40px;
  color: var(--white);
  position: sticky;
  top: 88px;
}
.contact-info-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-logo img { height: 36px; width: auto; }
.contact-info-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--white); line-height: 1.2; display: block;
  -webkit-text-stroke: 0.4px currentColor;
}
.contact-info-logo-sub {
  font-size: 9px; font-weight: 400; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35); text-transform: uppercase; display: block;
}
.contact-info-items {
  display: flex; flex-direction: column; gap: 26px;
  margin-bottom: 36px;
}
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
}
.contact-info-icon svg {
  width: 18px; height: 18px;
  stroke: var(--indigo-lt); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.contact-info-value {
  font-size: 15px; color: var(--white); font-weight: 500; line-height: 1.5;
}
.contact-info-value a {
  color: var(--white); transition: color .2s;
}
.contact-info-value a:hover { color: var(--indigo-lt); }
.contact-info-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-info-owner-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--white); display: block;
}
.contact-info-owner-role {
  font-size: 12px; color: rgba(255,255,255,0.4);
  display: block; margin-top: 3px;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid var(--border);
}
.contact-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--black); letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  margin-bottom: 36px;
}
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--grey);
}
.form-input, .form-select, .form-textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; color: var(--black);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 13px 16px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(52,64,196,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-file-note {
  font-size: 13px; color: var(--muted);
  background: var(--off-white);
  border: 1.5px dashed var(--border);
  border-radius: 10px; padding: 16px 20px;
  line-height: 1.7;
}
.form-file-note strong { color: var(--grey); font-weight: 600; }
.form-submit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  background: var(--indigo); color: var(--white);
  padding: 16px 40px; border-radius: 6px;
  border: none; cursor: pointer;
  transition: background .2s, transform .1s;
  width: 100%; letter-spacing: 0.2px;
}
.form-submit:hover { background: var(--indigo-dk); }
.form-submit:active { transform: scale(0.99); }

@media (max-width: 1024px) {
  .contact-section { padding: 72px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 640px) {
  .contact-section { padding: 56px 20px; }
  .contact-info-card { padding: 32px 28px; }
  .contact-form-card { padding: 32px 24px; }
}

/* ── SECONDARY MATERIALS ────────────────────────────────── */
.mat-secondary { padding: 80px 64px; background: var(--white); }
.mat-secondary-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.mat-secondary-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.mat-secondary-card:hover {
  border-color: var(--indigo); box-shadow: 0 8px 24px rgba(17,24,20,0.07);
}
.mat-secondary-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--black); letter-spacing: -0.2px; line-height: 1.2;
}
.mat-secondary-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; flex: 1;
}
.mat-secondary-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.mat-secondary-spec {
  font-size: 11px; font-weight: 500; color: var(--indigo);
  background: var(--light); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px; white-space: nowrap;
}
.mat-secondary-link {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--indigo); display: flex; align-items: center; gap: 5px;
  width: fit-content; margin-top: 2px; transition: gap .2s;
}
.mat-secondary-link::after { content: '→'; }
.mat-secondary-card:hover .mat-secondary-link { gap: 8px; }

@media (max-width: 1024px) {
  .mat-secondary { padding: 72px 32px; }
  .mat-secondary-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mat-secondary { padding: 56px 20px; }
  .mat-secondary-grid { grid-template-columns: 1fr; }
}

/* ── LOGO PLACEMENTS (B / C / D) ───────────────────────── */

/* B — Circular stamp badge pinned to hero bottom-right (+30%) */
.hero-logo-stamp {
  position: absolute;
  right: -80px; bottom: 48px;
  width: 320px; height: auto;
  opacity: 0.08;
  pointer-events: none; user-select: none;
}
.hero-logo-stamp img { width: 100%; height: auto; display: block; }

/* C — Centered divider with logo before process section (2× size) */
.section-logo-divider {
  display: flex; align-items: center; gap: 28px;
  padding: 28px 64px; background: var(--off-white);
}
.section-logo-divider .divider-line { flex: 1; height: 1px; background: var(--border); }
.section-logo-divider img { width: 72px; height: auto; opacity: 0.3; flex-shrink: 0; display: block; }

/* D — Ghost logo behind CTA band content */
.cta-band { position: relative; overflow: hidden; }
.cta-band-logo {
  position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  width: 210px; height: auto;
  opacity: 0.09; pointer-events: none; user-select: none; display: block;
  z-index: 0;
}
.cta-band > *:not(.cta-band-logo) { position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .hero-logo-stamp { width: 220px; right: -60px; }
  .section-logo-divider { padding: 24px 32px; }
}
@media (max-width: 640px) {
  .hero-logo-stamp { display: none; }
  .section-logo-divider { padding: 20px 20px; }
  .cta-band-logo { display: none; }
}

/* ── SERVICES PAGE ─────────────────────────────────────── */
.services-intro { padding: 80px 64px; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.service-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 28px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(17,24,20,.08); }
.service-card-image {
  height: 200px;
  background-size: cover; background-position: center;
}
.service-card-body {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px; flex: 1;
}
.service-card-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--light); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 8px;
}
.service-card-icon svg {
  width: 26px; height: 26px; stroke: var(--indigo); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.service-card-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--indigo);
}
.service-card-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--black); line-height: 1.15; letter-spacing: -0.3px;
}
.service-card-desc {
  font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; flex: 1;
}
.service-card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-card-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--grey); line-height: 1.6; font-weight: 300;
}
.service-card-feature::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--indigo); border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.service-card-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--indigo); display: flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 4px; transition: gap .2s;
}
.service-card-cta::after { content: '→'; }
.service-card:hover .service-card-cta { gap: 10px; }
.service-card.featured {
  background: var(--indigo); border-color: var(--indigo);
}
.service-card.featured .service-card-icon {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2);
}
.service-card.featured .service-card-icon svg { stroke: var(--white); }
.service-card.featured .service-card-eyebrow { color: rgba(255,255,255,0.65); }
.service-card.featured .service-card-title { color: var(--white); }
.service-card.featured .service-card-desc { color: rgba(255,255,255,0.75); }
.service-card.featured .service-card-feature { color: rgba(255,255,255,0.8); }
.service-card.featured .service-card-feature::before { background: rgba(255,255,255,0.7); }
.service-card.featured .service-card-cta { color: rgba(255,255,255,0.9); }
.service-card.featured:hover .service-card-cta { color: var(--white); }

@media (max-width: 1024px) {
  .services-intro { padding: 72px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-intro { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── INDUSTRIES HUB ──────────────────────────────────────── */
.industries-section { padding: 80px 64px; background: var(--off-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
}
.industry-card:hover { border-color: var(--indigo); box-shadow: 0 10px 28px rgba(17,24,20,0.08); }
.industry-card-num { font-size: 11px; font-weight: 700; color: var(--indigo); text-transform: uppercase; letter-spacing: .1em; }
.industry-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--black); line-height: 1.3; }
.industry-card-desc { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; flex: 1; }
.industry-card-mats { display: flex; flex-wrap: wrap; gap: 6px; }
.industry-card-mat {
  font-size: 11px; font-weight: 500; color: var(--indigo);
  background: var(--light); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
}
.industry-card-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--indigo); display: flex; align-items: center; gap: 5px;
  margin-top: 4px; transition: gap .2s;
}
.industry-card-cta::after { content: '→'; }
.industry-card:hover .industry-card-cta { gap: 9px; }

@media (max-width: 1024px) {
  .industries-section { padding: 72px 32px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .industries-section { padding: 56px 20px; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ── SALES PITCH — catalog row (short) ──────────────────── */
.mat-row-pitch {
  font-size: 13px;
  color: var(--indigo);
  font-weight: 500;
  line-height: 1.55;
  padding: 10px 14px;
  background: rgba(52,64,196,0.06);
  border-left: 2px solid var(--indigo);
  border-radius: 0 8px 8px 0;
  margin-bottom: 4px;
}
.mat-row-pitch-target {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}

/* ── SALES PITCH — material page (full) ─────────────────── */
.mat-pitch-callout {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--indigo);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mat-pitch-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.mat-pitch-arg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
  margin: 0;
}
.mat-pitch-clients {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.mat-pitch-clients-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.mat-pitch-clients-value {
  font-size: 12px;
  font-weight: 500;
  color: var(--indigo);
  background: rgba(52,64,196,0.1);
  border-radius: 100px;
  padding: 2px 10px;
}

/* ── FOURNISSEURS ────────────────────────────────────────── */
.fournisseurs-section {
  padding: 80px 64px;
  background: var(--off-white);
  text-align: center;
}
.fournisseurs-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
  margin: 16px auto 48px;
}
.fournisseurs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.fournisseur-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.fournisseur-card:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  box-shadow: 0 4px 16px rgba(17,24,20,0.06);
}
@media (max-width: 768px) {
  .fournisseurs-section { padding: 56px 24px; }
}
@media (max-width: 480px) {
  .fournisseurs-section { padding: 48px 20px; }
  .fournisseur-card { padding: 12px 20px; font-size: 13px; }
}

/* ── Print / PDF ────────────────────────────────────────── */
@media print {
  /* Redefine colour variables so every rule that uses them goes dark automatically */
  :root {
    --grey:     #111;
    --grey-lt:  #333;
    --muted:    #222;
    --black:    #111;
    --off-white:#fff;
    --light:    #f5f5f5;
    --border:   #bbb;
  }

  /* Hide chrome, images, buttons */
  .site-nav, .nav-drawer, footer, .cta-band,
  .hero-actions, .btn-primary, .btn-outline-light, .btn-mat,
  .mat-card-cta, .breadcrumb-nav,
  img, .mat-card-image, .hero-image-panel, .page-hero-bg,
  .hero-logo-stamp { display: none !important; }

  /* Strip background images */
  * { background-image: none !important; }

  /* Force reveal elements visible */
  [data-reveal], [data-reveal="left"], [data-reveal="right"] {
    opacity: 1 !important; transform: none !important;
  }

  body { padding-top: 0; font-size: 14px; background: #fff; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* Hero: dark band without image */
  .hero { min-height: 0 !important; display: block !important; }
  .hero-content { padding: 32px 48px !important; background: #111814 !important; }
  .hero-content, .hero-content * { color: #fff !important; }
  .hero-content .accent { color: #3440C4 !important; }

  /* Why band */
  .why-inner { background: #3440C4 !important; }
  .why-inner * { color: #fff !important; }

  section, .mat-intro, .mat-specs-table { page-break-inside: avoid; }
  a { text-decoration: none; }
}
