:root {
    /* Green + White + Black palette */
    --ivory: #FFFFFF;         /* pure white background */
    --ivory-dark: #FAFAFA;    /* soft near-white for subtle sections */
    --ink: #0A0A0A;           /* near-black for dark sections */
    --ink-soft: #171717;      /* body text dark */
    --muted: #525252;         /* muted gray text */
    --muted-light: #A3A3A3;   /* very muted gray */
    --forest: #14532D;        /* deep primary green */
    --forest-light: #166534;  /* slightly lighter green */
    --forest-pale: #F0FDF4;   /* pale mint background */
    --saffron: #16A34A;       /* bright signal green (was accent orange) */
    --saffron-pale: #DCFCE7;  /* pale signal green */
    --amber: #525252;         /* now neutral gray (no warning yellow) */
    --emerald: #15803D;       /* medium green */
    --border: #E5E5E5;        /* neutral border */
    --border-dark: #D4D4D4;   /* darker neutral border */

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ---------- NAVIGATION ---------- */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  nav.top .inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    max-width: 1240px; margin: 0 auto;
  }
  .logo {
    display: flex; align-items: baseline; gap: 1px;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
  }
  .logo .lg-c { font-size: 24px; font-weight: 500; color: var(--ink); }
  .logo .lg-s { font-size: 24px; font-weight: 300; font-style: italic; color: var(--saffron); }
  .logo .lg-tag {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted-light); margin-left: 10px; padding-left: 10px;
    border-left: 1px solid var(--border-dark);
  }
  nav.top ul {
    display: flex; list-style: none; gap: 32px;
    align-items: center;
    font-size: 14px;
  }
  nav.top ul a { color: var(--ink-soft); transition: color 0.15s; }
  nav.top ul a:hover { color: var(--forest); }
  .nav-cta {
    padding: 8px 18px; background: var(--ink); color: var(--ivory);
    border-radius: 3px; border: none;
    font-size: 13px; font-weight: 500;
    transition: background 0.15s;
  }
  .nav-cta:hover { background: var(--forest); }

  /* ---------- HERO ---------- */
  #hero-parent {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

#hero-parent::before {
  content: '';
  position: absolute; 
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(22, 163, 74, 0.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(20, 83, 45, 0.35), transparent 50%);
  pointer-events: none;
}

/* 2. The Inner Component (Handles the spacing, background becomes transparent) */
.hero {
  background: transparent; 
  padding: 100px 0 120px;
  position: relative;
  z-index: 1; /* Ensures text stays above the parent's gradient */
}
  .hero .container { position: relative; z-index: 1; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ivory-dark);
    margin-bottom: 36px;
  }
  .hero-tag .dot {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--saffron);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ivory); font-size: 10px; font-weight: 600;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    max-width: 18ch;
  }
  .hero h1 em {
    font-style: italic; font-weight: 400;
    color: var(--saffron);
  }
  .hero h1 .underline {
    border-bottom: 2px solid var(--saffron);
    padding-bottom: 4px;
  }
  .hero-sub {
    font-size: 18px; line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin-bottom: 44px;
  }
  .hero-cta {
    display: flex; gap: 14px; align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    padding: 14px 28px;
    background: var(--saffron); color: var(--ivory);
    border: none; border-radius: 3px;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.15s;
  }
  .btn-primary:hover { background: #0F3D22; transform: translateY(-1px); }
  .btn-secondary {
    padding: 13px 26px;
    background: transparent; color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 3px;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.15s;
  }
  .btn-secondary:hover { border-color: var(--ivory); }

  /* Floating data fragments in hero */
  .hero-data {
    position: absolute;
    right: 40px; bottom: 80px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
    line-height: 1.8;
    pointer-events: none;
  }
  .hero-data span { display: block; }
  .hero-data strong { color: rgba(255, 255, 255, 0.6); font-weight: 500; }
  @media (max-width: 900px) { .hero-data { display: none; } }

  /* ---------- STATS STRIP ---------- */
  .stats-strip {
    background: var(--ivory-dark);
    border-bottom: 1px solid var(--border);
  }
  .stats-strip .inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: 1240px; margin: 0 auto;
    padding: 0 40px;
  }
  .stat {
    padding: 28px 20px;
    border-right: 1px solid var(--border);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .stat-num em {
    font-style: italic; color: var(--saffron); font-weight: 400;
  }
  .stat-label {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); margin-top: 10px;
  }

  /* ---------- SECTIONS ---------- */
  section.block { padding: 100px 0; }
  .section-tag {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--saffron); margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .section-tag::before {
    content: ''; width: 24px; height: 1px; background: var(--saffron);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 20ch;
  }
  .section-title em {
    font-style: italic; color: var(--saffron); font-weight: 400;
  }
  .section-intro {
    font-size: 17px; color: var(--muted);
    max-width: 620px; line-height: 1.55;
    margin-bottom: 60px;
  }

  /* ---------- WHY NOW ---------- */
  .why-now {
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
  }
  .timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .timeline-item {
    background: var(--ivory);
    padding: 36px 32px 40px;
    position: relative;
  }
  .timeline-item.live {
    background: var(--ink); color: var(--ivory);
  }
  .timeline-date {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .timeline-item.live .timeline-date { color: var(--ivory-dark); }
  .timeline-date .chip {
    background: var(--ivory-dark);
    padding: 3px 9px; border-radius: 2px;
    letter-spacing: 0.04em;
  }
  .timeline-item.live .timeline-date .chip {
    background: var(--saffron); color: var(--ivory);
  }
  .timeline-title {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .timeline-item p {
    font-size: 14px; line-height: 1.6; color: var(--muted);
  }
  .timeline-item.live p { color: rgba(255, 255, 255, 0.75); }

  /* ---------- CBAM PRIMARY + CCTS ADD-ON ---------- */
  .mandates {
    background: var(--ivory-dark);
    border-bottom: 1px solid var(--border);
  }

  /* CBAM hero card — full-width, dark, the star */
  .cbam-hero {
    background: var(--forest);
    color: var(--ivory);
    border-radius: 8px;
    padding: 56px 56px 48px;
    margin-top: 28px;
    position: relative;
    overflow: hidden;
  }
  .cbam-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.18), transparent 65%);
    pointer-events: none;
  }
  .cbam-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .cbam-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--saffron);
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
  }
  .cbam-eyebrow::before {
    content: ''; width: 22px; height: 1px; background: var(--saffron);
  }
  .cbam-eyebrow .pill {
    background: var(--saffron); color: var(--ivory);
    padding: 3px 8px; border-radius: 3px;
    font-size: 9px; letter-spacing: 0.08em;
  }
  .cbam-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin-bottom: 20px;
  }
  .cbam-title em {
    font-style: italic; color: var(--saffron); font-weight: 400;
  }
  .cbam-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .cbam-body strong { color: var(--ivory); font-weight: 500; }

  .cbam-facts {
    list-style: none;
  }
  .cbam-facts li {
    padding: 16px 0 16px 26px;
    position: relative;
    color: var(--ivory);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
    line-height: 1.5;
  }
  .cbam-facts li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .cbam-facts li::before {
    content: '→';
    position: absolute; left: 0; top: 16px;
    color: var(--saffron); font-weight: 700;
  }
  .cbam-facts li strong {
    color: var(--saffron); font-weight: 500;
  }
  .cbam-facts li .fact-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
  }

  /* CCTS add-on strip — visually subordinate */
  .ccts-addon {
    margin-top: 24px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 36px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
  }
  .ccts-addon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 8px;
    background: var(--forest-pale);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 600;
    flex-shrink: 0;
  }
  .ccts-addon-badge::before {
    content: '+';
    width: 18px; height: 18px;
    background: var(--forest);
    color: var(--ivory);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
  }
  .ccts-addon-text {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
  }
  .ccts-addon-text strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 3px;
  }
  .ccts-addon-text em {
    font-style: italic;
    color: var(--forest);
  }
  .ccts-addon-stats {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    border-left: 1px solid var(--border);
    padding-left: 28px;
  }
  .ccts-addon-stats .stat-mini {
    text-align: left;
  }
  .ccts-addon-stats .stat-mini-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .ccts-addon-stats .stat-mini-num em {
    font-style: italic;
    color: var(--forest);
  }
  .ccts-addon-stats .stat-mini-lbl {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
  }

  /* ---------- HOW IT WORKS ---------- */
  .how {
    background: var(--ink);
    color: var(--ivory);
  }
  .how .section-tag { color: var(--saffron); }
  .how .section-tag::before { background: var(--saffron); }
  .how .section-title { color: var(--ivory); }
  .how .section-intro { color: rgba(255, 255, 255, 0.65); }
  .how-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
  }
  .how-card {
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    position: relative;
    transition: border-color 0.2s;
  }
  .how-card:hover { border-color: rgba(22, 163, 74, 0.5); }
  .how-num {
    font-family: var(--font-display);
    font-size: 64px; font-weight: 300;
    color: var(--saffron);
    font-style: italic;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
  }
  .how-card h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .how-card p {
    font-size: 14px; line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
  }
  .how-card .meta {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.06em;
    color: var(--saffron);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
  }

  /* ---------- FEATURES ---------- */
  .features { background: var(--ivory); }
  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px; align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--border);
  }
  .feature-row:first-of-type { border-top: none; padding-top: 20px; }
  .feature-row.reverse { direction: rtl; }
  .feature-row.reverse > * { direction: ltr; }
  .feature-label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 18px;
  }
  .feature-row h3 {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .feature-row h3 em {
    font-style: italic; color: var(--saffron);
  }
  .feature-row p {
    font-size: 15px; line-height: 1.65;
    color: var(--muted); margin-bottom: 16px;
  }
  .feature-bullets {
    list-style: none;
    font-size: 14px; color: var(--ink-soft);
  }
  .feature-bullets li {
    padding: 10px 0 10px 24px;
    position: relative;
    border-top: 1px solid var(--border);
  }
  .feature-bullets li:last-child { border-bottom: 1px solid var(--border); }
  .feature-bullets li::before {
    content: '→';
    position: absolute; left: 0; top: 10px;
    color: var(--saffron); font-weight: 600;
  }

  /* Feature visual mockups */
  .feature-visual {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 20px 40px -15px rgba(10, 10, 10, 0.08);
    position: relative;
  }
  .visual-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
  }
  .visual-header-title {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 500;
    letter-spacing: -0.01em;
  }
  .visual-header-meta {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--muted);
  }

  /* Supplier network visual */
  .network {
    display: flex; flex-direction: column; gap: 10px;
  }
  .network-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px; align-items: center;
    padding: 10px 12px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 13px;
  }
  .network-row.highlight {
    background: var(--forest-pale);
    border-color: var(--forest);
  }
  .network-name { font-weight: 500; color: var(--ink); }
  .network-mat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
  }
  .badge {
    padding: 3px 8px; border-radius: 999px;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.03em;
  }
  .badge-current { background: #DCFCE7; color: var(--emerald); }
  .badge-pending { background: var(--saffron-pale); color: var(--saffron); }
  .badge-stale { background: #F5F5F5; color: var(--amber); }

  /* Validation visual */
  .validation-card {
    background: var(--saffron-pale);
    border: 1px solid var(--saffron);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 14px;
  }
  .validation-card .v-title {
    color: var(--saffron); font-weight: 500;
    font-size: 13px; margin-bottom: 6px;
  }
  .validation-card .v-text {
    font-size: 12px; color: var(--ink-soft);
    line-height: 1.5;
  }
  .data-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .data-row:last-child { border-bottom: none; }
  .data-row .flag-row { background: var(--saffron-pale); margin: 0 -12px; padding: 10px 12px; }

  /* Dashboard KPI visual */
  .kpi-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .kpi-box {
    padding: 14px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 3px;
  }
  .kpi-box .kpi-label {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--muted);
  }
  .kpi-box .kpi-val {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 400;
    letter-spacing: -0.02em;
    margin-top: 6px;
  }
  .kpi-box .kpi-unit {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--muted); margin-left: 4px;
  }
  .quality-bar {
    margin-top: 16px;
    padding: 14px;
    background: var(--ink);
    color: var(--ivory);
    border-radius: 3px;
    font-size: 12px;
    display: flex; align-items: center; gap: 12px;
  }
  .quality-bar-num {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 400;
    color: var(--saffron);
  }

  /* ---------- SECTORS ---------- */
  .sectors { background: var(--ivory-dark); }
  .sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 20px;
  }
  .sector {
    background: var(--ivory);
    padding: 28px;
    position: relative;
  }
  .sector .sec-status {
    position: absolute; top: 20px; right: 20px;
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .sector .sec-status.live { color: var(--emerald); }
  .sector .sec-status.soon { color: var(--amber); }
  .sector .sec-status.q { color: var(--muted-light); }
  .sec-tags {
    display: flex; gap: 6px;
    margin-top: 12px;
    margin-bottom: 14px;
  }
  .sec-tag {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .sec-tag.cbam { background: var(--forest-pale); color: var(--forest); }
  .sec-tag.ccts { background: var(--saffron-pale); color: var(--saffron); }
  .sec-tag.both {
    background: var(--ink); color: var(--ivory);
  }
  .sec-name {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .sec-codes {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--muted);
    margin-bottom: 14px;
  }
  .sec-desc {
    font-size: 13px; line-height: 1.55;
    color: var(--ink-soft);
  }

  /* ---------- PRICING ---------- */
  .pricing {
    background: var(--ivory);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .pricing-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .pricing-formula {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--ink);
    padding: 40px 36px;
    background: var(--ivory-dark);
    border-radius: 4px;
    position: relative;
  }
  .pricing-formula .operator {
    color: var(--saffron); font-style: italic;
    margin: 0 6px;
  }
  .pricing-formula .token {
    border-bottom: 2px dotted var(--saffron);
    padding-bottom: 2px;
  }
  .pricing-example {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-dark);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
  }
  .pricing-example strong { color: var(--ink); font-weight: 500; }
  .pricing-principles {
    list-style: none;
  }
  .pricing-principles li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: 40px 1fr;
    gap: 20px; align-items: start;
  }
  .pricing-principles li:first-child { padding-top: 0; }
  .pp-num {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 300;
    font-style: italic;
    color: var(--saffron);
    line-height: 1;
  }
  .pp-title {
    font-family: var(--font-display);
    font-size: 19px; font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .pp-desc {
    font-size: 13px; line-height: 1.6;
    color: var(--muted);
  }

  /* ---------- QUOTE / POSITIONING ---------- */
  .quote-block {
    background: var(--forest);
    color: var(--ivory);
    padding: 100px 0;
  }
  .quote-inner { max-width: 900px; }
  .quote-mark {
    font-family: var(--font-display);
    font-size: 120px; font-weight: 300;
    font-style: italic;
    color: var(--saffron);
    line-height: 0.3;
    margin-bottom: 20px;
    display: block;
  }
  .quote-text {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300; font-style: italic;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
  }
  .quote-text em {
    font-style: normal;
    border-bottom: 1px solid var(--saffron);
    padding-bottom: 2px;
  }
  .quote-attr {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
  }
  .quote-attr strong { color: var(--ivory); font-weight: 500; }

  /* ---------- FAQ ---------- */
  .faq { background: var(--ivory); }
  .faq-list {
    max-width: 900px;
    border-top: 1px solid var(--border);
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-q {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 20px; font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.15s;
  }
  .faq-q:hover { color: var(--saffron); }
  .faq-q .plus {
    font-family: var(--font-mono);
    font-size: 20px; color: var(--saffron);
    font-weight: 300;
    transition: transform 0.25s;
  }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a-inner {
    padding: 0 0 28px;
    max-width: 720px;
    font-size: 15px; line-height: 1.65;
    color: var(--muted);
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    background: var(--ink);
    color: var(--ivory);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12), transparent 60%);
    pointer-events: none;
  }
  .final-cta .container { position: relative; z-index: 1; }
  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 16ch;
    margin-left: auto; margin-right: auto;
  }
  .final-cta h2 em {
    font-style: italic;
    color: var(--saffron);
    font-weight: 400;
  }
  .final-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 44px;
  }
  .final-cta-row {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ivory-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .footer-brand p {
    font-size: 13px; color: var(--muted);
    margin-top: 20px; line-height: 1.6;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 18px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .footer-col a:hover { color: var(--saffron); }
  .footer-base {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.04em;
    color: var(--muted);
  }
  .footer-base a:hover { color: var(--saffron); }

  /* ---------- DEMO BOOKING MODAL ---------- */
  .modal-wrap {
    position: fixed; inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .modal-wrap.open {
    pointer-events: auto;
    opacity: 1;
  }
  .modal-overlay {
    position: absolute; inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(6px);
  }
  .modal-card {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%) scale(0.97);
    width: 92%; max-width: 580px;
    max-height: 90vh;
    background: var(--ivory);
    border-radius: 8px;
    box-shadow: 0 30px 80px -20px rgba(10, 10, 10, 0.4),
                0 0 0 1px var(--border);
    overflow-y: auto;
    display: flex; flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .modal-wrap.open .modal-card {
    transform: translate(-50%, -50%) scale(1);
  }

  .modal-header {
    padding: 22px 28px 0;
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-shrink: 0;
  }
  .modal-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--saffron);
    display: flex; align-items: center; gap: 10px;
  }
  .modal-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--saffron);
  }
  .modal-close {
    background: transparent; border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 20px; font-weight: 300;
    margin: -6px -8px 0 0;
  }
  .modal-close:hover {
    background: var(--border);
    color: var(--ink);
  }

  /* Step indicator */
  .step-indicator {
    display: flex; gap: 8px;
    padding: 14px 28px 0;
    align-items: center;
  }
  .step-dot {
    flex: 1;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    transition: background 0.3s;
  }
  .step-dot.done { background: var(--forest); }
  .step-dot.active { background: var(--saffron); }

  /* Step body */
  .modal-body {
    padding: 28px 28px 24px;
    overflow-y: auto;
    flex: 1;
  }

  .modal-step { display: none; }
  .modal-step.active { display: block; }

  .modal-title {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .modal-title em {
    font-style: italic; color: var(--saffron);
  }
  .modal-sub {
    font-size: 14px; color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.55;
  }

  /* Form grid */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
  .form-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    background: var(--ivory);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.08);
  }
  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23525252' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 32px;
  }

  /* Slot picker (step 2) */
  .slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 6px;
  }
  .slot-option {
    padding: 14px;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
    background: var(--ivory);
    position: relative;
  }
  .slot-option:hover {
    border-color: var(--forest);
  }
  .slot-option.selected {
    border-color: var(--forest);
    background: var(--forest-pale);
    box-shadow: 0 0 0 1px var(--forest);
  }
  .slot-option input[type="radio"] {
    position: absolute;
    opacity: 0; pointer-events: none;
  }
  .slot-day {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--muted);
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 4px;
  }
  .slot-time {
    font-family: var(--font-display);
    font-size: 17px; color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .slot-option.selected .slot-day {
    color: var(--forest);
  }

  /* Summary card on step 2 */
  .scope-summary {
    background: var(--ivory-dark);
    padding: 14px 16px;
    border-radius: 4px;
    margin-bottom: 22px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .scope-summary strong { color: var(--ink); font-weight: 500; }
  .scope-summary .sl {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--muted);
    letter-spacing: 0.06em; text-transform: uppercase;
    display: block; margin-bottom: 4px;
  }

  /* Footer with buttons */
  .modal-footer {
    padding: 18px 28px 24px;
    border-top: 1px solid var(--border);
    background: var(--ivory);
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .modal-footer .privacy {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--muted);
    letter-spacing: 0.04em;
    flex: 1;
  }
  .modal-btn {
    padding: 11px 22px;
    border: none; border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .modal-btn-primary {
    background: var(--forest);
    color: var(--ivory);
  }
  .modal-btn-primary:hover {
    background: #0F3D22;
  }
  .modal-btn-ghost {
    background: transparent;
    color: var(--muted);
    padding-left: 0;
  }
  .modal-btn-ghost:hover { color: var(--ink); }

  /* Success state */
  .success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--forest-pale);
    display: flex; align-items: center; justify-content: center;
    margin: 8px 0 20px;
    color: var(--forest);
    font-size: 28px;
  }
  .success-card {
    background: var(--forest-pale);
    border: 1px solid var(--forest);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 22px;
  }
  .success-card .sc-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
  }
  .success-card .sc-label {
    font-family: var(--font-mono); font-size: 10px;
    color: var(--forest); letter-spacing: 0.06em; text-transform: uppercase;
  }
  .success-card .sc-value {
    color: var(--ink); font-weight: 500;
  }
  .next-steps {
    margin-top: 18px;
  }
  .next-steps h4 {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--muted);
    letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .next-steps ol {
    list-style: none; counter-reset: ns;
    padding: 0;
  }
  .next-steps li {
    counter-increment: ns;
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 13px; color: var(--ink-soft);
    line-height: 1.5;
  }
  .next-steps li::before {
    content: counter(ns);
    position: absolute; left: 0; top: 9px;
    width: 22px; height: 22px;
    background: var(--saffron);
    color: var(--ivory);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  }

  /* Responsive modal */
  @media (max-width: 600px) {
    .modal-card { max-height: 95vh; width: 94%; }
    .modal-body { padding: 20px 20px 18px; }
    .modal-header { padding: 18px 20px 0; }
    .modal-footer { padding: 14px 20px 18px; flex-direction: column; }
    .step-indicator { padding: 12px 20px 0; }
    .form-grid { grid-template-columns: 1fr; }
    .slot-grid { grid-template-columns: 1fr; }
    .modal-title { font-size: 24px; }
    .lg-tag { display: none; }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px) {
    .container { padding: 0 24px; }
    nav.top .inner { padding: 16px 24px; }
    nav.top ul { gap: 20px; }
    nav.top ul li:not(:last-child) { display: none; }
    .stats-strip .inner { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .timeline { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
    .feature-row.reverse { direction: ltr; }
    .sector-grid { grid-template-columns: 1fr; }
    .pricing-inner { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    section.block { padding: 70px 0; }
    .cbam-hero { padding: 40px 28px 36px; }
    .cbam-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .ccts-addon {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 24px;
    }
    .ccts-addon-stats {
      border-left: none;
      border-top: 1px solid var(--border);
      padding-left: 0;
      padding-top: 18px;
      gap: 32px;
    }
  }


  /* calculator style */


   /* HEADER */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid #E5E5E5;
  }
  .wordmark { font-size: 20px; line-height: 1; }
  .wordmark .green { color: #16A34A; font-style: italic; }
  .doc-id {
    font-size: 10px;
    color: #A3A3A3;
    letter-spacing: 1.5px;
  }

  /* TITLE */
  .title-block { margin-bottom: 32px; }
  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #16A34A;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .title {
    font-size: 32px;
    font-weight: 500;
    color: #0A0A0A;
    margin: 0 0 8px;
    line-height: 1.15;
  }
  @media (min-width: 720px) { .title { font-size: 40px; } }
  .subtitle {
    font-size: 15px;
    color: #525252;
    line-height: 1.5;
  }

  /* CARD */
  .card {
    background: #FFFFFF;
    border: 0.5px solid #E5E5E5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
  }
  @media (min-width: 720px) {
    .card { padding: 32px; }
  }

  .step { display: none; }
  .step.active { display: block; }

  /* PROGRESS */
  .progress {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
  }
  .progress-dot {
    flex: 1;
    height: 4px;
    background: #E5E5E5;
    border-radius: 2px;
  }
  .progress-dot.active { background: #16A34A; }
  .progress-dot.done   { background: #14532D; }

  /* STEP LABELS */
  .step-label {
    font-size: 12px;
    color: #A3A3A3;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
  .step-title {
    font-size: 22px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 6px;
  }
  .step-hint {
    font-size: 13px;
    color: #525252;
    margin-bottom: 20px;
  }

  /* SECTOR SUMMARY BAR (top of Step 2 + 3) */
  .sector-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F0FDF4;
    border: 0.5px solid #16A34A;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #14532D;
    margin-bottom: 20px;
  }
  .sector-summary .sector-summary-name {
    font-weight: 600;
  }
  .sector-summary .sector-summary-change {
    margin-left: auto;
    color: #525252;
    font-size: 11px;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
  }

  /* SECTOR TILES */
  .sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  @media (min-width: 600px) {
    .sector-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .sector-tile {
    padding: 18px 14px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.12s ease;
  }
  .sector-tile:hover {
    border-color: #16A34A;
    background: #F0FDF4;
  }
  .sector-tile.active {
    border-color: #14532D;
    background: #F0FDF4;
    border-width: 2px;
    padding: 17px 13px;
  }
  .sector-name {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 2px;
  }
  .sector-codes {
    font-size: 11px;
    color: #525252;
    font-family: "SF Mono", Consolas, monospace;
  }

  /* FORM GROUPS */
  .form-group { margin-bottom: 22px; }
  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #171717;
    margin-bottom: 6px;
  }
  .form-hint {
    font-size: 12px;
    color: #737373;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* SLIDER */
  .slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #E5E5E5;
    border-radius: 2px;
    outline: none;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16A34A;
    border: 3px solid #FFFFFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    cursor: pointer;
  }
  input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16A34A;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    cursor: pointer;
  }
  .slider-value {
    min-width: 100px;
    text-align: right;
    font-family: "SF Mono", Consolas, monospace;
    font-size: 15px;
    font-weight: 500;
    color: #0A0A0A;
  }
  .slider-bounds {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 10px;
    color: #A3A3A3;
    font-family: "SF Mono", Consolas, monospace;
  }

  /* SELECT */
  select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #0A0A0A;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23525252' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
  }
  select:focus {
    outline: none;
    border-color: #16A34A;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
  }

  /* RADIO TILES */
  .radio-group { display: grid; gap: 8px; }
  .radio-tile {
    display: flex;
    align-items: flex-start;
    padding: 12px 14px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.12s ease;
  }
  .radio-tile:hover { border-color: #A3A3A3; }
  .radio-tile.active {
    border-color: #14532D;
    background: #F0FDF4;
    border-width: 2px;
    padding: 11px 13px;
  }
  .radio-tile input { display: none; }
  .radio-content { flex: 1; }
  .radio-title {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 2px;
  }
  .radio-hint {
    font-size: 12px;
    color: #525252;
  }

  /* BUTTONS */
  .btn-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .btn {
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.12s ease;
    cursor: pointer;
  }
  .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  /* .btn-primary {
    background: #14532D;
    color: #FFFFFF;
    border-color: #14532D;
    flex: 1;
  }
  .btn-primary:hover:not(:disabled) { background: #0F3D22; } */
  .btn-secondary {
    background: #FFFFFF;
    color: #525252;
    border-color: #E5E5E5;
  }
  .btn-secondary:hover {
    background: #FAFAFA;
    border-color: #A3A3A3;
  }

  /* RESULT */
  .result-headline { margin-bottom: 12px; }
  .result-range {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 1.1;
    margin: 4px 0;
  }
  @media (min-width: 600px) { .result-range { font-size: 46px; } }
  .result-range .dash { color: #A3A3A3; font-weight: 400; }
  .result-blurb {
    font-size: 13px;
    color: #525252;
    margin-bottom: 24px;
  }

  .range-bar-card {
    background: #FAFAFA;
    border: 0.5px solid #E5E5E5;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 28px;
  }
  .range-bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .range-bar {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right,
      #16A34A 0%, #16A34A 30%,
      #FEF6E4 30%, #FEF6E4 70%,
      #92400E 70%, #92400E 100%);
  }
  .range-bar-end {
    font-family: "SF Mono", Consolas, monospace;
    font-weight: 500;
  }
  .range-bar-end.low  { color: #14532D; }
  .range-bar-end.high { color: #92400E; }
  .range-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #A3A3A3;
    font-family: "SF Mono", Consolas, monospace;
    letter-spacing: 1px;
  }

  /* BREAKDOWN */
  .breakdown-label {
    font-size: 10px;
    font-weight: 600;
    color: #525252;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .breakdown-table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
    margin-bottom: 28px;
  }
  .breakdown-table tr { border-bottom: 0.5px solid #E5E5E5; }
  .breakdown-table tr:last-child { border-bottom: none; }
  .breakdown-table td { padding: 11px 0; }
  .breakdown-table td:first-child { color: #525252; }
  .breakdown-table td:last-child {
    text-align: right;
    font-family: "SF Mono", Consolas, monospace;
    color: #0A0A0A;
    font-weight: 500;
  }

  /* SAVINGS CALLOUT */
  .savings-callout {
    background: #F0FDF4;
    border: 0.5px solid #16A34A;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 28px;
  }
  .savings-label {
    font-size: 10px;
    font-weight: 600;
    color: #14532D;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .savings-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    color: #14532D;
    margin-bottom: 8px;
  }
  @media (min-width: 600px) { .savings-number { font-size: 34px; } }
  .savings-body {
    font-size: 13px;
    color: #166534;
    line-height: 1.55;
  }

  /* CTAs */
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  @media (min-width: 600px) {
    .cta-grid { grid-template-columns: 1fr 1fr; }
  }
  .cta-btn {
    padding: 16px 18px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    border: 1px solid;
    transition: all 0.12s ease;
  }
  .cta-btn-primary {
    background: #14532D;
    color: #FFFFFF;
    border-color: #14532D;
  }
  .cta-btn-primary:hover { background: #0F3D22; }
  .cta-btn-secondary {
    background: #FFFFFF;
    color: #14532D;
    border-color: #14532D;
  }
  .cta-btn-secondary:hover { background: #F0FDF4; }
  .cta-btn-eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    opacity: 0.8;
  }
  .cta-btn-primary .cta-btn-eyebrow { color: #DCFCE7; }
  .cta-btn-secondary .cta-btn-eyebrow { color: #525252; }
  .cta-btn-label {
    font-size: 14px;
    font-weight: 500;
  }

  /* EMAIL CAPTURE */
  .email-capture {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: #F0FDF4;
    border: 1px solid #16A34A;
    border-radius: 8px;
  }
  .email-capture.active { display: block; }
  .email-capture input {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    margin-bottom: 8px;
    font-family: inherit;
  }
  .email-capture input:focus {
    outline: none;
    border-color: #16A34A;
  }
  .email-capture-success {
    color: #14532D;
    font-size: 13px;
    font-weight: 500;
  }

  /* DISCLAIMER */
  details.disclaimer {
    font-size: 12px;
    color: #525252;
    line-height: 1.6;
    padding-top: 8px;
    border-top: 0.5px solid #E5E5E5;
  }
  details.disclaimer summary {
    cursor: pointer;
    padding: 10px 0;
    color: #525252;
    list-style: none;
  }
  details.disclaimer summary::-webkit-details-marker { display: none; }
  details.disclaimer summary::before {
    content: "+ ";
    font-weight: 500;
  }
  details.disclaimer[open] summary::before {
    content: "− ";
  }
  details.disclaimer p {
    color: #737373;
    margin-bottom: 8px;
  }

  /* FOOTER */
  .footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 0.5px solid #E5E5E5;
    font-size: 11px;
    color: #A3A3A3;
    text-align: center;
    font-family: "SF Mono", Consolas, monospace;
  }
  .footer a {
    color: #16A34A;
    text-decoration: none;
  }

  /* WARNING BANNER (for electricity) */
  .warning-banner {
    background: #FEF6E4;
    border: 0.5px solid #92400E;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #92400E;
    line-height: 1.5;
  }
  .warning-banner strong { font-weight: 600; }
  
  
  
  
  /* ============================================================
   404 ERROR PAGE STYLES
   ============================================================ */
.error-404-page {
  background: var(--ivory);
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.error-404 {
  text-align: center;
  width: 100%;
}

.error-404 .container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-pale);
  border: 1px solid var(--saffron-pale);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--forest);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.error-badge .badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--saffron);
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
}

.error-code {
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -3px;
  margin-bottom: 12px;
}

.error-code em {
  font-style: italic;
  color: var(--saffron);
}

@media (min-width: 768px) {
  .error-code {
    font-size: 130px;
  }
}

.error-404 .section-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.error-404 .section-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

/* Technical Status Bar */
.error-meta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.error-meta-box strong {
  color: var(--ink);
}


/* ============================================================
   SINGLE POST LAYOUT
   ============================================================ */
.post-page {
  padding: 40px 0 80px;
  background: var(--ivory);
}

/* Breadcrumbs */
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-light);
  margin-bottom: 32px;
}
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--saffron); }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* Hero Section */
.post-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
@media(min-width: 900px) {
  .post-hero { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.post-category {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}
.post-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.post-meta-row, .post-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.post-meta-row { margin-bottom: 24px; }
.post-author-row { justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
.post-socials button {
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px; height: 32px;
  color: var(--muted);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-left: 8px;
}
.post-socials button:hover { border-color: var(--saffron); color: var(--saffron); }
.post-hero-image img, .placeholder-img {
  width: 100%; height: auto; aspect-ratio: 16/9;
  object-fit: cover; border-radius: 12px; border: 1px solid var(--border);
}
.placeholder-img { background: var(--ivory-dark); }
.post-divider { border: 0; height: 1px; background: var(--border); margin: 0 0 48px; }

/* Content & Sidebar Layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media(min-width: 900px) {
  .post-layout { grid-template-columns: 280px 1fr; gap: 80px; }
}

/* Sticky Table of Contents */
.post-sidebar { position: relative; }
.toc-wrapper {
  position: sticky;
  top: 100px; /* Sticks to top of screen on scroll */
}
.toc-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--ink);
}
#table-of-contents ul { list-style: none; padding-left: 0; margin: 0; }
#table-of-contents ul ul { padding-left: 16px; margin-top: 8px; }
#table-of-contents li { margin-bottom: 12px; }
#table-of-contents a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  display: block;
  line-height: 1.4;
  transition: color 0.2s;
}
#table-of-contents a:hover, #table-of-contents a.active { color: var(--saffron); }

/* Post Typography & Quick Digest Box */
.post-content { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.post-content h2 { font-family: var(--font-display); font-size: 28px; margin: 48px 0 24px; color: var(--ink); }
.post-content h3 { font-size: 22px; margin: 32px 0 16px; color: var(--ink); }
.post-content p { margin-bottom: 24px; }
.post-content ul, .post-content ol { margin-bottom: 24px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }

/* The "Quick Digest" Callout matching your screenshot */
.post-content .quick-digest {
  background: var(--forest-pale);
  border: 1px solid var(--forest);
  border-radius: 12px;
  padding: 24px 32px;
  margin: 32px 0;
}
.post-content .quick-digest h3 { margin-top: 0; color: var(--forest); font-family: var(--font-body); font-size: 18px; }
.post-content .quick-digest ul { margin-bottom: 0; }

/* Related Blogs Grid */
.related-blogs {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}
.related-title { font-family: var(--font-display); font-size: 32px; margin-bottom: 32px; color: var(--ink); }
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media(min-width: 600px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.related-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-4px); }
.related-img img, .rel-placeholder {
  width: 100%; height: 140px; object-fit: cover; border-radius: 8px; margin-bottom: 16px;
  border: 1px solid var(--border);
}
.rel-placeholder { background: var(--ivory-dark); }
.related-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; margin-bottom: 8px; }
.rel-cat { color: var(--saffron); }
.rel-date { color: var(--muted); }
.related-post-title { font-size: 15px; font-weight: 500; line-height: 1.4; margin-bottom: 16px; flex-grow: 1; color: var(--ink); }
.related-footer { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

/* Bottom CTA Banner */
.post-bottom-cta { padding: 0 0 80px; background: #FFFFFF; }
.cta-banner-inner {
  background: var(--ink); /* Dark Carbon Sarthi aesthetic */
  border-radius: 16px;
  padding: 64px 24px;
  text-align: center;
  color: var(--ivory);
}
.cta-banner-title { font-family: var(--font-display); font-size: 36px; margin-bottom: 16px; }
.cta-banner-desc { font-size: 16px; color: var(--muted-light); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Updated Category Style at Top */
.post-category {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--saffron); /* Change this to var(--forest) if you want it green */
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}
.post-category:hover {
  opacity: 0.8;
}

/* Post Bottom Actions (Social & Navigation) */
.post-bottom-actions {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.bottom-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.bottom-socials button {
  background: var(--ivory-dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; 
  height: 36px;
  color: var(--muted);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
.bottom-socials button:hover { 
  border-color: var(--saffron); 
  color: var(--saffron); 
}

/* Previous / Next Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.post-navigation .nav-prev, 
.post-navigation .nav-next {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-navigation .nav-next {
  text-align: right;
}
.post-navigation .nav-label {
  font-size: 13px;
  color: var(--saffron);
  margin-bottom: 8px;
  font-weight: 500;
}
.post-navigation a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.post-navigation a:hover { 
  color: var(--saffron); 
}


/* ============================================================
   BLOG GRID WIDGET & PAGINATION
   ============================================================ */
.custom-blog-grid {
  padding: 60px 0;
  background: #FFFFFF;
}

.blog-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
}

.blog-card-img {
    border-radius: 10px;
    overflow: hidden;
}

.blog-card-img img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.blog-author{
    display:none;
}
.blog-card-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-cat{
    font-weight:600;
    color:#16A34A;
}
/* Tablet (2 columns) */
@media(min-width: 600px) {
  .blog-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop (Dynamic columns based on Elementor selection) */
@media(min-width: 1024px) {
  .blog-grid-wrapper { 
      grid-template-columns: repeat(var(--desktop-cols, 4), 1fr); 
  }
}

/* Pagination Links */
.carbon-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.carbon-pagination a,
.carbon-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.carbon-pagination a:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.carbon-pagination .current {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}

.carbon-pagination .dots {
  border: none;
  background: transparent;
}