.elementor-17 .elementor-element.elementor-element-373728f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-510852b > .elementor-widget-container{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}body.elementor-page-17{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-510852b *//* Elementor full-width breakout */
.home-method-page-wrap {
  width: 100vw; position: relative;
  left: 50%; transform: translateX(-50%); overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   Far Beyond — Mockup Stylesheet v2
   For use with the Elementor HTML container widget.
   Load this file via your child theme or Elementor
   Custom CSS / Additional CSS in WordPress.
   ═══════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1B35;
  --navy-light: #162545;
  --navy-mid: #1e3461;
  --red: #C0392B;
  --red-light: #e74c3c;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F1F4F8;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #64748B;
  --gray-800: #1E293B;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 12px;
  --transition: 0.25s ease;
}

/* ── Base typography ── */
body { font-family: var(--font); }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.label--white { color: rgba(255,255,255,0.7); }
.label--light { color: var(--red-light); }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Section 1: Hero ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,52,97,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(192,57,43,0.12) 0%, transparent 60%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 820px;
}

/* ── Hero: Three chips (replaces single label pill) ── */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8070;
}
.hero-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-chip:first-child::before {
  animation: fb-pulse 2s infinite;
}

@keyframes fb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-chip { transition: opacity 0.25s ease; }
.hero-chip.chip-hidden { display: none; }
@keyframes chipIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-chip.chip-active { animation: chipIn 0.3s ease forwards; }

.hero-subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--red-light); }
/* "far beyond" sits on its own line on desktop, flows inline on mobile */
.hero-h1-break { display: block; color: var(--white); }
.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 36px;
}

/* ── Hero: Three-pillar strip ── */
.hero-pillars {
  display: flex;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 780px;
}
.hero-pillar {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  transition: background var(--transition);
}
.hero-pillar:hover {
  background: rgba(255,255,255,0.07);
}
.hero-pillar-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-pillar-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.hero-pillar-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}
.hero-pillar-divider {
  width: 1px;
  background: rgba(255,255,255,0.09);
  align-self: stretch;
  flex-shrink: 0;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fb-bounceY 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}
@keyframes fb-bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section 2: Waste Statement ── */
.waste {
  background: var(--off-white);
  padding: 100px 24px;
}
.waste-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.waste-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.waste-headline strong { color: var(--red); }
.waste-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.waste-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(13,27,53,0.25);
  position: relative;
  overflow: hidden;
}
.waste-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}
.waste-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.waste-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Section 3: Track Record ── */
.track {
  background: var(--navy);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,52,97,0.5) 0%, transparent 70%);
}
.track-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.track-header {
  text-align: center;
  margin-bottom: 64px;
}
.track-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.track-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2px;
}
.stat {
  background: rgba(13,27,53,0.6);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.stat:hover { background: rgba(30,52,97,0.8); }
.stat-value {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-value span { color: var(--red-light); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  font-weight: 500;
}

/* ── Section 4: Services ── */
.services {
  padding: 100px 24px;
  background: var(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(13,27,53,0.07);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(13,27,53,0.13);
  transform: translateY(-6px);
  border-color: var(--gray-200);
  background: var(--white);
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192,57,43,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.service-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card-body {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--red); gap: 10px; }

/* ── Service card: expand/collapse (hidden on desktop) ── */
.service-card-toggle { display: none; }
.service-card-details { display: contents; } /* no restriction on desktop */

/* ── Section 5: Pull Quote 1 ── */
.pull-quote {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.pull-quote blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.3rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pull-quote blockquote em { color: var(--red-light); font-style: normal; }

/* ── Section 6: Differentiator ── */
.diff {
  padding: 100px 24px;
  background: var(--off-white);
}
.diff-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.diff-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.diff-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.diff-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.diff-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,27,53,0.12);
}
.diff-col { padding: 0; }
.diff-col-header {
  padding: 22px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.diff-col--left .diff-col-header {
  background: var(--gray-200);
  color: var(--gray-600);
}
.diff-col--right .diff-col-header {
  background: var(--navy);
  color: var(--white);
}
.diff-item {
  padding: 18px 32px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid;
}
.diff-col--left .diff-item {
  background: var(--white);
  color: var(--gray-600);
  border-color: var(--gray-100);
}
.diff-col--left .diff-item::before {
  content: '\2715';
  color: var(--gray-400);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.diff-col--right .diff-item {
  background: rgba(13,27,53,0.04);
  color: var(--navy);
  border-color: var(--gray-200);
}
.diff-col--right .diff-item::before {
  content: '\2713';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Section 7: What Makes Us Different ── */
.why {
  padding: 100px 24px;
  background: var(--white);
}
.why-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  text-align: center;
}
.why-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.why-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: 0 16px 48px rgba(13,27,53,0.1);
  transform: translateY(-4px);
}
.why-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Section 8: Pull Quote 2 ── */
.pull-quote-2 {
  background: var(--gray-100);
  padding: 80px 24px;
  text-align: center;
}
.pull-quote-2 blockquote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
  letter-spacing: -0.02em;
  position: relative;
}
.pull-quote-2 blockquote::before,
.pull-quote-2 blockquote::after {
  content: '\201C';
  color: var(--red);
  font-size: 3rem;
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.4em;
}
.pull-quote-2 blockquote::after { content: '\201D'; }

/* ── Section 9: Is This You ── */
.scenarios {
  padding: 100px 24px;
  background: var(--off-white);
}
.scenarios-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
}
.scenarios-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.scenarios-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}
.scenarios-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scenario-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  cursor: pointer;
}
.scenario-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(192,57,43,0.1);
  transform: translateY(-4px);
}
.scenario-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(192,57,43,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.scenario-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.scenario-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Section 10: Industries ── */
.industries {
  padding: 100px 24px;
  background: var(--white);
}
.industries-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.industries-header {
  text-align: center;
  margin-bottom: 24px;
}
.industries-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.industries-header p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 48px;
}
.industries-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 32px;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.logo-pill {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 64px;
  transition: all var(--transition);
}
.logo-pill:hover {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(13,27,53,0.1);
}
.logo-pill img {
  max-height: 32px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}
.logo-pill:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Section 11: Final CTA ── */
.final-cta {
  background: var(--navy);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(192,57,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(30,52,97,0.8) 0%, transparent 60%);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Responsive ── */

/* Tablet & mobile: service cards collapse to 1 column with expand toggle */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; }

  .service-card-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 10px;
    padding-left: 0;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    font-family: var(--font);
    transition: color var(--transition), background var(--transition), padding-left var(--transition);
  }
  .service-card-toggle:hover {
    background: var(--red);
    color: var(--white);
    padding-left: 12px;
  }

  .service-card-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .service-card.is-open .service-card-chevron {
    transform: rotate(180deg);
  }

  .service-card-details {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .service-card.is-open .service-card-details {
    max-height: 800px;
  }
  .service-card-body { margin-top: 16px; }
}

@media (max-width: 900px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
  .hero-pillars { max-width: 100%; }
}
@media (max-width: 768px) {
  .waste-inner { grid-template-columns: 1fr; }
  .diff-table { grid-template-columns: 1fr; }
  .diff-col--left { display: none; }
  .why-cards { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; width: 100%; }
  .hero-pillars { flex-direction: column; }
  .hero-pillar-divider { width: auto; height: 1px; }

  /* Track Record: dissolve the two stats-grid wrappers so all 6 stats
     flow into a single 2-column grid on track-inner */
  .stats-grid {
    display: contents;
  }
  .track-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .track-header {
    grid-column: span 2;
    background: var(--navy);
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .scenarios-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }

  /* Hero: smartphone optimisations */
  .hero {
    min-height: 100vh;
    min-height: 100svh; /* respects browser chrome on mobile */
    align-items: flex-start;
    padding-top: max(72px, calc(env(safe-area-inset-top) + 48px));
    padding-bottom: max(80px, calc(env(safe-area-inset-bottom) + 60px));
  }
  .hero-scroll {
    bottom: max(36px, calc(env(safe-area-inset-bottom) + 16px));
  }
  .hero-chips {
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  /* Let "far beyond" wrap naturally — no forced breaks */
  .hero-h1-break { display: inline; }
  .hero-body {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  /* Service cards: icon left of label+title */
  .service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    grid-template-rows: auto auto auto auto;
  }
  .service-card-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
  }
  .service-card-label {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .service-card h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .service-card-toggle {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .service-card-details {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }/* End custom CSS */