/* =============================================================
   PAGE-SPECIFIC STYLES — tansox-website
   Source: Stand Up Pouch.html (approved reference)

   These styles cover the section-level components shared across
   all product, market and sustainability pages:
     hero · breadcrumb · section scaffolding · intro
     variants grid · specifications · finishes strip
     industries cards · why-grid · FAQ · density tweaks
   ============================================================= */

/* ----- Hero ------------------------------------------------ */
section.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
section.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 24px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  padding: 84px 0 96px;
  position: relative;
  align-items: center;
}

h1.display {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-wrap: balance;
}
h1.display em {
  font-style: normal;
  color: var(--gold);
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.55;
  color: #C9D2E2;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 600px;
}
.hero-stats .stat .v {
  font-size: 28px; font-weight: 700; letter-spacing: -0.01em; color: #fff;
}
.hero-stats .stat .v span { color: var(--gold); }
.hero-stats .stat .k {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8FA0BC; margin-top: 4px;
}

.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0F2848;
  border: 1px solid var(--navy-line);
}
.hero-art .corner {
  position: absolute; top: 16px; left: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.hero-art .corner.br { top: auto; left: auto; bottom: 16px; right: 16px; }
.hero-art .specchip {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(6,21,43,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,153,62,0.4);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.specchip .title { font-size: 13px; font-weight: 600; color: #fff; }
.specchip .meta  { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }

/* ----- Breadcrumb ------------------------------------------ */
.breadcrumb {
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.breadcrumb .wrap {
  height: 56px; display: flex; align-items: center;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.02em;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep   { margin: 0 12px; color: #C6C2B6; }
.breadcrumb .here  { color: var(--ink); font-weight: 600; }

/* ----- Section scaffolding --------------------------------- */
section.block       { padding: 96px 0; }
section.block.tight { padding: 72px 0; }
section.block.grey  { background: var(--paper); }
section.block.dark  { background: var(--navy); color: #fff; }

.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head .eyebrow { color: var(--gold); }
section.dark .section-head .eyebrow::before { background: var(--gold); }
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1; font-weight: 700; letter-spacing: -0.015em;
  margin: 0; text-wrap: balance;
}
section.dark h2 { color: #fff; }
.section-head p {
  margin-top: 18px; font-size: 17px; color: var(--ink-2);
  max-width: 640px; line-height: 1.6;
}
section.dark .section-head p { color: #C9D2E2; }

/* ----- Intro paragraph ------------------------------------- */
.intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.intro .label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  border-top: 1.5px solid var(--ink); padding-top: 14px;
  position: relative;
}
.intro .label::before {
  content: ""; position: absolute; top: -1.5px; left: 0;
  width: 28px; height: 1.5px; background: var(--gold);
}
.intro p {
  font-size: 22px; line-height: 1.5; margin: 0;
  color: var(--ink); font-weight: 400; letter-spacing: -0.005em;
  text-wrap: pretty;
}
.intro p strong { font-weight: 600; }

/* ----- Variants grid --------------------------------------- */
.variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.variant {
  background: #fff;
  border: 1px solid var(--rule);
  transition: border-color .15s;
  cursor: pointer;
}
.variant:hover { border-color: var(--ink); }
.variant .ph {
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  position: relative;
}
.variant .ph .placeholder { position: absolute; inset: 0; }
.variant .meta {
  padding: 22px 22px 26px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.variant h3 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.variant .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em; color: var(--muted);
}
.variant .meta .more {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; white-space: nowrap;
}
.variant .desc {
  padding: 0 22px 24px; margin: -6px 0 0;
  font-size: 14px; color: var(--muted); line-height: 1.5;
}

/* ----- Specifications -------------------------------------- */
.specs-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.specs-art {
  aspect-ratio: 5 / 6;
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
}
.specs-art .badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--navy); color: #fff;
  padding: 10px 14px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.specs-art .ref {
  position: absolute; bottom: 24px; right: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em; color: var(--muted);
}
.spec-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.spec-list li {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 32px; padding: 22px 0;
  border-bottom: 1px solid var(--rule); align-items: baseline;
}
.spec-list .k {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.spec-list .v { font-size: 16px; color: var(--ink); line-height: 1.5; }
.spec-list .v strong { font-weight: 600; }
.spec-list .v .pill {
  display: inline-block;
  background: var(--paper-2); border: 1px solid var(--rule);
  padding: 4px 10px; margin: 3px 4px 3px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.04em; color: var(--ink-2);
}
.spec-foot { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Finishes strip -------------------------------------- */
section.finishes { background: var(--grey); padding: 80px 0; }
.finishes-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; border-top: 1px solid #D9D8D1; border-bottom: 1px solid #D9D8D1;
}
.finish {
  padding: 36px 20px; text-align: center;
  border-right: 1px solid #D9D8D1;
  background: var(--grey); transition: background .15s; cursor: default;
}
.finish:last-child { border-right: none; }
.finish:hover { background: #E6E5DE; }
.finish .icon { width: 56px; height: 56px; margin: 0 auto 18px; display: grid; place-items: center; color: var(--navy); }
.finish .icon svg { width: 100%; height: 100%; }
.finish .name { font-size: 14px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }
.finish .num { margin-top: 6px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }

/* ----- Industries cards ------------------------------------ */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry { position: relative; aspect-ratio: 3 / 4; background: var(--paper-2); overflow: hidden; cursor: pointer; }
.industry .placeholder { position: absolute; inset: 0; }
.industry .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.25) 55%, rgba(11,31,58,0) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: #fff;
}
.industry .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 8px;
}
.industry h3 { margin: 0 0 14px; font-size: 20px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.2; }
.industry .link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.industry:hover .link { color: var(--gold); }

/* ----- Why Tansox ------------------------------------------ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.why-cell { padding: 48px 36px 48px 0; border-right: 1px solid var(--rule); }
.why-cell:last-child { border-right: none; padding-right: 0; }
.why-cell:not(:first-child) { padding-left: 36px; }
.why-cell .icon { width: 56px; height: 56px; color: var(--gold); margin-bottom: 28px; }
.why-cell .icon svg { width: 100%; height: 100%; }
.why-cell h3 { margin: 0 0 12px; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.why-cell p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.why-cell .meta { margin-top: 24px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }

/* ----- FAQ ------------------------------------------------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 28px 0; font: inherit; color: var(--ink);
  font-size: 19px; font-weight: 600; letter-spacing: -0.005em;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.faq-q .toggle { flex: 0 0 28px; width: 28px; height: 28px; border: 1.5px solid var(--ink); display: grid; place-items: center; position: relative; }
.faq-q .toggle::before, .faq-q .toggle::after { content: ""; position: absolute; background: var(--ink); }
.faq-q .toggle::before { width: 12px; height: 1.5px; }
.faq-q .toggle::after  { width: 1.5px; height: 12px; transition: transform .2s; }
.faq-item.open .faq-q .toggle::after { transform: rotate(90deg); }
.faq-item.open .faq-q .toggle { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-q .toggle::before,
.faq-item.open .faq-q .toggle::after { background: var(--gold-ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 56px 32px 0; font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 720px; }
.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ----- Bottom CTA ------------------------------------------ */
.bottom-cta {
  background: var(--navy); color: #fff;
  padding: 96px 0;
}
.bottom-cta .wrap {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.bottom-cta h2 {
  font-size: clamp(28px, 3.2vw, 42px); font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.1; margin: 0;
  text-wrap: balance;
}
.bottom-cta h2 em { font-style: normal; color: var(--gold); }
.bottom-cta .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Density overrides ----------------------------------- */
body[data-density="tight"] section.block       { padding: 56px 0; }
body[data-density="tight"] section.block.tight { padding: 40px 0; }
body[data-density="tight"] .hero-grid          { padding: 56px 0 64px; gap: 56px; }
body[data-density="tight"] section.finishes    { padding: 56px 0; }
body[data-density="tight"] .bottom-cta         { padding: 56px 0; }
body[data-density="tight"] .section-head       { margin-bottom: 36px; }
body[data-density="tight"] .variants           { gap: 16px; }
body[data-density="tight"] .industries         { gap: 12px; }
body[data-density="tight"] .specs-grid         { gap: 56px; }
body[data-density="tight"] .why-cell           { padding: 32px 24px 32px 0; }
body[data-density="tight"] .why-cell:not(:first-child) { padding-left: 24px; }

body[data-density="spacious"] section.block       { padding: 140px 0; }
body[data-density="spacious"] section.block.tight { padding: 100px 0; }
body[data-density="spacious"] .hero-grid           { padding: 120px 0 140px; gap: 96px; }
body[data-density="spacious"] section.finishes     { padding: 120px 0; }
body[data-density="spacious"] .section-head        { margin-bottom: 80px; }
body[data-density="spacious"] .variants            { gap: 32px; }
body[data-density="spacious"] .industries          { gap: 24px; }
body[data-density="spacious"] .specs-grid          { gap: 112px; }
body[data-density="spacious"] .why-cell            { padding: 64px 48px 64px 0; }
body[data-density="spacious"] .why-cell:not(:first-child) { padding-left: 48px; }

/* ----- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid          { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
  .hero-art           { max-width: 480px; }
  .intro              { grid-template-columns: 1fr; gap: 20px; }
  .intro p            { font-size: 19px; }
  .variants           { grid-template-columns: repeat(2, 1fr); }
  .specs-grid         { grid-template-columns: 1fr; gap: 48px; }
  .spec-list li       { grid-template-columns: 160px 1fr; gap: 20px; }
  .finishes-row       { grid-template-columns: repeat(3, 1fr); }
  .finish             { border-bottom: 1px solid #D9D8D1; }
  .finish:nth-child(3n) { border-right: none; }
  .industries         { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: 1fr; }
  .why-cell           { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 0; }
  .why-cell:last-child { border-bottom: none; }
  .why-cell:not(:first-child) { padding-left: 0; }
  .bottom-cta .wrap   { grid-template-columns: 1fr; gap: 32px; }
  .bottom-cta .ctas   { justify-content: flex-start; }
}

@media (max-width: 640px) {
  section.block       { padding: 64px 0; }
  h1.display          { font-size: 38px; }
  .hero-stats         { grid-template-columns: 1fr 1fr; gap: 24px; }
  .variants           { grid-template-columns: 1fr; }
  .industries         { grid-template-columns: 1fr; }
  .spec-list li       { grid-template-columns: 1fr; gap: 6px; }
  .finishes-row       { grid-template-columns: repeat(2, 1fr); }
  .finish:nth-child(3n) { border-right: 1px solid #D9D8D1; }
  .finish:nth-child(2n) { border-right: none; }
}


/* ============================================================
   SUSTAINABILITY PAGES — stat grid + certifications
   Source: Tansox-Recyclable-Packaging.html
   ============================================================ */

/* ----- Stats grid (Why It Matters section) ----------------- */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat-cell {
  padding: 48px 36px 48px 0;
  border-right: 1px solid var(--rule);
}
.stat-cell:last-child { border-right: none; padding-right: 0; }
.stat-cell:not(:first-child) { padding-left: 36px; }
.stat-cell .stat-num {
  font-family: "Baloo 2", "Noto Sans SC", sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800;
  line-height: 1; letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
}
.stat-cell .stat-num em  { font-style: normal; color: var(--gold); }
.stat-cell .stat-num small {
  font-size: 0.45em; font-weight: 600;
  color: var(--ink-2); margin-left: 4px; letter-spacing: 0;
}
.stat-cell .stat-head {
  font-size: 19px; font-weight: 600; letter-spacing: -0.005em;
  line-height: 1.3; margin: 0 0 10px;
}
.stat-cell .stat-desc {
  font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0 0 18px;
}
.stat-cell .stat-src {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* ----- Certifications grid --------------------------------- */
.certs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.cert-cell {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; gap: 24px; align-items: flex-start;
}
.cert-cell:nth-child(odd)  { border-right: 1px solid var(--rule); padding-right: 32px; }
.cert-cell:nth-child(even) { padding-left: 32px; }
.cert-mark {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-align: center;
  flex-shrink: 0; padding: 4px; line-height: 1.1;
}
.cert-body h4 {
  margin: 0 0 6px;
  font-family: "Baloo 2", "Noto Sans SC", sans-serif;
  font-size: 17px; font-weight: 600; letter-spacing: -0.005em;
}
.cert-body .cert-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.cert-body p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.cert-note {
  margin-top: 28px; padding: 18px 22px;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  font-size: 14px; line-height: 1.55; color: var(--ink-2);
}


/* ============================================================
   MARKETS PAGES — related products strip
   Source: Baby Diaper Packaging _standalone_.html
   ============================================================ */

.related-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.related-card {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, padding .15s;
}
.related-card:last-child          { border-right: none; }
.related-card:not(:first-child)   { padding-left: 24px; }
.related-card:hover                { background: var(--paper); padding-left: 32px; }
.related-card:first-child:hover   { padding-left: 8px; }
.related-card .rc-num {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 600; flex-shrink: 0;
}
.related-card .rc-title {
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.005em; flex: 1; line-height: 1.3;
}
.related-card .rc-arrow {
  font-size: 18px; color: var(--muted);
  transition: color .15s, transform .2s;
}
.related-card:hover .rc-arrow { color: var(--gold); transform: translateX(4px); }


/* ============================================================
   STUB PAGE FALLBACKS
   Minimal styles for placeholder pages not yet populated
   ============================================================ */

/* Aliases for old btn class names used in home placeholder */
.btn--primary  { background: var(--gold); color: var(--gold-ink); }
.btn--primary:hover { background: var(--gold-2); }
.btn--outline  { color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

/* .container used in home placeholder hero */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* .page-hero used in about/contact/products stub pages */
.page-hero { background: var(--navy); color: #fff; padding: 80px 0; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; margin: 0 0 16px; }
.page-hero p  { font-size: 18px; color: #C9D2E2; max-width: 600px; margin: 0; }


/* ============================================================
   RESPONSIVE — sustainability & markets additions
   ============================================================ */

@media (max-width: 1024px) {
  .stat-grid  { grid-template-columns: 1fr; }
  .stat-cell  { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 0; }
  .stat-cell:last-child            { border-bottom: none; }
  .stat-cell:not(:first-child)     { padding-left: 0; }
  .certs-grid { grid-template-columns: 1fr; }
  .cert-cell  { padding: 22px 0; }
  .cert-cell:nth-child(odd)        { border-right: none; padding-right: 0; }
  .cert-cell:nth-child(even)       { padding-left: 0; }
  .related-row { grid-template-columns: repeat(2, 1fr); }
  .related-card:nth-child(2n)      { border-right: none; }
  .related-card:nth-child(-n+2)    { border-bottom: 1px solid var(--rule); }
}

@media (max-width: 640px) {
  .related-row  { grid-template-columns: 1fr; }
  .related-card { border-right: none; border-bottom: 1px solid var(--rule); padding-left: 0 !important; padding-right: 0; }
  .related-card:last-child { border-bottom: none; }
}


/* ============================================================
   HOMEPAGE — sustainability teaser + bottom CTA sub
   ============================================================ */

.eco-teaser {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}
.eco-teaser-icon {
  width: 80px; height: 80px;
  color: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.eco-teaser-icon svg { width: 100%; height: 100%; }
.eco-teaser-body p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 0 28px;
}
.eco-teaser-h {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.15; margin: 0 0 16px;
}

.bottom-cta-sub {
  margin: 14px 0 0;
  font-size: 16px;
  color: #8FA0BC;
  max-width: 480px;
}

@media (max-width: 640px) {
  .eco-teaser { grid-template-columns: 1fr; gap: 24px; }
  .eco-teaser-icon { width: 56px; height: 56px; margin-top: 0; }
}


/* ============================================================
   HERO CAROUSEL (homepage)
   ============================================================ */

.hero-carousel {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-carousel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 24px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide { flex: 0 0 100%; min-width: 100%; position: relative; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14; z-index: 0;
}
.slide-content { position: relative; z-index: 1; padding: 96px 0 80px; max-width: 780px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s; z-index: 20;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); }
.carousel-btn-prev { left: 20px; }
.carousel-btn-next { right: 20px; }
.carousel-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.4); }

.hero-stat-strip { background: #06152B; border-bottom: 1px solid var(--navy-line); }
.hero-stat-strip .hero-stats { border-top: none; margin: 0; padding: 28px 0; max-width: none; }


/* ============================================================
   PARTNERS STRIP
   ============================================================ */

.partners-strip {
  display: flex; flex-wrap: wrap; gap: 32px 48px;
  align-items: center; justify-content: center;
}
.partner-logo {
  height: 44px; width: auto; max-width: 110px; object-fit: contain;
  filter: grayscale(100%) opacity(0.55); transition: filter 0.15s;
}
.partner-logo:hover { filter: grayscale(0%) opacity(1); }


/* ============================================================
   PROCESS STEPS (4-column numbered)
   ============================================================ */

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.process-cell { padding: 40px 28px 40px 0; border-right: 1px solid var(--rule); }
.process-cell:last-child { border-right: none; padding-right: 0; }
.process-cell:not(:first-child) { padding-left: 28px; }
.process-num {
  font-family: "Baloo 2", "Noto Sans SC", sans-serif;
  font-size: 52px; font-weight: 800;
  color: var(--gold); opacity: 0.25;
  line-height: 1; margin-bottom: 14px; letter-spacing: -0.02em;
}
.process-cell h3 { margin: 0 0 10px; font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.process-cell p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-form-card { background: var(--paper); border: 1px solid var(--rule); padding: 36px 32px; }
.contact-form-card .qf-field input,
.contact-form-card .qf-field select,
.contact-form-card .qf-field textarea {
  background: #fff; border: 1px solid var(--rule); color: var(--ink);
}
.contact-form-card .qf-field input::placeholder { color: var(--muted); }
.contact-form-card .qf-field input:focus,
.contact-form-card .qf-field select:focus,
.contact-form-card .qf-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,153,62,.12); }
.contact-form-card .qf-label { color: var(--ink-2); }
.contact-form-card .qf-submit { margin-top: 8px; }
.contact-form-card .qf-note { color: var(--muted); }
.cinfo-block { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.cinfo-icon { width: 40px; height: 40px; flex-shrink: 0; background: #FBF6EA; display: grid; place-items: center; color: var(--gold); }
.cinfo-icon svg { width: 18px; height: 18px; }
.cinfo-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cinfo-value { font-size: 15px; color: var(--ink); line-height: 1.5; }
.cinfo-value a { color: var(--gold); }
.cinfo-value a:hover { color: var(--gold-2); }


/* ============================================================
   CAPABILITIES / SOLUTIONS HUB
   ============================================================ */

.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.solution-card { background: #fff; border: 1px solid var(--rule); overflow: hidden; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; }
.solution-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(11,31,58,0.08); }
.solution-card .sc-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.solution-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.solution-card:hover .sc-img img { transform: scale(1.04); }
.solution-card .sc-body { padding: 20px 20px 22px; }
.solution-card .sc-title { font-size: 16px; font-weight: 600; letter-spacing: -0.005em; margin: 0 0 8px; color: var(--ink); }
.solution-card .sc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }
.solution-card .sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.solution-card .sc-tag { font-family: "JetBrains Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; padding: 3px 8px; background: var(--paper-2); color: var(--muted); }

.formats-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.formats-table th { text-align: left; padding: 12px 16px; font-family: Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: var(--paper-2); border-bottom: 2px solid var(--rule); }
.formats-table td { padding: 14px 16px; border-bottom: 1px solid var(--rule); vertical-align: top; line-height: 1.5; }
.formats-table tr:last-child td { border-bottom: none; }
.formats-table tr:hover td { background: #FBF6EA; }
.formats-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }


/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-cell:nth-child(2) { border-right: none; }
  .process-cell:nth-child(3) { border-top: 1px solid var(--rule); padding-left: 0; padding-top: 32px; }
  .process-cell:nth-child(4) { border-top: 1px solid var(--rule); padding-top: 32px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 20px; }
  .formats-table { display: block; overflow-x: auto; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 28px 0; }
  .process-cell:last-child { border-bottom: none; }
  .process-cell:not(:first-child) { padding-left: 0; border-top: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .hero-stat-strip .hero-stats { grid-template-columns: repeat(2, auto); gap: 24px; }
}
