/* =========================================================
   ECO4 PRO — Premium Design Polish (v2)
   Safer, more surgical overrides on top of compiled Tailwind.
   Goals: mobile responsiveness, typography, premium polish
   without breaking carousels, grids, or icon layouts.
   ========================================================= */

:root {
  --brand-deep: #0f2b26;
  --brand-emerald: #059669;
  --brand-emerald-light: #10b981;
  --brand-teal: #0d9488;
  --brand-cyan: #06b6d4;
  --shadow-soft: 0 4px 14px -4px rgba(15, 43, 38, 0.08);
  --shadow-md: 0 14px 32px -12px rgba(15, 43, 38, 0.14);
  --transition: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Global rendering & typography ---------- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.005em;
}

/* Slight letter-spacing tightening on big headings, but DO NOT change color */
h1, h2 { letter-spacing: -0.02em; }
h3 { letter-spacing: -0.015em; }

/* ---------- Hero background warmth (only on .bg-hero) ---------- */
.bg-hero {
  background:
    radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.07), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.07), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ---------- Premium button hover (only CTA-style gradient buttons) ---------- */
a[class*="from-emerald-600"][class*="to-cyan-600"],
button[class*="from-emerald-600"][class*="to-cyan-600"] {
  box-shadow: 0 10px 24px -10px rgba(5, 150, 105, 0.45);
}

/* ---------- Form inputs polish (focus ring only) ---------- */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

/* ---------- Focus visibility for accessibility ---------- */
*:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Image safety ---------- */
img { max-width: 100%; height: auto; }

/* ---------- Marquee certification strip: smoother pacing ---------- */
.animate-marquee { animation-duration: 38s !important; }

/* ---------- Responsive heading down-scaling on small screens ---------- */
@media (max-width: 640px) {
  /* Prevent oversize headings on phones */
  h1[class*="text-5xl"],
  h1[class*="text-6xl"],
  h1[class*="text-7xl"] {
    font-size: clamp(1.875rem, 7vw, 2.5rem) !important;
    line-height: 1.15 !important;
  }
  h2[class*="text-4xl"],
  h2[class*="text-5xl"],
  h2[class*="text-6xl"] {
    font-size: clamp(1.625rem, 6vw, 2.25rem) !important;
    line-height: 1.2 !important;
  }

  /* Section padding: tighter on mobile */
  section[class*="py-20"] { padding-top: 3.25rem !important; padding-bottom: 3.25rem !important; }
  section[class*="py-16"] { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
  section[class*="py-12"] { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }

  /* Hero stack: don't crush horizontal padding */
  section [class*="px-6"] { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }

  /* Generous card padding on mobile is wasteful */
  [class*="rounded-2xl"][class*="p-8"],
  [class*="rounded-3xl"][class*="p-8"] {
    padding: 1.5rem !important;
  }

  /* Grids: tighter mobile gaps */
  [class*="md:grid-cols-3"],
  [class*="md:grid-cols-2"],
  [class*="grid-cols-3"][class*="gap-8"] {
    gap: 1rem;
  }

  /* Hero stat cards: 3 cols → keep but reduce padding */
  [class*="grid-cols-3"][class*="gap-4"] > div {
    padding: 0.75rem !important;
  }

  /* Hero image: cap height on phones */
  [class*="h-[500px]"],
  [class*="h-[600px]"] {
    height: 320px !important;
  }
}

/* ---------- Tablet refinements ---------- */
@media (min-width: 641px) and (max-width: 1024px) {
  h1[class*="text-7xl"] { font-size: 3rem !important; line-height: 1.1 !important; }
  h2[class*="text-5xl"] { font-size: 2.25rem !important; line-height: 1.15 !important; }
  [class*="h-[500px]"],
  [class*="h-[600px]"] { height: 460px !important; }
}

/* ---------- Long-word safety on prose paragraphs ---------- */
section p { overflow-wrap: break-word; }

/* ---------- Footer link hover only ---------- */
footer a:hover { color: #10b981; }

/* ---------- Small accessibility tweak: tap padding for nav/footer links on mobile ---------- */
@media (max-width: 768px) {
  nav a, footer a { padding-top: 4px; padding-bottom: 4px; }
}

/* ---------- Subtle gradient animation only on CTA strips ---------- */
section[class*="from-emerald-600"][class*="to-cyan-600"],
section[class*="from-emerald-500"][class*="to-cyan-500"] {
  background-size: 200% 200%;
  animation: ecoGradientShift 14s ease infinite;
}
@keyframes ecoGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ---------- End ---------- */

/* =========================================================
   Real Customer Reviews Section (injected by reviews-injector.js)
   ========================================================= */
.ecorev-section {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(16, 185, 129, 0.06), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(6, 182, 212, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}
@media (max-width: 640px) {
  .ecorev-section { padding: 3rem 0; }
}
.ecorev-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.ecorev-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.ecorev-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 0.75rem;
}
.ecorev-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f2b26;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ecorev-title-accent {
  background: linear-gradient(90deg, #059669, #0d9488, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ecorev-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  border-radius: 4px;
  margin: 0 auto 1.25rem;
}
.ecorev-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}
.ecorev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .ecorev-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ecorev-grid { grid-template-columns: repeat(2, 1fr); }
}
.ecorev-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 14px -4px rgba(15, 43, 38, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.ecorev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(15, 43, 38, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
}
.ecorev-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ecorev-card:hover::before { opacity: 1; }
.ecorev-quote-icon {
  position: absolute;
  top: 0.25rem;
  right: 1.25rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(16, 185, 129, 0.12);
  pointer-events: none;
  user-select: none;
}
.ecorev-stars {
  display: flex;
  gap: 2px;
  color: #facc15;
}
.ecorev-star {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}
.ecorev-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.ecorev-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
.ecorev-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #0d9488);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px -4px rgba(5, 150, 105, 0.5);
}
.ecorev-meta {
  flex: 1;
  min-width: 0;
}
.ecorev-name {
  font-weight: 700;
  color: #0f2b26;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ecorev-name-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ecorev-name-link:hover {
  color: #059669;
  text-decoration: underline;
}
.ecorev-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
}
.ecorev-badge-google {
  background: rgba(66, 133, 244, 0.08);
  color: #1a73e8;
}
.ecorev-badge-trustpilot {
  background: rgba(0, 182, 122, 0.08);
  color: #00b67a;
}
.ecorev-badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* =========================================================
   ULTRA-AGGRESSIVE OLD CONTENT KILLER (v3)
   Force-hide any element containing old testimonial markers.
   Uses :has() for modern browsers + fallback selectors.
   ========================================================= */

/* Hide any section that contains the OLD testimonial heading */
section:has(h2:where(:contains("Honest reviews from our clients"))),
section:has(p:where(:contains("Honest reviews from our clients"))),
section.py-20.bg-slate-50:has(.grid.md\:grid-cols-3) {
  display: none !important;
}

/* Hide the OLD homepage carousel section by its specific jsx class */
section.jsx-2162c02c05d36c49 {
  display: none !important;
}

/* Hide any specific elements that the React data tries to recreate */
[data-old-testimonial],
.old-review,
.old-testimonial {
  display: none !important;
}

/* Hide the "Testimonials" eyebrow + "Honest reviews" pattern wrapper */
section .text-\[\#22c55e\].font-bold.uppercase.tracking-widest:where(:has(+ h2:contains("Honest reviews"))) {
  display: none !important;
}

/* Force show our new reviews section always */
#eco4-real-reviews {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
#eco4-real-reviews .ecorev-grid,
#eco4-real-reviews .ecorev-card,
#eco4-real-reviews .ecorev-header {
  display: block !important;
  visibility: visible !important;
}
#eco4-real-reviews .ecorev-grid { display: grid !important; }
#eco4-real-reviews .ecorev-card { display: flex !important; }
#eco4-real-reviews .ecorev-footer { display: flex !important; }
#eco4-real-reviews .ecorev-meta { display: block !important; }

/* =========================================================
   Force visibility for animated entrance elements (v9.1 fix)
   Services and other cards use opacity-0 + translate-y-12
   for JS entrance animation. Override to keep them visible
   even if JS hydration fails.
   ========================================================= */
.service-card,
.service-card[class*="opacity-0"],
.service-card[class*="translate-y-12"],
.service-card[class*="translate-y"][class*="opacity-0"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Generic fallback for any card-like element that's stuck invisible */
[data-index][class*="opacity-0"][class*="translate-y"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Any element with both opacity-0 and translate-y classes that's a service/feature card */
[class*="rounded-xl"][class*="opacity-0"],
[class*="rounded-2xl"][class*="opacity-0"],
[class*="rounded-3xl"][class*="opacity-0"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Why Choose Us cards (similar entrance animation) */
[class*="grid-cols-3"] > [class*="opacity-0"],
[class*="grid-cols-2"] > [class*="opacity-0"],
[class*="lg:grid-cols-3"] > [class*="opacity-0"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================================================
   v11 — Tone down Why Choose Us glow + fix translate-x
   ========================================================= */

/* Hide the blur-xl glow overlay on Why Choose Us cards */
section[class*="from-slate-900"] [class*="blur-xl"][class*="absolute"][class*="inset-0"],
section[class*="bg-slate-900"] [class*="blur-xl"][class*="absolute"][class*="inset-0"] {
  opacity: 0 !important;
  display: none !important;
}

/* Remove translate-x shift on Why Choose Us cards (right-side cards) */
[class*="translate-x-10"],
[class*="translate-x-12"],
[class*="-translate-x-10"],
[class*="-translate-x-12"] {
  transform: translateX(0) !important;
}

/* Make Why Choose Us cards background slightly cleaner — neutral subtle background */
section[class*="from-slate-900"] [class*="rounded-2xl"][class*="border-white/10"],
section[class*="bg-slate-900"] [class*="rounded-2xl"][class*="border-white/10"] {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(8px);
}

/* Disable the hover glow effect entirely for these cards */
section[class*="from-slate-900"] [class*="rounded-2xl"][class*="border-white/10"]:hover [class*="blur-xl"],
section[class*="bg-slate-900"] [class*="rounded-2xl"][class*="border-white/10"]:hover [class*="blur-xl"] {
  opacity: 0 !important;
}

/* =========================================================
   v11 — Clean Services Section (homepage)
   ========================================================= */
.eco-services-section {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}
@media (max-width: 640px) {
  .eco-services-section { padding: 3rem 0; }
}
.eco-services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.eco-services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.eco-services-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 0.75rem;
}
.eco-services-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f2b26;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.eco-services-title-accent {
  background: linear-gradient(90deg, #059669, #0d9488, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eco-services-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  border-radius: 4px;
  margin: 0 auto 1.25rem;
}
.eco-services-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}
.eco-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .eco-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .eco-services-grid { grid-template-columns: repeat(2, 1fr); }
}
.eco-service-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px -4px rgba(15, 43, 38, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}
.eco-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(15, 43, 38, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
}
.eco-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 18px -8px rgba(15, 43, 38, 0.3);
}
.eco-service-icon svg {
  width: 30px;
  height: 30px;
}
.eco-service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2b26;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.eco-service-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
  min-height: 4.8em;
}
.eco-service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #059669;
  transition: gap 0.2s ease;
}
.eco-service-card:hover .eco-service-link {
  gap: 8px;
}

/* =========================================================
   v13 — Premium polish for original Solar And Heating Services
   ========================================================= */

/* Section background — subtle gradient warmth */
section[class*="jsx-3f43c459b749746"][class*="from-slate-50"] {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(16, 185, 129, 0.05), transparent 55%) !important,
    radial-gradient(ellipse at 80% 100%, rgba(6, 182, 212, 0.05), transparent 55%) !important,
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* Service cards — premium feel */
.service-card {
  border-radius: 20px !important;
  border: 1px solid rgba(226, 232, 240, 0.7) !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 14px -4px rgba(15, 43, 38, 0.08) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease !important;
}
.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 60px -20px rgba(15, 43, 38, 0.25),
              0 8px 18px -8px rgba(16, 185, 129, 0.15) !important;
  border-color: rgba(16, 185, 129, 0.45) !important;
}

/* Premium top accent line on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px 20px 0 0;
  z-index: 5;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }

/* Image area — slight zoom less aggressive, smoother corners */
.service-card > div:first-child {
  border-radius: 20px 20px 0 0 !important;
  overflow: hidden;
}
.service-card img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-card:hover img {
  transform: scale(1.08) !important;
}

/* Service card icon bubble */
.service-card [class*="rounded-full"][class*="bg-white/95"] {
  width: 56px !important;
  height: 56px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 24px -8px rgba(15, 43, 38, 0.25) !important;
  border: 2px solid rgba(16, 185, 129, 0.15) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.service-card:hover [class*="rounded-full"][class*="bg-white/95"] {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 16px 32px -10px rgba(16, 185, 129, 0.5) !important;
}

/* Service card content area */
.service-card [class*="relative"][class*="px-6"] {
  padding: 2.5rem 1.75rem 2rem !important;
}

/* Eyebrow / category text */
.service-card [class*="text-[10px]"],
.service-card [class*="text-xs"][class*="uppercase"] {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  color: #059669 !important;
  font-weight: 700 !important;
}

/* Service card heading */
.service-card h3 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0f2b26 !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.3 !important;
}

/* Service card description text */
.service-card p {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
}

/* Learn More link */
.service-card a[href*="/"] {
  margin-top: 1.25rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #059669 !important;
  padding: 0.5rem 0 !important;
  transition: gap 0.3s ease, color 0.3s ease !important;
}
.service-card a[href*="/"]:hover {
  gap: 12px !important;
  color: #047857 !important;
}

/* Section title - extra premium feel */
section[class*="jsx-3f43c459b749746"] h2[class*="text-4xl"],
section[class*="jsx-3f43c459b749746"] h2[class*="text-5xl"] {
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
}

/* Section eyebrow badge — emerald pill */
section[class*="jsx-3f43c459b749746"] [class*="inline-flex"][class*="bg-gradient-to-r"][class*="from-emerald-100"] {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.12)) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  padding: 0.4rem 1rem !important;
  border-radius: 999px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
}

/* Service cards remove the green tint background */
.service-card[class*="bg-[#8aed96]"],
.service-card[style*="bg-opacity"] {
  background: #ffffff !important;
}

/* =========================================================
   v15 — Rich Info Sections (Solar, ASHP, Insulation)
   ========================================================= */
.eco-rich-info {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
@media (max-width: 640px) { .eco-rich-info { padding: 3rem 0; } }

.eco-rich-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.eco-rich-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.eco-rich-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 0.75rem;
}
.eco-rich-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0f2b26;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.eco-rich-accent {
  background: linear-gradient(90deg, #059669, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eco-rich-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  border-radius: 4px;
  margin: 0 auto 1.25rem;
}
.eco-rich-subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.eco-rich-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .eco-rich-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-rich-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.eco-rich-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eco-rich-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(15, 43, 38, 0.18);
}
.eco-rich-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 18px -8px rgba(15, 43, 38, 0.3);
}
.eco-rich-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f2b26;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.eco-rich-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

.eco-rich-section-block {
  margin-top: 3rem;
}
.eco-rich-h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #0f2b26;
  text-align: center;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.eco-rich-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  position: relative;
}
.eco-rich-step-num {
  position: absolute;
  top: -16px;
  left: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #0d9488);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 6px 14px -4px rgba(5, 150, 105, 0.45);
}
.eco-rich-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2b26;
  margin: 0.75rem 0 0.5rem;
}
.eco-rich-step-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.eco-rich-benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .eco-rich-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-rich-benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.eco-rich-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.eco-rich-benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.eco-rich-benefit strong {
  display: block;
  color: #0f2b26;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.eco-rich-benefit p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
}

.eco-rich-grants-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .eco-rich-grants-grid { grid-template-columns: repeat(3, 1fr); } }
.eco-rich-grant-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
}
.eco-rich-grant-card h4 {
  color: #059669;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.eco-rich-grant-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.eco-rich-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.eco-rich-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.eco-rich-table thead {
  background: linear-gradient(135deg, #0f2b26, #134e4a);
  color: #ffffff;
}
.eco-rich-table th, .eco-rich-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}
.eco-rich-table tbody tr:hover { background: #f8fafc; }
.eco-rich-table tbody tr:nth-child(even) { background: #fafbfc; }
.eco-rich-table td:first-child { font-weight: 600; color: #0f2b26; }

.eco-rich-cta {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #0f2b26, #134e4a);
  color: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 24px 48px -20px rgba(15, 43, 38, 0.35);
}
.eco-rich-cta h3 {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.eco-rich-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.eco-rich-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px -10px rgba(16, 185, 129, 0.6);
}
.eco-rich-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(16, 185, 129, 0.7);
}

/* =========================================================
   v15 — Accessibility + final polish
   ========================================================= */

/* Skip-to-main link */
.eco-skip-to-main {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #0f2b26;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 99999;
  border-radius: 0 0 8px 0;
}
.eco-skip-to-main:focus {
  left: 0;
  outline: 3px solid #10b981;
  outline-offset: 2px;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Better link contrast on dark sections */
section[class*="from-slate-900"] a:not(.btn-primary):not([class*="rounded-full"]):not([class*="bg-"]),
footer a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
footer a:hover {
  text-decoration-color: #10b981;
}

/* Print styles */
@media print {
  header, footer, .ecorev-section, .eco-rich-cta { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* Better mobile menu drawer */
#eco4-mobile-drawer { display: block; }

/* Ensure focus order: visible & high contrast */
button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.7) !important;
  outline-offset: 2px !important;
}

/* =========================================================
   v16 — Premium Dashboard-Style Hero (SolarWave inspired)
   ========================================================= */

.eco-hero-v2 {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(16, 185, 129, 0.08), transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(6, 182, 212, 0.08), transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
  padding: 4rem 0 5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .eco-hero-v2 { padding: 2.5rem 0 3rem; }
}
.eco-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 43, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 43, 38, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.eco-hero-v2-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
}
@media (min-width: 1024px) {
  .eco-hero-v2-container { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* ----- LEFT SIDE: COPY & CTA ----- */
.eco-hero-v2-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.eco-hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.eco-hero-v2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  animation: ecoPulse 2.4s ease-in-out infinite;
}
@keyframes ecoPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05); }
}
.eco-hero-v2-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #0f2b26;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.eco-hero-v2-title .accent {
  background: linear-gradient(120deg, #059669, #0d9488, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eco-hero-v2-subtitle {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
}
.eco-hero-v2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.eco-hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, #059669, #06b6d4);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(5, 150, 105, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eco-hero-v2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -14px rgba(5, 150, 105, 0.65);
}
.eco-hero-v2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.95rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #cbd5e1;
  color: #0f2b26;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.eco-hero-v2-btn-ghost:hover {
  background: #ffffff;
  border-color: #10b981;
}
.eco-hero-v2-trust {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.eco-hero-v2-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.eco-hero-v2-trust-num {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f2b26, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.eco-hero-v2-trust-label {
  font-size: 0.78rem;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ----- RIGHT SIDE: DASHBOARD VISUAL ----- */
.eco-hero-v2-visual {
  position: relative;
  min-height: 520px;
}
@media (max-width: 768px) {
  .eco-hero-v2-visual { min-height: 480px; margin-top: 1rem; }
}

/* Main image - "the house" */
.eco-hero-v2-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfdf5, #cffafe);
  box-shadow: 0 30px 60px -25px rgba(15, 43, 38, 0.25);
}
.eco-hero-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.eco-hero-v2-visual:hover .eco-hero-v2-image img {
  transform: scale(1.04);
}
.eco-hero-v2-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 43, 38, 0.1) 0%, transparent 50%, rgba(6, 182, 212, 0.15) 100%);
  pointer-events: none;
}

/* Glassmorphism stat cards */
.eco-card-glass {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  box-shadow: 0 20px 40px -16px rgba(15, 43, 38, 0.25);
  z-index: 3;
  animation: ecoFloat 6s ease-in-out infinite;
}
@keyframes ecoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Energy generated card (top right) */
.eco-card-energy {
  top: 1rem;
  right: 1rem;
  min-width: 175px;
  animation-delay: 0s;
}
.eco-card-label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.eco-card-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
.eco-card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f2b26;
  letter-spacing: -0.02em;
  line-height: 1;
}
.eco-card-unit {
  font-size: 0.75rem;
  color: #64748b;
  margin-left: 4px;
  font-weight: 600;
}
.eco-card-sublabel {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 700;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mini bar chart inside card */
.eco-card-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  margin-top: 0.6rem;
}
.eco-card-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #10b981, #059669);
  border-radius: 2px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.eco-card-chart-bar:hover { opacity: 1; }

/* CO2 saved card (bottom left) */
.eco-card-co2 {
  bottom: 1.5rem;
  left: -0.5rem;
  min-width: 180px;
  animation-delay: 1.5s;
}
@media (max-width: 768px) {
  .eco-card-co2 { left: 0.5rem; min-width: 160px; }
}

/* Savings card (bottom right) */
.eco-card-savings {
  bottom: 1.5rem;
  right: 1rem;
  min-width: 190px;
  animation-delay: 3s;
}

/* Status badge (top left) */
.eco-card-status {
  top: 1rem;
  left: -0.5rem;
  min-width: 165px;
  animation-delay: 4.5s;
  padding: 0.85rem 1rem;
}
@media (max-width: 768px) {
  .eco-card-status { left: 0.5rem; }
}
.eco-card-status-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eco-card-status-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.eco-card-status-text { line-height: 1.2; }
.eco-card-status-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f2b26;
}
.eco-card-status-sub {
  font-size: 0.7rem;
  color: #059669;
  font-weight: 600;
}

/* Progress bar inside savings card */
.eco-card-progress {
  height: 6px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 999px;
  margin-top: 0.7rem;
  overflow: hidden;
  position: relative;
}
.eco-card-progress-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  border-radius: 999px;
  transition: width 1.5s ease;
}

/* Hide on very small screens to keep the image readable */
@media (max-width: 480px) {
  .eco-card-status, .eco-card-co2 { display: none; }
}

/* =========================================================
   v17 — Modernized Premium Design Language
   ========================================================= */

/* ---------- v17 HERO: Cleaner, Premium, Professional ---------- */
.eco-h17 {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse 800px 600px at 90% -10%, rgba(16, 185, 129, 0.09), transparent 60%),
    radial-gradient(ellipse 600px 500px at -10% 100%, rgba(6, 182, 212, 0.08), transparent 60%),
    linear-gradient(180deg, #fefffe 0%, #f1f5f4 100%);
  overflow: hidden;
}
@media (max-width: 768px) { .eco-h17 { padding: 2.5rem 0 3.5rem; } }
.eco-h17::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, #ffffff);
  pointer-events: none;
}
.eco-h17-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
}
@media (min-width: 1024px) {
  .eco-h17-container { grid-template-columns: 1.1fr 1fr; gap: 4.5rem; }
}
.eco-h17-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.eco-h17-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #047857;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(15, 43, 38, 0.12);
  backdrop-filter: blur(8px);
}
.eco-h17-badge svg { color: #10b981; }
.eco-h17-title {
  font-size: clamp(2.25rem, 5.4vw, 4.25rem);
  font-weight: 800;
  color: #0a1f1c;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
}
.eco-h17-title .accent {
  background: linear-gradient(120deg, #047857 0%, #0d9488 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}
.eco-h17-title .accent::after {
  content: "";
  position: absolute;
  bottom: 0.1em; left: 0; right: 0;
  height: 0.32em;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.18), rgba(6, 182, 212, 0.18));
  z-index: -1;
  border-radius: 4px;
}
.eco-h17-sub {
  font-size: 1.12rem;
  color: #475569;
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
}
.eco-h17-sub strong { color: #0f2b26; font-weight: 700; }
.eco-h17-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.eco-h17-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.05rem 1.85rem;
  background: linear-gradient(135deg, #047857 0%, #0d9488 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 36px -14px rgba(4, 120, 87, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.98rem;
}
.eco-h17-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -16px rgba(4, 120, 87, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.eco-h17-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.05rem 1.65rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #0f2b26;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  font-size: 0.98rem;
}
.eco-h17-btn-secondary:hover {
  border-color: #10b981;
  color: #047857;
  transform: translateY(-2px);
}
.eco-h17-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.eco-h17-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
}
.eco-h17-pill svg { color: #10b981; }

/* Right side - clean image with subtle floating cards */
.eco-h17-visual {
  position: relative;
  min-height: 520px;
}
@media (max-width: 768px) { .eco-h17-visual { min-height: 460px; } }
.eco-h17-image-wrap {
  position: relative;
  height: 100%;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(15, 43, 38, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}
.eco-h17-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eco-h17-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 43, 38, 0.35) 100%);
  z-index: 1;
}

.eco-h17-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 14px 32px -12px rgba(15, 43, 38, 0.25);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eco-h17-floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.eco-h17-floating-text { line-height: 1.25; }
.eco-h17-floating-title {
  font-weight: 800;
  color: #0f2b26;
  font-size: 0.95rem;
}
.eco-h17-floating-sub {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}
.eco-h17-fl-1 { top: 1.5rem; left: -1rem; animation: ecoFloatA 6s ease-in-out infinite; }
.eco-h17-fl-2 { bottom: 5rem; right: -1.5rem; animation: ecoFloatA 6s ease-in-out infinite 2s; }
.eco-h17-fl-3 { bottom: 1.5rem; left: 1.5rem; animation: ecoFloatA 6s ease-in-out infinite 4s; }
@keyframes ecoFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 480px) {
  .eco-h17-fl-1, .eco-h17-fl-2 { display: none; }
  .eco-h17-fl-3 { left: 1rem; right: 1rem; }
}

/* ---------- v17 PROCESS TIMELINE ---------- */
.eco-process { padding: 5rem 0; background: #ffffff; }
@media (max-width: 640px) { .eco-process { padding: 3rem 0; } }
.eco-process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.eco-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.eco-section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 0.75rem;
}
.eco-section-title {
  font-size: clamp(1.875rem, 3.8vw, 2.875rem);
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.eco-section-title .accent {
  background: linear-gradient(120deg, #047857, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eco-section-sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
.eco-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .eco-process-grid { grid-template-columns: repeat(4, 1fr); }
}
.eco-process-step {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 1.5rem 1.75rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.eco-process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -22px rgba(15, 43, 38, 0.18);
}
.eco-process-num {
  position: absolute;
  top: -22px;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #047857, #06b6d4);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px -8px rgba(4, 120, 87, 0.5);
}
.eco-process-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfdf5, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  margin: 0.75rem 0 1rem;
}
.eco-process-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.eco-process-step p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* ---------- v17 COMPARISON SECTION ---------- */
.eco-compare {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (max-width: 640px) { .eco-compare { padding: 3rem 0; } }
.eco-compare-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.eco-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .eco-compare-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.eco-compare-card {
  border-radius: 24px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
}
.eco-compare-without {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
}
.eco-compare-with {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  box-shadow: 0 28px 60px -22px rgba(4, 120, 87, 0.25);
}
.eco-compare-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.eco-compare-without h3 { color: #991b1b; }
.eco-compare-with h3 { color: #065f46; }
.eco-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.eco-compare-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
}
.eco-compare-without li { color: #7f1d1d; }
.eco-compare-with li { color: #064e3b; }
.eco-compare-card li::before {
  font-weight: 800;
  flex-shrink: 0;
}
.eco-compare-without li::before { content: "✕"; color: #dc2626; }
.eco-compare-with li::before { content: "✓"; color: #047857; }

/* ---------- v17 TRUST STRIP ---------- */
.eco-trust { padding: 3rem 0; background: #ffffff; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.eco-trust-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.eco-trust-title {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.eco-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 640px) { .eco-trust-grid { grid-template-columns: repeat(4, 1fr); } }
.eco-trust-stat {
  text-align: center;
}
.eco-trust-stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #047857, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.eco-trust-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* =========================================================
   v18 — COLORFUL Premium Design (vibrant backgrounds)
   ========================================================= */

/* ---------- HERO: More vibrant gradient ---------- */
.eco-h17 {
  background:
    radial-gradient(ellipse 900px 700px at 90% -10%, rgba(16, 185, 129, 0.18), transparent 60%) !important,
    radial-gradient(ellipse 700px 600px at -10% 100%, rgba(6, 182, 212, 0.18), transparent 60%) !important,
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(167, 243, 208, 0.12), transparent 70%) !important,
    linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 35%, #ecfeff 70%, #f0f9ff 100%) !important;
}

/* Floating colored orbs in hero */
.eco-h17::before {
  content: "";
  position: absolute;
  top: 15%; left: 8%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: ecoOrbit 12s ease-in-out infinite;
}
@keyframes ecoOrbit {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -20px); }
}

/* ---------- TRUST STRIP: Subtle emerald tint ---------- */
.eco-trust {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #ecfeff 100%) !important;
  border-top-color: rgba(16, 185, 129, 0.15) !important;
  border-bottom-color: rgba(16, 185, 129, 0.15) !important;
}

/* ---------- PROCESS section: Warm cream + colorful number badges ---------- */
.eco-process {
  background: 
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(251, 191, 36, 0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(167, 243, 208, 0.12), transparent 60%),
    linear-gradient(180deg, #fffbeb 0%, #ffffff 50%, #f0fdfa 100%) !important;
}

/* Each process step gets a different accent color */
.eco-process-step:nth-child(1) .eco-process-num { background: linear-gradient(135deg, #f59e0b, #ef4444) !important; box-shadow: 0 12px 24px -8px rgba(245, 158, 11, 0.5) !important; }
.eco-process-step:nth-child(2) .eco-process-num { background: linear-gradient(135deg, #10b981, #06b6d4) !important; box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.5) !important; }
.eco-process-step:nth-child(3) .eco-process-num { background: linear-gradient(135deg, #8b5cf6, #ec4899) !important; box-shadow: 0 12px 24px -8px rgba(139, 92, 246, 0.5) !important; }
.eco-process-step:nth-child(4) .eco-process-num { background: linear-gradient(135deg, #3b82f6, #06b6d4) !important; box-shadow: 0 12px 24px -8px rgba(59, 130, 246, 0.5) !important; }

.eco-process-step:nth-child(1) .eco-process-icon { background: linear-gradient(135deg, #fef3c7, #fed7aa) !important; color: #c2410c !important; }
.eco-process-step:nth-child(2) .eco-process-icon { background: linear-gradient(135deg, #d1fae5, #cffafe) !important; color: #047857 !important; }
.eco-process-step:nth-child(3) .eco-process-icon { background: linear-gradient(135deg, #ede9fe, #fce7f3) !important; color: #7c3aed !important; }
.eco-process-step:nth-child(4) .eco-process-icon { background: linear-gradient(135deg, #dbeafe, #cffafe) !important; color: #1d4ed8 !important; }

/* ---------- COMPARE section: Stronger background ---------- */
.eco-compare {
  background: 
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(254, 226, 226, 0.4), transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(167, 243, 208, 0.4), transparent 70%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 100%) !important;
}

/* ---------- REVIEWS section: Cyan-emerald gradient ---------- */
.ecorev-section {
  background:
    radial-gradient(ellipse 600px 500px at 20% 0%, rgba(16, 185, 129, 0.1), transparent 65%),
    radial-gradient(ellipse 600px 500px at 80% 100%, rgba(6, 182, 212, 0.1), transparent 65%),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(167, 243, 208, 0.08), transparent 70%),
    linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%) !important;
}

/* Reviews cards get a subtle colored accent */
.ecorev-card:nth-child(4n+1) { background: linear-gradient(180deg, #ffffff 0%, #fefce8 100%) !important; }
.ecorev-card:nth-child(4n+2) { background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%) !important; }
.ecorev-card:nth-child(4n+3) { background: linear-gradient(180deg, #ffffff 0%, #ede9fe 100%) !important; }
.ecorev-card:nth-child(4n+4) { background: linear-gradient(180deg, #ffffff 0%, #dbeafe 100%) !important; }

/* ---------- Service cards on homepage: subtle color tints ---------- */
.service-card:nth-child(3n+1) { background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%) !important; }
.service-card:nth-child(3n+2) { background: linear-gradient(135deg, #ffffff 0%, #ecfeff 100%) !important; }
.service-card:nth-child(3n+3) { background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%) !important; }

/* ---------- Solar/heating services section background ---------- */
section[class*="jsx-3f43c459b749746"][class*="from-slate-50"] {
  background:
    radial-gradient(ellipse 600px 400px at 15% 15%, rgba(251, 191, 36, 0.1), transparent 60%) !important,
    radial-gradient(ellipse 600px 400px at 85% 85%, rgba(16, 185, 129, 0.1), transparent 60%) !important,
    linear-gradient(135deg, #fefce8 0%, #ffffff 50%, #ecfdf5 100%) !important;
}

/* ---------- Rich info sections (solar, ASHP, insulation) ---------- */
.eco-rich-info {
  background:
    radial-gradient(ellipse 700px 500px at 90% 10%, rgba(6, 182, 212, 0.1), transparent 60%) !important,
    radial-gradient(ellipse 700px 500px at 10% 90%, rgba(16, 185, 129, 0.1), transparent 60%) !important,
    linear-gradient(135deg, #ffffff 0%, #f0fdfa 50%, #ecfeff 100%) !important;
}

/* Rich info stat cards: colorful tints */
.eco-rich-stat-card:nth-child(4n+1) { background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%) !important; border-color: rgba(245, 158, 11, 0.2) !important; }
.eco-rich-stat-card:nth-child(4n+2) { background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%) !important; border-color: rgba(16, 185, 129, 0.2) !important; }
.eco-rich-stat-card:nth-child(4n+3) { background: linear-gradient(135deg, #ffffff 0%, #ede9fe 100%) !important; border-color: rgba(139, 92, 246, 0.2) !important; }
.eco-rich-stat-card:nth-child(4n+4) { background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%) !important; border-color: rgba(59, 130, 246, 0.2) !important; }

/* Step cards with colored numbers */
.eco-rich-step-card:nth-child(4n+1) .eco-rich-step-num { background: linear-gradient(135deg, #f59e0b, #ef4444) !important; }
.eco-rich-step-card:nth-child(4n+2) .eco-rich-step-num { background: linear-gradient(135deg, #10b981, #06b6d4) !important; }
.eco-rich-step-card:nth-child(4n+3) .eco-rich-step-num { background: linear-gradient(135deg, #8b5cf6, #ec4899) !important; }
.eco-rich-step-card:nth-child(4n+4) .eco-rich-step-num { background: linear-gradient(135deg, #3b82f6, #06b6d4) !important; }

/* Grant cards: warmer colors */
.eco-rich-grant-card:nth-child(1) { background: linear-gradient(135deg, #ecfdf5, #d1fae5) !important; border-color: rgba(16, 185, 129, 0.3) !important; }
.eco-rich-grant-card:nth-child(2) { background: linear-gradient(135deg, #ecfeff, #cffafe) !important; border-color: rgba(6, 182, 212, 0.3) !important; }
.eco-rich-grant-card:nth-child(3) { background: linear-gradient(135deg, #fef3c7, #fed7aa) !important; border-color: rgba(245, 158, 11, 0.3) !important; }

.eco-rich-grant-card:nth-child(1) h4 { color: #047857 !important; }
.eco-rich-grant-card:nth-child(2) h4 { color: #0e7490 !important; }
.eco-rich-grant-card:nth-child(3) h4 { color: #c2410c !important; }

/* ---------- About page sections — alternating colors ---------- */
body > main > section:nth-of-type(odd):not(.eco-h17):not(.ecorev-section):not(.eco-trust) {
  position: relative;
}

/* Decorative colored shape on dark CTAs */
.eco-rich-cta {
  background: 
    radial-gradient(ellipse 400px 300px at 20% 30%, rgba(16, 185, 129, 0.35), transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 70%, rgba(6, 182, 212, 0.35), transparent 70%),
    linear-gradient(135deg, #0f2b26 0%, #134e4a 50%, #0c4a6e 100%) !important;
}

/* Page bg color */
body {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Footer: deeper richer colors */
footer[class*="from-slate-900"] {
  background:
    radial-gradient(ellipse 800px 600px at 10% 20%, rgba(16, 185, 129, 0.15), transparent 60%) !important,
    radial-gradient(ellipse 800px 600px at 90% 80%, rgba(6, 182, 212, 0.15), transparent 60%) !important,
    linear-gradient(135deg, #064e3b 0%, #134e4a 50%, #075985 100%) !important;
}

/* Certifications section — soft cream */
section[class*="py-12"][class*="bg-white"][class*="border-b"] {
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 30%, #ecfdf5 70%, #ecfeff 100%) !important;
}

/* Why choose us section already has dark - intensify the colors */
section[class*="from-slate-900"], 
section[class*="bg-gradient-to-br"][class*="from-slate-900"] {
  background:
    radial-gradient(ellipse 700px 500px at 15% 10%, rgba(16, 185, 129, 0.2), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 90%, rgba(6, 182, 212, 0.18), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(139, 92, 246, 0.12), transparent 70%),
    linear-gradient(135deg, #0c4a6e 0%, #134e4a 50%, #064e3b 100%) !important;
}

/* Add colorful section dividers between sections */
.eco-process { border-top: 1px solid rgba(16, 185, 129, 0.1); border-bottom: 1px solid rgba(6, 182, 212, 0.1); }
.eco-compare { border-top: 1px solid rgba(251, 191, 36, 0.1); }
.eco-trust { border-top: 4px solid; border-image: linear-gradient(90deg, #10b981, #06b6d4, #f59e0b, #ec4899) 1; }

/* Eyebrow badges with bg color */
.eco-section-eyebrow, .eco-rich-eyebrow, .ecorev-eyebrow {
  background: linear-gradient(90deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  font-weight: 800 !important;
}

/* =========================================================
   v19 — Dark Trust Strip + White Certifications + Animations
   ========================================================= */

/* ---------- TRUST STRIP: Dark premium background ---------- */
.eco-trust {
  background:
    radial-gradient(ellipse 800px 400px at 20% 50%, rgba(16, 185, 129, 0.18), transparent 65%) !important,
    radial-gradient(ellipse 800px 400px at 80% 50%, rgba(6, 182, 212, 0.18), transparent 65%) !important,
    radial-gradient(ellipse 400px 300px at 50% 0%, rgba(139, 92, 246, 0.1), transparent 70%) !important,
    linear-gradient(135deg, #0a1f1c 0%, #0f2b26 35%, #134e4a 70%, #075985 100%) !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
  overflow: hidden;
}
.eco-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.eco-trust-container { position: relative; z-index: 2; }
.eco-trust-title {
  color: rgba(255, 255, 255, 0.6) !important;
}
.eco-trust-stat-num {
  background: linear-gradient(135deg, #6ee7b7, #67e8f9) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 12px rgba(110, 231, 183, 0.3));
}
.eco-trust-stat-label {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 600;
}
.eco-trust-stat {
  position: relative;
  padding: 1rem;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}
.eco-trust-stat:hover {
  transform: translateY(-6px) scale(1.04);
  background: rgba(255, 255, 255, 0.05);
}
/* Animated underline accent on hover */
.eco-trust-stat::after {
  content: "";
  position: absolute;
  bottom: 12px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  transform: translateX(-50%);
  transition: width 0.4s ease;
  border-radius: 999px;
}
.eco-trust-stat:hover::after { width: 50px; }

/* Subtle counting-up animation hint on stat numbers */
@keyframes ecoStatPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.eco-trust-stat {
  animation: ecoStatPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.eco-trust-stat:nth-child(1) { animation-delay: 0.05s; }
.eco-trust-stat:nth-child(2) { animation-delay: 0.15s; }
.eco-trust-stat:nth-child(3) { animation-delay: 0.25s; }
.eco-trust-stat:nth-child(4) { animation-delay: 0.35s; }

/* Override the rainbow top border from v18 */
.eco-trust { border-image: none !important; }

/* ---------- CERTIFICATIONS: Pure clean white ---------- */
section[class*="py-12"][class*="bg-white"][class*="border-b"] {
  background: #ffffff !important;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
section[class*="py-12"][class*="bg-white"][class*="border-b"]::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  transform: translateX(-50%);
}

/* Certifications heading with subtle accent */
section[class*="py-12"][class*="bg-white"][class*="border-b"] h2 {
  color: #0f2b26 !important;
  position: relative;
  display: inline-block;
}

/* ---------- ENTRANCE ANIMATIONS for sections ---------- */
@keyframes ecoFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes ecoFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes ecoSlideRight {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes ecoSlideLeft {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes ecoScaleIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hero entrance animations */
.eco-h17-badge { animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s backwards; }
.eco-h17-title { animation: ecoFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards; }
.eco-h17-sub { animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards; }
.eco-h17-cta-row { animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards; }
.eco-h17-feature-pills { animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards; }
.eco-h17-image-wrap { animation: ecoSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards; }

/* Process step entrance with stagger */
.eco-process-step {
  animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.eco-process-step:nth-child(1) { animation-delay: 0.1s; }
.eco-process-step:nth-child(2) { animation-delay: 0.2s; }
.eco-process-step:nth-child(3) { animation-delay: 0.3s; }
.eco-process-step:nth-child(4) { animation-delay: 0.4s; }

/* Compare cards entrance */
.eco-compare-without { animation: ecoSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards; }
.eco-compare-with { animation: ecoSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards; }

/* Review cards entrance */
.ecorev-card {
  animation: ecoScaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.ecorev-card:nth-child(1) { animation-delay: 0.05s; }
.ecorev-card:nth-child(2) { animation-delay: 0.15s; }
.ecorev-card:nth-child(3) { animation-delay: 0.25s; }
.ecorev-card:nth-child(4) { animation-delay: 0.35s; }
.ecorev-card:nth-child(5) { animation-delay: 0.45s; }
.ecorev-card:nth-child(6) { animation-delay: 0.55s; }
.ecorev-card:nth-child(7) { animation-delay: 0.65s; }
.ecorev-card:nth-child(8) { animation-delay: 0.75s; }

/* Rich content cards animation */
.eco-rich-stat-card, .eco-rich-step-card, .eco-rich-benefit, .eco-rich-grant-card {
  animation: ecoFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.eco-rich-stat-card:nth-child(1), .eco-rich-step-card:nth-child(1), .eco-rich-grant-card:nth-child(1) { animation-delay: 0.05s; }
.eco-rich-stat-card:nth-child(2), .eco-rich-step-card:nth-child(2), .eco-rich-grant-card:nth-child(2) { animation-delay: 0.15s; }
.eco-rich-stat-card:nth-child(3), .eco-rich-step-card:nth-child(3), .eco-rich-grant-card:nth-child(3) { animation-delay: 0.25s; }
.eco-rich-stat-card:nth-child(4), .eco-rich-step-card:nth-child(4) { animation-delay: 0.35s; }

/* ---------- INTERACTIVE HOVER ANIMATIONS ---------- */

/* Cards lift more dramatically on hover */
.eco-process-step:hover, .eco-rich-stat-card:hover, .eco-rich-step-card:hover, .ecorev-card:hover {
  transform: translateY(-10px) !important;
}

/* Process step icon: rotate and color shift on hover */
.eco-process-step .eco-process-icon {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
}
.eco-process-step:hover .eco-process-icon {
  transform: rotate(-8deg) scale(1.1);
}

/* Number bubble bounces on hover */
.eco-process-num, .eco-rich-step-num {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.eco-process-step:hover .eco-process-num,
.eco-rich-step-card:hover .eco-rich-step-num {
  transform: scale(1.15) rotate(-5deg);
}

/* Trust stats number subtle pulse on hover */
.eco-trust-stat:hover .eco-trust-stat-num {
  animation: ecoPulseGlow 1.2s ease infinite;
}
@keyframes ecoPulseGlow {
  0%, 100% { filter: drop-shadow(0 4px 12px rgba(110, 231, 183, 0.3)); }
  50% { filter: drop-shadow(0 6px 20px rgba(110, 231, 183, 0.6)); }
}

/* Service cards smooth scale on hover */
.service-card { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease !important; }
.service-card:hover { transform: translateY(-10px) scale(1.02) !important; }

/* Buttons get a sweep gradient animation */
.eco-h17-btn-primary, .eco-rich-cta-btn {
  position: relative;
  overflow: hidden;
}
.eco-h17-btn-primary::before, .eco-rich-cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.7s ease;
}
.eco-h17-btn-primary:hover::before, .eco-rich-cta-btn:hover::before {
  left: 100%;
}

/* Hero floating cards: increase float amplitude */
.eco-h17-floating { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.eco-h17-floating:hover {
  transform: translateY(-12px) scale(1.05) !important;
  box-shadow: 0 24px 50px -16px rgba(15, 43, 38, 0.35) !important;
}

/* Compare card list items: stagger animation */
.eco-compare-card li {
  opacity: 0;
  animation: ecoFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.eco-compare-card li:nth-child(1) { animation-delay: 0.2s; }
.eco-compare-card li:nth-child(2) { animation-delay: 0.3s; }
.eco-compare-card li:nth-child(3) { animation-delay: 0.4s; }
.eco-compare-card li:nth-child(4) { animation-delay: 0.5s; }
.eco-compare-card li:nth-child(5) { animation-delay: 0.6s; }
.eco-compare-card li:nth-child(6) { animation-delay: 0.7s; }

/* Reduce all animations for users who prefer */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- SECTION SEPARATOR ENHANCEMENT ---------- */
section + section { position: relative; }

/* Animated decorative SVG-like accent under section titles */
.eco-section-title, .eco-rich-title, .ecorev-title {
  position: relative;
  display: inline-block;
}

/* Floating particle background hint */
@keyframes ecoParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* Page-load smoother body fade-in */
body {
  animation: ecoFadeIn 0.5s ease;
}

/* =========================================================
   v20 — Wickes-style Premium Ad Hero
   ========================================================= */

/* Hide the v17 hero completely if present */
.eco-h17 { display: none !important; }

/* New full-bleed image hero */
.eco-h20 {
  position: relative;
  min-height: 88vh;
  max-height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
@media (max-width: 768px) {
  .eco-h20 { min-height: auto; padding: 5rem 0 4rem; }
}

/* The full-bleed image */
.eco-h20-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.eco-h20-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: ecoKenBurns 18s ease-in-out infinite alternate;
}
@keyframes ecoKenBurns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-10px, -10px); }
}

/* Dark gradient overlay for legibility */
.eco-h20::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 1200px 800px at 50% 50%, rgba(0,0,0,0.4), rgba(0,0,0,0.6) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
}
/* Side green color wash */
.eco-h20::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 800px 600px at 10% 100%, rgba(4, 120, 87, 0.5), transparent 60%),
    radial-gradient(ellipse 800px 600px at 90% 0%, rgba(6, 95, 70, 0.4), transparent 60%);
  pointer-events: none;
}

/* Content container */
.eco-h20-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Brand badge (like Wickes Solar logo) */
.eco-h20-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 1.6rem 1rem;
  background: linear-gradient(135deg, #047857, #0d9488);
  border-radius: 22px;
  box-shadow:
    0 20px 50px -16px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.95) inset,
    0 0 0 5px rgba(4, 120, 87, 1);
  margin-bottom: 0.5rem;
  position: relative;
  animation: ecoFloatA 5s ease-in-out infinite;
}
.eco-h20-brand-line1 {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.eco-h20-brand-line2 {
  margin-top: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #422006;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Bold headline */
.eco-h20-headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  color: #ffffff;
  animation: ecoFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
.eco-h20-headline .free {
  display: inline-block;
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Subheadline */
.eco-h20-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 700px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
  margin: 0.5rem 0;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  animation: ecoFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
  font-weight: 500;
}
.eco-h20-sub strong { color: #fbbf24; font-weight: 800; }

/* CTA button */
.eco-h20-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
  padding: 1.15rem 2.4rem;
  background: linear-gradient(135deg, #047857, #059669);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow:
    0 20px 50px -14px rgba(4, 120, 87, 0.7),
    0 0 0 4px rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  animation: ecoFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}
.eco-h20-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}
.eco-h20-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 28px 60px -18px rgba(4, 120, 87, 0.85),
    0 0 0 6px rgba(255, 255, 255, 0.2);
}
.eco-h20-cta:hover::before { left: 100%; }

/* Trustpilot-style badge */
.eco-h20-trustpilot {
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  animation: ecoFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s backwards;
}
.eco-h20-tp-rating {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0f172a;
}
.eco-h20-tp-stars {
  display: inline-flex;
  gap: 2px;
}
.eco-h20-tp-star {
  width: 22px; height: 22px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.eco-h20-tp-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: #0f172a;
  font-size: 0.95rem;
}
.eco-h20-tp-brand::before {
  content: "★";
  color: #00b67a;
  font-size: 1.2rem;
}

/* Bottom info pill row */
.eco-h20-pills {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  animation: ecoFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s backwards;
}
.eco-h20-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
}
.eco-h20-pill::before {
  content: "✓";
  color: #6ee7b7;
  font-weight: 800;
}

/* Scroll-down arrow */
.eco-h20-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: ecoScrollHint 2.4s ease-in-out infinite;
}
@keyframes ecoScrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
@media (max-width: 768px) {
  .eco-h20-scroll { display: none; }
}

/* ============================================
   v20 — Section below hero: DARK GREEN gradient
   ============================================ */
.eco-trust {
  background:
    radial-gradient(ellipse 900px 500px at 15% 50%, rgba(110, 231, 183, 0.18), transparent 65%) !important,
    radial-gradient(ellipse 900px 500px at 85% 50%, rgba(52, 211, 153, 0.18), transparent 65%) !important,
    linear-gradient(135deg, #022c22 0%, #064e3b 35%, #065f46 70%, #047857 100%) !important;
  position: relative;
  overflow: hidden;
}

.eco-trust::before {
  background-image:
    linear-gradient(rgba(110, 231, 183, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 183, 0.08) 1px, transparent 1px) !important;
}

.eco-trust-title {
  color: rgba(255, 255, 255, 0.7) !important;
}
.eco-trust-stat-num {
  background: linear-gradient(135deg, #fbbf24, #fde68a) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.4));
}
.eco-trust-stat-label {
  color: rgba(255, 255, 255, 0.82) !important;
}
.eco-trust-stat:hover {
  background: rgba(255, 255, 255, 0.07);
}
.eco-trust-stat::after {
  background: linear-gradient(90deg, #fbbf24, #fde68a) !important;
}

/* =========================================================
   v21 — Hero image fallback + Sky/lawn gradient placeholder
   ========================================================= */

/* Beautiful sky+lawn gradient as background fallback even before image loads */
.eco-h20 {
  background:
    linear-gradient(180deg,
      #87ceeb 0%,
      #b8e0f5 25%,
      #c8e6c9 50%,
      #81c784 75%,
      #4caf50 100%) !important;
}

/* If image fails or is loading, the gradient sky+lawn shows */
.eco-h20-image {
  background: linear-gradient(180deg,
    #87ceeb 0%,
    #b8e0f5 30%,
    #d4eaa8 65%,
    #66bb6a 100%);
}

/* Ensure header is always above hero — clarify z-index hierarchy */
header, nav[class*="sticky"], div[class*="sticky"][class*="top-0"] {
  position: relative;
  z-index: 100 !important;
}

/* Hero must be below header */
.eco-h20 {
  z-index: 1 !important;
}

/* =========================================================
   v22 — Header strictly at top, SVG hero image
   ========================================================= */

/* Force the site header & top utility bar to the very top */
body > div > div[class*="ContactProvider"] > *,
body header,
body > header,
header[class*="sticky"],
nav[class*="sticky"],
div[class*="sticky"][class*="top-0"],
div[class*="z-50"],
div[class*="z-40"] {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
}

/* Top utility bar (with phone + email) — first thing on page */
div[class*="bg-gradient-to-r"][class*="from-emerald-900"],
div[class*="bg-[#0a1f1c]"]:first-child,
div[class*="bg-slate-900"]:first-child {
  position: relative;
  z-index: 1001 !important;
}

/* Main navigation */
nav, header nav {
  position: relative;
  z-index: 1000 !important;
}

/* Hero must be below header */
.eco-h20 {
  z-index: 1 !important;
  position: relative !important;
}

/* SVG hero image - make sure it fills properly */
.eco-h20-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}
.eco-h20-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* For SVG specifically — make sure it stretches */
.eco-h20-image img[src$=".svg"] {
  object-fit: cover !important;
  min-height: 100% !important;
}

/* Adjust the dark overlay for the SVG illustration so house remains visible */
.eco-h20::before {
  background:
    radial-gradient(ellipse 1200px 800px at 50% 80%, rgba(0,0,0,0.5), rgba(0,0,0,0.3) 60%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%) !important;
}

/* =========================================================
   v24 — FORCE Trust Strip Dark Green (highest specificity)
   Content was invisible on light background — force dark BG
   ========================================================= */

body section.eco-trust,
html body .eco-trust,
.eco-trust {
  background:
    radial-gradient(ellipse 900px 500px at 15% 50%, rgba(110, 231, 183, 0.18), transparent 65%),
    radial-gradient(ellipse 900px 500px at 85% 50%, rgba(52, 211, 153, 0.18), transparent 65%),
    linear-gradient(135deg, #022c22 0%, #064e3b 35%, #065f46 70%, #047857 100%) !important;
  background-color: #064e3b !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  border-top: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-image: none !important;
}

body section.eco-trust::before,
.eco-trust::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(110, 231, 183, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 183, 0.08) 1px, transparent 1px) !important;
  background-size: 50px 50px !important;
  pointer-events: none !important;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%) !important;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%) !important;
}

/* Title text */
body .eco-trust .eco-trust-title,
.eco-trust .eco-trust-title {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Stat numbers in bright amber */
body .eco-trust .eco-trust-stat-num,
.eco-trust .eco-trust-stat-num {
  background: linear-gradient(135deg, #fde047, #fbbf24, #f97316) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 14px rgba(251, 191, 36, 0.5)) drop-shadow(0 0 25px rgba(251, 191, 36, 0.3)) !important;
}

/* Labels VERY visible in white */
body .eco-trust .eco-trust-stat-label,
.eco-trust .eco-trust-stat-label {
  color: #ffffff !important;
  font-weight: 700 !important;
  opacity: 0.95 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
}

/* Stat card hover */
body .eco-trust .eco-trust-stat:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
body .eco-trust .eco-trust-stat::after {
  background: linear-gradient(90deg, #fbbf24, #fde047) !important;
}

/* Container z-index above the grid pattern */
.eco-trust > * { position: relative; z-index: 2; }

/* =========================================================
   v25 — Real photo hero (900×900 square), optimize crop
   ========================================================= */

/* Adjust object-position for square image so house centers nicely */
.eco-h20-image img[src*="herosection"],
.eco-h20-image img[src*="hero-house.jpg"] {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Slightly stronger overlay for legibility on real photo */
.eco-h20::before {
  background:
    radial-gradient(ellipse 1400px 900px at 50% 70%, rgba(0,0,0,0.55), rgba(0,0,0,0.35) 60%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%) !important;
}

/* Slightly intensify green wash for brand feel */
.eco-h20::after {
  background:
    radial-gradient(ellipse 900px 700px at 10% 100%, rgba(4, 120, 87, 0.6), transparent 60%) !important,
    radial-gradient(ellipse 900px 700px at 90% 0%, rgba(6, 95, 70, 0.5), transparent 60%) !important;
}

/* On smaller screens — show more of the house, less crop */
@media (max-width: 768px) {
  .eco-h20-image img[src*="herosection"] {
    object-position: center top !important;
  }
}

/* =========================================================
   v26 — Premium Contact Section + Map
   ========================================================= */

/* Make the contact section more attractive */
body section.py-24.bg-white {
  background:
    radial-gradient(ellipse 700px 500px at 15% 15%, rgba(16, 185, 129, 0.07), transparent 60%) !important,
    radial-gradient(ellipse 700px 500px at 85% 85%, rgba(6, 182, 212, 0.07), transparent 60%) !important,
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(245, 158, 11, 0.04), transparent 70%) !important,
    linear-gradient(135deg, #f0fdf4 0%, #ecfeff 50%, #f0fdfa 100%) !important;
  position: relative;
}

/* Contact form card refinement */
body section.py-24.bg-white .relative > div[class*="rounded-"]:first-of-type,
section.py-24.bg-white div[class*="rounded-3xl"] {
  border-radius: 28px !important;
  box-shadow: 0 32px 80px -30px rgba(15, 43, 38, 0.18), 0 8px 24px -8px rgba(16, 185, 129, 0.1) !important;
  border: 1px solid rgba(16, 185, 129, 0.18) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
body section.py-24.bg-white div[class*="rounded-3xl"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 90px -28px rgba(15, 43, 38, 0.25), 0 12px 30px -8px rgba(16, 185, 129, 0.18) !important;
}

/* Form inputs polish */
body section.py-24.bg-white input,
body section.py-24.bg-white select,
body section.py-24.bg-white textarea {
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 0.95rem 1.15rem !important;
  font-size: 0.95rem !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}
body section.py-24.bg-white input:focus,
body section.py-24.bg-white select:focus,
body section.py-24.bg-white textarea:focus {
  border-color: #10b981 !important;
  background: #f0fdf4 !important;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.15), 0 6px 16px -6px rgba(16, 185, 129, 0.25) !important;
}

/* Eyebrow labels */
body section.py-24.bg-white .text-xs.uppercase,
body section.py-24.bg-white [class*="text-xs"][class*="uppercase"] {
  background: linear-gradient(90deg, #047857, #06b6d4) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
}

/* Right side info cards (Call Us / Email / Location) */
body section.py-24.bg-white .group,
body section.py-24.bg-white div[class*="rounded-2xl"] {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
}

/* Icon bubble on info cards */
body section.py-24.bg-white div[class*="bg-mint"] svg,
body section.py-24.bg-white div[class*="bg-emerald-100"] svg,
body section.py-24.bg-white div[class*="rounded-2xl"] svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body section.py-24.bg-white div[class*="rounded-2xl"]:hover svg {
  transform: scale(1.15) rotate(-6deg);
}

/* Submit button shimmer */
body section.py-24.bg-white button[type="submit"] {
  background: linear-gradient(135deg, #022c22 0%, #047857 100%) !important;
  box-shadow: 0 20px 50px -16px rgba(4, 120, 87, 0.55) !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
body section.py-24.bg-white button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.8s ease;
}
body section.py-24.bg-white button[type="submit"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 28px 60px -18px rgba(4, 120, 87, 0.7) !important;
}
body section.py-24.bg-white button[type="submit"]:hover::before { left: 100%; }

/* ====== Decorative floating orbs on contact section ====== */
body section.py-24.bg-white::before {
  content: "";
  position: absolute;
  top: 5%; left: -100px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: ecoOrbit 12s ease-in-out infinite;
}
body section.py-24.bg-white::after {
  content: "";
  position: absolute;
  bottom: 5%; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: ecoOrbit 14s ease-in-out infinite reverse;
}

/* ====== MAP SECTION ====== */
.eco-map-section {
  position: relative;
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  overflow: hidden;
}
@media (max-width: 640px) {
  .eco-map-section { padding: 3rem 0 3.5rem; }
}
.eco-map-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.eco-map-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.eco-map-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, #047857, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.eco-map-title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
}
.eco-map-title .accent {
  background: linear-gradient(120deg, #047857, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eco-map-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.eco-map-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px -28px rgba(15, 43, 38, 0.25), 0 8px 24px -8px rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.18);
}
.eco-map-iframe-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  background: #f1f5f9;
}
@media (max-width: 768px) {
  .eco-map-iframe-wrap { height: 380px; }
}
.eco-map-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Info overlay card on map */
.eco-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 20px 50px -20px rgba(15, 43, 38, 0.25);
  z-index: 5;
  animation: ecoFloatA 6s ease-in-out infinite;
}
@media (max-width: 640px) {
  .eco-map-overlay {
    left: 1rem; right: 1rem;
    bottom: 1rem; max-width: none;
    padding: 1rem 1.1rem;
  }
}
.eco-map-overlay-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.eco-map-pin {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #047857, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 10px 22px -8px rgba(4, 120, 87, 0.5);
}
.eco-map-overlay-title {
  font-weight: 800;
  font-size: 1rem;
  color: #0f2b26;
  margin: 0;
  line-height: 1.2;
}
.eco-map-overlay-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin: 2px 0 0;
}
.eco-map-overlay-body {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.eco-map-overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.eco-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1rem;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.eco-map-btn-primary {
  background: linear-gradient(135deg, #047857, #0d9488);
  color: #ffffff;
  box-shadow: 0 10px 22px -8px rgba(4, 120, 87, 0.5);
}
.eco-map-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(4, 120, 87, 0.6);
}
.eco-map-btn-secondary {
  background: #f1f5f9;
  color: #0f2b26;
  border: 1px solid #e2e8f0;
}
.eco-map-btn-secondary:hover {
  background: #ffffff;
  border-color: #10b981;
}

/* Quick contact strip below map */
.eco-map-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .eco-map-contacts { grid-template-columns: repeat(3, 1fr); }
}
.eco-map-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.eco-map-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 14px 30px -10px rgba(15, 43, 38, 0.15);
}
.eco-map-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ecfdf5, #cffafe);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eco-map-contact-label {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 2px;
}
.eco-map-contact-value {
  font-weight: 800;
  color: #0f2b26;
  font-size: 0.95rem;
}

/* =========================================================
   v27 — Achievement bar + FAQ + Why Choose Us (Evergreen-inspired)
   ========================================================= */

/* === ACHIEVEMENT/STATS BAR === */
.eco-achievement {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 700px 400px at 20% 30%, rgba(16, 185, 129, 0.08), transparent 60%),
    radial-gradient(ellipse 700px 400px at 80% 70%, rgba(6, 182, 212, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
  position: relative;
}
@media (max-width: 640px) { .eco-achievement { padding: 3rem 0; } }
.eco-achievement-container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.eco-achievement-header { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.eco-achievement-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.eco-achievement-title {
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.eco-achievement-title .accent {
  background: linear-gradient(120deg, #047857, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eco-achievement-sub { color: #475569; font-size: 1.05rem; line-height: 1.65; margin: 0; }

.eco-achievement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .eco-achievement-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-achievement-grid { grid-template-columns: repeat(4, 1fr); } }

.eco-achievement-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 1.5rem 1.75rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  text-align: center;
}
.eco-achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(15, 43, 38, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
}
.eco-achievement-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 14px 28px -8px rgba(15, 43, 38, 0.3);
}
.eco-achievement-card:nth-child(1) .eco-achievement-icon-wrap { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.eco-achievement-card:nth-child(2) .eco-achievement-icon-wrap { background: linear-gradient(135deg, #10b981, #06b6d4); }
.eco-achievement-card:nth-child(3) .eco-achievement-icon-wrap { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.eco-achievement-card:nth-child(4) .eco-achievement-icon-wrap { background: linear-gradient(135deg, #3b82f6, #06b6d4); }

.eco-achievement-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0a1f1c;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
.eco-achievement-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}
.eco-achievement-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* === FAQ SECTION === */
.eco-faq {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  position: relative;
}
@media (max-width: 640px) { .eco-faq { padding: 3rem 0; } }
.eco-faq-container { max-width: 980px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.eco-faq-header { text-align: center; margin-bottom: 2.5rem; }

.eco-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.eco-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.eco-faq-item:hover { border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 14px 30px -12px rgba(15, 43, 38, 0.1); }
.eco-faq-item[open] { border-color: rgba(16, 185, 129, 0.55); box-shadow: 0 14px 30px -12px rgba(16, 185, 129, 0.15); }

.eco-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #0a1f1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s ease;
}
.eco-faq-question::-webkit-details-marker { display: none; }
.eco-faq-question:hover { color: #047857; }
.eco-faq-item[open] .eco-faq-question { color: #047857; }
.eco-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ecfdf5, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  color: #047857;
  font-weight: 800;
  font-size: 1.1rem;
}
.eco-faq-item[open] .eco-faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #047857, #06b6d4);
  color: #ffffff;
}
.eco-faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}
.eco-faq-answer strong { color: #0a1f1c; }
.eco-faq-answer a { color: #047857; font-weight: 700; text-decoration: underline; }

.eco-faq-cta {
  text-align: center;
  background: linear-gradient(135deg, #0a1f1c, #047857);
  color: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.eco-faq-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.3), transparent 50%);
  pointer-events: none;
}
.eco-faq-cta > * { position: relative; z-index: 1; }
.eco-faq-cta h3 { color: #ffffff; font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 800; margin: 0 0 0.5rem; }
.eco-faq-cta p { color: rgba(255, 255, 255, 0.85); margin: 0 0 1.25rem; font-size: 0.97rem; }
.eco-faq-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #ffffff;
  font-weight: 800;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 28px -10px rgba(16, 185, 129, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eco-faq-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -12px rgba(16, 185, 129, 0.7); }

/* === WHY CHOOSE US (Evergreen-inspired) === */
.eco-why-v2 {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 800px 500px at 15% 100%, rgba(16, 185, 129, 0.07), transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ecfdf5 100%);
  position: relative;
}
@media (max-width: 640px) { .eco-why-v2 { padding: 3rem 0; } }
.eco-why-v2-container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }

.eco-why-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .eco-why-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-why-v2-grid { grid-template-columns: repeat(3, 1fr); } }

.eco-why-v2-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.eco-why-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -22px rgba(15, 43, 38, 0.18);
  border-color: rgba(16, 185, 129, 0.45);
}
.eco-why-v2-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #047857, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.eco-why-v2-card:hover::before { transform: scaleX(1); }

.eco-why-v2-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: #ffffff;
}
.eco-why-v2-card:nth-child(1) .eco-why-v2-icon { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.eco-why-v2-card:nth-child(2) .eco-why-v2-icon { background: linear-gradient(135deg, #10b981, #06b6d4); }
.eco-why-v2-card:nth-child(3) .eco-why-v2-icon { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.eco-why-v2-card:nth-child(4) .eco-why-v2-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.eco-why-v2-card:nth-child(5) .eco-why-v2-icon { background: linear-gradient(135deg, #0d9488, #06b6d4); }
.eco-why-v2-card:nth-child(6) .eco-why-v2-icon { background: linear-gradient(135deg, #f97316, #f59e0b); }

.eco-why-v2-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.eco-why-v2-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   v28 — Inline map in contact section right column
   ========================================================= */

/* Map inside the contact form's right column */
.eco-inline-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(15, 43, 38, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.18);
  background: #f1f5f9;
}
.eco-inline-map-iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
@media (min-width: 1024px) {
  .eco-inline-map-iframe { height: 320px; }
}

/* Contact details grid below map */
.eco-inline-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.eco-inline-contact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.eco-inline-contact:hover {
  transform: translateX(4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 24px -8px rgba(15, 43, 38, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.eco-inline-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.eco-inline-contact:hover .eco-inline-contact-icon {
  transform: scale(1.1) rotate(-5deg);
}

.eco-inline-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.eco-inline-contact-value {
  font-weight: 800;
  color: #0f2b26;
  font-size: 0.92rem;
  line-height: 1.3;
}

/* =========================================================
   v29 — Make nav dropdowns work without React (hover/click)
   ========================================================= */

/* Show dropdown on hover of parent .group element */
nav .group:hover > div[class*="absolute"][class*="top-full"],
header .group:hover > div[class*="absolute"][class*="top-full"],
.group:hover > div[class*="absolute"][class*="invisible"] {
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
  pointer-events: auto !important;
}

/* Rotate chevron on hover */
nav .group:hover > button svg,
header .group:hover > button svg {
  transform: rotate(180deg);
}

/* Dropdown smooth transition */
div[class*="absolute"][class*="top-full"][class*="invisible"],
div[class*="absolute"][class*="top-full"][class*="scale-95"] {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  pointer-events: none;
}

/* Open state (added via JS click) */
.group.eco-open > div[class*="absolute"][class*="top-full"] {
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
  pointer-events: auto !important;
}
.group.eco-open > button svg {
  transform: rotate(180deg);
}

/* Add invisible hover bridge above dropdown so cursor doesn't lose hover */
nav .group > div[class*="absolute"][class*="top-full"]::before,
header .group > div[class*="absolute"][class*="top-full"]::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

/* =========================================================
   v38 — Trust Strip 3-column layout with custom stats
   ========================================================= */
.eco-trust-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 640px) {
  .eco-trust-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}
.eco-trust-stat-num {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
}
.eco-trust-stat-label {
  font-size: 0.9rem !important;
  margin-top: 0.6rem !important;
}

/* =========================================================
   v40 — Boiler Upgrade Scheme (BUS) section
   ========================================================= */
.eco-bus {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 15%, rgba(245, 158, 11, 0.1), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 85%, rgba(16, 185, 129, 0.1), transparent 60%),
    linear-gradient(135deg, #fffbeb 0%, #ffffff 50%, #ecfdf5 100%);
  position: relative;
}
@media (max-width: 640px) { .eco-bus { padding: 3rem 0; } }
.eco-bus-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.eco-bus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .eco-bus-grid { grid-template-columns: repeat(3, 1fr); } }

.eco-bus-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.eco-bus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 60px -22px rgba(15, 43, 38, 0.2);
  border-color: rgba(16, 185, 129, 0.45);
}
.eco-bus-card-featured {
  background: linear-gradient(135deg, #ecfdf5 0%, #cffafe 100%);
  border-color: rgba(16, 185, 129, 0.4);
  transform: scale(1.02);
  box-shadow: 0 24px 50px -18px rgba(16, 185, 129, 0.25);
}
.eco-bus-card-featured:hover {
  transform: translateY(-8px) scale(1.04);
}

.eco-bus-amount {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}
.eco-bus-card-featured .eco-bus-amount {
  background: linear-gradient(135deg, #047857, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.eco-bus-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #ecfdf5, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.eco-bus-card:hover .eco-bus-icon {
  transform: scale(1.1) rotate(-6deg);
}
.eco-bus-card-featured .eco-bus-icon {
  background: linear-gradient(135deg, #047857, #06b6d4);
  color: #ffffff;
  box-shadow: 0 12px 28px -8px rgba(4, 120, 87, 0.5);
}

.eco-bus-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.eco-bus-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.eco-bus-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 14px 32px -14px rgba(15, 43, 38, 0.1);
}
@media (min-width: 768px) { .eco-bus-info { grid-template-columns: repeat(3, 1fr); padding: 2.25rem; } }

.eco-bus-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.eco-bus-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ecfdf5, #cffafe);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-bus-info-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0a1f1c;
  margin: 0 0 0.3rem;
  letter-spacing: -0.005em;
}
.eco-bus-info-item p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.eco-bus-cta {
  text-align: center;
  background: linear-gradient(135deg, #0a1f1c, #047857);
  color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.eco-bus-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.2), transparent 50%);
  pointer-events: none;
}
.eco-bus-cta > * { position: relative; z-index: 1; }
.eco-bus-cta h3 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.6rem;
  letter-spacing: -0.015em;
}
.eco-bus-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  font-size: 0.97rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.eco-bus-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a1f1c;
  font-weight: 800;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 28px -10px rgba(245, 158, 11, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eco-bus-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -12px rgba(245, 158, 11, 0.65);
}

/* =========================================================
   v41 — Hero Split Layout (content left, image right)
   ========================================================= */

/* Hide old eco-h20 if present */
.eco-h20 { display: none !important; }

.eco-h21 {
  position: relative;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse 900px 700px at 90% -10%, rgba(16, 185, 129, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 600px at -10% 100%, rgba(6, 182, 212, 0.12), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(167, 243, 208, 0.08), transparent 70%),
    linear-gradient(135deg, #f0fdf4 0%, #f0fdfa 35%, #ecfeff 70%, #f0f9ff 100%);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) { .eco-h21 { padding: 2.5rem 0 3.5rem; } }

/* Decorative orbs */
.eco-h21::before {
  content: "";
  position: absolute;
  top: 15%; left: 8%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.22), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: ecoOrbit 12s ease-in-out infinite;
  z-index: 0;
}
.eco-h21::after {
  content: "";
  position: absolute;
  bottom: 10%; right: 8%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: ecoOrbit 14s ease-in-out infinite reverse;
  z-index: 0;
}

.eco-h21-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .eco-h21-container { grid-template-columns: 1.05fr 1fr; gap: 4.5rem; }
}

/* ====== LEFT: Content ====== */
.eco-h21-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: ecoFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.eco-h21-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem 1.4rem 0.75rem;
  background: linear-gradient(135deg, #047857, #0d9488);
  border-radius: 18px;
  box-shadow:
    0 14px 32px -10px rgba(4, 120, 87, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.9) inset,
    0 0 0 4px rgba(4, 120, 87, 1);
  align-self: flex-start;
  animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}
.eco-h21-brand-line1 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1;
}
.eco-h21-brand-line2 {
  margin-top: 0.4rem;
  padding: 0.25rem 0.8rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #422006;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eco-h21-headline {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #0a1f1c;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  animation: ecoFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}
.eco-h21-free {
  background: linear-gradient(120deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}

.eco-h21-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #475569;
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
  animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}
.eco-h21-sub strong { color: #047857; font-weight: 800; }

.eco-h21-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s backwards;
}
.eco-h21-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.05rem 1.85rem;
  background: linear-gradient(135deg, #047857, #10b981);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 36px -14px rgba(4, 120, 87, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.eco-h21-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}
.eco-h21-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -16px rgba(4, 120, 87, 0.75);
}
.eco-h21-cta:hover::before { left: 100%; }

.eco-h21-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1.05rem 1.65rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #047857;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  font-size: 1rem;
}
.eco-h21-cta-ghost:hover {
  background: #ffffff;
  border-color: #10b981;
  transform: translateY(-2px);
}

.eco-h21-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
  align-self: flex-start;
  animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}
.eco-h21-tp-rating {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.95rem;
}
.eco-h21-tp-stars { display: inline-flex; gap: 2px; }
.eco-h21-tp-star {
  width: 18px;
  height: 18px;
  background: #00b67a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 3px;
}
.eco-h21-tp-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: #0f172a;
  font-size: 0.9rem;
}
.eco-h21-tp-brand::before { content: "★"; color: #00b67a; font-size: 1.05rem; }

.eco-h21-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: ecoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.85s backwards;
}
.eco-h21-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d1fae5;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #064e3b;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.eco-h21-pill svg { color: #10b981; }

/* ====== RIGHT: Visual ====== */
.eco-h21-visual {
  position: relative;
  min-height: 460px;
  animation: ecoSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.eco-h21-image-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -28px rgba(15, 43, 38, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.eco-h21-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.eco-h21-visual:hover .eco-h21-image-wrap img {
  transform: scale(1.05);
}
.eco-h21-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 43, 38, 0.4) 100%);
  pointer-events: none;
}

/* Floating "Government Funded" badge */
.eco-h21-image-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 16px 36px -12px rgba(15, 43, 38, 0.3);
  z-index: 5;
  animation: ecoFloatA 6s ease-in-out infinite;
}
.eco-h21-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #047857, #10b981);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -6px rgba(4, 120, 87, 0.5);
}
.eco-h21-badge-title {
  font-weight: 800;
  color: #0a1f1c;
  font-size: 0.95rem;
  line-height: 1.1;
}
.eco-h21-badge-sub {
  font-size: 0.72rem;
  color: #047857;
  font-weight: 700;
  margin-top: 2px;
}

/* Floating £7,500 stat (bottom right) */
.eco-h21-image-stats {
  position: absolute;
  bottom: 1.5rem;
  right: -1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 16px 36px -12px rgba(15, 43, 38, 0.3);
  z-index: 5;
  animation: ecoFloatA 6s ease-in-out infinite 3s;
}
.eco-h21-stat-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eco-h21-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.eco-h21-stat-value {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  line-height: 1;
}
.eco-h21-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .eco-h21-image-badge, .eco-h21-image-stats {
    left: 1rem; right: 1rem;
    position: static;
    margin-top: 1rem;
    align-self: stretch;
  }
  .eco-h21-image-stats { margin-top: 0.75rem; }
}

/* =========================================================
   v42 — Top header tagline (Solar · Heating · Insulation)
   ========================================================= */

/* Hide on small screens to keep top bar clean */
@media (max-width: 768px) {
  .eco-top-tagline { display: none !important; }
}

/* Subtle pulse animation on the icon */
.eco-top-tagline svg {
  animation: ecoSparkle 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes ecoSparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(15deg); }
}

/* Top bar layout — make sure the 3 sections are properly spaced */
header div[class*="from-emerald-900"] .flex.items-center.justify-between,
header div[class*="from-slate-900"] .flex.items-center.justify-between {
  gap: 1rem;
}
