/* ═══════════════════════════════════════════════════════
   SYNE — reduce-emissions.css
   Platform 03b — Reduce Emissions
   Accent: Green  --green:#22C55E  --green-lt:#DCFCE7
   Shares accent token block with reduce.css — both
   pages use the same green palette so tokens are
   re-declared here for standalone use.
═══════════════════════════════════════════════════════ */

/* ── Page-level accent tokens ── */
:root {
  --acc:        #22C55E;
  --acc-dark:   #16A34A;
  --acc-darker: #166534;
  --acc-lt:     #DCFCE7;
  --acc-mid:    rgba(34,197,94,.28);
  --acc-glow:   rgba(34,197,94,.18);
}

/* ─────────────────────────────────────────────────────
   GREEN BUTTON VARIANTS
───────────────────────────────────────────────────── */
.btn-green {
  background: var(--acc);
  color: #fff;
  box-shadow: 0 2px 12px rgba(34,197,94,.32);
}
.btn-green:hover {
  background: var(--acc-dark);
  box-shadow: 0 4px 22px rgba(34,197,94,.44);
  transform: translateY(-1px);
  color: #fff;
}
.btn-green-outline {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
}
.btn-green-outline:hover { border-color: var(--acc); color: var(--acc); }

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.rem-hero {
  padding: 80px 0 72px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.rem-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(34,197,94,.07), transparent 55%),
    radial-gradient(ellipse 35% 60% at 0%   80%, rgba(34,197,94,.04), transparent 55%);
  pointer-events: none;
}
.rem-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(34,197,94,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
  pointer-events: none;
}
.rem-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.rem-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--acc-dark);
  background: var(--acc-lt);
  border: 1px solid var(--acc-mid);
  border-radius: 20px;
  padding: 5px 13px;
  margin-bottom: 20px;
}
.rem-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); flex-shrink: 0;
  animation: pulse-green-em 2s ease-in-out infinite;
}
@keyframes pulse-green-em {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.5); }
}
.rem-hero-h1 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.rem-hero-h1 strong { color: var(--acc); }
.rem-hero-lead {
  font-size: 17px; line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
}
.rem-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.rem-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.rem-hstat-val {
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -.025em; line-height: 1;
}
.rem-hstat-val em { font-style: normal; color: var(--acc); font-size: 15px; }
.rem-hstat-lbl { font-size: 11px; color: var(--ink-4); margin-top: 4px; font-weight: 500; line-height: 1.3; }

/* Hero panel */
.rem-preview-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(13,31,45,.08), 0 4px 16px rgba(34,197,94,.09);
}
.rem-panel-bar {
  background: var(--bg-grey);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.rem-panel-dot   { width: 9px; height: 9px; border-radius: 50%; }
.rem-panel-title { font-size: 11px; color: var(--ink-3); margin-left: 6px; flex: 1; }
.rem-panel-badge {
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 20px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.28);
  color: var(--acc-dark);
}
.rem-panel-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

/* ─────────────────────────────────────────────────────
   EMISSION CATEGORY OVERVIEW  (13-tile mosaic)
───────────────────────────────────────────────────── */
.rem-overview { padding: 96px 0; background: var(--bg-grey); }
.rem-overview-hd { text-align: center; max-width: 700px; margin: 0 auto 52px; }

.rem-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rem-cat-tile {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.rem-cat-tile::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: var(--acc);
  opacity: 0;
  transition: opacity .2s;
}
.rem-cat-tile:hover { border-color: var(--acc-mid); box-shadow: var(--sh-md); transform: translateY(-3px); }
.rem-cat-tile:hover::after { opacity: 1; }
.rem-cat-tile.featured { grid-column: span 2; }

.rem-cat-scope {
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px; display: inline-block;
  margin-bottom: 12px;
}
.rem-cat-ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  margin-bottom: 12px; border: 1px solid;
  flex-shrink: 0;
}
.rem-cat-ico svg { width: 18px; height: 18px; stroke-width: 1.8; fill: none; }
.rem-cat-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.rem-cat-body { font-size: 12px; line-height: 1.65; color: var(--ink-3); }
.rem-cat-metric {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
}
.rem-cat-metric-val {
  font-size: 18px; font-weight: 700;
  color: var(--acc-dark); letter-spacing: -.025em; line-height: 1;
}
.rem-cat-metric-lbl { font-size: 10px; color: var(--ink-4); line-height: 1.4; }

/* ─────────────────────────────────────────────────────
   REDUCTION DEEP-DIVE ROWS  (one per category)
───────────────────────────────────────────────────── */
.rem-section { padding: 96px 0; }
.rem-section:nth-child(even) { background: var(--bg-grey); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rem-section:nth-child(odd)  { background: #fff; }

.rem-section-hd {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 52px;
}
.rem-section-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; flex-shrink: 0;
  border: 1.5px solid;
}
.rem-section-ico svg { width: 24px; height: 24px; stroke-width: 1.8; fill: none; }
.rem-section-label { flex: 1; }
.rem-section-num {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--acc-dark); margin-bottom: 4px;
}
.rem-section-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700; letter-spacing: -.025em;
  color: var(--ink); line-height: 1.12;
}

/* Two-column row: content left, panel right */
.rem-cat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.rem-cat-row.rev .rem-cat-panel { order: -1; }

.rem-cat-intro { font-size: 14.5px; line-height: 1.76; color: var(--ink-3); margin-bottom: 24px; }

.rem-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.rem-action-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--bg-grey);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all .16s;
}
.rem-action-item:hover { border-color: var(--acc-mid); background: #fff; box-shadow: var(--sh-sm); }
.rem-action-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
  border: 1px solid;
}
.rem-action-ico svg { width: 16px; height: 16px; stroke-width: 2; fill: none; }
.rem-action-name { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.rem-action-desc { font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }
.rem-action-saving {
  text-align: right; flex-shrink: 0;
  font-size: 13px; font-weight: 700; color: var(--acc-dark);
  white-space: nowrap;
}
.rem-action-saving span { display: block; font-size: 10px; font-weight: 500; color: var(--ink-4); }

.rem-cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--acc-dark); text-decoration: none;
  transition: gap .15s;
}
.rem-cat-link svg { width: 12px; height: 12px; stroke: var(--acc-dark); stroke-width: 2; fill: none; }
.rem-cat-link:hover { gap: 10px; }

/* Reduction panel (right column) */
.rem-cat-panel {
  background: var(--bg-grey);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.rem-cat-panel.white { background: #fff; }
.rem-panel-vis-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.rem-panel-vis-bar.grey { background: var(--bg-grey); }
.rem-vis-dot   { width: 8px; height: 8px; border-radius: 50%; }
.rem-vis-title { font-size: 10.5px; color: var(--ink-3); margin-left: 6px; flex: 1; }
.rem-vis-body  { padding: 18px; display: flex; flex-direction: column; gap: 10px; }

/* ─────────────────────────────────────────────────────
   SHARED WIDGET HELPERS
───────────────────────────────────────────────────── */
.rem-metric {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 13px;
}
.rem-metric.dark { background: var(--bg-grey); }
.rem-metric-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 6px; }
.rem-metric-val { font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -.025em; line-height: 1; }
.rem-metric-val em { font-style: normal; color: var(--acc); font-size: 14px; }
.rem-metric-chg { font-size: 11px; font-weight: 600; color: var(--acc-dark); margin-top: 4px; }
.rem-metric-chg.warn { color: var(--amber); }
.rem-metric-chg.neg  { color: #EF4444; }

.rem-bar-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--line);
}
.rem-bar-row:last-child { border: none; }
.rem-bar-lbl   { font-size: 12px; font-weight: 500; color: var(--ink-2); flex: 1; min-width: 0; }
.rem-bar-track { flex: 2; height: 6px; background: var(--bg-slate); border-radius: 3px; overflow: hidden; }
.rem-bar-fill  { height: 100%; border-radius: 3px; transition: width .8s ease; }
.rem-bar-val   { font-size: 11px; font-weight: 700; width: 44px; text-align: right; flex-shrink: 0; }

.rem-status-list { display: flex; flex-direction: column; gap: 6px; }
.rem-status-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  background: var(--bg-grey);
  border-radius: 8px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.rem-status-item.white-bg { background: #fff; }
.rem-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.rem-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rem-kpi-grid.three { grid-template-columns: 1fr 1fr 1fr; }

/* ─────────────────────────────────────────────────────
   SUMMARY TABLE  (all 13 categories at a glance)
───────────────────────────────────────────────────── */
.rem-summary { padding: 96px 0; background: var(--bg-navy); }
.rem-summary-hd { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.rem-table-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
}
.rem-table {
  width: 100%; border-collapse: collapse;
}
.rem-table thead tr {
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rem-table th {
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 12px 18px; text-align: left;
}
.rem-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.rem-table tbody tr:last-child { border: none; }
.rem-table tbody tr:hover { background: rgba(255,255,255,.04); }
.rem-table td { padding: 14px 18px; vertical-align: middle; }
.rem-td-cat { display: flex; align-items: center; gap: 10px; }
.rem-td-ico {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.rem-td-ico svg { width: 13px; height: 13px; stroke-width: 2; fill: none; }
.rem-td-name { font-size: 13px; font-weight: 600; color: #fff; }
.rem-td-scope {
  font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 20px;
}
.rem-td-potential {
  font-size: 13px; font-weight: 700; color: var(--acc);
}
.rem-td-bar-track {
  width: 80px; height: 5px; background: rgba(255,255,255,.12);
  border-radius: 3px; overflow: hidden; display: inline-block;
}
.rem-td-bar-fill { height: 100%; border-radius: 3px; background: var(--acc); }
.rem-td-priority {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}

/* ─────────────────────────────────────────────────────
   QUOTE
───────────────────────────────────────────────────── */
.rem-quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #052E16 0%, #065F2E 55%, #064E26 100%);
  position: relative; overflow: hidden;
}
.rem-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.05), transparent 55%);
  pointer-events: none;
}
.rem-quote-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.rem-quote-mark   { font-size: 80px; line-height: .8; color: rgba(255,255,255,.13); font-family: Georgia,serif; margin-bottom: 8px; }
.rem-quote-text   { font-size: clamp(18px, 2.4vw, 24px); line-height: 1.55; color: #fff; font-weight: 500; margin-bottom: 28px; letter-spacing: -.01em; }
.rem-quote-attr   { display: flex; align-items: center; justify-content: center; gap: 12px; }
.rem-quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.13);
  border: 2px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 700; color: #fff;
}
.rem-quote-who { font-size: 13.5px; font-weight: 700; color: #fff; }
.rem-quote-co  { font-size: 12px; color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────── */
.rem-faq { padding: 96px 0; background: var(--bg-grey); }
.rem-faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.rem-faq-sidebar { position: sticky; top: 124px; }
.rem-faq-sidebar-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.rem-faq-sidebar-body  { font-size: 14px; line-height: 1.72; color: var(--ink-3); margin-bottom: 24px; }

/* ─────────────────────────────────────────────────────
   CTA
───────────────────────────────────────────────────── */
.rem-cta { padding: 80px 0; background: #fff; border-top: 1px solid var(--line); }
.rem-cta-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.rem-cta-title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.025em; color: var(--ink); margin-bottom: 12px; }
.rem-cta-title strong { color: var(--acc-dark); }
.rem-cta-body  { font-size: 15px; color: var(--ink-3); line-height: 1.68; max-width: 520px; }
.rem-cta-btns  { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .rem-cat-grid { grid-template-columns: 1fr 1fr; }
  .rem-cat-tile.featured { grid-column: span 1; }
}
@media (max-width: 960px) {
  .rem-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .rem-cat-row    { grid-template-columns: 1fr; gap: 40px; }
  .rem-cat-row.rev .rem-cat-panel { order: 0; }
  .rem-faq-inner  { grid-template-columns: 1fr; gap: 44px; }
  .rem-faq-sidebar { position: static; }
  .rem-cta-inner  { grid-template-columns: 1fr; gap: 28px; }
  .rem-kpi-grid.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .rem-hero { padding: 52px 0 44px; }
  .rem-cat-grid { grid-template-columns: 1fr; }
  .rem-kpi-grid { grid-template-columns: 1fr; }
  .rem-kpi-grid.three { grid-template-columns: 1fr; }
  .rem-table th:nth-child(4),
  .rem-table td:nth-child(4) { display: none; }
}
