/* Connecting H2O – Elements: shared widget styles.
   Relies on the brand tokens from the child theme (assets/tokens.css).
   Fallback values are provided so widgets still render sensibly if the
   pack is ever used under a different theme. */

.ch2o-hello {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border, #e5e9ec);
  border-radius: var(--radius-2xl, 1.375rem);
  background: var(--tint, #f7fafb);
  box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20, 80, 160, 0.1));
}

.ch2o-hello__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary, #1f6fd6);
  background: color-mix(in oklab, var(--primary, #1f6fd6) 8%, transparent);
  border-radius: 9999px;
}

.ch2o-hello__title {
  margin: 0;
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground, #1a2730);
}

.ch2o-hello__text {
  margin: 0;
  max-width: 48ch;
  line-height: 1.625;
  color: var(--muted-foreground, #5b6b75);
}

.ch2o-hello__swatches {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.ch2o-hello__swatches span {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* ====================================================================== *
 * CH2O Hero (v2) — rebuild of HeroSection.jsx
 * Bleed gradient section containing an inset white card; left column is
 * copy/CTA/quote, right column is 3 stacked stat cards beside a video.
 * ====================================================================== */
.ch2o-hero {
  --ch2o-hero-grad-from: oklch(0.50 0.15 248);
  --ch2o-hero-grad-to: oklch(0.66 0.14 232);
  --ch2o-hero-accent: oklch(0.50 0.15 248);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--ch2o-hero-grad-from) 0%, var(--ch2o-hero-grad-to) 100%);
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
}

.ch2o-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .ch2o-hero__inner { padding: 0 1.5rem; }
}

.ch2o-hero__card {
  background: #ffffff;
  border-radius: 1.625rem;
  box-shadow: 0 20px 40px -12px rgba(10, 31, 61, 0.35);
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .ch2o-hero__card { padding: 2rem; }
}
@media (min-width: 1024px) {
  .ch2o-hero__card { padding: 2.5rem; }
}

.ch2o-hero__grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .ch2o-hero__grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; }
}

/* ---- left column ---- */
.ch2o-hero__col--text {
  display: flex;
  flex-direction: column;
}

.ch2o-hero__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ch2o-hero-accent);
}
@media (min-width: 640px) { .ch2o-hero__eyebrow { font-size: 0.75rem; } }

.ch2o-hero__title {
  margin: 1rem 0 0;
  font-size: clamp(1.875rem, 1rem + 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.ch2o-hero__grad {
  background: linear-gradient(135deg, var(--ch2o-hero-grad-from) 0%, var(--ch2o-hero-grad-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ch2o-hero__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}
@media (min-width: 640px) { .ch2o-hero__desc { font-size: 1.125rem; } }
.ch2o-hero__desc strong { color: var(--ch2o-hero-accent); font-weight: 600; }

.ch2o-hero__features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .ch2o-hero__features { flex-direction: row; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
}
.ch2o-hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0f172a;
}
@media (min-width: 640px) { .ch2o-hero__feature { font-size: 1rem; } }
.ch2o-hero__check {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 9999px;
  background: var(--ch2o-hero-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.ch2o-hero__cta {
  margin-top: 2rem;
}
.ch2o-hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.ch2o-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 640px) { .ch2o-hero__btn { font-size: 1rem; } }
.ch2o-hero__btn--primary {
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: var(--ch2o-hero-accent);
  color: #fff;
  box-shadow: 0 4px 20px -4px rgba(10, 31, 61, 0.25);
}
.ch2o-hero__btn--primary:hover { box-shadow: 0 12px 28px -8px rgba(10, 31, 61, 0.35); color: #fff; }
.ch2o-hero__btn--ghost {
  color: #0f172a;
}
.ch2o-hero__btn--ghost:hover { color: var(--ch2o-hero-accent); }
.ch2o-hero__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 2px solid var(--ch2o-hero-accent);
  color: var(--ch2o-hero-accent);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ch2o-hero__btn--ghost:hover .ch2o-hero__btn-icon {
  background: var(--ch2o-hero-accent);
  color: #fff;
}

.ch2o-hero__caption {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
}

.ch2o-hero__quote {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.ch2o-hero__quote-avatar {
  flex-shrink: 0;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(10, 31, 61, 0.12);
}
.ch2o-hero__quote-avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.ch2o-hero__quote-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(15, 23, 42, 0.8);
}
@media (min-width: 640px) { .ch2o-hero__quote-text { font-size: 1rem; } }
.ch2o-hero__quote-name {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.ch2o-hero__quote-role {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ---- right column ---- */
.ch2o-hero__media-row {
  display: flex;
  gap: 0.75rem;
  height: 380px;
}
@media (min-width: 640px) {
  .ch2o-hero__media-row { gap: 1rem; height: 440px; }
}
@media (min-width: 1024px) {
  .ch2o-hero__media-row { height: 520px; }
}

.ch2o-hero__stats-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 6rem;
}
@media (min-width: 640px) {
  .ch2o-hero__stats-col { width: 7rem; gap: 1rem; }
}

.ch2o-hero__stat-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 0.625rem;
  text-align: center;
  background: var(--ch2o-hero-accent);
  box-shadow: 0 2px 12px -2px rgba(10, 31, 61, 0.15);
}
@media (min-width: 640px) { .ch2o-hero__stat-card { padding: 0.75rem; } }
.ch2o-hero__stat-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem;
}
@media (min-width: 640px) { .ch2o-hero__stat-icon { height: 2.5rem; width: 2.5rem; } }
.ch2o-hero__stat-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.ch2o-hero__stat-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 640px) { .ch2o-hero__stat-label { font-size: 0.75rem; } }

.ch2o-hero__video-wrap {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 2px 12px -2px rgba(10, 31, 61, 0.15);
}
.ch2o-hero__video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ---- mobile stacking: text first, media second (default DOM order) ---- */
/* ====================================================================== *
 * Shared section primitives (Problem, Founder, How, pH, Services,
 * Testimonials, Free-Test). Brand tokens come from the child theme's
 * tokens.css (var(--primary) etc.) with safe fallbacks.
 * ====================================================================== */
.ch2o-sec {
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  padding: 6rem 0;
  color: var(--foreground, #071f20);
}
@media (max-width: 640px) { .ch2o-sec { padding: 4rem 0; } }
.ch2o-sec--tint { background: var(--tint, #f1fdff); }
.ch2o-wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }

.ch2o-grad-text {
  background: linear-gradient(135deg, var(--primary, #0066b3) 0%, var(--primary-light, #009fd8) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ch2o-grad-teal { background: linear-gradient(135deg, var(--primary, #0066b3) 0%, var(--primary-light, #009fd8) 100%); }
.ch2o-prim { color: var(--primary, #0066b3); font-weight: 600; }
.ch2o-danger { color: var(--destructive, #d6492b); }

.ch2o-sh { text-align: center; max-width: 48rem; margin: 0 auto; }
.ch2o-sh__eyebrow {
  margin: 0 0 0.75rem; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary, #0066b3);
}
.ch2o-sh__title {
  margin: 0; font-size: clamp(1.75rem, 1rem + 2.5vw, 2.5rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em; color: var(--foreground, #071f20);
}
.ch2o-sh__sub { margin: 0.75rem 0 0; font-size: 1.05rem; color: var(--muted-foreground, #53676b); }

/* ---- Problem (2026-07 redesign: centred cards, badge, warning, banner) ---- */
.ch2o-problem__grid { margin-top: 4rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch2o-problem__grid { grid-template-columns: repeat(4, 1fr); } }
.ch2o-problem__card {
  height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;
  border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff);
  border: 1px solid var(--border, #dfeaec); padding: 1.5rem;
  box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
  transition: transform .25s, box-shadow .25s;
}
.ch2o-problem__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-problem__media { position: relative; display: flex; align-items: center; justify-content: center; height: 6rem; width: 6rem; margin-bottom: 1.25rem; }
.ch2o-problem__halo { position: absolute; inset: 0; border-radius: 9999px; background: linear-gradient(to bottom, color-mix(in srgb, var(--primary,#0066b3) 10%, transparent), transparent); }
.ch2o-problem__media img { position: relative; height: 5rem; width: 4rem; object-fit: contain; user-select: none; }
.ch2o-problem__badge {
  position: absolute; bottom: 0; right: 0.25rem; height: 2rem; width: 2rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary, #0066b3); color: var(--primary-foreground, #fff);
  box-shadow: 0 2px 8px rgba(0,0,0,.18); border: 2px solid var(--card, #fff);
}
.ch2o-problem__badge svg, .ch2o-problem__badge i { width: 1rem; height: 1rem; font-size: 1rem; }
.ch2o-problem__badge-txt { font-size: 11px; font-weight: 700; line-height: 1; }
.ch2o-problem__title { margin: 0; font-size: 1.125rem; font-weight: 700; line-height: 1.35; color: var(--foreground, #071f20); }
.ch2o-problem__bar { margin-top: 0.75rem; height: 0.25rem; width: 2.5rem; border-radius: 9999px; background: color-mix(in srgb, var(--primary,#0066b3) 60%, transparent); }
.ch2o-problem__desc { margin: 1rem 0 1.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground, #53676b); }
.ch2o-problem__warn {
  margin-top: auto; display: flex; align-items: center; justify-content: center;
  height: 3.5rem; width: 3.5rem; border-radius: 9999px; background: #fee2e2; color: #dc2626;
}
.ch2o-problem__banner {
  margin: 4rem auto 0; max-width: 56rem; display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  border-radius: var(--radius-3xl, 1.6rem); border: 1px solid color-mix(in srgb, var(--primary,#0066b3) 10%, transparent);
  background: linear-gradient(to right, #f0f9ff, #eff6ff); padding: 1.5rem; text-align: center;
}
@media (min-width: 640px) { .ch2o-problem__banner { flex-direction: row; gap: 1.75rem; padding: 1.5rem 2.5rem; text-align: left; } }
/* Doubled-up selector so it outranks Elementor's global `.elementor img { height: auto }`. */
.ch2o-problem__banner img.ch2o-problem__banner-img { height: 4rem; width: auto; flex-shrink: 0; object-fit: contain; user-select: none; }
@media (min-width: 640px) { .ch2o-problem__banner img.ch2o-problem__banner-img { height: 5rem; } }
.ch2o-problem__banner-sep { display: none; }
@media (min-width: 640px) { .ch2o-problem__banner-sep { display: block; height: 4rem; width: 1px; flex-shrink: 0; background: color-mix(in srgb, var(--primary,#0066b3) 15%, transparent); } }
.ch2o-problem__banner-copy { flex: 1; }
.ch2o-problem__foot-lead p { margin: 0; font-size: clamp(1.25rem, .5rem + 1.5vw, 1.5rem); font-weight: 700; line-height: 1.3; color: var(--foreground, #071f20); }
.ch2o-problem__foot-sub p { margin: 0.5rem 0 0; font-size: 1.05rem; color: var(--muted-foreground, #53676b); }

/* ---- Founder ---- */
.ch2o-founder__grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-founder__grid { grid-template-columns: 5fr 7fr; } }
.ch2o-founder__media { position: relative; }
.ch2o-founder__frame {
  aspect-ratio: 4/5; border-radius: var(--radius-3xl, 1.6rem); overflow: hidden;
  background: var(--soft, #eaf8f9); box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25));
}
.ch2o-founder__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ch2o-founder__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--card, #fff);
  border: 1px solid var(--border, #dfeaec); border-radius: var(--radius-xl, 1.1rem);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25));
}
@media (max-width: 480px) { .ch2o-founder__badge { right: 0; } }
.ch2o-founder__badge-val { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.ch2o-founder__badge-cap { font-size: 0.75rem; color: var(--muted-foreground, #53676b); }
.ch2o-founder__eyebrow { margin: 0 0 0.75rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary, #0066b3); }
.ch2o-founder__title { margin: 0; font-size: clamp(1.875rem, 1rem + 2.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.ch2o-founder__quote { margin-top: 2rem; position: relative; padding-left: 1.5rem; }
.ch2o-founder__quote-mark { position: absolute; left: -0.5rem; top: 0; color: color-mix(in srgb, var(--primary, #0066b3) 30%, transparent); }
.ch2o-founder__story { display: flex; flex-direction: column; gap: 1rem; font-size: 1.05rem; line-height: 1.7; color: color-mix(in srgb, var(--foreground, #071f20) 85%, transparent); }
.ch2o-founder__story p { margin: 0; }
.ch2o-founder__story strong { color: var(--foreground, #071f20); }
.ch2o-founder__story em { color: var(--primary, #0066b3); font-weight: 600; font-style: normal; }
.ch2o-founder__sig { margin-top: 2rem; padding-left: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.ch2o-founder__sig-avatar { height: 3rem; width: 3rem; flex-shrink: 0; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; color: var(--primary-foreground, #fff); font-weight: 700; }
.ch2o-founder__sig-meta { display: flex; flex-direction: column; }
.ch2o-founder__sig-name { font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-founder__sig-role { font-size: 0.875rem; color: var(--muted-foreground, #53676b); }

/* ---- How It Works (2026-07 redesign: bg image, floating step cards, trust bar) ---- */
.ch2o-how { position: relative; isolation: isolate; overflow: hidden; background-color: rgba(240, 249, 255, 0.6); background-size: cover; background-position: center; background-repeat: no-repeat; }
.ch2o-how__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent, rgba(255,255,255,0.6)); pointer-events: none; z-index: 0; }
.ch2o-how__inner { position: relative; z-index: 1; }
.ch2o-how__eyebrow { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.ch2o-how__dash { height: 1px; width: 1.5rem; background: color-mix(in srgb, var(--primary,#0066b3) 50%, transparent); }
.ch2o-how__dot { height: 0.25rem; width: 0.25rem; border-radius: 9999px; background: color-mix(in srgb, var(--primary,#0066b3) 70%, transparent); }
.ch2o-how__squiggle { display: block; margin: 1rem auto 0; height: 0.75rem; width: 7rem; color: color-mix(in srgb, var(--primary,#0066b3) 60%, transparent); }
.ch2o-how__grid { position: relative; margin-top: 6rem; display: grid; gap: 4.5rem 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .ch2o-how__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.ch2o-how__card-wrap { position: relative; }
.ch2o-how__connector { display: none; }
@media (min-width: 768px) {
  .ch2o-how__connector { display: block; position: absolute; right: 0; top: 1rem; transform: translateX(50%); z-index: 20; height: 2rem; width: 5rem; color: color-mix(in srgb, var(--primary,#0066b3) 60%, transparent); pointer-events: none; }
}
.ch2o-how__card {
  position: relative; display: flex; height: 100%; flex-direction: column; align-items: center; text-align: center;
  border-radius: 1.75rem; border: 1px solid rgba(255,255,255,0.7); background: rgba(255,255,255,0.9);
  padding: 5rem 1.5rem 2rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
  backdrop-filter: blur(4px); transition: transform .25s, box-shadow .25s;
}
.ch2o-how__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-how__float {
  position: absolute; top: -3rem; left: 50%; transform: translateX(-50%);
  border-radius: 9999px; background: rgba(255,255,255,0.85); padding: 0.375rem;
  box-shadow: 0 12px 30px -8px rgba(37, 99, 235, 0.45); border: 1px solid rgba(255,255,255,0.8);
}
.ch2o-how__float img { display: block; height: 6rem; width: 6rem; object-fit: contain; user-select: none; border-radius: 9999px; }
.ch2o-how__num {
  position: absolute; top: -0.25rem; left: -0.25rem; height: 2.25rem; width: 2.25rem; border-radius: 9999px;
  background: #fbbf24; color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); border: 2px solid #fff;
}
.ch2o-how__title { margin: 0; font-size: 1.25rem; font-weight: 700; line-height: 1.35; color: var(--primary, #0066b3); }
.ch2o-how__bar { margin-top: 0.75rem; height: 2px; width: 3rem; border-radius: 9999px; background: color-mix(in srgb, var(--primary,#0066b3) 40%, transparent); }
.ch2o-how__desc { margin: 1rem auto 0; max-width: 20rem; color: var(--muted-foreground, #53676b); }
.ch2o-how__arrow {
  margin-top: 1.5rem; display: inline-flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center;
  border-radius: 9999px; background: color-mix(in srgb, var(--primary,#0066b3) 10%, transparent); color: var(--primary, #0066b3);
  text-decoration: none; transition: transform .2s, background-color .2s, color .2s;
}
.ch2o-how__arrow:hover { transform: scale(1.05); background: var(--primary, #0066b3); color: var(--primary-foreground, #fff); }
.ch2o-how__trust {
  margin: 3.5rem auto 0; max-width: 56rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 0.5rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.7); background: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); backdrop-filter: blur(4px);
}
.ch2o-how__trust-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--foreground, #071f20); }
.ch2o-how__trust-icn { display: inline-flex; color: var(--primary, #0066b3); }
.ch2o-how__trust-icn svg, .ch2o-how__trust-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; fill: currentColor; }
.ch2o-how__trust-sep { display: none; }
@media (min-width: 640px) { .ch2o-how__trust-sep { display: block; margin: 0 1rem; height: 1.25rem; width: 1px; background: var(--border, #dfeaec); } }

/* ---- pH Explainer ---- */
.ch2o-ph { background-size: cover; background-position: center; background-repeat: no-repeat; padding: 4rem 0; }
@media (max-width: 640px) { .ch2o-ph { padding: 3rem 0; } }
.ch2o-ph__grid { margin-top: 4rem; display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-ph__grid { grid-template-columns: repeat(2, 1fr); } }
.ch2o-ph__gauge { border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); padding: 2rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-ph__dial { position: relative; height: 12rem; max-width: 320px; margin: 0 auto; }
.ch2o-ph__svg { height: 100%; width: 100%; }
.ch2o-ph__needle { position: absolute; left: 50%; bottom: 20px; width: 4px; height: 110px; margin-left: -2px; transform-origin: bottom center; }
.ch2o-ph__needle-stem { height: 100%; width: 4px; border-radius: 9999px; background: var(--foreground, #071f20); }
.ch2o-ph__needle-hub { position: absolute; bottom: -8px; left: -8px; height: 20px; width: 20px; border-radius: 9999px; background: var(--foreground, #071f20); }
.ch2o-ph__gauge-foot { margin-top: 0.5rem; text-align: center; }
.ch2o-ph__gauge-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground, #53676b); }
.ch2o-ph__gauge-cap { margin-top: 0.25rem; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground,#071f20) 80%, transparent); }
.ch2o-ph__meters { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.ch2o-ph__meter { display: flex; align-items: center; gap: 0.75rem; border-radius: var(--radius-2xl, 1.4rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); padding: 1rem; }
.ch2o-ph__meter img { height: 4rem; width: 3rem; flex-shrink: 0; object-fit: contain; }
.ch2o-ph__meter-label { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground, #53676b); }
.ch2o-ph__meter-ph { font-size: 1.125rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-ph__meter-zone { font-size: 11px; color: var(--muted-foreground, #53676b); }
.ch2o-ph__compare { display: grid; grid-template-columns: repeat(2, 1fr); overflow: hidden; border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-ph__col { padding: 1.5rem; }
.ch2o-ph__col--bad { background: color-mix(in srgb, var(--destructive,#d6492b) 5%, transparent); }
.ch2o-ph__col--good { background: color-mix(in srgb, var(--primary,#0066b3) 5%, transparent); }
.ch2o-ph__col-title { margin-bottom: 1rem; font-size: 0.875rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-ph__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.ch2o-ph__list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground,#071f20) 85%, transparent); }
.ch2o-ph__x { color: var(--destructive, #d6492b); font-weight: 700; flex-shrink: 0; }
.ch2o-ph__tick { color: var(--primary, #0066b3); font-weight: 700; flex-shrink: 0; }
.ch2o-ph__note { margin-top: 1.5rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground, #53676b); }
.ch2o-ph__note p { margin: 0; }
.ch2o-ph__note strong { color: var(--foreground, #071f20); }

/* ---- Our Services (2026-07 redesign: photo tile grid) ---- */
.ch2o-srv__tiles { margin-top: 3.5rem; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .ch2o-srv__tiles { gap: 1.25rem; } }
@media (min-width: 1024px) { .ch2o-srv__tiles { grid-template-columns: repeat(4, 1fr); } }
.ch2o-srv__tile {
  position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--radius-2xl, 1.4rem);
  box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); transition: box-shadow .25s;
}
@media (min-width: 640px) { .ch2o-srv__tile { aspect-ratio: 1 / 1; } }
.ch2o-srv__tile:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-srv__tile img.ch2o-srv__tile-img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform .3s ease-out; }
.ch2o-srv__tile:hover img.ch2o-srv__tile-img { transform: scale(1.05); }
.ch2o-srv__tile-shade { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(255,255,255,0.8), rgba(255,255,255,0.25) 50%, transparent); }
.ch2o-srv__tile-body { position: relative; display: flex; height: 100%; flex-direction: column; padding: 1.25rem; }
.ch2o-srv__tile-title { margin: 0; max-width: 70%; font-size: 1rem; font-weight: 700; line-height: 1.35; color: var(--foreground, #071f20); text-shadow: 0 1px 2px rgba(255,255,255,0.6); }
@media (min-width: 640px) { .ch2o-srv__tile-title { font-size: 1.125rem; } }
.ch2o-srv__tile-free { max-width: 62%; }
.ch2o-srv__free-btn {
  margin-top: 0.75rem; display: inline-flex; align-items: center; border-radius: 9999px;
  background: var(--primary, #0066b3); color: var(--primary-foreground, #fff);
  padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.15); transition: filter .2s, transform .1s;
}
.ch2o-srv__free-btn:hover { filter: brightness(1.05); }
.ch2o-srv__free-btn:active { transform: scale(0.95); }
.ch2o-srv__free-cap { margin: 0.75rem 0 0; font-size: 0.75rem; line-height: 1.4; color: color-mix(in srgb, var(--foreground,#071f20) 80%, transparent); }
.ch2o-srv__more { margin-top: 3rem; display: flex; justify-content: center; }
.ch2o-srv__more-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
  background: var(--primary, #0066b3); color: var(--primary-foreground, #fff);
  padding: 0.875rem 1.75rem; font-weight: 700; text-decoration: none;
  box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); transition: filter .2s, transform .1s;
}
.ch2o-srv__more-btn:hover { filter: brightness(1.05); }
.ch2o-srv__more-btn:active { transform: scale(0.98); }

/* ---- Testimonials ---- */
.ch2o-tst { overflow: hidden; }
.ch2o-tst__viewport { position: relative; margin-top: 3.5rem; }
.ch2o-tst__fade { position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 10; pointer-events: none; }
.ch2o-tst__fade--l { left: 0; background: linear-gradient(to right, var(--background, #fff), transparent); }
.ch2o-tst__fade--r { right: 0; background: linear-gradient(to left, var(--background, #fff), transparent); }
.ch2o-tst__track { display: flex; gap: 1.5rem; width: max-content; animation-name: ch2o-tst-scroll; animation-timing-function: linear; animation-iteration-count: infinite; }
.ch2o-tst__viewport:hover .ch2o-tst__track { animation-play-state: paused; }
@keyframes ch2o-tst-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ch2o-tst__track { animation: none; } }
.ch2o-tst__card { flex-shrink: 0; width: 340px; border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); padding: 1.5rem; }
@media (min-width: 640px) { .ch2o-tst__card { width: 380px; } }
.ch2o-tst__stars { color: var(--accent, #ef9f27); letter-spacing: 2px; font-size: 0.95rem; }
.ch2o-tst__text { margin: 1rem 0 0; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--foreground,#071f20) 85%, transparent); }
.ch2o-tst__foot { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.ch2o-tst__avatar { height: 2.5rem; width: 2.5rem; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; color: var(--primary-foreground, #fff); font-weight: 700; font-size: 0.875rem; }
.ch2o-tst__meta { display: flex; flex-direction: column; }
.ch2o-tst__name { font-weight: 700; font-size: 0.875rem; color: var(--foreground, #071f20); }
.ch2o-tst__city { font-size: 0.75rem; color: var(--muted-foreground, #53676b); }
.ch2o-tst__badge {
  margin-left: auto; align-self: flex-start; white-space: nowrap; border-radius: 9999px;
  background: color-mix(in srgb, var(--accent, #ef9f27) 10%, transparent); color: var(--accent, #ef9f27);
  padding: 0.25rem 0.625rem; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Dark (primary) variant — Testimonials.tsx 2026-07 */
.ch2o-tst--dark { background: var(--primary, #0066b3); color: var(--primary-foreground, #fff); }
.ch2o-tst--dark .ch2o-sh__eyebrow { color: rgba(255, 255, 255, 0.8); }
.ch2o-tst--dark .ch2o-sh__title { color: var(--primary-foreground, #fff); }
.ch2o-tst--dark .ch2o-tst__fade--l { background: linear-gradient(to right, var(--primary, #0066b3), transparent); }
.ch2o-tst--dark .ch2o-tst__fade--r { background: linear-gradient(to left, var(--primary, #0066b3), transparent); }

/* ---- Free Test CTA ---- */
.ch2o-ft__card { position: relative; overflow: hidden; border-radius: 2rem; color: var(--primary-foreground, #fff); box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-ft__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(255,255,255,0.14) 0%, transparent 55%); pointer-events: none; }
.ch2o-ft__grid { position: relative; display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
@media (min-width: 640px) { .ch2o-ft__grid { padding: 4rem 2.5rem; } }
@media (min-width: 1024px) { .ch2o-ft__grid { grid-template-columns: 7fr 5fr; padding: 5rem 3.5rem; } }
.ch2o-ft__main { text-align: center; }
@media (min-width: 1024px) { .ch2o-ft__main { text-align: left; } }
.ch2o-ft__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.875rem; border-radius: 9999px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.ch2o-ft__title { margin: 0; font-size: clamp(1.875rem, 1rem + 3vw, 2.75rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.ch2o-ft__title-2 { display: block; margin-top: 0.25rem; color: rgba(255,255,255,0.95); }
.ch2o-ft__accent { color: var(--accent, #ef9f27); }
.ch2o-ft__blurb { margin: 1.25rem auto 0; max-width: 36rem; font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,0.9); }
@media (min-width: 1024px) { .ch2o-ft__blurb { margin-left: 0; } }
.ch2o-ft__includes { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.85); }
@media (min-width: 1024px) { .ch2o-ft__includes { justify-content: flex-start; } }
.ch2o-ft__includes li { display: inline-flex; align-items: center; gap: 0.375rem; }
.ch2o-ft__check { color: var(--accent, #ef9f27); font-weight: 700; }
.ch2o-ft__btns { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; justify-content: center; }
@media (min-width: 640px) { .ch2o-ft__btns { flex-direction: row; flex-wrap: wrap; align-items: center; } }
@media (min-width: 1024px) { .ch2o-ft__btns { justify-content: flex-start; } }
.ch2o-ft__btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 0.625rem; border-radius: 9999px; font-weight: 700; text-decoration: none; transition: transform .15s, background-color .2s, filter .2s; }
.ch2o-ft__btn--accent { padding: 0.875rem 2rem; background: var(--accent, #ef9f27); color: var(--accent-foreground, #2b1c05); box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-ft__btn--accent:hover { filter: brightness(1.05); }
.ch2o-ft__btn--ghost { padding: 0.875rem 1.75rem; border: 2px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.1); color: var(--primary-foreground, #fff); font-weight: 600; }
.ch2o-ft__btn--ghost:hover { background: rgba(255,255,255,0.2); }
.ch2o-ft__note { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
@media (min-width: 1024px) { .ch2o-ft__note { justify-content: flex-start; } }
.ch2o-ft__side { display: flex; flex-direction: column; gap: 1rem; }
.ch2o-ft__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (min-width: 640px) { .ch2o-ft__stats { gap: 0.75rem; } }
.ch2o-ft__stat { border-radius: var(--radius-2xl, 1.4rem); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 1rem 0.75rem; text-align: center; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); }
.ch2o-ft__stat-val { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.ch2o-ft__stat-lbl { margin-top: 0.25rem; font-size: 0.7rem; line-height: 1.3; color: rgba(255,255,255,0.8); font-weight: 500; }
.ch2o-ft__how { border-radius: var(--radius-2xl, 1.4rem); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 1.5rem; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); }
.ch2o-ft__how-label { margin: 0 0 1rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); }
.ch2o-ft__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.ch2o-ft__step { display: flex; gap: 0.875rem; }
.ch2o-ft__step-icn { position: relative; flex-shrink: 0; height: 2.5rem; width: 2.5rem; border-radius: var(--radius-xl, 1.1rem); background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.ch2o-ft__step-icn svg, .ch2o-ft__step-icn i { font-size: 1.25rem; width: 1.25rem; height: 1.25rem; color: var(--primary-foreground, #fff); fill: currentColor; }
.ch2o-ft__step-num { position: absolute; top: -0.375rem; right: -0.375rem; height: 1.25rem; width: 1.25rem; border-radius: 9999px; background: var(--accent, #ef9f27); color: var(--accent-foreground, #2b1c05); font-size: 0.625rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-ft__step-body { display: flex; flex-direction: column; padding-top: 0.125rem; min-width: 0; }
.ch2o-ft__step-title { font-weight: 600; font-size: 0.875rem; line-height: 1.2; }
.ch2o-ft__step-desc { margin-top: 0.125rem; font-size: 0.75rem; line-height: 1.5; color: rgba(255,255,255,0.75); }

/* ====================================================================== *
 * How It Works page widgets: Info Cards, Callout, Compare Table, FAQ.
 * ====================================================================== */

/* ---- Info Cards ---- */
.ch2o-cards__grid { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-cards__grid--3, .ch2o-cards__grid--4 { grid-template-columns: repeat(2, 1fr); } .ch2o-cards__grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch2o-cards__grid--3 { grid-template-columns: repeat(3, 1fr); } .ch2o-cards__grid--4 { grid-template-columns: repeat(4, 1fr); } }
.ch2o-cards__card { height: 100%; border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 1.75rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-cards__card--center { text-align: center; }
.ch2o-cards__card--left { text-align: left; }
.ch2o-cards__img { display: flex; justify-content: center; }
.ch2o-cards__img img { height: 6rem; width: 5rem; object-fit: contain; }
.ch2o-cards__tile { height: 3.5rem; width: 3.5rem; border-radius: var(--radius-2xl, 1.4rem); display: inline-flex; align-items: center; justify-content: center; color: var(--primary-foreground, #fff); }
.ch2o-cards__tile svg, .ch2o-cards__tile i { font-size: 1.75rem; width: 1.75rem; height: 1.75rem; color: var(--primary-foreground, #fff); }
.ch2o-cards__title { margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-cards__card--center .ch2o-cards__title { font-size: 1.125rem; }
.ch2o-cards__desc { margin: 0.5rem 0 0; font-size: 0.9rem; line-height: 1.6; color: var(--muted-foreground, #53676b); }

/* ---- Callout ---- */
.ch2o-callout__inner { max-width: 64rem; text-align: center; }
.ch2o-callout__body { margin: 1.5rem auto 0; max-width: 42rem; font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground, #53676b); }

/* ---- Compare Table ---- */
.ch2o-cmp__wrap { max-width: 64rem; }
.ch2o-cmp__table { margin-top: 3rem; overflow: hidden; border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-cmp__row { display: grid; grid-template-columns: repeat(var(--ch2o-cmp-cols, 3), 1fr); }
.ch2o-cmp__row--head { background: var(--secondary, #eaf8f9); }
.ch2o-cmp__row--alt { background: color-mix(in srgb, var(--tint, #f1fdff) 60%, transparent); }
.ch2o-cmp__cell { padding: 1rem; font-size: 0.875rem; border-right: 1px solid var(--border, #dfeaec); }
.ch2o-cmp__row > .ch2o-cmp__cell:last-child { border-right: 0; }
.ch2o-cmp__cell--th { font-weight: 700; color: var(--foreground, #071f20); display: flex; align-items: center; gap: 0.5rem; }
.ch2o-cmp__cell--head { font-weight: 600; color: var(--foreground, #071f20); }
.ch2o-cmp__cell--muted { color: var(--muted-foreground, #53676b); }
.ch2o-cmp__cell--emph { color: var(--primary, #0066b3); font-weight: 600; }
.ch2o-cmp__ico { font-weight: 700; }
.ch2o-cmp__ico--ok { color: var(--primary, #0066b3); }
.ch2o-cmp__ico--no { color: var(--destructive, #d6492b); }
.ch2o-cmp__cards { display: none; margin-top: 2rem; flex-direction: column; gap: 1.25rem; }
.ch2o-cmp__mcard { border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); padding: 1.5rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); display: flex; flex-direction: column; gap: 0.875rem; }
.ch2o-cmp__mrow { display: flex; flex-direction: column; gap: 0.125rem; }
.ch2o-cmp__mlabel { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground, #53676b); }
.ch2o-cmp__mval { font-size: 0.9rem; color: var(--foreground, #071f20); }
.ch2o-cmp__note { margin: 2rem auto 0; max-width: 42rem; text-align: center; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-cmp__note strong { color: var(--foreground, #071f20); }
@media (max-width: 768px) { .ch2o-cmp__table { display: none; } .ch2o-cmp__cards { display: flex; } }

/* ---- FAQ ---- */
.ch2o-faq__wrap { max-width: 48rem; }
.ch2o-faq__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.ch2o-faq__item { border-radius: var(--radius-2xl, 1.4rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); padding: 1.25rem 1.25rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-faq__item[open] { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-faq__q::-webkit-details-marker { display: none; }
.ch2o-faq__chev { color: var(--primary, #0066b3); font-size: 1.25rem; line-height: 1; transition: transform .2s; }
.ch2o-faq__item[open] .ch2o-faq__chev { transform: rotate(180deg); }
.ch2o-faq__a { margin: 0.75rem 0 0; line-height: 1.7; color: var(--muted-foreground, #53676b); }
.ch2o-faq__cta { margin-top: 3rem; text-align: center; }
.ch2o-faq__btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: 9999px; color: var(--primary-foreground, #fff); font-weight: 600; text-decoration: none; box-shadow: var(--shadow-soft, 0 4px 20px -4px rgba(20,80,160,.15)); transition: box-shadow .2s; }
.ch2o-faq__btn:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }

/* ====================================================================== *
 * CH2O TDS Explainer  — rebuild of TDSExplainer.tsx
 * ====================================================================== */
.ch2o-tds { padding: 3rem 0 4rem; }
.ch2o-tds__scale-card {
  margin-top: 3rem; border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec);
  background: var(--card, #fff); padding: 1.25rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
}
@media (min-width: 640px) { .ch2o-tds__scale-card { padding: 2rem; } }
.ch2o-tds__scale { position: relative; padding-top: 3.5rem; }
@media (min-width: 640px) { .ch2o-tds__scale { padding-top: 2.5rem; } }
.ch2o-tds__marker { position: absolute; top: 0; display: flex; flex-direction: column; align-items: center; transform: translateX(-50%); }
.ch2o-tds__marker-pill {
  max-width: 150px; text-align: center; white-space: normal; border-radius: 9999px;
  background: var(--foreground, #071f20); color: var(--background, #fff);
  padding: 0.25rem 0.75rem; font-size: 10px; font-weight: 700;
  box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25));
}
@media (min-width: 640px) { .ch2o-tds__marker-pill { max-width: none; white-space: nowrap; font-size: 11px; } }
.ch2o-tds__marker-stem { height: 0.75rem; width: 2px; background: var(--foreground, #071f20); }
.ch2o-tds__bar { display: flex; height: 1rem; overflow: hidden; border-radius: 9999px; }
.ch2o-tds__seg { flex-basis: 0; }
.ch2o-tds__seg--muted  { background: color-mix(in srgb, var(--muted-foreground, #53676b) 20%, transparent); }
.ch2o-tds__seg--good   { background: color-mix(in srgb, var(--success, #2f90c8) 30%, transparent); }
.ch2o-tds__seg--ok     { background: color-mix(in srgb, var(--accent, #ef9f27) 25%, transparent); }
.ch2o-tds__seg--high   { background: color-mix(in srgb, var(--accent, #ef9f27) 45%, transparent); }
.ch2o-tds__seg--danger { background: color-mix(in srgb, var(--destructive, #d6492b) 25%, transparent); }
.ch2o-tds__labels { margin-top: 0.75rem; display: flex; text-align: center; }
.ch2o-tds__label { flex-basis: 0; padding: 0 0.25rem; }
.ch2o-tds__label-name { font-size: 0.75rem; font-weight: 700; }
@media (min-width: 640px) { .ch2o-tds__label-name { font-size: 0.875rem; } }
.ch2o-tds__label-range { font-size: 10px; color: var(--muted-foreground, #53676b); }
@media (min-width: 640px) { .ch2o-tds__label-range { font-size: 0.75rem; } }
.ch2o-tds__txt--muted  { color: var(--muted-foreground, #53676b); }
.ch2o-tds__txt--good   { color: var(--success, #2f90c8); }
.ch2o-tds__txt--ok, .ch2o-tds__txt--high { color: var(--accent-foreground, #59410f); }
.ch2o-tds__txt--danger { color: var(--destructive, #d6492b); }
.ch2o-tds__cards { margin-top: 2rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-tds__cards { grid-template-columns: repeat(3, 1fr); } }
.ch2o-tds__card { height: 100%; border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); padding: 1.5rem; }
.ch2o-tds__card--hl { box-shadow: 0 0 0 2px color-mix(in srgb, var(--success, #2f90c8) 30%, transparent); }
.ch2o-tds__card-icn { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: 9999px; }
.ch2o-tds__card-icn svg, .ch2o-tds__card-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; }
.ch2o-tds__icn--muted  { background: color-mix(in srgb, var(--muted-foreground, #53676b) 10%, transparent); color: var(--muted-foreground, #53676b); }
.ch2o-tds__icn--good   { background: color-mix(in srgb, var(--success, #2f90c8) 10%, transparent); color: var(--success, #2f90c8); }
.ch2o-tds__icn--danger { background: color-mix(in srgb, var(--destructive, #d6492b) 10%, transparent); color: var(--destructive, #d6492b); }
.ch2o-tds__card-title { margin: 1rem 0 0; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-tds__card-body { margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground, #53676b); }

/* ====================================================================== *
 * CH2O Mineral Wheel  — rebuild of MineralExplainer.tsx
 * Wheel sizing uses cqw (container width %) against the mock's 760px ref,
 * so the infographic scales pixel-perfectly. Grid fallback below 1024px.
 * ====================================================================== */
.ch2o-min { padding: 5rem 0 7rem; }
.ch2o-min__grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-min__grid { grid-template-columns: minmax(0, 360px) 1fr; gap: 2.5rem; } }
.ch2o-min__eyebrow { text-align: left; margin-bottom: 0; }
.ch2o-min__title { margin: 1rem 0 0; font-size: clamp(1.875rem, 1rem + 2.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-min__sub { margin: 1.25rem 0 0; max-width: 24rem; font-size: 1.05rem; line-height: 1.65; color: var(--muted-foreground, #53676b); }
.ch2o-min__highlights { margin-top: 2.5rem; display: flex; flex-direction: column; }
.ch2o-min__hl { display: flex; align-items: flex-start; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid color-mix(in srgb, var(--border, #dfeaec) 60%, transparent); }
.ch2o-min__hl:last-child { border-bottom: 0; }
.ch2o-min__hl-icn {
  display: flex; height: 2.75rem; width: 2.75rem; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 9999px; background: #fff; color: var(--primary, #0066b3);
  box-shadow: 0 4px 12px -8px rgba(37, 99, 235, 0.5); border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 15%, transparent);
}
.ch2o-min__hl-icn svg, .ch2o-min__hl-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; }
.ch2o-min__hl-body { display: flex; flex-direction: column; }
.ch2o-min__hl-title { font-weight: 700; color: var(--primary, #0066b3); }
.ch2o-min__hl-desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }

/* Wheel (lg+) */
.ch2o-min__wheel { position: relative; display: none; margin: 0 auto; aspect-ratio: 1 / 1; width: 100%; max-width: 680px; container-type: inline-size; }
@media (min-width: 1024px) { .ch2o-min__wheel { display: block; } }
.ch2o-min__wedges {
  position: absolute; inset: 0; border-radius: 9999px;
  -webkit-mask-image: radial-gradient(circle farthest-side at 50% 50%, transparent 0 30%, #000 33%, #000 99%, transparent 100%);
  mask-image: radial-gradient(circle farthest-side at 50% 50%, transparent 0 30%, #000 33%, #000 99%, transparent 100%);
}
.ch2o-min__ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); aspect-ratio: 1 / 1; border-radius: 9999px; }
.ch2o-min__ring--solid { width: 36%; border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 10%, transparent); }
.ch2o-min__ring--dashed { width: 37%; border: 1px dashed color-mix(in srgb, var(--primary, #0066b3) 25%, transparent); }
.ch2o-min__dot { position: absolute; transform: translate(-50%, -50%); width: 1.579cqw; height: 1.579cqw; border-radius: 9999px; box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 0 0 2px #fff; }
.ch2o-min__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; aspect-ratio: 1 / 1; width: 34%; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 9999px; text-align: center; padding: 0 2.632cqw;
  background: radial-gradient(circle at 50% 32%, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 22px 60px -28px rgba(37, 99, 235, 0.45), 0 0 0 1px color-mix(in srgb, var(--primary, #0066b3) 10%, transparent);
}
.ch2o-min__drop { width: 8.421cqw; height: auto; filter: drop-shadow(0 8px 14px rgba(37, 99, 235, 0.25)); }
.ch2o-min__hub-l1 { margin: 1.842cqw 0 0; white-space: nowrap; font-weight: 700; letter-spacing: -0.02em; font-size: 2.237cqw; color: var(--foreground, #071f20); }
.ch2o-min__hub-l2 { margin: 0; white-space: nowrap; font-weight: 700; letter-spacing: -0.02em; font-size: 2.237cqw; color: var(--primary, #0066b3); }
.ch2o-min__hub-bar { margin: 1.579cqw 0; height: 0.263cqw; width: 5.263cqw; border-radius: 9999px; background: color-mix(in srgb, var(--primary, #0066b3) 40%, transparent); }
.ch2o-min__hub-body { margin: 0; max-width: 23.947cqw; font-size: 1.513cqw; line-height: 1.4; color: var(--muted-foreground, #53676b); }
.ch2o-min__node-pos { position: absolute; transform: translate(-50%, -50%); transition: transform .25s ease-out; }
.ch2o-min__node-pos:hover { transform: translate(-50%, calc(-50% - 4px)); }

/* Node (shared markup; wheel = cqw sizing, fallback = px sizing) */
.ch2o-min__node { text-align: center; }
.ch2o-min__node-head { position: relative; margin: 0 auto; }
.ch2o-min__chip {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; border-radius: 9999px; background: #fff; font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05);
}
.ch2o-min__symbol { display: flex; align-items: center; justify-content: center; border-radius: 9999px; font-weight: 700; color: #fff; transition: transform .25s ease-out; }
.ch2o-min__node:hover .ch2o-min__symbol { transform: scale(1.05); }
.ch2o-min__icn { position: absolute; display: flex; align-items: center; justify-content: center; border-radius: 9999px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05); }
.ch2o-min__name { font-weight: 700; letter-spacing: -0.01em; }
.ch2o-min__benefit { margin-left: auto; margin-right: auto; line-height: 1.4; color: color-mix(in srgb, var(--muted-foreground, #53676b) 90%, transparent); }

/* Wheel (cqw) node sizes — 760px reference */
.ch2o-min__wheel .ch2o-min__node { width: 20cqw; }
.ch2o-min__wheel .ch2o-min__node-head { width: 8.684cqw; height: 8.684cqw; }
.ch2o-min__wheel .ch2o-min__chip { top: -1.579cqw; width: 3.289cqw; height: 3.289cqw; font-size: 1.447cqw; }
.ch2o-min__wheel .ch2o-min__symbol { width: 8.684cqw; height: 8.684cqw; font-size: 2.632cqw; }
.ch2o-min__wheel .ch2o-min__icn { bottom: -0.526cqw; right: -0.526cqw; width: 4.211cqw; height: 4.211cqw; }
.ch2o-min__wheel .ch2o-min__icn svg, .ch2o-min__wheel .ch2o-min__icn i { width: 2.632cqw; height: 2.632cqw; font-size: 2.632cqw; }
.ch2o-min__wheel .ch2o-min__name { margin: 1.579cqw 0 0; font-size: 1.974cqw; }
.ch2o-min__wheel .ch2o-min__benefit { margin: 0.789cqw 0 0; max-width: 19.737cqw; font-size: 1.645cqw; }

/* Grid fallback (< lg) — px sizes matching the React mobile grid */
.ch2o-min__fallback { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
@media (min-width: 640px) { .ch2o-min__fallback { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ch2o-min__fallback { display: none; } }
.ch2o-min__cell { display: flex; justify-content: center; }
.ch2o-min__fallback .ch2o-min__node { width: 152px; }
.ch2o-min__fallback .ch2o-min__node-head { width: 66px; height: 66px; }
.ch2o-min__fallback .ch2o-min__chip { top: -12px; width: 25px; height: 25px; font-size: 11px; }
.ch2o-min__fallback .ch2o-min__symbol { width: 66px; height: 66px; font-size: 20px; }
.ch2o-min__fallback .ch2o-min__icn { bottom: -4px; right: -4px; width: 32px; height: 32px; }
.ch2o-min__fallback .ch2o-min__icn svg, .ch2o-min__fallback .ch2o-min__icn i { width: 20px; height: 20px; font-size: 20px; }
.ch2o-min__fallback .ch2o-min__name { margin: 12px 0 0; font-size: 15px; }
.ch2o-min__fallback .ch2o-min__benefit { margin: 6px 0 0; max-width: 150px; font-size: 12.5px; }

/* Bottom banner */
.ch2o-min__banner {
  margin-top: 4rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  border-radius: var(--radius-2xl, 1.4rem); border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 15%, transparent);
  background: linear-gradient(to right, #f0f9ff, #eff6ff); padding: 1.25rem 1.5rem; text-align: center;
}
@media (min-width: 640px) { .ch2o-min__banner { flex-direction: row; gap: 1.25rem; text-align: left; } }
.ch2o-min__banner-icn {
  display: flex; height: 3.5rem; width: 3.5rem; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 9999px; background: var(--primary, #0066b3); color: var(--primary-foreground, #fff);
}
.ch2o-min__banner-txt { margin: 0; font-size: 1rem; font-weight: 600; color: var(--foreground, #071f20); }
@media (min-width: 640px) { .ch2o-min__banner-txt { font-size: 1.125rem; } }
.ch2o-min__banner-hl { color: var(--primary, #0066b3); }

/* ====================================================================== *
 * Phase 2 widgets: Split Hero, Risk Cards, Media+Text, Mineral Cards,
 * Twin Flows, Price Cards, About Intro, Vision, Pillars, Prose, AWEE,
 * Impact Stats, Contact + shared form styles, Callout buttons.
 * ====================================================================== */

/* ---- shared: gradient-hero page background ---- */
.ch2o-grad-hero-bg {
  background: radial-gradient(ellipse at top, color-mix(in oklab, var(--primary-light, #009fd8) 15%, transparent), transparent 60%),
              linear-gradient(180deg, var(--tint, #f1fdff), var(--background, #fff));
}

/* ---- Split Hero ---- */
.ch2o-shero { padding: 4rem 0 5rem; overflow: hidden; }
.ch2o-shero__grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-shero__grid { grid-template-columns: 1fr 1fr; } }
.ch2o-shero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent); color: var(--primary, #0066b3);
  padding: 0.375rem 0.875rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
}
.ch2o-shero__title { margin: 1.25rem 0 0; font-size: clamp(1.875rem, 1rem + 3vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-shero__body { margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.7; color: var(--muted-foreground, #53676b); }
.ch2o-shero__body p { margin: 0 0 0.75rem; }
.ch2o-shero__body strong { color: var(--foreground, #071f20); }
.ch2o-shero__chips { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.625rem; }
.ch2o-shero__chip {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
  background: var(--card, #fff); border: 1px solid var(--border, #dfeaec);
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground, #071f20);
  box-shadow: var(--shadow-soft, 0 4px 20px -4px rgba(20,80,160,.15));
}
.ch2o-shero__chip-icn { display: inline-flex; color: var(--primary, #0066b3); }
.ch2o-shero__chip-icn svg, .ch2o-shero__chip-icn i { width: 1rem; height: 1rem; font-size: 1rem; }
.ch2o-shero__chip-check { display: inline-flex; color: var(--primary, #0066b3); }
.ch2o-shero__chip--q {
  border: 2px dashed color-mix(in srgb, var(--destructive, #d6492b) 40%, transparent);
  background: color-mix(in srgb, var(--destructive, #d6492b) 5%, transparent);
  color: var(--destructive, #d6492b); box-shadow: none;
}
.ch2o-shero__quote {
  margin-top: 2rem; display: flex; align-items: flex-start; gap: 1rem;
  border-radius: var(--radius-2xl, 1.4rem); background: var(--card, #fff);
  border: 1px solid var(--border, #dfeaec); border-left: 4px solid var(--accent, #ef9f27);
  padding: 1.25rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
}
.ch2o-shero__quote-icn { display: flex; height: 2.75rem; width: 2.75rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: var(--radius-2xl, 1.4rem); color: var(--primary-foreground, #fff); }
.ch2o-shero__quote-icn svg, .ch2o-shero__quote-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; }
.ch2o-shero__quote-lead { display: block; font-size: 1.125rem; font-weight: 700; font-style: italic; color: var(--foreground, #071f20); }
.ch2o-shero__quote-sub { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-shero__media { position: relative; }
.ch2o-shero__media-bg { position: absolute; inset: -1.5rem; border-radius: 3rem; background: color-mix(in srgb, var(--primary, #0066b3) 5%, transparent); z-index: 0; }
.ch2o-shero__media img { position: relative; z-index: 1; display: block; width: 100%; max-width: 28rem; margin: 0 auto; border-radius: var(--radius-3xl, 1.6rem); object-fit: cover; box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }

/* ---- Risk Cards ---- */
.ch2o-risks { padding: 3rem 0 3.5rem; }
.ch2o-risks__grid { margin-top: 2rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-risks__grid { grid-template-columns: repeat(2, 1fr); } .ch2o-risks__card:last-child { grid-column: span 2; } }
@media (min-width: 1024px) { .ch2o-risks__grid { grid-template-columns: repeat(3, 1fr); } .ch2o-risks__card:last-child { grid-column: auto; } }
.ch2o-risks__card {
  display: flex; flex-direction: column; border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff);
  border: 1px solid var(--border, #dfeaec); padding: 1.5rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
  transition: box-shadow .25s;
}
.ch2o-risks__card:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-risks__media { position: relative; border-radius: var(--radius-2xl, 1.4rem); background: color-mix(in srgb, var(--muted, #eef4f5) 40%, transparent); padding: 0.75rem 0; }
.ch2o-risks__media img { display: block; margin: 0 auto; height: 7rem; width: auto; object-fit: contain; }
.ch2o-risks__badge {
  position: absolute; bottom: -0.75rem; right: 1rem; display: flex; height: 2.5rem; width: 2.5rem;
  align-items: center; justify-content: center; border-radius: 9999px; color: var(--primary-foreground, #fff);
  box-shadow: var(--shadow-soft, 0 4px 20px -4px rgba(20,80,160,.15)); border: 4px solid var(--card, #fff);
}
.ch2o-risks__badge svg, .ch2o-risks__badge i { width: 1.125rem; height: 1.125rem; font-size: 1.125rem; }
.ch2o-risks__title { margin: 1.25rem 0 0; text-align: center; font-size: 1.125rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-risks__block { margin-top: 0.75rem; }
.ch2o-risks__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground, #53676b); }
.ch2o-risks__list { list-style: none; margin: 0.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.375rem; }
.ch2o-risks__list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-risks__ico { flex-shrink: 0; margin-top: 0.125rem; }
.ch2o-risks__ico--warn { color: var(--destructive, #d6492b); }
.ch2o-risks__ico--x { color: color-mix(in srgb, var(--destructive, #d6492b) 70%, transparent); }
.ch2o-risks__foot { margin-top: auto; padding-top: 1rem; }
.ch2o-risks__myth {
  display: inline-flex; align-items: center; gap: 0.375rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--accent, #ef9f27) 15%, transparent);
  padding: 0.375rem 0.75rem; font-size: 0.75rem; font-weight: 700; color: var(--foreground, #071f20);
}
.ch2o-risks__myth svg { color: var(--accent, #ef9f27); }

/* ---- Media + Text ---- */
.ch2o-mt { padding: 4rem 0 5rem; }
.ch2o-mt__grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .ch2o-mt__grid { grid-template-columns: 1fr 1fr; }
  .ch2o-mt--img-right .ch2o-mt__grid .ch2o-mt__media { order: 2; }
}
.ch2o-mt__media img { display: block; width: 100%; border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-mt__eyebrow { text-align: left; margin-bottom: 0; }
.ch2o-mt__title { margin: 0.75rem 0 0; font-size: clamp(1.75rem, 1rem + 2.5vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-mt__body { margin-top: 1.5rem; line-height: 1.7; color: var(--muted-foreground, #53676b); }
.ch2o-mt__body p { margin: 0 0 1rem; }
.ch2o-mt__body strong { color: var(--foreground, #071f20); }
.ch2o-mt__pills { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ch2o-mt__pill { border-radius: 9999px; background: var(--secondary, #eaf8f9); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; color: var(--foreground, #071f20); }
/* compact banner variant */
.ch2o-mt--compact { padding: 2rem 0 4rem; }
.ch2o-mt__card {
  display: grid; gap: 1.25rem; align-items: center; grid-template-columns: 1fr; max-width: 64rem; margin: 0 auto;
  border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec);
  padding: 1.25rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
}
@media (min-width: 640px) { .ch2o-mt__card { grid-template-columns: 220px 1fr; } }
.ch2o-mt--compact .ch2o-mt__media img { aspect-ratio: 3 / 2; object-fit: cover; border: 0; box-shadow: none; border-radius: var(--radius-2xl, 1.4rem); }
.ch2o-mt--compact .ch2o-mt__body { margin-top: 0; font-size: 0.875rem; }
.ch2o-mt--compact .ch2o-mt__body p { margin-bottom: 0.5rem; }

/* ---- Mineral Cards ---- */
.ch2o-mc { padding: 4rem 0; }
.ch2o-mc__grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-mc__grid--large { grid-template-columns: repeat(3, 1fr); } }
.ch2o-mc__grid--small { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .ch2o-mc__grid--small { grid-template-columns: repeat(4, 1fr); } }
.ch2o-mc__card { border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 1.75rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-mc__card--small { padding: 1.25rem; text-align: center; }
.ch2o-mc__head { display: flex; align-items: center; justify-content: space-between; }
.ch2o-mc__symbol {
  display: inline-flex; height: 3rem; width: 3rem; align-items: center; justify-content: center;
  border-radius: var(--radius-2xl, 1.4rem); background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent);
  color: var(--primary, #0066b3); font-weight: 700; font-size: 1.125rem;
}
.ch2o-mc__card--small .ch2o-mc__symbol { margin: 0 auto; height: 2.75rem; width: 2.75rem; font-size: 1rem; }
.ch2o-mc__icn { color: var(--primary, #0066b3); }
.ch2o-mc__icn svg, .ch2o-mc__icn i { width: 1.5rem; height: 1.5rem; font-size: 1.5rem; }
.ch2o-mc__name { margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-mc__card--small .ch2o-mc__name { margin-top: 0.75rem; font-size: 0.875rem; }
.ch2o-mc__benefit { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-mc__card--small .ch2o-mc__benefit { font-size: 0.75rem; }
.ch2o-mc__pill {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.375rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--destructive, #d6492b) 10%, transparent); color: var(--destructive, #d6492b);
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700;
}
.ch2o-mc__promos { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.ch2o-mc__promo {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--accent, #ef9f27) 15%, transparent);
  padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground, #071f20);
}
.ch2o-mc__promo-icn { display: inline-flex; color: var(--accent, #ef9f27); }
.ch2o-mc__promo-icn svg, .ch2o-mc__promo-icn i { width: 1rem; height: 1rem; font-size: 1rem; }
.ch2o-mc__closing { margin: 2.5rem auto 0; max-width: 42rem; text-align: center; color: var(--muted-foreground, #53676b); }
.ch2o-mc__closing p { margin: 0; }
.ch2o-mc__closing strong { color: var(--foreground, #071f20); }

/* ---- Twin Flows ---- */
.ch2o-flows { padding: 4rem 0 5rem; }
.ch2o-flows__feature { margin-top: 3rem; }
.ch2o-flows__feature img { display: block; width: 100%; border-radius: var(--radius-3xl, 1.6rem); border: 1px solid var(--border, #dfeaec); box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-flows__grid { margin-top: 2rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-flows__grid { grid-template-columns: repeat(2, 1fr); } }
.ch2o-flows__card { height: 100%; border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 2rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-flows__chip { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 700; }
.ch2o-flows__chip--nature { background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent); color: var(--primary, #0066b3); }
.ch2o-flows__chip--us { background: color-mix(in srgb, var(--accent, #ef9f27) 20%, transparent); color: var(--foreground, #071f20); }
.ch2o-flows__chip-icn { display: inline-flex; }
.ch2o-flows__chip-icn svg, .ch2o-flows__chip-icn i { width: 1rem; height: 1rem; font-size: 1rem; }
.ch2o-flows__steps { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 2rem; }
.ch2o-flows__step { position: relative; padding-left: 4rem; }
.ch2o-flows__line { position: absolute; left: 21px; top: 3rem; bottom: -2rem; border-left: 2px dashed color-mix(in srgb, var(--primary, #0066b3) 30%, transparent); }
.ch2o-flows__step-icn { position: absolute; left: 0; top: 0; display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: var(--radius-2xl, 1.4rem); color: var(--primary-foreground, #fff); }
.ch2o-flows__step-icn svg, .ch2o-flows__step-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; }
.ch2o-flows__step-title { margin: 0; padding-top: 0.125rem; font-size: 1rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-flows__step-num { color: var(--primary, #0066b3); margin-right: 0.25rem; }
.ch2o-flows__step-desc { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-flows__closing { margin: 2rem 0 0; text-align: center; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-flows__tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.ch2o-flows__tag {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
  background: var(--card, #fff); border: 1px solid var(--border, #dfeaec);
  padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground, #071f20);
  box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
}
.ch2o-flows__tag svg { color: var(--primary, #0066b3); }

/* ---- Price Cards ---- */
.ch2o-pc { padding: 2rem 0 3rem; }
.ch2o-pc__head { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.ch2o-pc__head-icn { display: flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center; border-radius: var(--radius-2xl, 1.4rem); color: var(--primary-foreground, #fff); }
.ch2o-pc__head-icn svg, .ch2o-pc__head-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; }
.ch2o-pc__head-title { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-pc__grid { margin-top: 1.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-pc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch2o-pc__grid { grid-template-columns: repeat(3, 1fr); } }
.ch2o-pc__card {
  position: relative; display: flex; height: 100%; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec);
  box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); transition: box-shadow .25s;
}
.ch2o-pc__card:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-pc__card--tagged { border: 2px solid color-mix(in srgb, var(--primary, #0066b3) 50%, transparent); }
.ch2o-pc__tag { position: absolute; right: 1rem; top: 1rem; z-index: 10; border-radius: 9999px; padding: 0.25rem 0.75rem; font-size: 11px; font-weight: 700; color: var(--primary-foreground, #fff); box-shadow: var(--shadow-soft, 0 4px 20px -4px rgba(20,80,160,.15)); }
.ch2o-pc__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.ch2o-pc__img img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s ease-out; }
.ch2o-pc__card:hover .ch2o-pc__img img { transform: scale(1.04); }
.ch2o-pc__body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem 1.5rem 1.5rem; }
.ch2o-pc__product { margin: 0; font-size: 1.125rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-pc__audience { margin-top: 0.375rem; display: inline-flex; width: fit-content; border-radius: 9999px; background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent); color: var(--primary, #0066b3); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; }
.ch2o-pc__price { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.5rem; }
.ch2o-pc__price-val { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-pc__price-cap { font-size: 0.75rem; color: var(--muted-foreground, #53676b); }
.ch2o-pc__meta { margin-top: 1rem; border-top: 1px solid var(--border, #dfeaec); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; }
.ch2o-pc__meta-row { display: flex; align-items: center; justify-content: space-between; }
.ch2o-pc__meta-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground, #53676b); }
.ch2o-pc__meta-label svg { color: var(--primary, #0066b3); }
.ch2o-pc__meta-val { font-weight: 600; color: var(--foreground, #071f20); }
.ch2o-pc__cta { margin-top: auto; padding-top: 1.25rem; }
.ch2o-pc__btn {
  display: inline-flex; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 30%, transparent);
  background: color-mix(in srgb, var(--primary, #0066b3) 5%, transparent); color: var(--primary, #0066b3);
  padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background-color .2s, color .2s;
}
.ch2o-pc__btn:hover { background: var(--primary, #0066b3); color: var(--primary-foreground, #fff); }

/* ---- Callout: subline + buttons (extension) ---- */
.ch2o-callout__subline { margin: 0.75rem 0 0; font-style: italic; color: var(--muted-foreground, #53676b); }
.ch2o-callout__btns { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.ch2o-callout__btn { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; padding: 0.875rem 1.75rem; font-weight: 600; text-decoration: none; transition: box-shadow .2s; box-shadow: var(--shadow-soft, 0 4px 20px -4px rgba(20,80,160,.15)); }
.ch2o-callout__btn:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-callout__btn--primary { color: var(--primary-foreground, #fff); }
.ch2o-callout__btn--ghost { border: 1px solid var(--border, #dfeaec); background: var(--card, #fff); color: var(--foreground, #071f20); }

/* ---- About Intro ---- */
.ch2o-ai { position: relative; overflow: hidden; padding: 5rem 0 7rem; }
.ch2o-ai__plant { display: none; }
@media (min-width: 640px) { .ch2o-ai__plant { display: block; position: absolute; bottom: -1.5rem; left: -1.5rem; width: 7rem; opacity: 0.9; pointer-events: none; } }
@media (min-width: 1024px) { .ch2o-ai__plant { width: 9rem; } }
.ch2o-ai__grid { position: relative; z-index: 1; display: grid; gap: 3.5rem; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-ai__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.ch2o-ai__eyebrow { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--primary, #0066b3); }
.ch2o-ai__eyebrow-line { height: 1px; width: 2rem; background: color-mix(in srgb, var(--primary, #0066b3) 40%, transparent); }
.ch2o-ai__title { margin: 0; font-size: clamp(1.875rem, 1rem + 2.5vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-ai__bar { display: block; margin-top: 0.75rem; height: 0.25rem; width: 4rem; border-radius: 9999px; }
.ch2o-ai__intro { margin: 1.5rem 0 0; font-size: 1.05rem; line-height: 1.7; color: var(--muted-foreground, #53676b); }
.ch2o-ai__points { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.ch2o-ai__point { display: flex; align-items: flex-start; gap: 1rem; }
.ch2o-ai__point img { height: 3.5rem; width: 3.5rem; flex-shrink: 0; margin: -0.25rem; object-fit: contain; }
.ch2o-ai__point-title { margin: 0; font-size: 1rem; font-weight: 800; color: var(--foreground, #071f20); }
.ch2o-ai__point-desc { margin: 0.25rem 0 0; font-size: 0.95rem; line-height: 1.65; color: var(--muted-foreground, #53676b); }
.ch2o-ai__media { position: relative; max-width: 36rem; margin: 0 auto; }
@media (min-width: 640px) { .ch2o-ai__media { padding-bottom: 6rem; } }
.ch2o-ai__photo-wrap { position: relative; }
.ch2o-ai__deco { position: absolute; pointer-events: none; z-index: 20; }
.ch2o-ai__deco--cluster { top: -2rem; right: -0.5rem; width: 5rem; }
@media (min-width: 640px) { .ch2o-ai__deco--cluster { right: -1.5rem; width: 7rem; } }
.ch2o-ai__deco--heart { top: 42%; right: -1rem; width: 3.5rem; }
@media (min-width: 640px) { .ch2o-ai__deco--heart { right: -2rem; width: 5rem; } }
.ch2o-ai__blob { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f0f9ff; clip-path: url(#ch2o-heart-clip); filter: drop-shadow(0 20px 32px rgba(20,80,160,.3)); }
.ch2o-ai__blob img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ch2o-ai__sig { margin-top: 1.25rem; display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; z-index: 30; }
@media (min-width: 640px) { .ch2o-ai__sig { margin-top: 0; position: absolute; bottom: 7rem; right: 0; } }
.ch2o-ai__avatar { display: block; height: 4rem; width: 4rem; flex-shrink: 0; overflow: hidden; border-radius: 9999px; background: #f0f9ff; box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)), 0 0 0 4px #fff; }
.ch2o-ai__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ch2o-ai__sig-meta { text-align: right; }
.ch2o-ai__sig-name { display: block; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 700; font-size: 1.125rem; line-height: 1.2; color: var(--primary, #0066b3); }
.ch2o-ai__sig-role { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground, #53676b); white-space: nowrap; }
.ch2o-ai__quote { margin-top: 1rem; margin-left: auto; width: 220px; border-radius: var(--radius-2xl, 1.4rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 0.875rem 1rem; box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); z-index: 20; }
@media (min-width: 640px) { .ch2o-ai__quote { margin-top: 0; position: absolute; bottom: -0.5rem; right: 0; } }
.ch2o-ai__quote p { margin: 0; font-size: 0.8rem; font-weight: 600; font-style: italic; line-height: 1.4; color: var(--foreground, #071f20); }
.ch2o-ai__quote svg { margin-top: 0.5rem; color: var(--primary, #0066b3); }
.ch2o-ai__mission { margin-top: 1rem; display: flex; align-items: flex-start; gap: 1rem; width: 100%; border-radius: var(--radius-3xl, 1.6rem); background: color-mix(in srgb, var(--primary, #0066b3) 5%, transparent); border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 15%, transparent); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); z-index: 10; }
@media (min-width: 640px) { .ch2o-ai__mission { margin-top: 0; position: absolute; bottom: -1.5rem; left: 0; width: 60%; } }
.ch2o-ai__mission img { height: 3rem; width: 3rem; flex-shrink: 0; margin: -0.25rem; object-fit: contain; }
.ch2o-ai__mission-title { margin: 0; font-size: 1rem; font-weight: 800; color: var(--foreground, #071f20); }
.ch2o-ai__mission-body { margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground, #53676b); }

/* ---- Vision ---- */
.ch2o-vision { position: relative; overflow: hidden; padding: 5rem 0 7rem; background: linear-gradient(to bottom right, var(--tint, #f1fdff), var(--background, #fff), var(--background, #fff)); }
.ch2o-vision__blob { position: absolute; border-radius: 9999px; background: color-mix(in srgb, var(--primary, #0066b3) 5%, transparent); filter: blur(64px); pointer-events: none; }
.ch2o-vision__blob--a { top: -8rem; right: -8rem; height: 31rem; width: 31rem; }
.ch2o-vision__blob--b { bottom: -6rem; left: -6rem; height: 20rem; width: 20rem; }
.ch2o-vision__grid { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; max-width: 72rem; }
@media (min-width: 1024px) { .ch2o-vision__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.ch2o-vision__badge {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 20%, transparent);
  color: var(--primary, #0066b3); padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
}
.ch2o-vision__title { margin: 0; font-size: clamp(1.875rem, 1rem + 2.5vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-vision__body { margin: 1.5rem 0 0; font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground, #53676b); }
.ch2o-vision__quote { margin-top: 2rem; padding-left: 1.25rem; border-left: 4px solid color-mix(in srgb, var(--primary, #0066b3) 30%, transparent); }
.ch2o-vision__quote p { margin: 0; font-weight: 600; font-style: italic; line-height: 1.6; color: color-mix(in srgb, var(--primary, #0066b3) 80%, transparent); }
.ch2o-vision__cardwrap { position: relative; }
.ch2o-vision__frame { border-radius: var(--radius-3xl, 1.6rem); padding: 2px; box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-vision__card { border-radius: calc(var(--radius-3xl, 1.6rem) - 2px); background: var(--card, #fff); padding: 1.75rem 2rem; }
.ch2o-vision__card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.ch2o-vision__card-icn { display: flex; height: 3rem; width: 3rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: var(--radius-2xl, 1.4rem); color: var(--primary-foreground, #fff); }
.ch2o-vision__card-eyebrow { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary, #0066b3); }
.ch2o-vision__card-title { margin: 0.125rem 0 0; font-size: 1rem; font-weight: 800; color: var(--foreground, #071f20); }
.ch2o-vision__rows { display: flex; flex-direction: column; gap: 0.75rem; }
.ch2o-vision__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-radius: var(--radius-2xl, 1.4rem); background: color-mix(in srgb, var(--muted, #eef4f5) 60%, transparent); border: 1px solid var(--border, #dfeaec); padding: 0.75rem 1rem; }
.ch2o-vision__row-label { font-size: 0.875rem; line-height: 1.4; color: color-mix(in srgb, var(--foreground, #071f20) 80%, transparent); }
.ch2o-vision__row-badge { flex-shrink: 0; border-radius: 9999px; border: 1px solid; padding: 0.25rem 0.625rem; font-size: 0.75rem; font-weight: 700; }
.ch2o-vision__row-badge--red { background: #fef2f2; color: #dc2626; border-color: #fee2e2; }
.ch2o-vision__row-badge--amber { background: #fffbeb; color: #b45309; border-color: #fef3c7; }
.ch2o-vision__row-badge--blue { background: color-mix(in srgb, var(--primary, #0066b3) 5%, transparent); color: var(--primary, #0066b3); border-color: color-mix(in srgb, var(--primary, #0066b3) 15%, transparent); }
.ch2o-vision__note { margin-top: 1.5rem; border-radius: var(--radius-2xl, 1.4rem); background: color-mix(in srgb, var(--primary, #0066b3) 8%, transparent); border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 15%, transparent); padding: 1rem; text-align: center; }
.ch2o-vision__note p { margin: 0; font-size: 0.875rem; font-weight: 600; line-height: 1.4; color: var(--primary, #0066b3); }
.ch2o-vision__stat { position: absolute; top: -1.25rem; right: -1rem; border-radius: var(--radius-2xl, 1.4rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 0.75rem 1rem; box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
@media (min-width: 640px) { .ch2o-vision__stat { right: -1.5rem; } }
.ch2o-vision__stat-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground, #53676b); }
.ch2o-vision__stat-value { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1.25; }

/* ---- Mission Pillars ---- */
.ch2o-pillars { padding: 5rem 0 7rem; }
.ch2o-pillars__badge {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--accent, #ef9f27) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, #ef9f27) 25%, transparent);
  color: var(--accent-foreground, #59410f); padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
}
.ch2o-pillars__badge svg { color: var(--accent, #ef9f27); }
.ch2o-pillars__grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .ch2o-pillars__grid { grid-template-columns: repeat(3, 1fr); } }
.ch2o-pillars__card {
  position: relative; display: flex; height: 100%; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec);
  padding: 2rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); transition: transform .3s, box-shadow .3s;
}
.ch2o-pillars__card:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-pillars__ghost { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 3.75rem; font-weight: 800; line-height: 1; color: color-mix(in srgb, var(--primary, #0066b3) 6%, transparent); user-select: none; pointer-events: none; }
.ch2o-pillars__icn { display: flex; height: 3.5rem; width: 3.5rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: var(--radius-2xl, 1.4rem); margin-bottom: 1.5rem; color: var(--primary-foreground, #fff); transition: transform .2s; }
.ch2o-pillars__card:hover .ch2o-pillars__icn { transform: scale(1.05); }
.ch2o-pillars__icn svg, .ch2o-pillars__icn i { width: 1.75rem; height: 1.75rem; font-size: 1.75rem; }
.ch2o-pillars__step { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary, #0066b3); margin-bottom: 0.375rem; }
.ch2o-pillars__title { margin: 0 0 0.75rem; font-size: 1.25rem; font-weight: 800; color: var(--foreground, #071f20); }
.ch2o-pillars__desc { margin: 0; flex: 1; line-height: 1.7; color: var(--muted-foreground, #53676b); }
.ch2o-pillars__bar { display: block; margin-top: 1.75rem; height: 0.25rem; width: 2.5rem; border-radius: 9999px; }
.ch2o-pillars__banner {
  margin: 3rem auto 0; max-width: 42rem; display: flex; align-items: center; gap: 1rem;
  border-radius: var(--radius-2xl, 1.4rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec);
  padding: 1.25rem 1.75rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1));
}
.ch2o-pillars__banner-icn { display: flex; height: 2.75rem; width: 2.75rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: var(--radius-xl, 1.1rem); color: var(--primary-foreground, #fff); }
.ch2o-pillars__banner-icn svg, .ch2o-pillars__banner-icn i { width: 1.25rem; height: 1.25rem; font-size: 1.25rem; }
.ch2o-pillars__banner p { margin: 0; font-weight: 600; line-height: 1.4; color: var(--foreground, #071f20); }

/* ---- Prose ---- */
.ch2o-prose { padding: 4rem 0 5rem; }
.ch2o-prose__wrap { max-width: 56rem; }
.ch2o-prose .ch2o-sh__eyebrow { text-align: center; }
.ch2o-prose__title { margin: 0 0 1.5rem; text-align: center; font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--foreground, #071f20); }
.ch2o-prose__body { font-size: 1.05rem; line-height: 1.75; color: color-mix(in srgb, var(--foreground, #071f20) 85%, transparent); }
.ch2o-prose--center .ch2o-prose__body { text-align: center; }
.ch2o-prose__body p { margin: 0 0 1.25rem; }
.ch2o-prose__body strong { color: var(--foreground, #071f20); }
.ch2o-prose__body blockquote { margin: 0 0 1.25rem; padding-left: 1rem; border-left: 4px solid color-mix(in srgb, var(--primary, #0066b3) 30%, transparent); font-weight: 600; font-style: italic; color: var(--primary, #0066b3); }
.ch2o-prose__body ul { margin: 0 0 1.25rem; padding-left: 1rem; list-style: none; }
.ch2o-prose__body ul li { position: relative; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.ch2o-prose__body ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; height: 0.375rem; width: 0.375rem; border-radius: 9999px; background: var(--primary, #0066b3); }
.ch2o-prose__phil { margin-top: 3rem; border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 2rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-prose__phil-label { margin: 0 0 1.5rem; text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary, #0066b3); }
.ch2o-prose__phil-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .ch2o-prose__phil-grid { grid-template-columns: repeat(4, 1fr); } }
.ch2o-prose__phil-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.ch2o-prose__phil-num { display: flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center; border-radius: 9999px; color: var(--primary-foreground, #fff); font-weight: 700; font-size: 0.875rem; }
.ch2o-prose__phil-item p { margin: 0; text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--foreground, #071f20); }

/* ---- AWEE Process ---- */
.ch2o-awee { position: relative; overflow: hidden; padding: 4rem 0 6rem; background-color: #eef6fd; background-size: cover; background-position: center bottom; background-repeat: no-repeat; }
.ch2o-awee__hl { color: var(--primary, #0066b3); }
.ch2o-awee__sub { margin: 0.75rem 0 0; color: color-mix(in srgb, var(--foreground, #071f20) 60%, transparent); }
.ch2o-awee__deco { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.ch2o-awee__deco-line { height: 1px; width: 2rem; background: color-mix(in srgb, var(--primary, #0066b3) 40%, transparent); }
.ch2o-awee__deco-dot { height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: var(--primary, #0066b3); }
.ch2o-awee__row { position: relative; margin-top: 3rem; display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 640px) { .ch2o-awee__row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch2o-awee__row { grid-template-columns: repeat(4, 1fr); } }
.ch2o-awee__timeline { display: none; }
@media (min-width: 1024px) { .ch2o-awee__timeline { display: block; position: absolute; inset-inline: 0; top: 50%; pointer-events: none; z-index: 0; } }
.ch2o-awee__dash { position: absolute; left: 12.5%; right: 12.5%; top: 0; border-top: 2px dashed rgba(37, 99, 235, 0.3); }
.ch2o-awee__dots { position: absolute; top: 0; transform: translateY(-50%); display: flex; align-items: center; gap: 5px; }
.ch2o-awee__dots i { display: block; height: 10px; width: 10px; border-radius: 9999px; background: color-mix(in srgb, var(--primary, #0066b3) 55%, transparent); }
.ch2o-awee__cell { display: flex; flex-direction: column; padding: 2rem 0.75rem; margin: 0 0.5rem; height: 100%; }
@media (min-width: 1024px) { .ch2o-awee__cell { margin: 0 0.75rem; } }
.ch2o-awee__card {
  position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; align-items: center; text-align: center;
  overflow: hidden; border-radius: var(--radius-3xl, 1.6rem); background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.7); backdrop-filter: blur(4px);
  padding: 2rem 1.25rem 3rem; box-shadow: 0 4px 32px rgba(30, 100, 200, 0.1);
}
.ch2o-awee__circle-wrap { position: relative; margin-bottom: 1.25rem; }
.ch2o-awee__circle { display: flex; height: 5rem; width: 5rem; align-items: center; justify-content: center; border-radius: 9999px; background: var(--primary, #0066b3); color: #fff; font-size: 1.875rem; font-weight: 800; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15); }
.ch2o-awee__badge { position: absolute; bottom: -0.25rem; right: -0.25rem; display: flex; height: 2rem; width: 2rem; align-items: center; justify-content: center; border-radius: 9999px; background: #fff; color: var(--primary, #0066b3); border: 2px solid color-mix(in srgb, var(--primary, #0066b3) 20%, transparent); box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.ch2o-awee__badge svg, .ch2o-awee__badge i { width: 1rem; height: 1rem; font-size: 1rem; }
.ch2o-awee__step-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; color: var(--primary, #0066b3); margin-bottom: 0.5rem; }
.ch2o-awee__rule { display: block; height: 1px; width: 2rem; background: color-mix(in srgb, var(--primary, #0066b3) 30%, transparent); margin: 0.5rem 0; }
.ch2o-awee__word { margin: 0; font-size: 1.25rem; font-weight: 800; color: var(--foreground, #071f20); }
.ch2o-awee__desc { margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--foreground, #071f20) 60%, transparent); }
.ch2o-awee__semi { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; height: 2.75rem; width: 4rem; align-items: center; justify-content: center; border-radius: 4rem 4rem 0 0; background: var(--primary, #0066b3); color: #fff; font-size: 0.875rem; font-weight: 800; }
.ch2o-awee__callout {
  margin: 2.5rem auto 0; max-width: 42rem; display: flex; align-items: center; gap: 1.25rem;
  border-radius: var(--radius-3xl, 1.6rem); background: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px); padding: 1.25rem 2rem; box-shadow: 0 4px 24px rgba(30, 100, 200, 0.08);
}
.ch2o-awee__callout-icn { display: flex; height: 3.5rem; width: 3.5rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: var(--radius-2xl, 1.4rem); background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent); color: var(--primary, #0066b3); }
.ch2o-awee__callout-body p { margin: 0; font-size: 1.05rem; line-height: 1.65; color: color-mix(in srgb, var(--foreground, #071f20) 80%, transparent); }
.ch2o-awee__callout-body strong { color: var(--primary, #0066b3); font-weight: 700; }

/* ---- Impact Stats ---- */
.ch2o-stats { padding: 4rem 0 5rem; }
.ch2o-stats__wrap { max-width: 56rem; text-align: center; }
.ch2o-stats__grid { margin-top: 2rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-stats__grid { grid-template-columns: repeat(3, 1fr); } }
.ch2o-stats__card { border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 2rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
.ch2o-stats__value { font-size: 1.875rem; font-weight: 700; }
.ch2o-stats__title { margin-top: 0.5rem; font-size: 1rem; font-weight: 600; color: var(--foreground, #071f20); }
.ch2o-stats__caption { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }

/* ---- Contact + shared form ---- */
.ch2o-contact { padding: 4rem 0 5rem; }
.ch2o-contact__grid { margin-top: 3.5rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .ch2o-contact__grid { grid-template-columns: 3fr 2fr; } }
.ch2o-contact__formcard { border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 1.75rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); }
@media (min-width: 640px) { .ch2o-contact__formcard { padding: 2.25rem; } }
.ch2o-contact__form-title { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-contact__form-sub { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-contact__side { display: flex; flex-direction: column; gap: 1rem; }
.ch2o-contact__card { display: block; border-radius: var(--radius-3xl, 1.6rem); background: var(--card, #fff); border: 1px solid var(--border, #dfeaec); padding: 1.75rem; box-shadow: var(--shadow-card, 0 2px 12px -2px rgba(20,80,160,.1)); text-decoration: none; color: var(--foreground, #071f20); transition: box-shadow .25s; }
a.ch2o-contact__card:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-contact__card--wa { background: #25D366; border-color: #25D366; color: #fff; }
.ch2o-contact__card--wa .ch2o-contact__card-sub { color: rgba(255,255,255,0.9); }
.ch2o-contact__card-icn { color: var(--primary, #0066b3); }
.ch2o-contact__card-title { margin-top: 1rem; font-size: 1.125rem; font-weight: 700; }
.ch2o-contact__card-sub { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-contact__card-strong { margin-top: 0.75rem; font-weight: 600; }
.ch2o-contact__card-strong--primary { color: var(--primary, #0066b3); }
.ch2o-contact__areas { list-style: none; margin: 0.75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }
.ch2o-contact__areas li { display: flex; align-items: center; gap: 0.5rem; }
.ch2o-contact__areas svg { color: var(--primary, #0066b3); }

.ch2o-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ch2o-form__field { display: block; }
.ch2o-form__field > span { display: block; font-size: 0.875rem; font-weight: 600; color: var(--foreground, #071f20); margin-bottom: 0.375rem; }
.ch2o-form__field input,
.ch2o-form__field select,
.ch2o-form__field textarea {
  width: 100%; border-radius: var(--radius-md, 0.8rem); border: 1px solid var(--input, #dfeaec);
  background: var(--background, #fff); padding: 0.75rem 1rem; font-size: 0.875rem; font-family: inherit; color: var(--foreground, #071f20);
}
.ch2o-form__field input:focus, .ch2o-form__field select:focus, .ch2o-form__field textarea:focus { outline: none; border-color: var(--ring, #2f90c8); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring, #2f90c8) 25%, transparent); }
.ch2o-form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ch2o-form__row { grid-template-columns: repeat(2, 1fr); } }
.ch2o-form__note { margin: -0.25rem 0 0; font-size: 0.75rem; color: var(--muted-foreground, #53676b); }
.ch2o-form__hp { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; overflow: hidden; }
.ch2o-form__error { border-radius: var(--radius-md, 0.8rem); background: color-mix(in srgb, var(--destructive, #d6492b) 10%, transparent); color: var(--destructive, #d6492b); padding: 0.625rem 1rem; font-size: 0.875rem; }
.ch2o-form__submit {
  display: inline-flex; min-height: 48px; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  border: 0; border-radius: 9999px; padding: 0.875rem; font-family: inherit; font-size: 1rem; font-weight: 700;
  color: var(--primary-foreground, #fff); cursor: pointer; box-shadow: var(--shadow-soft, 0 4px 20px -4px rgba(20,80,160,.15));
  transition: box-shadow .2s, opacity .2s;
}
.ch2o-form__submit:hover { box-shadow: var(--shadow-lift, 0 20px 40px -12px rgba(20,80,160,.25)); }
.ch2o-form__submit:disabled { opacity: 0.6; cursor: default; }
.ch2o-form__success { margin-top: 1.5rem; border-radius: var(--radius-2xl, 1.4rem); border: 1px solid color-mix(in srgb, var(--primary, #0066b3) 20%, transparent); background: color-mix(in srgb, var(--primary, #0066b3) 5%, transparent); padding: 1.5rem; text-align: center; }
.ch2o-form__success-icn { display: flex; height: 3.5rem; width: 3.5rem; margin: 0 auto; align-items: center; justify-content: center; border-radius: 9999px; background: color-mix(in srgb, var(--primary, #0066b3) 10%, transparent); color: var(--primary, #0066b3); font-size: 1.5rem; font-weight: 700; }
.ch2o-form__success h4 { margin: 1rem 0 0; font-size: 1.125rem; font-weight: 700; color: var(--foreground, #071f20); }
.ch2o-form__success p { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted-foreground, #53676b); }


/* == CH2O hero: light surface + single-viewport fit == */
.ch2o-hero{background:linear-gradient(160deg,oklch(0.97 0.021 232) 0%,oklch(0.99 0.008 220) 55%,#fff 100%)}
/* flatten the inner card so hero matches every other section (no nested white box) */
.ch2o-hero__card{background:transparent;box-shadow:none;border:none;border-radius:0}
@media (min-width:1024px){
  /* subtract the sticky header so the hero really fits one screen; roomier floors than v0.7.7 so spacing doesn't collapse on normal-height laptops */
  .ch2o-hero{min-height:calc(100vh - 5.25rem);padding:clamp(1.25rem,2.5vh,3rem) 0}
  .ch2o-hero__card{padding:clamp(1.25rem,2.5vh,2rem)}
  .ch2o-hero__title{margin-top:clamp(.75rem,1.4vh,1.25rem);font-size:clamp(1.75rem,1rem + 1.2vw + 1.2vh,2.75rem)}
  .ch2o-hero__desc{margin-top:clamp(.75rem,1.6vh,1.5rem)}
  .ch2o-hero__features{margin-top:clamp(.85rem,1.8vh,1.75rem);gap:clamp(.6rem,1vh,1rem)}
  .ch2o-hero__cta{margin-top:clamp(1rem,2vh,2rem)}
  .ch2o-hero__caption{margin-top:clamp(.4rem,.9vh,.75rem)}
  .ch2o-hero__quote{margin-top:clamp(1rem,2vh,2rem);padding-top:clamp(.85rem,1.6vh,1.5rem)}
  .ch2o-hero__media-row{height:clamp(280px,46vh,520px)}
}
/* == end CH2O hero override == */


/* == CH2O hero: stat icons 2 & 3 recolored white == */
/* stock icons 2 (kids switched) & 3 (water tests) are solid brand-blue PNGs, same hue as the card behind them — force them white so they read like the already-white stat labels. Icon 1 (parents) is untouched. */
.ch2o-hero__stats-col .ch2o-hero__stat-card:nth-child(2) .ch2o-hero__stat-icon img,
.ch2o-hero__stats-col .ch2o-hero__stat-card:nth-child(3) .ch2o-hero__stat-icon img {
  filter: brightness(0) invert(1);
}
/* == end CH2O hero stat icon override == */


/* == CH2O hero: stat card color experiment == */
/* scoped to stat cards only, does not touch --ch2o-hero-accent (also used by buttons/checkmarks/eyebrow) */
.ch2o-hero__stat-card { background: #009BD6; }
/* == end CH2O hero stat card color experiment == */


/* == CH2O hero: button shape fix (primary radius, real ghost button) == */
/* primary: less pill, more rounded-rect */
.ch2o-hero__btn--primary { border-radius: 0.75rem; }
/* ghost previously had no padding/border/background of its own — only its inner icon circle did — so it read as a text link, not a button. Give it real button chrome, radius matched to primary. */
.ch2o-hero__btn--ghost {
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--ch2o-hero-accent);
  border-radius: 0.75rem;
}
.ch2o-hero__btn--ghost:hover { background: color-mix(in oklab, var(--ch2o-hero-accent) 8%, transparent); }
/* the icon circle (2.25-2.5rem) was taller than primary's 14px inline svg, so with equal padding the ghost button still rendered visibly taller than primary. Shrink it to match primary's row height at all widths (overrides the base 36px + ≥640px 40px rules). */
.ch2o-hero__btn-icon { height: 1.5rem; width: 1.5rem; }
@media (min-width: 640px) { .ch2o-hero__btn-icon { height: 1.5rem; width: 1.5rem; } }
/* == end CH2O hero button shape fix == */


/* == CH2O cards: force icon-tile glyphs white (Our System / Why Choose Us) == */
/* .ch2o-cards__tile i/svg already declared color:var(--primary-foreground,#fff) which resolves near-white,
   but icons were rendering dark — something else with equal/higher specificity is winning. Raise specificity
   by matching both classes present on the tile (.ch2o-cards__tile.ch2o-grad-teal) so this reliably wins. */
.ch2o-cards__tile.ch2o-grad-teal i,
.ch2o-cards__tile.ch2o-grad-teal svg { color: #fff; fill: #fff; }
/* == end CH2O cards icon color fix == */


/* == CH2O site-wide: force icon-tile glyphs white on all ch2o-grad-teal tiles == */
/* Same root cause as .ch2o-cards__tile (fixed separately, v0.7.14): each of these already declares
   color:var(--primary-foreground,#fff) intending white, but something else with equal/higher specificity
   wins the cascade, so glyphs render dark on their blue ch2o-grad-teal tiles. Same fix: match both classes
   present on the wrapper for higher specificity, targeted directly at the icon glyph. */

/* Know Your Water — top quote card ("What water is your child drinking?") */
.ch2o-shero__quote-icn.ch2o-grad-teal i,
.ch2o-shero__quote-icn.ch2o-grad-teal svg { color: #fff; fill: #fff; }

/* Know Your Water — risks section badge */
.ch2o-risks__badge.ch2o-grad-teal i,
.ch2o-risks__badge.ch2o-grad-teal svg { color: #fff; fill: #fff; }

/* Know Your Water — flows/process steps */
.ch2o-flows__step-icn.ch2o-grad-teal i,
.ch2o-flows__step-icn.ch2o-grad-teal svg { color: #fff; fill: #fff; }

/* Know Your Water — pricing cards header icon */
.ch2o-pc__head-icn.ch2o-grad-teal i,
.ch2o-pc__head-icn.ch2o-grad-teal svg { color: #fff; fill: #fff; }

/* About — pillars cards */
.ch2o-pillars__icn.ch2o-grad-teal i,
.ch2o-pillars__icn.ch2o-grad-teal svg { color: #fff; fill: #fff; }

/* About — pillars banner */
.ch2o-pillars__banner-icn.ch2o-grad-teal i,
.ch2o-pillars__banner-icn.ch2o-grad-teal svg { color: #fff; fill: #fff; }
/* == end CH2O site-wide icon-tile color fix == */
