/* ============================================================================
   LABELEX — DESIGN SYSTEM
   /css/styles.css
   Blue / Orange Theme — minimalist corporate procurement
   ============================================================================ */


/* ============================================================================
   1. DESIGN TOKENS
   ============================================================================ */
:root {
  /* SURFACES */
  --paper:    #FFFFFF;
  --paper-2:  #F4F6FA;
  --paper-3:  #E6ECF4;

  /* INK */
  --ink:      #0B2A5B;
  --ink-2:    #1F4287;
  --ink-3:    #6B7A93;

  /* LEGACY ALIASES — kept for component compatibility */
  --graphite: #F4F6FA;
  --steel:    #1F4287;
  --bone:     #F4F6FA;
  --mute:     #E6ECF4;
  --note:     #6B7A93;

  /* STRUCTURE */
  --rule:     #D4DCE7;

  /* ACCENT */
  --lime:     #ED6B1F;
  --lime-deep:#C85A15;

  color-scheme: light;
}


/* ============================================================================
   2. RESET & BASE STYLES
   ============================================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }


/* ============================================================================
   3. LAYOUT PRIMITIVES
   ============================================================================ */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--lime); }
.eyebrow.dark { color: var(--ink-2); }
.eyebrow.dark::before { background: var(--lime); }


/* ============================================================================
   4. NAVIGATION
   ============================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (min-width: 768px) { .nav-inner { padding: 0 32px; } }

/* Logo — text-based lockup */
.logo {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo .ex {
  background: var(--lime);
  color: #fff;
  padding: 2px 8px 3px;
  margin-left: 4px;
  position: relative;
  display: inline-block;
}
.logo .ex::before, .logo .ex::after {
  content: ""; position: absolute; width: 6px; height: 6px;
  border: 1.5px solid #fff; background: transparent;
}
.logo .ex::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.logo .ex::after  { bottom: -3px; right: -3px; border-left: none; border-top: none; }

/* If logo is an <img> tag keep it working */
.logo img { height: 44px; width: auto; display: block; }

.nav-links { display: none; gap: 32px; align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
}

.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-cta .btn-quote {
  display: none;
  background: var(--lime);
  color: #fff;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  transition: background 0.2s;
  white-space: nowrap;
}
@media (min-width: 600px) { .nav-cta .btn-quote { display: inline-flex; } }
.nav-cta .btn-quote:hover { background: var(--lime-deep); }

.menu-icon { width: 28px; display: grid; gap: 5px; cursor: pointer; padding: 8px 0; }
@media (min-width: 900px) { .menu-icon { display: none; } }
.menu-icon span { display: block; height: 2px; background: #fff; border-radius: 2px; }


/* ============================================================================
   5. HERO (homepage)
   ============================================================================ */
.hero { position: relative; padding: 140px 0 80px; overflow: hidden; background: var(--paper); }
@media (min-width: 768px) { .hero { padding: 180px 0 120px; } }
@media (min-width: 1100px) { .hero { padding: 200px 0 140px; } }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 80%);
}

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 2; }
@media (min-width: 1100px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; } }

.hero-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.hero-stamp {
  border: 1px solid var(--rule);
  padding: 6px 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper-2);
}
.hero-stamp .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 6px;
  vertical-align: 1px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero h1 .hl {
  background: var(--lime);
  color: #fff;
  padding: 0 10px;
  display: inline-block;
}
.hero h1 .line { display: block; }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-3);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
  background: transparent;
}
.btn-primary { background: var(--lime); color: #fff; }
.btn-primary:hover { background: var(--lime-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); border-radius: 999px; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-dark { background: var(--ink); color: var(--paper); border-radius: 999px; }
.btn-dark:hover { background: var(--ink-2); }
.btn .arrow { transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-stats > div { padding: 20px 16px; border-right: 1px solid var(--rule); }
.hero-stats > div:last-child { border-right: none; }
.hero-stats .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.hero-stats .val { font-family: "Barlow Condensed", sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.hero-stats .val .lime { color: var(--lime); }

.hero-visual {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(11,42,91,0.03) 14px 15px);
}
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hv-spec {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}
.hv-spec .lime { color: var(--ink); font-weight: 700; }
.hv-bracket-tl, .hv-bracket-tr, .hv-bracket-bl, .hv-bracket-br {
  position: absolute; width: 24px; height: 24px;
  border-color: var(--ink); border-style: solid; border-width: 0;
}
.hv-bracket-tl { top: 40px; left: 40px; border-top-width: 2px; border-left-width: 2px; }
.hv-bracket-tr { top: 40px; right: 40px; border-top-width: 2px; border-right-width: 2px; }
.hv-bracket-bl { bottom: 40px; left: 40px; border-bottom-width: 2px; border-left-width: 2px; }
.hv-bracket-br { bottom: 40px; right: 40px; border-bottom-width: 2px; border-right-width: 2px; }
.hv-core {
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d0d0c8 0%, #b8b8b0 60%, #a0a098 100%);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.06);
  position: relative;
}
.hv-core::before { content: ""; position: absolute; inset: 14%; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #c8c8c0 0%, #a8a8a0 100%); }
.hv-core::after  { content: ""; position: absolute; inset: 30%; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--rule); }
.hv-label {
  position: absolute; width: 78%; height: 14%;
  background: var(--lime); color: #fff;
  border: 1.5px solid var(--ink-2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  font-family: "JetBrains Mono", monospace; font-weight: 700;
  font-size: clamp(10px, 1.6vw, 14px); letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 2;
}
.hv-base {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}


/* ============================================================================
   6. TICKER / MARQUEE
   ============================================================================ */
.ticker {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-inner {
  display: flex; gap: 48px;
  animation: scroll 40s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker span {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.85);
}
.ticker span::after { content: ""; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; margin-left: 32px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ============================================================================
   7. SECTION GENERIC
   ============================================================================ */
.section { padding: 80px 0; background: var(--paper); }
@media (min-width: 768px) { .section { padding: 120px 0; } }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-head p { font-size: clamp(14px, 1.5vw, 16px); color: var(--ink-3); max-width: 560px; line-height: 1.6; }
.section.bone { background: var(--paper-2); color: var(--ink); }
.section.bone .section-head p { color: var(--ink-3); }
.section.bone h2 { color: var(--ink); }


/* ============================================================================
   8. PRODUCTS GRID (homepage)
   ============================================================================ */
.products { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 768px) { .products { grid-template-columns: repeat(3, 1fr); } }

.pcard {
  background: var(--paper);
  color: var(--ink);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
  display: flex; flex-direction: column;
}
.pcard:hover { background: var(--paper-2); }

.pcard-num { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 24px; }
.pcard-visual { aspect-ratio: 4/3; background: var(--paper-2); margin-bottom: 28px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pcard-visual svg { width: 70%; height: 70%; }
.pcard-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pcard h3 { font-family: "Barlow Condensed", sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 12px; color: var(--ink); }
.pcard p { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; line-height: 1.55; flex: 1; }

.pcard-spec { border-top: 1px solid var(--rule); padding-top: 16px; display: grid; gap: 8px; margin-bottom: 24px; }
.pcard-spec-row { display: flex; justify-content: space-between; font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.pcard-spec-row .k { color: var(--ink-3); }
.pcard-spec-row .v { font-weight: 700; color: var(--ink); }

.pcard-link {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--rule); padding-top: 16px;
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); text-decoration: none;
}


/* ============================================================================
   9. WHY US / STATS
   ============================================================================ */
.why { position: relative; overflow: hidden; background: var(--ink); }
.why::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 120px 120px; opacity: 1; pointer-events: none;
}
.why-inner { position: relative; z-index: 2; }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: end; }
@media (min-width: 1000px) { .why-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }

.why h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800; line-height: 0.97; letter-spacing: -0.02em;
  margin-bottom: 24px; color: #fff;
}
.why h2 .l1, .why h2 .l3 { display: block; }
.why h2 .l2 { display: block; color: var(--lime); }
.why-sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.6; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,0.12); }
.stat-cell { padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.stat-cell:nth-child(2n) { border-right: none; }
.stat-cell:nth-last-child(-n+2) { border-bottom: none; }
.stat-cell .lbl { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.stat-cell .num { font-family: "Barlow Condensed", sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.01em; line-height: 1; margin-bottom: 6px; color: #fff; }
.stat-cell .num.lime { color: var(--lime); }
.stat-cell .desc { font-size: 12px; color: rgba(255,255,255,0.6); }


/* ============================================================================
   10. MATERIALS GRID
   ============================================================================ */
.materials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); }
@media (min-width: 600px) { .materials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .materials-grid { grid-template-columns: repeat(4, 1fr); } }

.matcard { padding: 20px; background: var(--paper); transition: all 0.2s; cursor: default; }
.matcard:hover { background: var(--ink); color: #fff; }

.matcard-swatch { aspect-ratio: 3/2; margin-bottom: 16px; border: 1px solid var(--rule); position: relative; overflow: hidden; }
.matcard:hover .matcard-swatch { border-color: rgba(255,255,255,0.15); }

.swatch-coated  { background: linear-gradient(135deg, #fafafa 0%, #e5e5e5 100%); }
.swatch-synthetic { background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%); }
.swatch-bopp    { background: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 6px), #f8f8f8; }
.swatch-pearl   { background: linear-gradient(135deg, #e8e4d8 0%, #f5f1e3 50%, #d4cfb8 100%); }
.swatch-silver  { background: linear-gradient(135deg, #c8c8c8 0%, #f0f0f0 50%, #a8a8a8 100%); }
.swatch-kraft   { background: linear-gradient(135deg, #b8956a 0%, #8a6f4a 100%); }
.swatch-luxury  { background: linear-gradient(135deg, #f5f1e3 0%, #e8e0c8 100%); }
.swatch-petg    { background: linear-gradient(135deg, #e8f0ff 0%, #c8d8e8 100%); opacity: 0.6; }
.swatch-pvc     { background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%); }
.swatch-shrink  { background: #ffffff; }
.swatch-wbopp   { background: var(--paper); }
.swatch-cbopp   { background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 100%), var(--mute); }
.swatch-pe      { background: linear-gradient(135deg, #f5f5f0 0%, #e0e0d8 100%); }

.matcard-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; color: var(--ink); }
.matcard:hover .matcard-name { color: #fff; }
.matcard-meta { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.matcard:hover .matcard-meta { color: rgba(255,255,255,0.55); }

.matgroup { margin-bottom: 56px; }
.matgroup:last-child { margin-bottom: 0; }
.matgroup-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); flex-wrap: wrap; gap: 12px; }
.matgroup-head h3 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.matgroup-head .moq { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.matgroup-head .moq b { color: var(--ink); }


/* ============================================================================
   11. INDUSTRIES TAGS
   ============================================================================ */
.industries-row { display: flex; flex-wrap: wrap; gap: 8px; }
.indtag {
  border: 1px solid var(--rule);
  padding: 10px 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); background: var(--paper); border-radius: 999px;
  transition: all 0.18s; cursor: default;
}
.indtag:hover { background: var(--lime); border-color: var(--lime); color: #fff; }
.indtag.on-bone { border-color: var(--rule); color: var(--ink-3); background: var(--paper); border-radius: 999px; }
.indtag.on-bone:hover { background: var(--ink); color: #fff; border-color: var(--ink); }


/* ============================================================================
   12. PROCESS STEPS
   ============================================================================ */
.process { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 900px) { .process { grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--rule); } }

.pstep { padding: 32px 28px; border-bottom: 1px solid var(--rule); position: relative; background: var(--paper); }
@media (min-width: 900px) { .pstep { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); } }

.pstep-num { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.pstep-num::before { content: ""; width: 18px; height: 2px; background: var(--lime); }
.pstep h4 { font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; color: var(--ink); }
.pstep p { font-size: 13px; color: var(--ink-3); line-height: 1.6; }


/* ============================================================================
   13. FINAL CTA / FORM — dark band
   ============================================================================ */
.final-cta {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .final-cta { padding: 120px 0; } }

.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}

.final-grid { display: grid; grid-template-columns: 1fr; gap: 56px; position: relative; z-index: 2; }
@media (min-width: 1000px) { .final-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }

.final-head { max-width: 720px; margin-bottom: 48px; position: relative; z-index: 2; }
@media (min-width: 768px) { .final-head { margin-bottom: 64px; } }
@media (min-width: 1000px) {
  .final-channels { display: grid; grid-template-columns: repeat(3, 1fr); }
  .final-channels .channel { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); }
  .final-channels .channel:last-child { border-right: none; }
}

.final-cta h2 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(40px, 7vw, 80px); font-weight: 800; line-height: 0.97; letter-spacing: -0.02em; margin-bottom: 24px; color: #fff; }
.final-cta .lead { font-size: clamp(15px, 2vw, 18px); line-height: 1.55; margin-bottom: 32px; max-width: 480px; color: rgba(255,255,255,0.7); }
.final-cta .eyebrow { color: rgba(255,255,255,0.55); }
.final-cta .eyebrow::before { background: var(--lime); }

.final-channels { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); border-radius: 8px; overflow: hidden; }
.channel {
  padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none; color: #fff; transition: background 0.2s; gap: 16px;
}
.channel:last-child { border-bottom: none; }
.channel:hover { background: rgba(237,107,31,0.15); }
.channel:hover .ch-arrow { transform: translateX(6px); }
.channel-l .ch-tag { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.channel-l h4 { font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.channel-l p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.ch-arrow { font-size: 22px; color: var(--lime); transition: transform 0.2s; }

.form-card { background: var(--paper); color: var(--ink); padding: 32px; border-radius: 14px; }
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-card .form-eyebrow { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.form-card h3 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 28px; line-height: 1.05; color: var(--ink); }

.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; }
.form-field label { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 6px;
  color: var(--ink); font-family: "Inter", sans-serif; font-size: 15px;
  padding: 10px 12px; outline: none; transition: border-color 0.18s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink-2); }
.form-field select { appearance: none; -webkit-appearance: none; padding-right: 32px; }
.form-field textarea { resize: vertical; min-height: 80px; }

.form-submit { margin-top: 20px; width: 100%; background: var(--lime); color: #fff; border: none; border-radius: 999px; padding: 16px; font-family: "Inter", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: background 0.18s; display: flex; align-items: center; justify-content: center; gap: 12px; }
.form-submit:hover { background: var(--lime-deep); }
.form-disclaimer { margin-top: 14px; font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; }


/* ============================================================================
   14. FOOTER
   ============================================================================ */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 28px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px;
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo .ex { background: var(--lime); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 320px; }

.footer-col h5 {
  font: 700 13px/1 "Inter", sans-serif;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-col a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.72);
  text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.18s;
}
.footer-col a::after { content: "▸"; color: var(--lime); font-size: 10px; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}


/* ============================================================================
   15. STICKY WHATSAPP BUTTON
   ============================================================================ */
.sticky-wa {
  position: fixed; right: 20px; bottom: 20px;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 40;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.18s, box-shadow 0.18s;
}
.sticky-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.sticky-wa svg { width: 28px; height: 28px; }
@media (min-width: 768px) { .sticky-wa { right: 24px; bottom: 24px; width: 60px; height: 60px; } }


/* ============================================================================
   16. ANIMATIONS
   ============================================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.8s ease forwards; }
  .fade-in.d1 { animation-delay: 0.1s; }
  .fade-in.d2 { animation-delay: 0.2s; }
  .fade-in.d3 { animation-delay: 0.3s; }
  .fade-in.d4 { animation-delay: 0.4s; }
}
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }


/* ============================================================================
   17. PAGE HERO
   ============================================================================ */
.page-hero {
  position: relative; padding: 120px 0 60px;
  overflow: hidden; background: var(--ink);
}
@media (min-width: 768px) { .page-hero { padding: 150px 0 80px; } }

.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 1; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }

.page-hero .crumb {
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 28px; display: flex; gap: 12px; align-items: center;
}
.page-hero .crumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.18s; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .crumb .sep { opacity: 0.3; }
.page-hero .crumb .current { color: rgba(255,255,255,0.8); font-weight: 700; }

.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 800;
  line-height: 0.97; letter-spacing: -0.02em;
  margin-bottom: 24px; max-width: 860px; color: #fff;
}
.page-hero h1 .hl { background: var(--lime); color: #fff; padding: 0 10px; display: inline-block; }
.page-hero p { font-size: clamp(14px, 1.6vw, 17px); color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.6; margin-bottom: 36px; }
.page-hero p strong { color: #fff; font-weight: 600; }

.page-hero-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.page-hero-jump a {
  border: 1px solid rgba(255,255,255,0.18); padding: 10px 18px;
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: all 0.18s;
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
  background: transparent;
}
.page-hero-jump a:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.page-hero-jump a .num { color: var(--lime); }


/* ============================================================================
   18. PRODUCT DEEP-DIVE SECTIONS
   ============================================================================ */
.dd-section { padding: 80px 0; border-bottom: 1px solid var(--rule); background: var(--paper); }
@media (min-width: 768px) { .dd-section { padding: 120px 0; } }
.dd-section.bone { background: var(--paper-2); border-bottom-color: var(--rule); }

.dd-header { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
@media (min-width: 1000px) { .dd-header { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; } }

.dd-header-l .dd-num { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.dd-header-l .dd-num::before { content: ""; width: 18px; height: 2px; background: var(--lime); }
.dd-header-l h2 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--ink); }
.dd-header-l .lead { font-size: clamp(14px, 1.5vw, 17px); line-height: 1.6; color: var(--ink-3); margin-bottom: 24px; max-width: 540px; }

.dd-bullets { list-style: none; display: grid; gap: 10px; }
.dd-bullets li { font-size: 14px; display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; color: var(--ink-3); }
.dd-bullets li::before { content: ""; width: 8px; height: 2px; background: var(--lime); margin-top: 10px; flex-shrink: 0; }

.dd-specbox { border: 1px solid var(--rule); background: var(--paper-2); padding: 28px; border-radius: 8px; }
.dd-section.bone .dd-specbox { background: var(--paper); }
.dd-specbox-head { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--rule); }
.dd-specrow { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 13px; gap: 12px; color: var(--ink); }
.dd-specrow:last-child { border-bottom: none; }
.dd-specrow .k { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); flex-shrink: 0; padding-top: 2px; }
.dd-specrow .v { font-weight: 600; text-align: right; font-size: 13px; }

.dd-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.dd-subhead { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.dd-subhead .count { color: var(--ink); font-weight: 700; }
.dd-block { margin-bottom: 64px; }
.dd-block:last-child { margin-bottom: 0; }


/* ============================================================================
   19. PORTFOLIO GALLERY
   ============================================================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); }
@media (min-width: 600px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }

.pf-card { background: var(--paper); overflow: hidden; transition: all 0.2s; display: flex; flex-direction: column; }
.pf-card:hover { background: var(--paper-2); }
.pf-visual { aspect-ratio: 1; background: var(--paper-2); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pf-visual::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, transparent 0 12px, rgba(11,42,91,0.03) 12px 13px); pointer-events: none; }
.pf-visual svg { width: 65%; height: 65%; position: relative; z-index: 1; }
.pf-visual img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.pf-meta { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; background: var(--paper); }
.pf-tag { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.pf-name { font-size: 13px; font-weight: 700; letter-spacing: -0.005em; color: var(--ink); }


/* ============================================================================
   20. COMPARISON MATRIX
   ============================================================================ */
.compare { border: 1px solid var(--rule); background: var(--paper); overflow-x: auto; border-radius: 8px; }
.compare-grid { display: grid; grid-template-columns: 200px repeat(3, minmax(180px, 1fr)); min-width: 760px; }
.compare-cell { padding: 18px 20px; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); display: flex; align-items: center; font-size: 14px; line-height: 1.4; color: var(--ink); }
.compare-cell:nth-child(4n) { border-right: none; }
.compare-cell.row-h { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); background: var(--paper-2); font-weight: 700; }
.compare-cell.col-h { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; background: var(--ink); color: #fff; border-bottom-color: rgba(255,255,255,0.1); padding: 22px 20px; }
.compare-cell.col-h .num { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--lime); margin-bottom: 6px; display: block; }
.compare-cell.empty { background: var(--ink); border-bottom-color: rgba(255,255,255,0.1); }
.compare-cell .check { display: inline-block; width: 18px; height: 18px; border-radius: 50%; background: var(--lime); margin-right: 8px; position: relative; flex-shrink: 0; }
.compare-cell .check::after { content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.compare-cell .dash { display: inline-block; width: 18px; height: 18px; border: 1.5px solid var(--rule); border-radius: 50%; margin-right: 8px; flex-shrink: 0; }


/* ============================================================================
   21. SAMPLE REQUEST BLOCK
   ============================================================================ */
.sample-block { background: var(--paper-2); border: 1px solid var(--rule); padding: 40px 32px; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; margin-top: 64px; border-radius: 8px; }
@media (min-width: 800px) { .sample-block { grid-template-columns: 1fr auto; padding: 48px 40px; gap: 32px; } }
.sample-block h3 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.015em; line-height: 1.05; margin-bottom: 8px; color: var(--ink); }
.sample-block h3 .hl { background: var(--lime); color: #fff; padding: 0 6px; }
.sample-block p { font-size: 14px; color: var(--ink-3); line-height: 1.6; max-width: 540px; }


/* ============================================================================
   22. ABOUT — STORY & TIMELINE
   ============================================================================ */
.about-story-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
@media (min-width: 1000px) { .about-story-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-story-l p { font-size: clamp(14px, 1.5vw, 16px); line-height: 1.65; margin-bottom: 18px; color: var(--ink-3); max-width: 560px; }
.about-story-l p:last-child { margin-bottom: 0; }
.about-story-l p strong { color: var(--ink); font-weight: 700; }

.timeline { position: relative; border-left: 1.5px solid var(--rule); padding-left: 28px; }
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; background: var(--paper); border: 2px solid var(--ink-2); }
.tl-item.now::before { background: var(--lime); border-color: var(--lime); }
.tl-year { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-3); margin-bottom: 6px; }
.tl-item.now .tl-year { color: var(--lime); font-weight: 800; }
.tl-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; color: var(--ink); }
.tl-desc { font-size: 13px; color: var(--ink-3); line-height: 1.55; max-width: 380px; }


/* ============================================================================
   23. ABOUT — EQUIPMENT GRID
   ============================================================================ */
.equip-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
@media (min-width: 600px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .equip-grid { grid-template-columns: repeat(4, 1fr); } }
.equip-cell { padding: 28px 24px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--paper); }
@media (min-width: 600px) { .equip-cell:nth-child(2n) { border-right: none; } }
@media (min-width: 1000px) { .equip-cell { border-right: 1px solid var(--rule); } .equip-cell:nth-child(2n) { border-right: 1px solid var(--rule); } .equip-cell:nth-child(4n) { border-right: none; } .equip-cell:nth-last-child(-n+4) { border-bottom: none; } }
.equip-cell .equip-num { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 16px; }
.equip-cell .equip-name { font-family: "Barlow Condensed", sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.1; color: var(--ink); }
.equip-cell .equip-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; }

.throughput { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--rule); border-top: none; background: var(--paper-2); }
@media (min-width: 600px) { .throughput { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .throughput { grid-template-columns: repeat(4, 1fr); } }
.tp-cell { padding: 28px 24px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (min-width: 600px) { .tp-cell:nth-child(2n) { border-right: none; } }
@media (min-width: 1000px) { .tp-cell { border-right: 1px solid var(--rule); } .tp-cell:nth-child(2n) { border-right: 1px solid var(--rule); } .tp-cell:nth-child(4n) { border-right: none; } .tp-cell:nth-last-child(-n+4) { border-bottom: none; } }
.tp-cell .tp-lbl { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.tp-cell .tp-num { font-family: "Barlow Condensed", sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.01em; line-height: 1; margin-bottom: 6px; color: var(--ink); }
.tp-cell .tp-num.lime { color: var(--lime); }
.tp-cell .tp-desc { font-size: 12px; color: var(--ink-3); }


/* ============================================================================
   24. ABOUT — PRINCIPLES BLOCK
   ============================================================================ */
.principles { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--rule); background: var(--paper); border-radius: 8px; overflow: hidden; }
@media (min-width: 768px) { .principles { grid-template-columns: 1fr 1fr; } }
.principle { padding: 36px 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); position: relative; }
@media (min-width: 768px) { .principle:nth-child(2n) { border-right: none; } .principle:nth-last-child(-n+2) { border-bottom: none; } }
@media (max-width: 767px) { .principle { border-right: none; } .principle:last-child { border-bottom: none; } }
.principle .p-tag { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; margin-bottom: 18px; background: var(--lime); color: #fff; display: inline-block; padding: 4px 10px; border-radius: 999px; }
.principle h4 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(18px, 2.2vw, 24px); font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 12px; color: var(--ink); }
.principle p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }


/* ============================================================================
   25. ABOUT — PROCESS EXPANDED
   ============================================================================ */
.process-expanded { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 800px) { .process-expanded { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process-expanded { grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--rule); } }
.pe-step { padding: 36px 28px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--paper); }
@media (min-width: 800px) and (max-width: 1099px) { .pe-step:nth-child(2n) { border-right: none; } }
@media (max-width: 799px) { .pe-step { border-right: none; } }
@media (min-width: 1100px) { .pe-step:last-child { border-right: none; } }
.pe-step .pe-num { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.pe-step .pe-num::before { content: ""; width: 18px; height: 2px; background: var(--lime); }
.pe-step h4 { font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px; color: var(--ink); }
.pe-step p { font-size: 13px; color: var(--ink-3); line-height: 1.65; margin-bottom: 12px; }
.pe-step p:last-child { margin-bottom: 0; }
.pe-step .pe-detail { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--rule); }


/* ============================================================================
   26. CONTACT — CHANNEL CARDS
   ============================================================================ */
.channel-cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 768px) { .channel-cards { grid-template-columns: repeat(3, 1fr); } }

.cc-card {
  padding: 36px 28px; background: var(--paper);
  display: flex; flex-direction: column; text-decoration: none;
  color: var(--ink); transition: background 0.2s;
}
.cc-card.featured { background: var(--ink); }
.cc-card:hover { background: var(--paper-2); }
.cc-card.featured:hover { background: var(--ink-2); }

.cc-rank {
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  color: var(--lime);
}
.cc-rank::before { content: ""; width: 18px; height: 2px; background: var(--lime); }

.cc-card h3 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(26px, 4vw, 34px); font-weight: 800; letter-spacing: -0.015em; line-height: 1; margin-bottom: 10px; color: var(--ink); }
.cc-card.featured h3 { color: #fff; }
.cc-card p { font-size: 14px; line-height: 1.6; color: var(--ink-3); margin-bottom: 28px; flex: 1; }
.cc-card.featured p { color: rgba(255,255,255,0.65); }

.cc-cta {
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--rule); color: var(--ink-2);
}
.cc-card.featured .cc-cta { color: rgba(255,255,255,0.7); border-top-color: rgba(255,255,255,0.12); }
.cc-cta .arrow { color: var(--lime); transition: transform 0.2s; font-size: 16px; }
.cc-card:hover .cc-cta .arrow { transform: translateX(6px); }


/* ============================================================================
   27. CONTACT — QUOTE FORM
   ============================================================================ */
.quote-form-block { background: var(--paper); border: 1px solid var(--rule); }
.qf-step { padding: 36px 28px; border-bottom: 1px solid var(--rule); background: var(--paper); }
@media (min-width: 768px) { .qf-step { padding: 48px 40px; } }
.qf-step:last-child { border-bottom: none; }
.qf-step-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); flex-wrap: wrap; gap: 12px; }
.qf-step-header .qf-num { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.qf-step-header h3 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -0.015em; line-height: 1.05; color: var(--ink); }
.qf-step-header .qf-hint { font-size: 12px; color: var(--ink-3); font-family: "JetBrains Mono", monospace; letter-spacing: 0.04em; }

.qf-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.qf-pill {
  padding: 10px 18px; border: 1.5px solid var(--rule);
  background: var(--paper); color: var(--ink-3);
  font-family: "Inter", sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.18s; border-radius: 999px;
}
.qf-pill:hover { border-color: var(--ink-2); color: var(--ink-2); }
.qf-pill.active { background: var(--lime); color: #fff; border-color: var(--lime); font-weight: 700; }

.qf-field-group { margin-bottom: 24px; }
.qf-field-group:last-child { margin-bottom: 0; }
.qf-field-group .qf-label { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; display: block; }

.qf-dims { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 480px; }
.qf-dim-input { position: relative; border: 1.5px solid var(--rule); background: var(--paper); display: flex; align-items: center; transition: border-color 0.18s; border-radius: 6px; overflow: hidden; }
.qf-dim-input:focus-within { border-color: var(--ink-2); }
.qf-dim-input input { background: transparent; border: 0; padding: 14px 16px; color: var(--ink); font-family: "Inter", sans-serif; font-size: 16px; font-weight: 600; width: 100%; outline: none; }
.qf-dim-input .qf-unit { padding: 14px 14px; font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); border-left: 1.5px solid var(--rule); background: var(--paper-2); }

.qf-conditional { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.4s ease; }
.qf-conditional.show { max-height: 1500px; opacity: 1; }

.qf-input-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 600px) { .qf-input-row.two { grid-template-columns: 1fr 1fr; } }
.qf-input-row:last-of-type { margin-bottom: 0; }
.qf-input-group { display: flex; flex-direction: column; }
.qf-input-group label { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.qf-input-group input, .qf-input-group textarea { background: var(--paper-2); border: 1px solid var(--rule); border-radius: 6px; color: var(--ink); font-family: "Inter", sans-serif; font-size: 15px; padding: 12px 14px; outline: none; transition: border-color 0.18s; width: 100%; }
.qf-input-group input:focus, .qf-input-group textarea:focus { border-color: var(--ink-2); background: var(--paper); }
.qf-input-group textarea { resize: vertical; min-height: 100px; }

.qf-submit-row { padding: 36px 28px; background: var(--paper-2); border-top: 1px solid var(--rule); }
@media (min-width: 768px) { .qf-submit-row { padding: 40px; } }
.qf-submit { width: 100%; background: var(--lime); color: #fff; border: none; border-radius: 999px; padding: 20px; font-family: "Inter", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: background 0.18s; display: flex; align-items: center; justify-content: center; gap: 14px; }
.qf-submit:hover { background: var(--lime-deep); }
.qf-submit-note { margin-top: 14px; font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; text-align: center; }
.qf-consent { margin: 0 0 18px; font-family: "Inter", sans-serif; font-size: 12px; line-height: 1.55; color: var(--ink-3); text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.qf-consent a { color: var(--lime); text-decoration: underline; font-weight: 600; }
.qf-consent a:hover { color: var(--lime-deep); }


/* ============================================================================
   28. CONTACT — FACTORY VISIT & MAP
   ============================================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-info { padding: 40px 32px; border-bottom: 1px solid var(--rule); background: var(--paper); }
@media (min-width: 900px) { .visit-info { border-bottom: none; border-right: 1px solid var(--rule); padding: 56px 48px; } }
.visit-info h3 { font-family: "Barlow Condensed", sans-serif; font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.015em; line-height: 1.05; margin-bottom: 20px; color: var(--ink); }
.visit-info > p { font-size: 15px; color: var(--ink-3); line-height: 1.65; margin-bottom: 28px; max-width: 460px; }
.visit-detail-row { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); align-items: start; }
.visit-detail-row:last-of-type { border-bottom: none; }
.visit-detail-row .vd-k { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); padding-top: 4px; }
.visit-detail-row .vd-v { font-size: 14px; line-height: 1.6; color: var(--ink); }

.visit-map { background: var(--paper-2); position: relative; min-height: 320px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
@media (min-width: 900px) { .visit-map { min-height: 100%; } }
.visit-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px); background-size: 40px 40px; }
.map-pin { position: relative; z-index: 2; width: 48px; height: 48px; background: var(--lime); border: 2.5px solid var(--ink); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; }
.map-pin::after { content: ""; width: 14px; height: 14px; background: #fff; border-radius: 50%; transform: rotate(45deg); }
.map-label { position: absolute; top: 60%; left: 50%; transform: translateX(-50%); font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; background: var(--ink); padding: 8px 14px; border-radius: 4px; z-index: 3; white-space: nowrap; }


/* ============================================================================
   29. CONTACT — FAQ ACCORDION
   ============================================================================ */
.faq-list { border: 1px solid var(--rule); background: var(--paper); border-radius: 8px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: transparent; border: 0;
  padding: 22px 28px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer; text-align: left;
  color: var(--ink); font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.6vw, 17px); font-weight: 600;
  letter-spacing: -0.01em; transition: background 0.18s; gap: 24px;
}
.faq-question:hover { background: var(--paper-2); }
.faq-question .faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1.5px solid var(--rule); border-radius: 50%; position: relative;
  transition: all 0.2s;
}
.faq-question .faq-toggle::before, .faq-question .faq-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--ink); transform: translate(-50%, -50%); transition: all 0.2s;
}
.faq-question .faq-toggle::before { width: 12px; height: 1.5px; }
.faq-question .faq-toggle::after  { width: 1.5px; height: 12px; }

.faq-item.open .faq-question { background: var(--lime) !important; color: #fff !important; }
.faq-item.open .faq-question span:first-child { color: #fff !important; }
.faq-item.open .faq-question .faq-toggle { background: rgba(255,255,255,0.25) !important; border-color: rgba(255,255,255,0.4) !important; }
.faq-item.open .faq-question .faq-toggle::before { background: #fff !important; }
.faq-item.open .faq-question .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item:not(.open) .faq-question:hover { background: var(--paper-3) !important; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 28px 24px; font-size: 14px; color: var(--ink-3); line-height: 1.7; max-width: 720px; }


/* ============================================================================
   30. CONTACT — HOURS BLOCK
   ============================================================================ */
.hours-block { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
@media (min-width: 700px) { .hours-block { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .hours-block { grid-template-columns: repeat(4, 1fr); } }
.hours-cell { padding: 28px 24px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--paper); }
@media (min-width: 700px) and (max-width: 1099px) { .hours-cell:nth-child(2n) { border-right: none; } }
@media (max-width: 699px) { .hours-cell { border-right: none; } }
@media (min-width: 1100px) { .hours-cell:last-child { border-right: none; } }
.hours-cell .hc-lbl { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.hours-cell .hc-val { font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 6px; color: var(--ink); }
.hours-cell .hc-val.lime { color: var(--lime); }
.hours-cell .hc-desc { font-size: 12px; color: var(--ink-3); line-height: 1.55; }

/* ============================================================================
   COOKIE CONSENT BANNER (site-wide, brand-aligned)
   ============================================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; z-index: 999; flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
}
.cookie-banner p { font-size: 13px; line-height: 1.55; margin: 0; max-width: 760px; color: rgba(255,255,255,0.75); }
.cookie-banner p a { color: var(--lime); text-decoration: underline; font-weight: 600; }
.cookie-banner p a:hover { color: #fff; }
.cookie-accept {
  background: var(--lime); color: #fff; border: none;
  padding: 10px 22px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 999px; cursor: pointer;
  white-space: nowrap; transition: background 0.18s;
}
.cookie-accept:hover { background: var(--lime-deep); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px; gap: 12px; }
  .cookie-accept { width: 100%; padding: 12px; }
}