@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 900;
  font-display: optional;
  size-adjust: 84%;
  src: url("assets/fonts/montserrat-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --black: #050505;
  --ink: #0b0c0b;
  --muted: #5e635d;
  --paper: #f2f0e8;
  --surface: #fffef9;
  --surface-raised: #ffffff;
  --line: rgba(11, 12, 11, 0.14);
  --line-strong: rgba(11, 12, 11, 0.3);
  --lime: #c9f33b;
  --lime-strong: #b5df22;
  --forest: #173e30;
  --facebook: #1877f2;
  --shadow-sm: 0 10px 30px rgba(14, 18, 14, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 10, 8, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --font-display: "Montserrat", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f5f4ee;
  --muted: #afb5ac;
  --paper: #0a0d0b;
  --surface: #111512;
  --surface-raised: #171c18;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.26);
  --forest: #1c4d3a;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.36);
}

/* Light island inside the dark one-pager (Why EcoEarth, Reviews). */
div[data-theme="light"] {
  color-scheme: light;
  --ink: #0b0c0b;
  --muted: #5e635d;
  --paper: #f2f0e8;
  --surface: #fffef9;
  --surface-raised: #ffffff;
  --line: rgba(11, 12, 11, 0.14);
  --line-strong: rgba(11, 12, 11, 0.3);
  --forest: #173e30;
  --shadow-sm: 0 10px 30px rgba(14, 18, 14, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 10, 8, 0.16);
  color: var(--ink);
  background: var(--paper);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 106.25%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 243, 59, 0.08), transparent 24rem),
    linear-gradient(var(--paper), var(--paper));
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: color 220ms ease, background-color 220ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

html[data-theme="dark"] body::before {
  opacity: 0.06;
  mix-blend-mode: screen;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

::selection {
  color: var(--black);
  background: var(--lime);
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

h3 {
  font-size: 1.45rem;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.25rem, 8vw, 8rem);
}

.section-compact {
  padding-block: clamp(4rem, 6vw, 5.75rem);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  background: var(--lime-strong);
}

.eyebrow--light {
  justify-content: center;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow--light::before {
  display: none;
}

.eyebrow--light > span {
  width: 26px;
  height: 3px;
  background: var(--lime);
}

.eyebrow--green {
  color: var(--lime-strong);
}

.section-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.78;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.35rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  isolation: isolate;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button--large {
  min-height: 58px;
  padding-inline: 1.6rem;
  font-size: 1rem;
}

.button--compact {
  min-height: 44px;
  padding: 0.65rem 1.05rem;
}

.button--lime {
  color: var(--black);
  background: linear-gradient(180deg, #daf95e 0%, var(--lime) 52%, #b2da27 100%);
  border-color: rgba(11, 12, 11, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 30px rgba(201, 243, 59, 0.24);
}

.button--lime:hover {
  background: linear-gradient(180deg, #e5ff7d 0%, #d3f851 52%, #bfe637 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 38px rgba(201, 243, 59, 0.34);
}

.button--ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: var(--lime);
}

.button--dark {
  color: #fff;
  background: linear-gradient(180deg, #242824 0%, #050505 76%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    var(--shadow-sm);
}

.button--dark:hover {
  border-color: rgba(201, 243, 59, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    var(--shadow-lg);
}

html[data-theme="dark"] .button--dark {
  color: var(--black);
  background: linear-gradient(180deg, #daf95e 0%, var(--lime) 52%, #b2da27 100%);
  border-color: rgba(11, 12, 11, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 30px rgba(201, 243, 59, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--lime-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #fff;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: block;
  width: 152px;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.site-nav > a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav > a:hover {
  color: #fff;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 4px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0.76;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.32) 38%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.7) 76%, #050505 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
  padding-top: clamp(5rem, 8vw, 7.5rem);
  padding-bottom: clamp(3.2rem, 5vw, 4.4rem);
}

.hero-copy {
  width: min(910px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.04;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
  margin-top: 0.16em;
  color: var(--lime);
  font-size: 0.62em;
  letter-spacing: 0.06em;
}

.hero-lede {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  min-width: min(560px, 100%);
  justify-content: center;
  margin-top: 1.2rem;
  padding: 1rem 2.1rem;
  background: rgba(5, 5, 5, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease;
}

.hero-rating:hover {
  border-color: rgba(201, 243, 59, 0.55);
  transform: translateY(-2px);
}

.hero-rating__mark {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  background: linear-gradient(180deg, #2b93ff 0%, var(--facebook) 100%);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 26px rgba(24, 119, 242, 0.35);
}

.hero-rating__mark img {
  display: block;
  width: 24px;
  height: auto;
}

.hero-rating__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-rating__stars {
  display: inline-flex;
  gap: 0.18rem;
  color: #fbbf24;
}

.hero-rating__stars svg {
  width: 19px;
  height: 19px;
}

.hero-rating__body strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.partner-badge {
  position: relative;
  z-index: 5;
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: calc(-1 * clamp(7rem, 11vw, 9.3rem)) auto 1.9rem;
  padding: 0.75rem 1.7rem 0.85rem;
  background: var(--lime);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.partner-badge span {
  color: #0b0c0b;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.partner-badge img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.reviews {
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23fff' opacity='.045'/%3E%3C/svg%3E") 0 0 / 26px 26px;
  border-bottom: 1px solid var(--line);
}

.section-intro--inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-intro--inline h2,
.section-intro--inline p {
  margin-bottom: 0;
}

.section-intro--inline > p {
  justify-self: end;
  max-width: 440px;
  color: var(--muted);
}

.section-intro--inline .text-link {
  justify-self: end;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  padding: 1.35rem;
  overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-card::after {
  position: absolute;
  top: 0;
  right: 1.4rem;
  width: 52px;
  height: 5px;
  content: "";
  background: var(--lime);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__meta > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: #0a5dc7;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.review-card__meta strong,
.review-card__meta small {
  display: block;
}

.review-card__meta strong {
  font-size: 0.82rem;
}

.review-card__meta small {
  color: var(--muted);
  font-size: 0.75rem;
}

.review-stars {
  display: inline-flex;
  gap: 0.2rem;
  margin-top: 0.9rem;
  color: #fbbf24;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  margin: 1.35rem 0 1.2rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.review-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.review-card > a span {
  color: var(--facebook);
}

.problem {
  background:
    linear-gradient(90deg, transparent 49.94%, var(--line) 50%, transparent 50.06%),
    var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.problem .eyebrow {
  color: #c2410c;
}

html[data-theme="dark"] .problem .eyebrow {
  color: #ff8a5e;
}

.problem-copy h2 {
  max-width: 580px;
  font-size: clamp(2.1rem, 3.6vw, 2.7rem);
}

.problem-copy .section-lede {
  font-size: 1.06rem;
}

.problem-decision {
  margin: 2rem 0;
  padding: 1rem 0;
  border-block: 1px solid var(--line-strong);
}

.problem-decision > strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-decision > div {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.problem-decision span {
  padding: 0.35rem 0.7rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.problem-decision span:first-child {
  color: var(--black);
  background: var(--lime);
  border-color: var(--lime);
}

.problem-decision span:last-child {
  color: #c2410c;
  background: rgba(255, 90, 60, 0.12);
  border-color: rgba(255, 90, 60, 0.4);
}

html[data-theme="dark"] .problem-decision span:last-child {
  color: #ff8a5e;
}

.diagnostic {
  margin: 0;
}

.diagnostic__visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 60, 0.12), transparent 46%),
    linear-gradient(rgba(201, 243, 59, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 243, 59, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(201, 243, 59, 0.13), transparent 42%),
    #080a08;
  background-size: auto, 32px 32px, 32px 32px, auto, auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.diagnostic__visual::before,
.diagnostic__visual::after {
  position: absolute;
  z-index: 1;
  content: "";
  background: rgba(255, 90, 60, 0.7);
}

.diagnostic__visual::before {
  top: 0;
  left: 34px;
  width: 130px;
  height: 10px;
  border-radius: 0 0 6px 6px;
}

.diagnostic__visual::after {
  right: 0;
  bottom: 34px;
  width: 10px;
  height: 130px;
  border-radius: 6px 0 0 6px;
}

.diagnostic img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.45));
}

.diagnostic__stage {
  position: relative;
  width: min(380px, 64%);
  line-height: 0;
}

.diagnostic__tag {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.diagnostic__tag i {
  position: absolute;
  left: -7px;
  top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff5a3c;
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.35);
  animation: diagnostic-pulse 2.2s ease-out infinite;
}

@keyframes diagnostic-pulse {
  0% {
    box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.35);
  }

  55% {
    box-shadow: 0 0 0 12px rgba(255, 90, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 3px rgba(255, 90, 60, 0);
  }
}

.diagnostic__tag em {
  position: absolute;
  top: 0;
  padding: 0.48rem 0.8rem;
  background: rgba(8, 10, 8, 0.92);
  border: 1px solid rgba(255, 90, 60, 0.55);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  font-style: normal;
  transform: translateY(-50%);
}

.diagnostic__tag::before {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
  background: #ff5a3c;
}

.diagnostic__tag[data-side="right"] em {
  left: 38px;
}

.diagnostic__tag[data-side="right"]::before {
  left: 7px;
  width: 31px;
}

.diagnostic__tag[data-side="left"] em {
  right: 38px;
}

.diagnostic__tag[data-side="left"]::before {
  right: 7px;
  width: 31px;
}

.diagnostic figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.services {
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M-6 54 54 -6' stroke='%23fff' stroke-width='1' opacity='.035'/%3E%3C/svg%3E") 0 0 / 48px 48px;
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.service-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--surface);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-card > img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.service-card div > span {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0.2rem 0 0.45rem;
}

.service-card p {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card a b {
  color: var(--lime-strong);
  font-size: 1rem;
}

.section-intro--center {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.difference {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M0 48 48 0' stroke='%23fff' stroke-width='1' opacity='.05'/%3E%3C/svg%3E") 0 0 / 48px 48px;
}

.difference h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}

.difference .section-lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.difference-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.difference-card {
  display: flex;
  flex: 1 1 190px;
  max-width: 225px;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.difference-card:hover {
  border-color: rgba(201, 243, 59, 0.5);
  transform: translateY(-4px);
}

.difference-card img {
  width: 76px;
  height: 76px;
  padding: 7px;
  background: rgba(242, 240, 232, 0.92);
  border-radius: 16px;
  object-fit: contain;
}

.difference-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.difference-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

/* The one light panel on the dark site: a deliberate interleave accent. */
.process,
html[data-theme="dark"] .process {
  position: relative;
  background: #f2f0e8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%230b0c0b' opacity='.06'/%3E%3C/svg%3E") 0 0 / 26px 26px;
}

.process .eyebrow {
  color: #17643e;
}

.process h2 {
  color: #0b0c0b;
}

.process .section-lede {
  color: #4c4f4a;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  counter-reset: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.7rem 1.4rem;
  background: #fffef9;
  border: 1px solid rgba(11, 12, 11, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(14, 18, 14, 0.12);
}

.process-steps li span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: var(--lime);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

html[data-theme="dark"] .process-steps li span {
  color: #173e30;
}

.process-steps li strong {
  color: #0b0c0b;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-steps li p {
  margin: 0;
  color: #55584f;
  font-size: 0.95rem;
}

.results {
  background: var(--paper);
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.results-copy {
  position: sticky;
  top: 120px;
}

.results-copy .button {
  margin-top: 1rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.proof-card:hover {
  border-color: rgba(201, 243, 59, 0.55);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--black);
}

.proof-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.proof-card figcaption span {
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card figcaption a {
  color: rgba(255, 255, 255, 0.68);
}

.maintenance {
  padding-top: clamp(2.4rem, 4vw, 3.5rem);
  background: var(--paper);
}

.maintenance .container {
  max-width: 1330px;
}

.maintenance-fleet {
  position: relative;
  z-index: 2;
  width: min(880px, 94%);
  margin: 0 auto calc(-1 * clamp(4rem, 6vw, 5.6rem));
}

.maintenance-fleet img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.5));
}

.maintenance-fleet .price-stamp {
  top: 3%;
  left: -1.5%;
}

.maintenance-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: start;
  padding: clamp(6.5rem, 9vw, 8.4rem) clamp(1.8rem, 3.5vw, 3.4rem) clamp(2.4rem, 4vw, 3.4rem);
  overflow: visible;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 243, 59, 0.1), transparent 34rem),
    var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.maintenance-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}

.maintenance-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
}

.maintenance-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.02rem;
  line-height: 1.65;
}

.maintenance-intro .eyebrow--green {
  font-size: 0.85rem;
}

.maintenance-intro .button {
  margin-top: 0.45rem;
}

.maintenance-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.visual-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.price-stamp {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  color: var(--black);
  background: var(--lime);
  border: 5px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lime);
  text-align: center;
  transform: rotate(-3deg);
}

.price-stamp span,
.price-stamp small,
.price-stamp em {
  display: block;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-stamp strong {
  font-family: var(--font-display);
  font-size: 3.15rem;
  line-height: 0.8;
}

.price-stamp em {
  margin-top: 0.25rem;
  opacity: 0.62;
  font-size: 0.42rem;
}


.benefit-list {
  display: grid;
  gap: 0;
  margin: 1rem 0 1.35rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.6rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.02rem;
  font-weight: 600;
}

.benefit-list span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.coverage {
  margin-bottom: 1.4rem;
}

.coverage strong {
  color: var(--lime);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: normal;
}

.faq {
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23fff' opacity='.04'/%3E%3C/svg%3E") 0 0 / 26px 26px;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 1rem;
  padding-block: 0.8rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -0.15rem 3.5rem 1.25rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.final-cta {
  margin-top: clamp(4rem, 7vw, 6.5rem);
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1.6rem, 4vw, 4rem);
  overflow: hidden;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%230b0c0b' opacity='.07'/%3E%3C/svg%3E") 0 0 / 26px 26px,
    linear-gradient(180deg, #d7f752 0%, var(--lime) 58%, #b7df2c 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.final-cta__eyebrow {
  margin: 0;
  color: #17643e;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 22ch;
  margin: 0;
  color: #0b0c0b;
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
}

.final-cta__sub {
  margin: 0;
  color: #2f3329;
  font-size: 1.05rem;
  font-weight: 600;
}

.final-cta .button {
  margin-top: 0.6rem;
}

.button--ink,
html[data-theme="dark"] .button--ink {
  color: #fff;
  background: linear-gradient(180deg, #242824 0%, #050505 76%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 40px rgba(5, 5, 5, 0.4);
}

.button--ink:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding-block: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(200px, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
}

.footer-brand {
  width: 142px;
}

.footer-grid p {
  max-width: 420px;
  margin: 0;
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-grid small {
  grid-column: 1 / -1;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.mobile-whatsapp {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    display: none;
    width: min(340px, calc(100vw - 48px));
    padding: 0.8rem;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  .site-nav > a {
    padding: 0.75rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav > a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.nav-open .menu-toggle span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .service-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .service-card > img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-inner {
    padding-top: 5rem;
  }

  .section-intro--inline {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .section-intro--inline > p,
  .section-intro--inline .text-link {
    justify-self: start;
  }

  .review-row {
    display: flex;
    margin-inline: -18px;
    padding-inline: 18px;
    overflow-x: auto;
    gap: 0.8rem;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    width: min(78vw, 390px);
    min-width: min(78vw, 390px);
    scroll-snap-align: start;
  }

  .problem {
    background: var(--paper);
  }

  .problem-grid,
  .results-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .results-copy,
  .faq-intro {
    position: static;
  }

  .problem-grid {
    gap: 3rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maintenance-fleet {
    width: 100%;
    margin-bottom: -2.6rem;
  }

  .maintenance-shell {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    padding: 4.6rem 1.7rem 2.2rem;
  }

  .footer-grid {
    grid-template-columns: auto 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 4.5rem;
  }

  .section-compact {
    padding-block: 3.5rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    width: 126px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 835px;
  }

  .hero-inner {
    padding-top: 4.4rem;
    padding-bottom: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.8rem);
  }

  .hero h1 span {
    font-size: 0.6em;
    line-height: 1.1;
  }

  .hero-lede {
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-rating {
    flex-wrap: wrap;
  }

  .review-row {
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .review-card {
    width: 84vw;
    min-width: 84vw;
  }

  .diagnostic__visual {
    min-height: 470px;
    border-radius: 20px;
  }

  .diagnostic__stage {
    width: min(300px, 62%);
  }

  .diagnostic__tag {
    font-size: 0.66rem;
  }

  .diagnostic__tag i {
    left: -5px;
    top: -5px;
    width: 10px;
    height: 10px;
  }

  .diagnostic__tag[data-side="right"] em {
    left: 24px;
  }

  .diagnostic__tag[data-side="left"] em {
    right: 24px;
  }

  .diagnostic__tag[data-side="right"]::before,
  .diagnostic__tag[data-side="left"]::before {
    width: 19px;
  }

  .service-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }

  .service-card > img {
    width: 82px;
    height: 82px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .difference-card {
    flex-basis: 45%;
  }

  .difference-grid {
    gap: 0.7rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-shell {
    border-radius: 20px;
    padding: 3.9rem 1.25rem 1.9rem;
  }

  .maintenance-fleet {
    margin-bottom: -2rem;
  }

  .maintenance-fleet .price-stamp {
    top: 0;
    left: 0;
    width: 105px;
    height: 105px;
  }

  .price-stamp strong {
    font-size: 2.65rem;
  }

  .maintenance-intro .button {
    width: 100%;
  }

  .faq-list summary {
    font-size: 1.2rem;
  }

  .final-cta__inner {
    padding: 2.4rem 1.3rem;
    border-radius: 20px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid small {
    grid-column: 1;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--black);
    background: var(--lime);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-whatsapp svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .diagnostic__tag i {
    animation: none;
  }

  .hero {
    background: var(--black) url("assets/ecoearth-hero-poster.webp") 50% 52% / cover no-repeat;
  }

  .hero-video {
    display: none;
  }
}

/* ---- v2: Derek's markup round (tabs, lockup, Mr Sheen band, new sections) ---- */

/* Derek's markup drops the water-recycling card, so the seventh card would
   otherwise sit alone against an empty cell: let it close the grid. */
.service-grid > .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.site-nav > a[aria-current="page"] {
  color: #fff;
}

.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.page-title {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
}

.eyebrow--center {
  justify-content: center;
}

.section-intro--center .section-lede {
  margin-inline: auto;
}

.location-strip {
  padding: 0.85rem 1rem;
  background: var(--black);
  border-top: 1px solid rgba(201, 243, 59, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eyebrow--location {
  justify-content: center;
  margin: 0;
  color: var(--lime);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.eyebrow--location::before {
  display: none;
}

.eyebrow--location > span {
  width: 26px;
  height: 3px;
  background: #fff;
}

.hero-copy .hero-lede + .hero-lede {
  margin-top: -0.5rem;
}

.overview {
  background: var(--paper);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.overview-asset h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.overview-services {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.overview-services h3 {
  margin-bottom: 0.35rem;
  font-size: 1.9rem;
}

.overview-services > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.overview-close {
  margin: 1.2rem 0 0;
  font-weight: 700;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 0.38rem 0.75rem;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.mrsheen-band {
  background: linear-gradient(180deg, #d7f752 0%, var(--lime) 58%, #b7df2c 100%);
  border-top: 1px solid rgba(11, 12, 11, 0.18);
}

.mrsheen-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding-block: 1.4rem;
}

.mrsheen-band__inner span {
  color: #0b0c0b;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mrsheen-band__inner img {
  width: auto;
  height: 74px;
}

.mrsheen-band__inner a {
  transition: transform 160ms ease;
}

.mrsheen-band__inner a:hover {
  transform: translateY(-2px);
}

.page-intro .section-lede {
  margin-bottom: 0.5rem;
}

.process-steps--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-steps--five li strong {
  font-size: 1.3rem;
  line-height: 1.1;
}

.get-started {
  max-width: 640px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  text-align: center;
}

.get-started h2 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.get-started p {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.get-started .button {
  margin-top: 1.1rem;
}

.get-started__tagline {
  margin-top: 1.4rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.segment-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--lime-strong);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.segment-label img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.problem .chip-list li {
  background: var(--surface);
}

.problem--estates {
  border-top: 1px solid var(--line);
}

.diagnostic--fleet .diagnostic__visual {
  min-height: 0;
  padding: clamp(2rem, 4vw, 3.4rem);
}

.diagnostic--fleet img {
  width: 100%;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.45));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.proof-card--large img {
  aspect-ratio: 1;
  object-fit: cover;
}

.contact {
  background: var(--paper);
}

.contact .problem-grid {
  align-items: center;
}

.contact-channels {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  min-width: min(360px, 100%);
  padding: 0.85rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-channel:hover {
  border-color: var(--lime-strong);
  transform: translateY(-2px);
}

.contact-channel svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--lime-strong);
}

.contact-channel__at {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}

.contact-channel small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-channel strong {
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.contact-fleet {
  margin: 0;
}

.contact-fleet img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1080px) {
  .process-steps--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .overview-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mrsheen-band__inner {
    flex-direction: column;
    gap: 0.8rem;
  }

  .mrsheen-band__inner img {
    height: 58px;
  }
}

@media (max-width: 620px) {
  .process-steps--five {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    width: 100%;
    min-width: 0;
  }
}

/* ---- v3: depth pass (overview rebuild, elevated dark surfaces) ---- */

/* Overview: the section was black-on-black, so give it light, structure and a card that reads as raised. */
.overview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(118% 76% at 86% 4%, rgba(201, 243, 59, 0.1), transparent 62%),
    radial-gradient(88% 62% at -6% 104%, rgba(28, 77, 58, 0.42), transparent 70%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.overview::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 26%, #000, transparent 80%);
  mask-image: radial-gradient(72% 62% at 50% 26%, #000, transparent 80%);
}

.overview-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.overview-asset h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.5rem, 4.2vw, 3.9rem);
}

.pillar-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pillar-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: baseline;
  gap: 0.3rem 0.9rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.pillar-list li > span {
  grid-row: 1 / span 2;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pillar-list strong {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.pillar-list small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.overview-services {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 3.4vw, 2.8rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 46%, rgba(255, 255, 255, 0)),
    var(--surface-raised);
  border-color: var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    var(--shadow-lg);
}

.overview-services::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--lime), rgba(201, 243, 59, 0.12));
}

.overview-services::after {
  position: absolute;
  top: -150px;
  right: -130px;
  width: 340px;
  height: 340px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 243, 59, 0.16), transparent 66%);
}

.overview-services > * {
  position: relative;
  z-index: 1;
}

.overview-services__tag {
  margin-bottom: 0.55rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.overview-services h3 {
  font-size: 2.1rem;
}

.overview-services .chip-list {
  margin-top: 1.3rem;
}

html[data-theme="dark"] .overview-services .chip-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.overview-close {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Depth: the light sections should read as panels lifted off the dark page. */
div[data-theme="light"] {
  position: relative;
  z-index: 1;
  border-block: 1px solid rgba(201, 243, 59, 0.4);
  box-shadow:
    0 -34px 80px rgba(0, 0, 0, 0.6),
    0 34px 80px rgba(0, 0, 0, 0.6);
}

.location-strip,
.mrsheen-band {
  position: relative;
  z-index: 2;
}

.mrsheen-band {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

/* Depth: dark-theme cards were flat fills, so give each a gradient face and a top highlight. */
html[data-theme="dark"] .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    var(--surface);
}

html[data-theme="dark"] .service-card:hover {
  background:
    linear-gradient(180deg, rgba(201, 243, 59, 0.1), rgba(255, 255, 255, 0)),
    var(--surface-raised);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .contact-channel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .proof-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .results {
  background:
    radial-gradient(78% 48% at 50% 0%, rgba(201, 243, 59, 0.08), transparent 70%),
    var(--paper);
}

html[data-theme="dark"] .contact {
  background:
    radial-gradient(66% 52% at 94% 8%, rgba(28, 77, 58, 0.42), transparent 68%),
    var(--paper);
}

html[data-theme="dark"] .faq {
  background:
    radial-gradient(60% 40% at 0% 0%, rgba(201, 243, 59, 0.06), transparent 66%),
    var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23fff' opacity='.04'/%3E%3C/svg%3E") 0 0 / 26px 26px;
}

@media (max-width: 840px) {
  .overview-grid {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .pillar-list li {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .overview-services h3 {
    font-size: 1.8rem;
  }

  /* The "Unclear numbering" label runs off the left edge on phones: point it inward instead. */
  .diagnostic__tag:nth-child(5) em {
    right: auto;
    left: 24px;
  }

  .diagnostic__tag:nth-child(5)::before {
    right: auto;
    left: 7px;
  }
}
